Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / obp / obp / dev / usb2 / error.fth
CommitLineData
920dae64
AT
1\ ========== Copyright Header Begin ==========================================
2\
3\ Hypervisor Software File: error.fth
4\
5\ Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
6\
7\ - Do no alter or remove copyright notices
8\
9\ - Redistribution and use of this software in source and binary forms, with
10\ or without modification, are permitted provided that the following
11\ conditions are met:
12\
13\ - Redistribution of source code must retain the above copyright notice,
14\ this list of conditions and the following disclaimer.
15\
16\ - Redistribution in binary form must reproduce the above copyright notice,
17\ this list of conditions and the following disclaimer in the
18\ documentation and/or other materials provided with the distribution.
19\
20\ Neither the name of Sun Microsystems, Inc. or the names of contributors
21\ may be used to endorse or promote products derived from this software
22\ without specific prior written permission.
23\
24\ This software is provided "AS IS," without a warranty of any kind.
25\ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
26\ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
27\ PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
28\ MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
29\ ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
30\ DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
31\ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
32\ FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
33\ DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
34\ ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
35\ SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
36\
37\ You acknowledge that this software is not designed, licensed or
38\ intended for use in the design, construction, operation or maintenance of
39\ any nuclear facility.
40\
41\ ========== Copyright Header End ============================================
42id: @(#)error.fth 1.1 07/01/24
43purpose: USB error codes for use by USB device drivers
44\ See license at end of file
45
46headers
47hex
48
49\ Common error codes so that device drivers are EHCI/OHCI/UHCI independent
500000.0000 constant USB_ERR_NONE
510000.0001 constant USB_ERR_CRC
520000.0002 constant USB_ERR_BITSTUFFING
530000.0004 constant USB_ERR_DATATOGGLEMISMATCH
540000.0008 constant USB_ERR_STALL
550000.0010 constant USB_ERR_DEVICENOTRESPONDING
560000.0020 constant USB_ERR_PIDCHECKFAILURE
570000.0040 constant USB_ERR_UNEXPECTEDPIC
580000.0080 constant USB_ERR_DATAOVERRUN
590000.0100 constant USB_ERR_DATAUNDERRUN
600000.0200 constant USB_ERR_BUFFEROVERRUN
610000.0400 constant USB_ERR_BUFFERUNDERRUN
620000.0800 constant USB_ERR_NOTACCESSED
630000.1000 constant USB_ERR_HCHALTED
640000.2000 constant USB_ERR_DBUFERR
650000.4000 constant USB_ERR_BABBLE
660000.8000 constant USB_ERR_NAK
670001.0000 constant USB_ERR_MICRO_FRAME
680002.0000 constant USB_ERR_SPLIT
690004.0000 constant USB_ERR_HCERROR
700008.0000 constant USB_ERR_HOSTERROR
711000.0000 constant USB_ERR_TIMEOUT
722000.0000 constant USB_ERR_INV_OP
734000.0000 constant USB_ERR_BAD_PARAM
748000.0000 constant USB_ERR_UNKNOWN
75
76
77\ LICENSE_BEGIN
78\ Copyright (c) 2006 FirmWorks
79\
80\ Permission is hereby granted, free of charge, to any person obtaining
81\ a copy of this software and associated documentation files (the
82\ "Software"), to deal in the Software without restriction, including
83\ without limitation the rights to use, copy, modify, merge, publish,
84\ distribute, sublicense, and/or sell copies of the Software, and to
85\ permit persons to whom the Software is furnished to do so, subject to
86\ the following conditions:
87\
88\ The above copyright notice and this permission notice shall be
89\ included in all copies or substantial portions of the Software.
90\
91\ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
92\ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
93\ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
94\ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
95\ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
96\ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
97\ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
98\
99\ LICENSE_END