f_accessory.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * Gadget Function Driver for Android USB accessories
  3. *
  4. * Copyright (C) 2011 Google, Inc.
  5. * Author: Mike Lockwood <lockwood@android.com>
  6. *
  7. * This software is licensed under the terms of the GNU General Public
  8. * License version 2, as published by the Free Software Foundation, and
  9. * may be copied, distributed, and modified under those terms.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. */
  17. #ifndef __LINUX_USB_F_ACCESSORY_H
  18. #define __LINUX_USB_F_ACCESSORY_H
  19. /* Use Google Vendor ID when in accessory mode */
  20. #define USB_ACCESSORY_VENDOR_ID 0x18D1
  21. /* Product ID to use when in accessory mode */
  22. #define USB_ACCESSORY_PRODUCT_ID 0x2D00
  23. /* Product ID to use when in accessory mode and adb is enabled */
  24. #define USB_ACCESSORY_ADB_PRODUCT_ID 0x2D01
  25. /* Indexes for strings sent by the host via ACCESSORY_SEND_STRING */
  26. #define ACCESSORY_STRING_MANUFACTURER 0
  27. #define ACCESSORY_STRING_MODEL 1
  28. #define ACCESSORY_STRING_DESCRIPTION 2
  29. #define ACCESSORY_STRING_VERSION 3
  30. #define ACCESSORY_STRING_URI 4
  31. #define ACCESSORY_STRING_SERIAL 5
  32. /* Control request for retrieving device's protocol version
  33. *
  34. * requestType: USB_DIR_IN | USB_TYPE_VENDOR
  35. * request: ACCESSORY_GET_PROTOCOL
  36. * value: 0
  37. * index: 0
  38. * data version number (16 bits little endian)
  39. * 1 for original accessory support
  40. * 2 adds HID and device to host audio support
  41. */
  42. #define ACCESSORY_GET_PROTOCOL 51
  43. /* Control request for host to send a string to the device
  44. *
  45. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  46. * request: ACCESSORY_SEND_STRING
  47. * value: 0
  48. * index: string ID
  49. * data zero terminated UTF8 string
  50. *
  51. * The device can later retrieve these strings via the
  52. * ACCESSORY_GET_STRING_* ioctls
  53. */
  54. #define ACCESSORY_SEND_STRING 52
  55. /* Control request for starting device in accessory mode.
  56. * The host sends this after setting all its strings to the device.
  57. *
  58. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  59. * request: ACCESSORY_START
  60. * value: 0
  61. * index: 0
  62. * data none
  63. */
  64. #define ACCESSORY_START 53
  65. /* Control request for registering a HID device.
  66. * Upon registering, a unique ID is sent by the accessory in the
  67. * value parameter. This ID will be used for future commands for
  68. * the device
  69. *
  70. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  71. * request: ACCESSORY_REGISTER_HID_DEVICE
  72. * value: Accessory assigned ID for the HID device
  73. * index: total length of the HID report descriptor
  74. * data none
  75. */
  76. #define ACCESSORY_REGISTER_HID 54
  77. /* Control request for unregistering a HID device.
  78. *
  79. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  80. * request: ACCESSORY_REGISTER_HID
  81. * value: Accessory assigned ID for the HID device
  82. * index: 0
  83. * data none
  84. */
  85. #define ACCESSORY_UNREGISTER_HID 55
  86. /* Control request for sending the HID report descriptor.
  87. * If the HID descriptor is longer than the endpoint zero max packet size,
  88. * the descriptor will be sent in multiple ACCESSORY_SET_HID_REPORT_DESC
  89. * commands. The data for the descriptor must be sent sequentially
  90. * if multiple packets are needed.
  91. *
  92. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  93. * request: ACCESSORY_SET_HID_REPORT_DESC
  94. * value: Accessory assigned ID for the HID device
  95. * index: offset of data in descriptor
  96. * (needed when HID descriptor is too big for one packet)
  97. * data the HID report descriptor
  98. */
  99. #define ACCESSORY_SET_HID_REPORT_DESC 56
  100. /* Control request for sending HID events.
  101. *
  102. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  103. * request: ACCESSORY_SEND_HID_EVENT
  104. * value: Accessory assigned ID for the HID device
  105. * index: 0
  106. * data the HID report for the event
  107. */
  108. #define ACCESSORY_SEND_HID_EVENT 57
  109. /* Control request for setting the audio mode.
  110. *
  111. * requestType: USB_DIR_OUT | USB_TYPE_VENDOR
  112. * request: ACCESSORY_SET_AUDIO_MODE
  113. * value: 0 - no audio
  114. * 1 - device to host, 44100 16-bit stereo PCM
  115. * index: 0
  116. * data none
  117. */
  118. #define ACCESSORY_SET_AUDIO_MODE 58
  119. /* ioctls for retrieving strings set by the host */
  120. #define ACCESSORY_GET_STRING_MANUFACTURER _IOW('M', 1, char[256])
  121. #define ACCESSORY_GET_STRING_MODEL _IOW('M', 2, char[256])
  122. #define ACCESSORY_GET_STRING_DESCRIPTION _IOW('M', 3, char[256])
  123. #define ACCESSORY_GET_STRING_VERSION _IOW('M', 4, char[256])
  124. #define ACCESSORY_GET_STRING_URI _IOW('M', 5, char[256])
  125. #define ACCESSORY_GET_STRING_SERIAL _IOW('M', 6, char[256])
  126. /* returns 1 if there is a start request pending */
  127. #define ACCESSORY_IS_START_REQUESTED _IO('M', 7)
  128. /* returns audio mode (set via the ACCESSORY_SET_AUDIO_MODE control request) */
  129. #define ACCESSORY_GET_AUDIO_MODE _IO('M', 8)
  130. #endif /* __LINUX_USB_F_ACCESSORY_H */