uvcvideo.rst 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. The Linux USB Video Class (UVC) driver
  2. ======================================
  3. This file documents some driver-specific aspects of the UVC driver, such as
  4. driver-specific ioctls and implementation notes.
  5. Questions and remarks can be sent to the Linux UVC development mailing list at
  6. linux-uvc-devel@lists.berlios.de.
  7. Extension Unit (XU) support
  8. ---------------------------
  9. Introduction
  10. ~~~~~~~~~~~~
  11. The UVC specification allows for vendor-specific extensions through extension
  12. units (XUs). The Linux UVC driver supports extension unit controls (XU controls)
  13. through two separate mechanisms:
  14. - through mappings of XU controls to V4L2 controls
  15. - through a driver-specific ioctl interface
  16. The first one allows generic V4L2 applications to use XU controls by mapping
  17. certain XU controls onto V4L2 controls, which then show up during ordinary
  18. control enumeration.
  19. The second mechanism requires uvcvideo-specific knowledge for the application to
  20. access XU controls but exposes the entire UVC XU concept to user space for
  21. maximum flexibility.
  22. Both mechanisms complement each other and are described in more detail below.
  23. Control mappings
  24. ~~~~~~~~~~~~~~~~
  25. The UVC driver provides an API for user space applications to define so-called
  26. control mappings at runtime. These allow for individual XU controls or byte
  27. ranges thereof to be mapped to new V4L2 controls. Such controls appear and
  28. function exactly like normal V4L2 controls (i.e. the stock controls, such as
  29. brightness, contrast, etc.). However, reading or writing of such a V4L2 controls
  30. triggers a read or write of the associated XU control.
  31. The ioctl used to create these control mappings is called UVCIOC_CTRL_MAP.
  32. Previous driver versions (before 0.2.0) required another ioctl to be used
  33. beforehand (UVCIOC_CTRL_ADD) to pass XU control information to the UVC driver.
  34. This is no longer necessary as newer uvcvideo versions query the information
  35. directly from the device.
  36. For details on the UVCIOC_CTRL_MAP ioctl please refer to the section titled
  37. "IOCTL reference" below.
  38. 3. Driver specific XU control interface
  39. For applications that need to access XU controls directly, e.g. for testing
  40. purposes, firmware upload, or accessing binary controls, a second mechanism to
  41. access XU controls is provided in the form of a driver-specific ioctl, namely
  42. UVCIOC_CTRL_QUERY.
  43. A call to this ioctl allows applications to send queries to the UVC driver that
  44. directly map to the low-level UVC control requests.
  45. In order to make such a request the UVC unit ID of the control's extension unit
  46. and the control selector need to be known. This information either needs to be
  47. hardcoded in the application or queried using other ways such as by parsing the
  48. UVC descriptor or, if available, using the media controller API to enumerate a
  49. device's entities.
  50. Unless the control size is already known it is necessary to first make a
  51. UVC_GET_LEN requests in order to be able to allocate a sufficiently large buffer
  52. and set the buffer size to the correct value. Similarly, to find out whether
  53. UVC_GET_CUR or UVC_SET_CUR are valid requests for a given control, a
  54. UVC_GET_INFO request should be made. The bits 0 (GET supported) and 1 (SET
  55. supported) of the resulting byte indicate which requests are valid.
  56. With the addition of the UVCIOC_CTRL_QUERY ioctl the UVCIOC_CTRL_GET and
  57. UVCIOC_CTRL_SET ioctls have become obsolete since their functionality is a
  58. subset of the former ioctl. For the time being they are still supported but
  59. application developers are encouraged to use UVCIOC_CTRL_QUERY instead.
  60. For details on the UVCIOC_CTRL_QUERY ioctl please refer to the section titled
  61. "IOCTL reference" below.
  62. Security
  63. ~~~~~~~~
  64. The API doesn't currently provide a fine-grained access control facility. The
  65. UVCIOC_CTRL_ADD and UVCIOC_CTRL_MAP ioctls require super user permissions.
  66. Suggestions on how to improve this are welcome.
  67. Debugging
  68. ~~~~~~~~~
  69. In order to debug problems related to XU controls or controls in general it is
  70. recommended to enable the UVC_TRACE_CONTROL bit in the module parameter 'trace'.
  71. This causes extra output to be written into the system log.
  72. IOCTL reference
  73. ~~~~~~~~~~~~~~~
  74. UVCIOC_CTRL_MAP - Map a UVC control to a V4L2 control
  75. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  76. Argument: struct uvc_xu_control_mapping
  77. **Description**:
  78. This ioctl creates a mapping between a UVC control or part of a UVC
  79. control and a V4L2 control. Once mappings are defined, userspace
  80. applications can access vendor-defined UVC control through the V4L2
  81. control API.
  82. To create a mapping, applications fill the uvc_xu_control_mapping
  83. structure with information about an existing UVC control defined with
  84. UVCIOC_CTRL_ADD and a new V4L2 control.
  85. A UVC control can be mapped to several V4L2 controls. For instance,
  86. a UVC pan/tilt control could be mapped to separate pan and tilt V4L2
  87. controls. The UVC control is divided into non overlapping fields using
  88. the 'size' and 'offset' fields and are then independently mapped to
  89. V4L2 control.
  90. For signed integer V4L2 controls the data_type field should be set to
  91. UVC_CTRL_DATA_TYPE_SIGNED. Other values are currently ignored.
  92. **Return value**:
  93. On success 0 is returned. On error -1 is returned and errno is set
  94. appropriately.
  95. ENOMEM
  96. Not enough memory to perform the operation.
  97. EPERM
  98. Insufficient privileges (super user privileges are required).
  99. EINVAL
  100. No such UVC control.
  101. EOVERFLOW
  102. The requested offset and size would overflow the UVC control.
  103. EEXIST
  104. Mapping already exists.
  105. **Data types**:
  106. .. code-block:: none
  107. * struct uvc_xu_control_mapping
  108. __u32 id V4L2 control identifier
  109. __u8 name[32] V4L2 control name
  110. __u8 entity[16] UVC extension unit GUID
  111. __u8 selector UVC control selector
  112. __u8 size V4L2 control size (in bits)
  113. __u8 offset V4L2 control offset (in bits)
  114. enum v4l2_ctrl_type
  115. v4l2_type V4L2 control type
  116. enum uvc_control_data_type
  117. data_type UVC control data type
  118. struct uvc_menu_info
  119. *menu_info Array of menu entries (for menu controls only)
  120. __u32 menu_count Number of menu entries (for menu controls only)
  121. * struct uvc_menu_info
  122. __u32 value Menu entry value used by the device
  123. __u8 name[32] Menu entry name
  124. * enum uvc_control_data_type
  125. UVC_CTRL_DATA_TYPE_RAW Raw control (byte array)
  126. UVC_CTRL_DATA_TYPE_SIGNED Signed integer
  127. UVC_CTRL_DATA_TYPE_UNSIGNED Unsigned integer
  128. UVC_CTRL_DATA_TYPE_BOOLEAN Boolean
  129. UVC_CTRL_DATA_TYPE_ENUM Enumeration
  130. UVC_CTRL_DATA_TYPE_BITMASK Bitmask
  131. UVCIOC_CTRL_QUERY - Query a UVC XU control
  132. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  133. Argument: struct uvc_xu_control_query
  134. **Description**:
  135. This ioctl queries a UVC XU control identified by its extension unit ID
  136. and control selector.
  137. There are a number of different queries available that closely
  138. correspond to the low-level control requests described in the UVC
  139. specification. These requests are:
  140. UVC_GET_CUR
  141. Obtain the current value of the control.
  142. UVC_GET_MIN
  143. Obtain the minimum value of the control.
  144. UVC_GET_MAX
  145. Obtain the maximum value of the control.
  146. UVC_GET_DEF
  147. Obtain the default value of the control.
  148. UVC_GET_RES
  149. Query the resolution of the control, i.e. the step size of the
  150. allowed control values.
  151. UVC_GET_LEN
  152. Query the size of the control in bytes.
  153. UVC_GET_INFO
  154. Query the control information bitmap, which indicates whether
  155. get/set requests are supported.
  156. UVC_SET_CUR
  157. Update the value of the control.
  158. Applications must set the 'size' field to the correct length for the
  159. control. Exceptions are the UVC_GET_LEN and UVC_GET_INFO queries, for
  160. which the size must be set to 2 and 1, respectively. The 'data' field
  161. must point to a valid writable buffer big enough to hold the indicated
  162. number of data bytes.
  163. Data is copied directly from the device without any driver-side
  164. processing. Applications are responsible for data buffer formatting,
  165. including little-endian/big-endian conversion. This is particularly
  166. important for the result of the UVC_GET_LEN requests, which is always
  167. returned as a little-endian 16-bit integer by the device.
  168. **Return value**:
  169. On success 0 is returned. On error -1 is returned and errno is set
  170. appropriately.
  171. ENOENT
  172. The device does not support the given control or the specified
  173. extension unit could not be found.
  174. ENOBUFS
  175. The specified buffer size is incorrect (too big or too small).
  176. EINVAL
  177. An invalid request code was passed.
  178. EBADRQC
  179. The given request is not supported by the given control.
  180. EFAULT
  181. The data pointer references an inaccessible memory area.
  182. **Data types**:
  183. .. code-block:: none
  184. * struct uvc_xu_control_query
  185. __u8 unit Extension unit ID
  186. __u8 selector Control selector
  187. __u8 query Request code to send to the device
  188. __u16 size Control data size (in bytes)
  189. __u8 *data Control value