usb_ch9.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file holds USB constants and structures that are needed for USB
  3.  * device APIs.  These are used by the USB device model, which is defined
  4.  * in chapter 9 of the USB 2.0 specification.  Linux has several APIs in C
  5.  * that need these:
  6.  *
  7.  * - the master/host side Linux-USB kernel driver API;
  8.  * - the "usbfs" user space API; and
  9.  * - the Linux "gadget" slave/device/peripheral side driver API.
  10.  *
  11.  * USB 2.0 adds an additional "On The Go" (OTG) mode, which lets systems
  12.  * act either as a USB master/host or as a USB slave/device.  That means
  13.  * the master and slave side APIs benefit from working well together.
  14.  *
  15.  * There's also "Wireless USB", using low power short range radios for
  16.  * peripheral interconnection but otherwise building on the USB framework.
  17.  */
  18. #ifndef __LINUX_USB_CH9_H
  19. #define __LINUX_USB_CH9_H
  20. #include <linux/types.h> /* __u8 etc */
  21. /*-------------------------------------------------------------------------*/
  22. /* CONTROL REQUEST SUPPORT */
  23. /*
  24.  * USB directions
  25.  *
  26.  * This bit flag is used in endpoint descriptors' bEndpointAddress field.
  27.  * It's also one of three fields in control requests bRequestType.
  28.  */
  29. #define USB_DIR_OUT 0 /* to device */
  30. #define USB_DIR_IN 0x80 /* to host */
  31. /*
  32.  * USB types, the second of three bRequestType fields
  33.  */
  34. #define USB_TYPE_MASK (0x03 << 5)
  35. #define USB_TYPE_STANDARD (0x00 << 5)
  36. #define USB_TYPE_CLASS (0x01 << 5)
  37. #define USB_TYPE_VENDOR (0x02 << 5)
  38. #define USB_TYPE_RESERVED (0x03 << 5)
  39. /*
  40.  * USB recipients, the third of three bRequestType fields
  41.  */
  42. #define USB_RECIP_MASK 0x1f
  43. #define USB_RECIP_DEVICE 0x00
  44. #define USB_RECIP_INTERFACE 0x01
  45. #define USB_RECIP_ENDPOINT 0x02
  46. #define USB_RECIP_OTHER 0x03
  47. /*
  48.  * Standard requests, for the bRequest field of a SETUP packet.
  49.  *
  50.  * These are qualified by the bRequestType field, so that for example
  51.  * TYPE_CLASS or TYPE_VENDOR specific feature flags could be retrieved
  52.  * by a GET_STATUS request.
  53.  */
  54. #define USB_REQ_GET_STATUS 0x00
  55. #define USB_REQ_CLEAR_FEATURE 0x01
  56. #define USB_REQ_SET_FEATURE 0x03
  57. #define USB_REQ_SET_ADDRESS 0x05
  58. #define USB_REQ_GET_DESCRIPTOR 0x06
  59. #define USB_REQ_SET_DESCRIPTOR 0x07
  60. #define USB_REQ_GET_CONFIGURATION 0x08
  61. #define USB_REQ_SET_CONFIGURATION 0x09
  62. #define USB_REQ_GET_INTERFACE 0x0A
  63. #define USB_REQ_SET_INTERFACE 0x0B
  64. #define USB_REQ_SYNCH_FRAME 0x0C
  65. #define USB_REQ_SET_ENCRYPTION 0x0D /* Wireless USB */
  66. #define USB_REQ_GET_ENCRYPTION 0x0E
  67. #define USB_REQ_SET_HANDSHAKE 0x0F
  68. #define USB_REQ_GET_HANDSHAKE 0x10
  69. #define USB_REQ_SET_CONNECTION 0x11
  70. #define USB_REQ_SET_SECURITY_DATA 0x12
  71. #define USB_REQ_GET_SECURITY_DATA 0x13
  72. #define USB_REQ_SET_WUSB_DATA 0x14
  73. #define USB_REQ_LOOPBACK_DATA_WRITE 0x15
  74. #define USB_REQ_LOOPBACK_DATA_READ 0x16
  75. #define USB_REQ_SET_INTERFACE_DS 0x17
  76. /*
  77.  * USB feature flags are written using USB_REQ_{CLEAR,SET}_FEATURE, and
  78.  * are read as a bit array returned by USB_REQ_GET_STATUS.  (So there
  79.  * are at most sixteen features of each type.)
  80.  */
  81. #define USB_DEVICE_SELF_POWERED 0 /* (read only) */
  82. #define USB_DEVICE_REMOTE_WAKEUP 1 /* dev may initiate wakeup */
  83. #define USB_DEVICE_TEST_MODE 2 /* (wired high speed only) */
  84. #define USB_DEVICE_BATTERY 2 /* (wireless) */
  85. #define USB_DEVICE_B_HNP_ENABLE 3 /* (otg) dev may initiate HNP */
  86. #define USB_DEVICE_WUSB_DEVICE 3 /* (wireless)*/
  87. #define USB_DEVICE_A_HNP_SUPPORT 4 /* (otg) RH port supports HNP */
  88. #define USB_DEVICE_A_ALT_HNP_SUPPORT 5 /* (otg) other RH port does */
  89. #define USB_DEVICE_DEBUG_MODE 6 /* (special devices only) */
  90. #define USB_ENDPOINT_HALT 0 /* IN/OUT will STALL */
  91. /**
  92.  * struct usb_ctrlrequest - SETUP data for a USB device control request
  93.  * @bRequestType: matches the USB bmRequestType field
  94.  * @bRequest: matches the USB bRequest field
  95.  * @wValue: matches the USB wValue field (le16 byte order)
  96.  * @wIndex: matches the USB wIndex field (le16 byte order)
  97.  * @wLength: matches the USB wLength field (le16 byte order)
  98.  *
  99.  * This structure is used to send control requests to a USB device.  It matches
  100.  * the different fields of the USB 2.0 Spec section 9.3, table 9-2.  See the
  101.  * USB spec for a fuller description of the different fields, and what they are
  102.  * used for.
  103.  *
  104.  * Note that the driver for any interface can issue control requests.
  105.  * For most devices, interfaces don't coordinate with each other, so
  106.  * such requests may be made at any time.
  107.  */
  108. struct usb_ctrlrequest {
  109. __u8 bRequestType;
  110. __u8 bRequest;
  111. __le16 wValue;
  112. __le16 wIndex;
  113. __le16 wLength;
  114. } __attribute__ ((packed));
  115. /*-------------------------------------------------------------------------*/
  116. /*
  117.  * STANDARD DESCRIPTORS ... as returned by GET_DESCRIPTOR, or
  118.  * (rarely) accepted by SET_DESCRIPTOR.
  119.  *
  120.  * Note that all multi-byte values here are encoded in little endian
  121.  * byte order "on the wire".  But when exposed through Linux-USB APIs,
  122.  * they've been converted to cpu byte order.
  123.  */
  124. /*
  125.  * Descriptor types ... USB 2.0 spec table 9.5
  126.  */
  127. #define USB_DT_DEVICE 0x01
  128. #define USB_DT_CONFIG 0x02
  129. #define USB_DT_STRING 0x03
  130. #define USB_DT_INTERFACE 0x04
  131. #define USB_DT_ENDPOINT 0x05
  132. #define USB_DT_DEVICE_QUALIFIER 0x06
  133. #define USB_DT_OTHER_SPEED_CONFIG 0x07
  134. #define USB_DT_INTERFACE_POWER 0x08
  135. /* these are from a minor usb 2.0 revision (ECN) */
  136. #define USB_DT_OTG 0x09
  137. #define USB_DT_DEBUG 0x0a
  138. #define USB_DT_INTERFACE_ASSOCIATION 0x0b
  139. /* these are from the Wireless USB spec */
  140. #define USB_DT_SECURITY 0x0c
  141. #define USB_DT_KEY 0x0d
  142. #define USB_DT_ENCRYPTION_TYPE 0x0e
  143. #define USB_DT_BOS 0x0f
  144. #define USB_DT_DEVICE_CAPABILITY 0x10
  145. #define USB_DT_WIRELESS_ENDPOINT_COMP 0x11
  146. /* conventional codes for class-specific descriptors */
  147. #define USB_DT_CS_DEVICE 0x21
  148. #define USB_DT_CS_CONFIG 0x22
  149. #define USB_DT_CS_STRING 0x23
  150. #define USB_DT_CS_INTERFACE 0x24
  151. #define USB_DT_CS_ENDPOINT 0x25
  152. /* All standard descriptors have these 2 fields at the beginning */
  153. struct usb_descriptor_header {
  154. __u8  bLength;
  155. __u8  bDescriptorType;
  156. } __attribute__ ((packed));
  157. /*-------------------------------------------------------------------------*/
  158. /* USB_DT_DEVICE: Device descriptor */
  159. struct usb_device_descriptor {
  160. __u8  bLength;
  161. __u8  bDescriptorType;
  162. __le16 bcdUSB;
  163. __u8  bDeviceClass;
  164. __u8  bDeviceSubClass;
  165. __u8  bDeviceProtocol;
  166. __u8  bMaxPacketSize0;
  167. __le16 idVendor;
  168. __le16 idProduct;
  169. __le16 bcdDevice;
  170. __u8  iManufacturer;
  171. __u8  iProduct;
  172. __u8  iSerialNumber;
  173. __u8  bNumConfigurations;
  174. } __attribute__ ((packed));
  175. #define USB_DT_DEVICE_SIZE 18
  176. /*
  177.  * Device and/or Interface Class codes
  178.  * as found in bDeviceClass or bInterfaceClass
  179.  * and defined by www.usb.org documents
  180.  */
  181. #define USB_CLASS_PER_INTERFACE 0 /* for DeviceClass */
  182. #define USB_CLASS_AUDIO 1
  183. #define USB_CLASS_COMM 2
  184. #define USB_CLASS_HID 3
  185. #define USB_CLASS_PHYSICAL 5
  186. #define USB_CLASS_STILL_IMAGE 6
  187. #define USB_CLASS_PRINTER 7
  188. #define USB_CLASS_MASS_STORAGE 8
  189. #define USB_CLASS_HUB 9
  190. #define USB_CLASS_CDC_DATA 0x0a
  191. #define USB_CLASS_CSCID 0x0b /* chip+ smart card */
  192. #define USB_CLASS_CONTENT_SEC 0x0d /* content security */
  193. #define USB_CLASS_VIDEO 0x0e
  194. #define USB_CLASS_WIRELESS_CONTROLLER 0xe0
  195. #define USB_CLASS_APP_SPEC 0xfe
  196. #define USB_CLASS_VENDOR_SPEC 0xff
  197. /*-------------------------------------------------------------------------*/
  198. /* USB_DT_CONFIG: Configuration descriptor information.
  199.  *
  200.  * USB_DT_OTHER_SPEED_CONFIG is the same descriptor, except that the
  201.  * descriptor type is different.  Highspeed-capable devices can look
  202.  * different depending on what speed they're currently running.  Only
  203.  * devices with a USB_DT_DEVICE_QUALIFIER have any OTHER_SPEED_CONFIG
  204.  * descriptors.
  205.  */
  206. struct usb_config_descriptor {
  207. __u8  bLength;
  208. __u8  bDescriptorType;
  209. __le16 wTotalLength;
  210. __u8  bNumInterfaces;
  211. __u8  bConfigurationValue;
  212. __u8  iConfiguration;
  213. __u8  bmAttributes;
  214. __u8  bMaxPower;
  215. } __attribute__ ((packed));
  216. #define USB_DT_CONFIG_SIZE 9
  217. /* from config descriptor bmAttributes */
  218. #define USB_CONFIG_ATT_ONE (1 << 7) /* must be set */
  219. #define USB_CONFIG_ATT_SELFPOWER (1 << 6) /* self powered */
  220. #define USB_CONFIG_ATT_WAKEUP (1 << 5) /* can wakeup */
  221. #define USB_CONFIG_ATT_BATTERY (1 << 4) /* battery powered */
  222. /*-------------------------------------------------------------------------*/
  223. /* USB_DT_STRING: String descriptor */
  224. struct usb_string_descriptor {
  225. __u8  bLength;
  226. __u8  bDescriptorType;
  227. __le16 wData[1]; /* UTF-16LE encoded */
  228. } __attribute__ ((packed));
  229. /* note that "string" zero is special, it holds language codes that
  230.  * the device supports, not Unicode characters.
  231.  */
  232. /*-------------------------------------------------------------------------*/
  233. /* USB_DT_INTERFACE: Interface descriptor */
  234. struct usb_interface_descriptor {
  235. __u8  bLength;
  236. __u8  bDescriptorType;
  237. __u8  bInterfaceNumber;
  238. __u8  bAlternateSetting;
  239. __u8  bNumEndpoints;
  240. __u8  bInterfaceClass;
  241. __u8  bInterfaceSubClass;
  242. __u8  bInterfaceProtocol;
  243. __u8  iInterface;
  244. } __attribute__ ((packed));
  245. #define USB_DT_INTERFACE_SIZE 9
  246. /*-------------------------------------------------------------------------*/
  247. /* USB_DT_ENDPOINT: Endpoint descriptor */
  248. struct usb_endpoint_descriptor {
  249. __u8  bLength;
  250. __u8  bDescriptorType;
  251. __u8  bEndpointAddress;
  252. __u8  bmAttributes;
  253. __le16 wMaxPacketSize;
  254. __u8  bInterval;
  255. /* NOTE:  these two are _only_ in audio endpoints. */
  256. /* use USB_DT_ENDPOINT*_SIZE in bLength, not sizeof. */
  257. __u8  bRefresh;
  258. __u8  bSynchAddress;
  259. } __attribute__ ((packed));
  260. #define USB_DT_ENDPOINT_SIZE 7
  261. #define USB_DT_ENDPOINT_AUDIO_SIZE 9 /* Audio extension */
  262. /*
  263.  * Endpoints
  264.  */
  265. #define USB_ENDPOINT_NUMBER_MASK 0x0f /* in bEndpointAddress */
  266. #define USB_ENDPOINT_DIR_MASK 0x80
  267. #define USB_ENDPOINT_XFERTYPE_MASK 0x03 /* in bmAttributes */
  268. #define USB_ENDPOINT_XFER_CONTROL 0
  269. #define USB_ENDPOINT_XFER_ISOC 1
  270. #define USB_ENDPOINT_XFER_BULK 2
  271. #define USB_ENDPOINT_XFER_INT 3
  272. #define USB_ENDPOINT_MAX_ADJUSTABLE 0x80
  273. /*-------------------------------------------------------------------------*/
  274. /* USB_DT_DEVICE_QUALIFIER: Device Qualifier descriptor */
  275. struct usb_qualifier_descriptor {
  276. __u8  bLength;
  277. __u8  bDescriptorType;
  278. __le16 bcdUSB;
  279. __u8  bDeviceClass;
  280. __u8  bDeviceSubClass;
  281. __u8  bDeviceProtocol;
  282. __u8  bMaxPacketSize0;
  283. __u8  bNumConfigurations;
  284. __u8  bRESERVED;
  285. } __attribute__ ((packed));
  286. /*-------------------------------------------------------------------------*/
  287. /* USB_DT_OTG (from OTG 1.0a supplement) */
  288. struct usb_otg_descriptor {
  289. __u8  bLength;
  290. __u8  bDescriptorType;
  291. __u8  bmAttributes; /* support for HNP, SRP, etc */
  292. } __attribute__ ((packed));
  293. /* from usb_otg_descriptor.bmAttributes */
  294. #define USB_OTG_SRP (1 << 0)
  295. #define USB_OTG_HNP (1 << 1) /* swap host/device roles */
  296. /*-------------------------------------------------------------------------*/
  297. /* USB_DT_DEBUG:  for special highspeed devices, replacing serial console */
  298. struct usb_debug_descriptor {
  299. __u8  bLength;
  300. __u8  bDescriptorType;
  301. /* bulk endpoints with 8 byte maxpacket */
  302. __u8  bDebugInEndpoint;
  303. __u8  bDebugOutEndpoint;
  304. };
  305. /*-------------------------------------------------------------------------*/
  306. /* USB_DT_INTERFACE_ASSOCIATION: groups interfaces */
  307. struct usb_interface_assoc_descriptor {
  308. __u8  bLength;
  309. __u8  bDescriptorType;
  310. __u8  bFirstInterface;
  311. __u8  bInterfaceCount;
  312. __u8  bFunctionClass;
  313. __u8  bFunctionSubClass;
  314. __u8  bFunctionProtocol;
  315. __u8  iFunction;
  316. } __attribute__ ((packed));
  317. /*-------------------------------------------------------------------------*/
  318. /* USB_DT_SECURITY:  group of wireless security descriptors, including
  319.  * encryption types available for setting up a CC/association.
  320.  */
  321. struct usb_security_descriptor {
  322. __u8  bLength;
  323. __u8  bDescriptorType;
  324. __le16 wTotalLength;
  325. __u8  bNumEncryptionTypes;
  326. };
  327. /*-------------------------------------------------------------------------*/
  328. /* USB_DT_KEY:  used with {GET,SET}_SECURITY_DATA; only public keys
  329.  * may be retrieved.
  330.  */
  331. struct usb_key_descriptor {
  332. __u8  bLength;
  333. __u8  bDescriptorType;
  334. __u8  tTKID[3];
  335. __u8  bReserved;
  336. __u8  bKeyData[0];
  337. };
  338. /*-------------------------------------------------------------------------*/
  339. /* USB_DT_ENCRYPTION_TYPE:  bundled in DT_SECURITY groups */
  340. struct usb_encryption_descriptor {
  341. __u8  bLength;
  342. __u8  bDescriptorType;
  343. __u8  bEncryptionType;
  344. #define USB_ENC_TYPE_UNSECURE 0
  345. #define USB_ENC_TYPE_WIRED 1 /* non-wireless mode */
  346. #define USB_ENC_TYPE_CCM_1 2 /* aes128/cbc session */
  347. #define USB_ENC_TYPE_RSA_1 3 /* rsa3072/sha1 auth */
  348. __u8  bEncryptionValue; /* use in SET_ENCRYPTION */
  349. __u8  bAuthKeyIndex;
  350. };
  351. /*-------------------------------------------------------------------------*/
  352. /* USB_DT_BOS:  group of wireless capabilities */
  353. struct usb_bos_descriptor {
  354. __u8  bLength;
  355. __u8  bDescriptorType;
  356. __le16 wTotalLength;
  357. __u8  bNumDeviceCaps;
  358. };
  359. /*-------------------------------------------------------------------------*/
  360. /* USB_DT_DEVICE_CAPABILITY:  grouped with BOS */
  361. struct usb_dev_cap_header {
  362. __u8  bLength;
  363. __u8  bDescriptorType;
  364. __u8  bDevCapabilityType;
  365. };
  366. #define USB_CAP_TYPE_WIRELESS_USB 1
  367. struct usb_wireless_cap_descriptor { /* Ultra Wide Band */
  368. __u8  bLength;
  369. __u8  bDescriptorType;
  370. __u8  bDevCapabilityType;
  371. __u8  bmAttributes;
  372. #define USB_WIRELESS_P2P_DRD (1 << 1)
  373. #define USB_WIRELESS_BEACON_MASK (3 << 2)
  374. #define USB_WIRELESS_BEACON_SELF (1 << 2)
  375. #define USB_WIRELESS_BEACON_DIRECTED (2 << 2)
  376. #define USB_WIRELESS_BEACON_NONE (3 << 2)
  377. __le16 wPHYRates; /* bit rates, Mbps */
  378. #define USB_WIRELESS_PHY_53 (1 << 0) /* always set */
  379. #define USB_WIRELESS_PHY_80 (1 << 1)
  380. #define USB_WIRELESS_PHY_107 (1 << 2) /* always set */
  381. #define USB_WIRELESS_PHY_160 (1 << 3)
  382. #define USB_WIRELESS_PHY_200 (1 << 4) /* always set */
  383. #define USB_WIRELESS_PHY_320 (1 << 5)
  384. #define USB_WIRELESS_PHY_400 (1 << 6)
  385. #define USB_WIRELESS_PHY_480 (1 << 7)
  386. __u8  bmTFITXPowerInfo; /* TFI power levels */
  387. __u8  bmFFITXPowerInfo; /* FFI power levels */
  388. __le16 bmBandGroup;
  389. __u8  bReserved;
  390. };
  391. /*-------------------------------------------------------------------------*/
  392. /* USB_DT_WIRELESS_ENDPOINT_COMP:  companion descriptor associated with
  393.  * each endpoint descriptor for a wireless device
  394.  */
  395. struct usb_wireless_ep_comp_descriptor {
  396. __u8  bLength;
  397. __u8  bDescriptorType;
  398. __u8  bMaxBurst;
  399. __u8  bMaxSequence;
  400. __le16 wMaxStreamDelay;
  401. __le16 wOverTheAirPacketSize;
  402. __u8  bOverTheAirInterval;
  403. __u8  bmCompAttributes;
  404. #define USB_ENDPOINT_SWITCH_MASK 0x03 /* in bmCompAttributes */
  405. #define USB_ENDPOINT_SWITCH_NO 0
  406. #define USB_ENDPOINT_SWITCH_SWITCH 1
  407. #define USB_ENDPOINT_SWITCH_SCALE 2
  408. };
  409. /*-------------------------------------------------------------------------*/
  410. /* USB_REQ_SET_HANDSHAKE is a four-way handshake used between a wireless
  411.  * host and a device for connection set up, mutual authentication, and
  412.  * exchanging short lived session keys.  The handshake depends on a CC.
  413.  */
  414. struct usb_handshake {
  415. __u8 bMessageNumber;
  416. __u8 bStatus;
  417. __u8 tTKID[3];
  418. __u8 bReserved;
  419. __u8 CDID[16];
  420. __u8 nonce[16];
  421. __u8 MIC[8];
  422. };
  423. /*-------------------------------------------------------------------------*/
  424. /* USB_REQ_SET_CONNECTION modifies or revokes a connection context (CC).
  425.  * A CC may also be set up using non-wireless secure channels (including
  426.  * wired USB!), and some devices may support CCs with multiple hosts.
  427.  */
  428. struct usb_connection_context {
  429. __u8 CHID[16]; /* persistent host id */
  430. __u8 CDID[16]; /* device id (unique w/in host context) */
  431. __u8 CK[16]; /* connection key */
  432. };
  433. /*-------------------------------------------------------------------------*/
  434. /* USB 2.0 defines three speeds, here's how Linux identifies them */
  435. enum usb_device_speed {
  436. USB_SPEED_UNKNOWN = 0, /* enumerating */
  437. USB_SPEED_LOW, USB_SPEED_FULL, /* usb 1.1 */
  438. USB_SPEED_HIGH, /* usb 2.0 */
  439. USB_SPEED_VARIABLE, /* wireless (usb 2.5) */
  440. };
  441. enum usb_device_state {
  442. /* NOTATTACHED isn't in the USB spec, and this state acts
  443.  * the same as ATTACHED ... but it's clearer this way.
  444.  */
  445. USB_STATE_NOTATTACHED = 0,
  446. /* the chapter 9 device states */
  447. USB_STATE_ATTACHED,
  448. USB_STATE_POWERED,
  449. USB_STATE_DEFAULT, /* limited function */
  450. USB_STATE_ADDRESS,
  451. USB_STATE_CONFIGURED, /* most functions */
  452. USB_STATE_SUSPENDED
  453. /* NOTE:  there are actually four different SUSPENDED
  454.  * states, returning to POWERED, DEFAULT, ADDRESS, or
  455.  * CONFIGURED respectively when SOF tokens flow again.
  456.  */
  457. };
  458. #endif /* __LINUX_USB_CH9_H */