usb_defs.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /*
  2. * (C) Copyright 2001
  3. * Denis Peter, MPL AG Switzerland
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. *
  23. * Note: Part of this code has been derived from linux
  24. *
  25. */
  26. #ifndef _USB_DEFS_H_
  27. #define _USB_DEFS_H_
  28. /* USB constants */
  29. /* Device and/or Interface Class codes */
  30. #define USB_CLASS_PER_INTERFACE 0 /* for DeviceClass */
  31. #define USB_CLASS_AUDIO 1
  32. #define USB_CLASS_COMM 2
  33. #define USB_CLASS_HID 3
  34. #define USB_CLASS_PRINTER 7
  35. #define USB_CLASS_MASS_STORAGE 8
  36. #define USB_CLASS_HUB 9
  37. #define USB_CLASS_DATA 10
  38. #define USB_CLASS_VENDOR_SPEC 0xff
  39. /* some HID sub classes */
  40. #define USB_SUB_HID_NONE 0
  41. #define USB_SUB_HID_BOOT 1
  42. /* some UID Protocols */
  43. #define USB_PROT_HID_NONE 0
  44. #define USB_PROT_HID_KEYBOARD 1
  45. #define USB_PROT_HID_MOUSE 2
  46. /* Sub STORAGE Classes */
  47. #define US_SC_RBC 1 /* Typically, flash devices */
  48. #define US_SC_8020 2 /* CD-ROM */
  49. #define US_SC_QIC 3 /* QIC-157 Tapes */
  50. #define US_SC_UFI 4 /* Floppy */
  51. #define US_SC_8070 5 /* Removable media */
  52. #define US_SC_SCSI 6 /* Transparent */
  53. #define US_SC_MIN US_SC_RBC
  54. #define US_SC_MAX US_SC_SCSI
  55. /* STORAGE Protocols */
  56. #define US_PR_CB 1 /* Control/Bulk w/o interrupt */
  57. #define US_PR_CBI 0 /* Control/Bulk/Interrupt */
  58. #define US_PR_BULK 0x50 /* bulk only */
  59. /* USB types */
  60. #define USB_TYPE_STANDARD (0x00 << 5)
  61. #define USB_TYPE_CLASS (0x01 << 5)
  62. #define USB_TYPE_VENDOR (0x02 << 5)
  63. #define USB_TYPE_RESERVED (0x03 << 5)
  64. /* USB recipients */
  65. #define USB_RECIP_DEVICE 0x00
  66. #define USB_RECIP_INTERFACE 0x01
  67. #define USB_RECIP_ENDPOINT 0x02
  68. #define USB_RECIP_OTHER 0x03
  69. /* USB directions */
  70. #define USB_DIR_OUT 0
  71. #define USB_DIR_IN 0x80
  72. /* Descriptor types */
  73. #define USB_DT_DEVICE 0x01
  74. #define USB_DT_CONFIG 0x02
  75. #define USB_DT_STRING 0x03
  76. #define USB_DT_INTERFACE 0x04
  77. #define USB_DT_ENDPOINT 0x05
  78. #define USB_DT_HID (USB_TYPE_CLASS | 0x01)
  79. #define USB_DT_REPORT (USB_TYPE_CLASS | 0x02)
  80. #define USB_DT_PHYSICAL (USB_TYPE_CLASS | 0x03)
  81. #define USB_DT_HUB (USB_TYPE_CLASS | 0x09)
  82. /* Descriptor sizes per descriptor type */
  83. #define USB_DT_DEVICE_SIZE 18
  84. #define USB_DT_CONFIG_SIZE 9
  85. #define USB_DT_INTERFACE_SIZE 9
  86. #define USB_DT_ENDPOINT_SIZE 7
  87. #define USB_DT_ENDPOINT_AUDIO_SIZE 9 /* Audio extension */
  88. #define USB_DT_HUB_NONVAR_SIZE 7
  89. #define USB_DT_HID_SIZE 9
  90. /* Endpoints */
  91. #define USB_ENDPOINT_NUMBER_MASK 0x0f /* in bEndpointAddress */
  92. #define USB_ENDPOINT_DIR_MASK 0x80
  93. #define USB_ENDPOINT_XFERTYPE_MASK 0x03 /* in bmAttributes */
  94. #define USB_ENDPOINT_XFER_CONTROL 0
  95. #define USB_ENDPOINT_XFER_ISOC 1
  96. #define USB_ENDPOINT_XFER_BULK 2
  97. #define USB_ENDPOINT_XFER_INT 3
  98. /* USB Packet IDs (PIDs) */
  99. #define USB_PID_UNDEF_0 0xf0
  100. #define USB_PID_OUT 0xe1
  101. #define USB_PID_ACK 0xd2
  102. #define USB_PID_DATA0 0xc3
  103. #define USB_PID_UNDEF_4 0xb4
  104. #define USB_PID_SOF 0xa5
  105. #define USB_PID_UNDEF_6 0x96
  106. #define USB_PID_UNDEF_7 0x87
  107. #define USB_PID_UNDEF_8 0x78
  108. #define USB_PID_IN 0x69
  109. #define USB_PID_NAK 0x5a
  110. #define USB_PID_DATA1 0x4b
  111. #define USB_PID_PREAMBLE 0x3c
  112. #define USB_PID_SETUP 0x2d
  113. #define USB_PID_STALL 0x1e
  114. #define USB_PID_UNDEF_F 0x0f
  115. /* Standard requests */
  116. #define USB_REQ_GET_STATUS 0x00
  117. #define USB_REQ_CLEAR_FEATURE 0x01
  118. #define USB_REQ_SET_FEATURE 0x03
  119. #define USB_REQ_SET_ADDRESS 0x05
  120. #define USB_REQ_GET_DESCRIPTOR 0x06
  121. #define USB_REQ_SET_DESCRIPTOR 0x07
  122. #define USB_REQ_GET_CONFIGURATION 0x08
  123. #define USB_REQ_SET_CONFIGURATION 0x09
  124. #define USB_REQ_GET_INTERFACE 0x0A
  125. #define USB_REQ_SET_INTERFACE 0x0B
  126. #define USB_REQ_SYNCH_FRAME 0x0C
  127. /* HID requests */
  128. #define USB_REQ_GET_REPORT 0x01
  129. #define USB_REQ_GET_IDLE 0x02
  130. #define USB_REQ_GET_PROTOCOL 0x03
  131. #define USB_REQ_SET_REPORT 0x09
  132. #define USB_REQ_SET_IDLE 0x0A
  133. #define USB_REQ_SET_PROTOCOL 0x0B
  134. /* "pipe" definitions */
  135. #define PIPE_ISOCHRONOUS 0
  136. #define PIPE_INTERRUPT 1
  137. #define PIPE_CONTROL 2
  138. #define PIPE_BULK 3
  139. #define PIPE_DEVEP_MASK 0x0007ff00
  140. #define USB_ISOCHRONOUS 0
  141. #define USB_INTERRUPT 1
  142. #define USB_CONTROL 2
  143. #define USB_BULK 3
  144. /* USB-status codes: */
  145. #define USB_ST_ACTIVE 0x1 /* TD is active */
  146. #define USB_ST_STALLED 0x2 /* TD is stalled */
  147. #define USB_ST_BUF_ERR 0x4 /* buffer error */
  148. #define USB_ST_BABBLE_DET 0x8 /* Babble detected */
  149. #define USB_ST_NAK_REC 0x10 /* NAK Received*/
  150. #define USB_ST_CRC_ERR 0x20 /* CRC/timeout Error */
  151. #define USB_ST_BIT_ERR 0x40 /* Bitstuff error */
  152. #define USB_ST_NOT_PROC 0x80000000L /* Not yet processed */
  153. /*************************************************************************
  154. * Hub defines
  155. */
  156. /*
  157. * Hub request types
  158. */
  159. #define USB_RT_HUB (USB_TYPE_CLASS | USB_RECIP_DEVICE)
  160. #define USB_RT_PORT (USB_TYPE_CLASS | USB_RECIP_OTHER)
  161. /*
  162. * Hub Class feature numbers
  163. */
  164. #define C_HUB_LOCAL_POWER 0
  165. #define C_HUB_OVER_CURRENT 1
  166. /*
  167. * Port feature numbers
  168. */
  169. #define USB_PORT_FEAT_CONNECTION 0
  170. #define USB_PORT_FEAT_ENABLE 1
  171. #define USB_PORT_FEAT_SUSPEND 2
  172. #define USB_PORT_FEAT_OVER_CURRENT 3
  173. #define USB_PORT_FEAT_RESET 4
  174. #define USB_PORT_FEAT_POWER 8
  175. #define USB_PORT_FEAT_LOWSPEED 9
  176. #define USB_PORT_FEAT_C_CONNECTION 16
  177. #define USB_PORT_FEAT_C_ENABLE 17
  178. #define USB_PORT_FEAT_C_SUSPEND 18
  179. #define USB_PORT_FEAT_C_OVER_CURRENT 19
  180. #define USB_PORT_FEAT_C_RESET 20
  181. /* wPortStatus bits */
  182. #define USB_PORT_STAT_CONNECTION 0x0001
  183. #define USB_PORT_STAT_ENABLE 0x0002
  184. #define USB_PORT_STAT_SUSPEND 0x0004
  185. #define USB_PORT_STAT_OVERCURRENT 0x0008
  186. #define USB_PORT_STAT_RESET 0x0010
  187. #define USB_PORT_STAT_POWER 0x0100
  188. #define USB_PORT_STAT_LOW_SPEED 0x0200
  189. /* wPortChange bits */
  190. #define USB_PORT_STAT_C_CONNECTION 0x0001
  191. #define USB_PORT_STAT_C_ENABLE 0x0002
  192. #define USB_PORT_STAT_C_SUSPEND 0x0004
  193. #define USB_PORT_STAT_C_OVERCURRENT 0x0008
  194. #define USB_PORT_STAT_C_RESET 0x0010
  195. /* wHubCharacteristics (masks) */
  196. #define HUB_CHAR_LPSM 0x0003
  197. #define HUB_CHAR_COMPOUND 0x0004
  198. #define HUB_CHAR_OCPM 0x0018
  199. /*
  200. *Hub Status & Hub Change bit masks
  201. */
  202. #define HUB_STATUS_LOCAL_POWER 0x0001
  203. #define HUB_STATUS_OVERCURRENT 0x0002
  204. #define HUB_CHANGE_LOCAL_POWER 0x0001
  205. #define HUB_CHANGE_OVERCURRENT 0x0002
  206. #endif /*_USB_DEFS_H_ */