libusb.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:39k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.  * Public libusb header file
  3.  * Copyright (C) 2007-2008 Daniel Drake <dsd@gentoo.org>
  4.  * Copyright (c) 2001 Johannes Erdfelt <johannes@erdfelt.com>
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library 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 GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19.  */
  20. #ifndef __LIBUSB_H__
  21. #define __LIBUSB_H__
  22. #include <endian.h>
  23. #include <stdint.h>
  24. #include <sys/time.h>
  25. #include <sys/types.h>
  26. #include <time.h>
  27. #define bswap16(x) (((x & 0xff) << 8) | (x >> 8))
  28. #if __BYTE_ORDER == __LITTLE_ENDIAN
  29. #define libusb_cpu_to_le16(x) (x)
  30. #define libusb_le16_to_cpu(x) (x)
  31. #elif __BYTE_ORDER == __BIG_ENDIAN
  32. #define libusb_le16_to_cpu(x) bswap16(x)
  33. #define libusb_cpu_to_le16(x) bswap16(x)
  34. #else
  35. #error "Unrecognized endianness"
  36. #endif
  37. /** def libusb_cpu_to_le16
  38.  * ingroup misc
  39.  * Convert a 16-bit value from host-endian to little-endian format. On
  40.  * little endian systems, this function does nothing. On big endian systems,
  41.  * the bytes are swapped.
  42.  * param x the host-endian value to convert
  43.  * returns the value in little-endian byte order
  44.  */
  45. /** def libusb_le16_to_cpu
  46.  * ingroup misc
  47.  * Convert a 16-bit value from little-endian to host-endian format. On
  48.  * little endian systems, this function does nothing. On big endian systems,
  49.  * the bytes are swapped.
  50.  * param x the little-endian value to convert
  51.  * returns the value in host-endian byte order
  52.  */
  53. #ifdef __cplusplus
  54. extern "C" {
  55. #endif
  56. /* standard USB stuff */
  57. /** ingroup desc
  58.  * Device and/or Interface Class codes */
  59. enum libusb_class_code {
  60. /** In the context of a ref libusb_device_descriptor "device descriptor",
  61.  * this bDeviceClass value indicates that each interface specifies its
  62.  * own class information and all interfaces operate independently.
  63.  */
  64. LIBUSB_CLASS_PER_INTERFACE = 0,
  65. /** Audio class */
  66. LIBUSB_CLASS_AUDIO = 1,
  67. /** Communications class */
  68. LIBUSB_CLASS_COMM = 2,
  69. /** Human Interface Device class */
  70. LIBUSB_CLASS_HID = 3,
  71. /** Printer dclass */
  72. LIBUSB_CLASS_PRINTER = 7,
  73. /** Picture transfer protocol class */
  74. LIBUSB_CLASS_PTP = 6,
  75. /** Mass storage class */
  76. LIBUSB_CLASS_MASS_STORAGE = 8,
  77. /** Hub class */
  78. LIBUSB_CLASS_HUB = 9,
  79. /** Data class */
  80. LIBUSB_CLASS_DATA = 10,
  81. /** Class is vendor-specific */
  82. LIBUSB_CLASS_VENDOR_SPEC = 0xff,
  83. };
  84. /** ingroup desc
  85.  * Descriptor types as defined by the USB specification. */
  86. enum libusb_descriptor_type {
  87. /** Device descriptor. See libusb_device_descriptor. */
  88. LIBUSB_DT_DEVICE = 0x01,
  89. /** Configuration descriptor. See libusb_config_descriptor. */
  90. LIBUSB_DT_CONFIG = 0x02,
  91. /** String descriptor */
  92. LIBUSB_DT_STRING = 0x03,
  93. /** Interface descriptor. See libusb_interface_descriptor. */
  94. LIBUSB_DT_INTERFACE = 0x04,
  95. /** Endpoint descriptor. See libusb_endpoint_descriptor. */
  96. LIBUSB_DT_ENDPOINT = 0x05,
  97. /** HID descriptor */
  98. LIBUSB_DT_HID = 0x21,
  99. /** HID report descriptor */
  100. LIBUSB_DT_REPORT = 0x22,
  101. /** Physical descriptor */
  102. LIBUSB_DT_PHYSICAL = 0x23,
  103. /** Hub descriptor */
  104. LIBUSB_DT_HUB = 0x29,
  105. };
  106. /* Descriptor sizes per descriptor type */
  107. #define LIBUSB_DT_DEVICE_SIZE 18
  108. #define LIBUSB_DT_CONFIG_SIZE 9
  109. #define LIBUSB_DT_INTERFACE_SIZE 9
  110. #define LIBUSB_DT_ENDPOINT_SIZE 7
  111. #define LIBUSB_DT_ENDPOINT_AUDIO_SIZE 9 /* Audio extension */
  112. #define LIBUSB_DT_HUB_NONVAR_SIZE 7
  113. #define LIBUSB_ENDPOINT_ADDRESS_MASK 0x0f    /* in bEndpointAddress */
  114. #define LIBUSB_ENDPOINT_DIR_MASK 0x80
  115. /** ingroup desc
  116.  * Endpoint direction. Values for bit 7 of the
  117.  * ref libusb_endpoint_descriptor::bEndpointAddress "endpoint address" scheme.
  118.  */
  119. enum libusb_endpoint_direction {
  120. /** In: device-to-host */
  121. LIBUSB_ENDPOINT_IN = 0x80,
  122. /** Out: host-to-device */
  123. LIBUSB_ENDPOINT_OUT = 0x00,
  124. };
  125. #define LIBUSB_TRANSFER_TYPE_MASK 0x03    /* in bmAttributes */
  126. /** ingroup desc
  127.  * Endpoint transfer type. Values for bits 0:1 of the
  128.  * ref libusb_endpoint_descriptor::bmAttributes "endpoint attributes" field.
  129.  */
  130. enum libusb_transfer_type {
  131. /** Control endpoint */
  132. LIBUSB_TRANSFER_TYPE_CONTROL = 0,
  133. /** Isochronous endpoint */
  134. LIBUSB_TRANSFER_TYPE_ISOCHRONOUS = 1,
  135. /** Bulk endpoint */
  136. LIBUSB_TRANSFER_TYPE_BULK = 2,
  137. /** Interrupt endpoint */
  138. LIBUSB_TRANSFER_TYPE_INTERRUPT = 3,
  139. };
  140. /** ingroup misc
  141.  * Standard requests, as defined in table 9-3 of the USB2 specifications */
  142. enum libusb_standard_request {
  143. /** Request status of the specific recipient */
  144. LIBUSB_REQUEST_GET_STATUS = 0x00,
  145. /** Clear or disable a specific feature */
  146. LIBUSB_REQUEST_CLEAR_FEATURE = 0x01,
  147. /* 0x02 is reserved */
  148. /** Set or enable a specific feature */
  149. LIBUSB_REQUEST_SET_FEATURE = 0x03,
  150. /* 0x04 is reserved */
  151. /** Set device address for all future accesses */
  152. LIBUSB_REQUEST_SET_ADDRESS = 0x05,
  153. /** Get the specified descriptor */
  154. LIBUSB_REQUEST_GET_DESCRIPTOR = 0x06,
  155. /** Used to update existing descriptors or add new descriptors */
  156. LIBUSB_REQUEST_SET_DESCRIPTOR = 0x07,
  157. /** Get the current device configuration value */
  158. LIBUSB_REQUEST_GET_CONFIGURATION = 0x08,
  159. /** Set device configuration */
  160. LIBUSB_REQUEST_SET_CONFIGURATION = 0x09,
  161. /** Return the selected alternate setting for the specified interface */
  162. LIBUSB_REQUEST_GET_INTERFACE = 0x0A,
  163. /** Select an alternate interface for the specified interface */
  164. LIBUSB_REQUEST_SET_INTERFACE = 0x0B,
  165. /** Set then report an endpoint's synchronization frame */
  166. LIBUSB_REQUEST_SYNCH_FRAME = 0x0C,
  167. };
  168. /** ingroup misc
  169.  * Request type bits of the
  170.  * ref libusb_control_setup::bmRequestType "bmRequestType" field in control
  171.  * transfers. */
  172. enum libusb_request_type {
  173. /** Standard */
  174. LIBUSB_REQUEST_TYPE_STANDARD = (0x00 << 5),
  175. /** Class */
  176. LIBUSB_REQUEST_TYPE_CLASS = (0x01 << 5),
  177. /** Vendor */
  178. LIBUSB_REQUEST_TYPE_VENDOR = (0x02 << 5),
  179. /** Reserved */
  180. LIBUSB_REQUEST_TYPE_RESERVED = (0x03 << 5),
  181. };
  182. /** ingroup misc
  183.  * Recipient bits of the
  184.  * ref libusb_control_setup::bmRequestType "bmRequestType" field in control
  185.  * transfers. Values 4 through 31 are reserved. */
  186. enum libusb_request_recipient {
  187. /** Device */
  188. LIBUSB_RECIPIENT_DEVICE = 0x00,
  189. /** Interface */
  190. LIBUSB_RECIPIENT_INTERFACE = 0x01,
  191. /** Endpoint */
  192. LIBUSB_RECIPIENT_ENDPOINT = 0x02,
  193. /** Other */
  194. LIBUSB_RECIPIENT_OTHER = 0x03,
  195. };
  196. #define LIBUSB_ISO_SYNC_TYPE_MASK 0x0C
  197. /** ingroup desc
  198.  * Synchronization type for isochronous endpoints. Values for bits 2:3 of the
  199.  * ref libusb_endpoint_descriptor::bmAttributes "bmAttributes" field in
  200.  * libusb_endpoint_descriptor.
  201.  */
  202. enum libusb_iso_sync_type {
  203. /** No synchronization */
  204. LIBUSB_ISO_SYNC_TYPE_NONE = 0,
  205. /** Asynchronous */
  206. LIBUSB_ISO_SYNC_TYPE_ASYNC = 1,
  207. /** Adaptive */
  208. LIBUSB_ISO_SYNC_TYPE_ADAPTIVE = 2,
  209. /** Synchronous */
  210. LIBUSB_ISO_SYNC_TYPE_SYNC = 3,
  211. };
  212. #define LIBUSB_ISO_USAGE_TYPE_MASK 0x30
  213. /** ingroup desc
  214.  * Usage type for isochronous endpoints. Values for bits 4:5 of the
  215.  * ref libusb_endpoint_descriptor::bmAttributes "bmAttributes" field in
  216.  * libusb_endpoint_descriptor.
  217.  */
  218. enum libusb_iso_usage_type {
  219. /** Data endpoint */
  220. LIBUSB_ISO_USAGE_TYPE_DATA = 0,
  221. /** Feedback endpoint */
  222. LIBUSB_ISO_USAGE_TYPE_FEEDBACK = 1,
  223. /** Implicit feedback Data endpoint */
  224. LIBUSB_ISO_USAGE_TYPE_IMPLICIT = 2,
  225. };
  226. /** ingroup desc
  227.  * A structure representing the standard USB device descriptor. This
  228.  * descriptor is documented in section 9.6.1 of the USB 2.0 specification.
  229.  * All multiple-byte fields are represented in host-endian format.
  230.  */
  231. struct libusb_device_descriptor {
  232. /** Size of this descriptor (in bytes) */
  233. uint8_t  bLength;
  234. /** Descriptor type. Will have value
  235.  * ref libusb_descriptor_type::LIBUSB_DT_DEVICE LIBUSB_DT_DEVICE in this
  236.  * context. */
  237. uint8_t  bDescriptorType;
  238. /** USB specification release number in binary-coded decimal. A value of
  239.  * 0x0200 indicates USB 2.0, 0x0110 indicates USB 1.1, etc. */
  240. uint16_t bcdUSB;
  241. /** USB-IF class code for the device. See ref libusb_class_code. */
  242. uint8_t  bDeviceClass;
  243. /** USB-IF subclass code for the device, qualified by the bDeviceClass
  244.  * value */
  245. uint8_t  bDeviceSubClass;
  246. /** USB-IF protocol code for the device, qualified by the bDeviceClass and
  247.  * bDeviceSubClass values */
  248. uint8_t  bDeviceProtocol;
  249. /** Maximum packet size for endpoint 0 */
  250. uint8_t  bMaxPacketSize0;
  251. /** USB-IF vendor ID */
  252. uint16_t idVendor;
  253. /** USB-IF product ID */
  254. uint16_t idProduct;
  255. /** Device release number in binary-coded decimal */
  256. uint16_t bcdDevice;
  257. /** Index of string descriptor describing manufacturer */
  258. uint8_t  iManufacturer;
  259. /** Index of string descriptor describing product */
  260. uint8_t  iProduct;
  261. /** Index of string descriptor containing device serial number */
  262. uint8_t  iSerialNumber;
  263. /** Number of possible configurations */
  264. uint8_t  bNumConfigurations;
  265. };
  266. /** ingroup desc
  267.  * A structure representing the standard USB endpoint descriptor. This
  268.  * descriptor is documented in section 9.6.3 of the USB 2.0 specification.
  269.  * All multiple-byte fields are represented in host-endian format.
  270.  */
  271. struct libusb_endpoint_descriptor {
  272. /** Size of this descriptor (in bytes) */
  273. uint8_t  bLength;
  274. /** Descriptor type. Will have value
  275.  * ref libusb_descriptor_type::LIBUSB_DT_ENDPOINT LIBUSB_DT_ENDPOINT in
  276.  * this context. */
  277. uint8_t  bDescriptorType;
  278. /** The address of the endpoint described by this descriptor. Bits 0:3 are
  279.  * the endpoint number. Bits 4:6 are reserved. Bit 7 indicates direction,
  280.  * see ref libusb_endpoint_direction.
  281.  */
  282. uint8_t  bEndpointAddress;
  283. /** Attributes which apply to the endpoint when it is configured using
  284.  * the bConfigurationValue. Bits 0:1 determine the transfer type and
  285.  * correspond to ref libusb_transfer_type. Bits 2:3 are only used for
  286.  * isochronous endpoints and correspond to ref libusb_iso_sync_type.
  287.  * Bits 4:5 are also only used for isochronous endpoints and correspond to
  288.  * ref libusb_iso_usage_type. Bits 6:7 are reserved.
  289.  */
  290. uint8_t  bmAttributes;
  291. /** Maximum packet size this endpoint is capable of sending/receiving. */
  292. uint16_t wMaxPacketSize;
  293. /** Interval for polling endpoint for data transfers. */
  294. uint8_t  bInterval;
  295. /** For audio devices only: the rate at which synchronization feedback
  296.  * is provided. */
  297. uint8_t  bRefresh;
  298. /** For audio devices only: the address if the synch endpoint */
  299. uint8_t  bSynchAddress;
  300. /** Extra descriptors. If libusb encounters unknown endpoint descriptors,
  301.  * it will store them here, should you wish to parse them. */
  302. const unsigned char *extra;
  303. /** Length of the extra descriptors, in bytes. */
  304. int extra_length;
  305. };
  306. /** ingroup desc
  307.  * A structure representing the standard USB interface descriptor. This
  308.  * descriptor is documented in section 9.6.5 of the USB 2.0 specification.
  309.  * All multiple-byte fields are represented in host-endian format.
  310.  */
  311. struct libusb_interface_descriptor {
  312. /** Size of this descriptor (in bytes) */
  313. uint8_t  bLength;
  314. /** Descriptor type. Will have value
  315.  * ref libusb_descriptor_type::LIBUSB_DT_INTERFACE LIBUSB_DT_INTERFACE
  316.  * in this context. */
  317. uint8_t  bDescriptorType;
  318. /** Number of this interface */
  319. uint8_t  bInterfaceNumber;
  320. /** Value used to select this alternate setting for this interface */
  321. uint8_t  bAlternateSetting;
  322. /** Number of endpoints used by this interface (excluding the control
  323.  * endpoint). */
  324. uint8_t  bNumEndpoints;
  325. /** USB-IF class code for this interface. See ref libusb_class_code. */
  326. uint8_t  bInterfaceClass;
  327. /** USB-IF subclass code for this interface, qualified by the
  328.  * bInterfaceClass value */
  329. uint8_t  bInterfaceSubClass;
  330. /** USB-IF protocol code for this interface, qualified by the
  331.  * bInterfaceClass and bInterfaceSubClass values */
  332. uint8_t  bInterfaceProtocol;
  333. /** Index of string descriptor describing this interface */
  334. uint8_t  iInterface;
  335. /** Array of endpoint descriptors. This length of this array is determined
  336.  * by the bNumEndpoints field. */
  337. const struct libusb_endpoint_descriptor *endpoint;
  338. /** Extra descriptors. If libusb encounters unknown interface descriptors,
  339.  * it will store them here, should you wish to parse them. */
  340. const unsigned char *extra;
  341. /** Length of the extra descriptors, in bytes. */
  342. int extra_length;
  343. };
  344. /** ingroup desc
  345.  * A collection of alternate settings for a particular USB interface.
  346.  */
  347. struct libusb_interface {
  348. /** Array of interface descriptors. The length of this array is determined
  349.  * by the num_altsetting field. */
  350. const struct libusb_interface_descriptor *altsetting;
  351. /** The number of alternate settings that belong to this interface */
  352. int num_altsetting;
  353. };
  354. /** ingroup desc
  355.  * A structure representing the standard USB configuration descriptor. This
  356.  * descriptor is documented in section 9.6.3 of the USB 2.0 specification.
  357.  * All multiple-byte fields are represented in host-endian format.
  358.  */
  359. struct libusb_config_descriptor {
  360. /** Size of this descriptor (in bytes) */
  361. uint8_t  bLength;
  362. /** Descriptor type. Will have value
  363.  * ref libusb_descriptor_type::LIBUSB_DT_CONFIG LIBUSB_DT_CONFIG
  364.  * in this context. */
  365. uint8_t  bDescriptorType;
  366. /** Total length of data returned for this configuration */
  367. uint16_t wTotalLength;
  368. /** Number of interfaces supported by this configuration */
  369. uint8_t  bNumInterfaces;
  370. /** Identifier value for this configuration */
  371. uint8_t  bConfigurationValue;
  372. /** Index of string descriptor describing this configuration */
  373. uint8_t  iConfiguration;
  374. /** Configuration characteristics */
  375. uint8_t  bmAttributes;
  376. /** Maximum power consumption of the USB device from this bus in this
  377.  * configuration when the device is fully opreation. Expressed in units
  378.  * of 2 mA. */
  379. uint8_t  MaxPower;
  380. /** Array of interfaces supported by this configuration. The length of
  381.  * this array is determined by the bNumInterfaces field. */
  382. const struct libusb_interface *interface;
  383. /** Extra descriptors. If libusb encounters unknown configuration
  384.  * descriptors, it will store them here, should you wish to parse them. */
  385. const unsigned char *extra;
  386. /** Length of the extra descriptors, in bytes. */
  387. int extra_length;
  388. };
  389. /** ingroup asyncio
  390.  * Setup packet for control transfers. */
  391. struct libusb_control_setup {
  392. /** Request type. Bits 0:4 determine recipient, see
  393.  * ref libusb_request_recipient. Bits 5:6 determine type, see
  394.  * ref libusb_request_type. Bit 7 determines data transfer direction, see
  395.  * ref libusb_endpoint_direction.
  396.  */
  397. uint8_t  bmRequestType;
  398. /** Request. If the type bits of bmRequestType are equal to
  399.  * ref libusb_request_type::LIBUSB_REQUEST_TYPE_STANDARD
  400.  * "LIBUSB_REQUEST_TYPE_STANDARD" then this field refers to
  401.  * ref libusb_standard_request. For other cases, use of this field is
  402.  * application-specific. */
  403. uint8_t  bRequest;
  404. /** Value. Varies according to request */
  405. uint16_t wValue;
  406. /** Index. Varies according to request, typically used to pass an index
  407.  * or offset */
  408. uint16_t wIndex;
  409. /** Number of bytes to transfer */
  410. uint16_t wLength;
  411. };
  412. #define LIBUSB_CONTROL_SETUP_SIZE (sizeof(struct libusb_control_setup))
  413. /* libusb */
  414. struct libusb_context;
  415. struct libusb_device;
  416. struct libusb_device_handle;
  417. /** ingroup lib
  418.  * Structure representing a libusb session. The concept of individual libusb
  419.  * sessions allows for your program to use two libraries (or dynamically
  420.  * load two modules) which both independently use libusb. This will prevent
  421.  * interference between the individual libusb users - for example
  422.  * libusb_set_debug() will not affect the other user of the library, and
  423.  * libusb_exit() will not destroy resources that the other user is still
  424.  * using.
  425.  *
  426.  * Sessions are created by libusb_init() and destroyed through libusb_exit().
  427.  * If your application is guaranteed to only ever include a single libusb
  428.  * user (i.e. you), you do not have to worry about contexts: pass NULL in
  429.  * every function call where a context is required. The default context
  430.  * will be used.
  431.  *
  432.  * For more information, see ref contexts.
  433.  */
  434. typedef struct libusb_context libusb_context;
  435. /** ingroup dev
  436.  * Structure representing a USB device detected on the system. This is an
  437.  * opaque type for which you are only ever provided with a pointer, usually
  438.  * originating from libusb_get_device_list().
  439.  *
  440.  * Certain operations can be performed on a device, but in order to do any
  441.  * I/O you will have to first obtain a device handle using libusb_open().
  442.  *
  443.  * Devices are reference counted with libusb_device_ref() and
  444.  * libusb_device_unref(), and are freed when the reference count reaches 0.
  445.  * New devices presented by libusb_get_device_list() have a reference count of
  446.  * 1, and libusb_free_device_list() can optionally decrease the reference count
  447.  * on all devices in the list. libusb_open() adds another reference which is
  448.  * later destroyed by libusb_close().
  449.  */
  450. typedef struct libusb_device libusb_device;
  451. /** ingroup dev
  452.  * Structure representing a handle on a USB device. This is an opaque type for
  453.  * which you are only ever provided with a pointer, usually originating from
  454.  * libusb_open().
  455.  *
  456.  * A device handle is used to perform I/O and other operations. When finished
  457.  * with a device handle, you should call libusb_close().
  458.  */
  459. typedef struct libusb_device_handle libusb_device_handle;
  460. /** ingroup misc
  461.  * Error codes. Most libusb functions return 0 on success or one of these
  462.  * codes on failure.
  463.  */
  464. enum libusb_error {
  465. /** Success (no error) */
  466. LIBUSB_SUCCESS = 0,
  467. /** Input/output error */
  468. LIBUSB_ERROR_IO = -1,
  469. /** Invalid parameter */
  470. LIBUSB_ERROR_INVALID_PARAM = -2,
  471. /** Access denied (insufficient permissions) */
  472. LIBUSB_ERROR_ACCESS = -3,
  473. /** No such device (it may have been disconnected) */
  474. LIBUSB_ERROR_NO_DEVICE = -4,
  475. /** Entity not found */
  476. LIBUSB_ERROR_NOT_FOUND = -5,
  477. /** Resource busy */
  478. LIBUSB_ERROR_BUSY = -6,
  479. /** Operation timed out */
  480. LIBUSB_ERROR_TIMEOUT = -7,
  481. /** Overflow */
  482. LIBUSB_ERROR_OVERFLOW = -8,
  483. /** Pipe error */
  484. LIBUSB_ERROR_PIPE = -9,
  485. /** System call interrupted (perhaps due to signal) */
  486. LIBUSB_ERROR_INTERRUPTED = -10,
  487. /** Insufficient memory */
  488. LIBUSB_ERROR_NO_MEM = -11,
  489. /** Operation not supported or unimplemented on this platform */
  490. LIBUSB_ERROR_NOT_SUPPORTED = -12,
  491. /** Other error */
  492. LIBUSB_ERROR_OTHER = -99,
  493. };
  494. /** ingroup asyncio
  495.  * Transfer status codes */
  496. enum libusb_transfer_status {
  497. /** Transfer completed without error. Note that this does not indicate
  498.  * that the entire amount of requested data was transferred. */
  499. LIBUSB_TRANSFER_COMPLETED,
  500. /** Transfer failed */
  501. LIBUSB_TRANSFER_ERROR,
  502. /** Transfer timed out */
  503. LIBUSB_TRANSFER_TIMED_OUT,
  504. /** Transfer was cancelled */
  505. LIBUSB_TRANSFER_CANCELLED,
  506. /** For bulk/interrupt endpoints: halt condition detected (endpoint
  507.  * stalled). For control endpoints: control request not supported. */
  508. LIBUSB_TRANSFER_STALL,
  509. /** Device was disconnected */
  510. LIBUSB_TRANSFER_NO_DEVICE,
  511. /** Device sent more data than requested */
  512. LIBUSB_TRANSFER_OVERFLOW,
  513. };
  514. /** ingroup asyncio
  515.  * libusb_transfer.flags values */
  516. enum libusb_transfer_flags {
  517. /** Report short frames as errors */
  518. LIBUSB_TRANSFER_SHORT_NOT_OK = 1<<0,
  519. /** Automatically free() transfer buffer during libusb_free_transfer() */
  520. LIBUSB_TRANSFER_FREE_BUFFER = 1<<1,
  521. /** Automatically call libusb_free_transfer() after callback returns.
  522.  * If this flag is set, it is illegal to call libusb_free_transfer() 
  523.  * from your transfer callback, as this will result in a double-free
  524.  * when this flag is acted upon. */
  525. LIBUSB_TRANSFER_FREE_TRANSFER = 1<<2,
  526. };
  527. /** ingroup asyncio
  528.  * Isochronous packet descriptor. */
  529. struct libusb_iso_packet_descriptor {
  530. /** Length of data to request in this packet */
  531. unsigned int length;
  532. /** Amount of data that was actually transferred */
  533. unsigned int actual_length;
  534. /** Status code for this packet */
  535. enum libusb_transfer_status status;
  536. };
  537. struct libusb_transfer;
  538. typedef void (*libusb_transfer_cb_fn)(struct libusb_transfer *transfer);
  539. /** ingroup asyncio
  540.  * The generic USB transfer structure.
  541.  */
  542. struct libusb_transfer {
  543. /** Handle of the device that this transfer will be submitted to */
  544. libusb_device_handle *dev_handle;
  545. /** A bitwise OR combination of ref libusb_transfer_flags. */
  546. uint8_t flags;
  547. /** Address of the endpoint where this transfer will be sent. */
  548. unsigned char endpoint;
  549. /** Type of the endpoint from ref libusb_transfer_type */
  550. unsigned char type;
  551. /** Timeout for this transfer in millseconds. A value of 0 indicates no
  552.  * timeout. */
  553. unsigned int timeout;
  554. /** The status of the transfer. Read-only, and only for use within
  555.  * transfer callback function.
  556.  *
  557.  * If this is an isochronous transfer, this field may read COMPLETED even
  558.  * if there were errors in the frames. Use the
  559.  * ref libusb_iso_packet_descriptor::status "status" field in each packet
  560.  * to determine if errors occurred. */
  561. enum libusb_transfer_status status;
  562. /** Length of the data buffer */
  563. int length;
  564. /** Actual length of data that was transferred. Read-only, and only for
  565.  * use within transfer callback function. Not valid for isochronous
  566.  * endpoint transfers. */
  567. int actual_length;
  568. /** Callback function. This will be invoked when the transfer completes,
  569.  * fails, or is cancelled. */
  570. libusb_transfer_cb_fn callback;
  571. /** User context data to pass to the callback function. */
  572. void *user_data;
  573. /** Data buffer */
  574. unsigned char *buffer;
  575. /** Number of isochronous packets. Only used for I/O with isochronous
  576.  * endpoints. */
  577. int num_iso_packets;
  578. /** Isochronous packet descriptors, for isochronous transfers only. */
  579. struct libusb_iso_packet_descriptor iso_packet_desc[0];
  580. };
  581. int libusb_init(libusb_context **ctx);
  582. void libusb_exit(libusb_context *ctx);
  583. void libusb_set_debug(libusb_context *ctx, int level);
  584. ssize_t libusb_get_device_list(libusb_context *ctx,
  585. libusb_device ***list);
  586. void libusb_free_device_list(libusb_device **list, int unref_devices);
  587. libusb_device *libusb_ref_device(libusb_device *dev);
  588. void libusb_unref_device(libusb_device *dev);
  589. int libusb_get_configuration(libusb_device_handle *dev, int *config);
  590. int libusb_get_device_descriptor(libusb_device *dev,
  591. struct libusb_device_descriptor *desc);
  592. int libusb_get_active_config_descriptor(libusb_device *dev,
  593. struct libusb_config_descriptor **config);
  594. int libusb_get_config_descriptor(libusb_device *dev, uint8_t config_index,
  595. struct libusb_config_descriptor **config);
  596. int libusb_get_config_descriptor_by_value(libusb_device *dev,
  597. uint8_t bConfigurationValue, struct libusb_config_descriptor **config);
  598. void libusb_free_config_descriptor(struct libusb_config_descriptor *config);
  599. uint8_t libusb_get_bus_number(libusb_device *dev);
  600. uint8_t libusb_get_device_address(libusb_device *dev);
  601. int libusb_get_max_packet_size(libusb_device *dev, unsigned char endpoint);
  602. int libusb_open(libusb_device *dev, libusb_device_handle **handle);
  603. void libusb_close(libusb_device_handle *dev_handle);
  604. libusb_device *libusb_get_device(libusb_device_handle *dev_handle);
  605. int libusb_set_configuration(libusb_device_handle *dev, int configuration);
  606. int libusb_claim_interface(libusb_device_handle *dev, int iface);
  607. int libusb_release_interface(libusb_device_handle *dev, int iface);
  608. libusb_device_handle *libusb_open_device_with_vid_pid(libusb_context *ctx,
  609. uint16_t vendor_id, uint16_t product_id);
  610. int libusb_set_interface_alt_setting(libusb_device_handle *dev,
  611. int interface_number, int alternate_setting);
  612. int libusb_clear_halt(libusb_device_handle *dev, unsigned char endpoint);
  613. int libusb_reset_device(libusb_device_handle *dev);
  614. int libusb_kernel_driver_active(libusb_device_handle *dev, int interface);
  615. int libusb_detach_kernel_driver(libusb_device_handle *dev, int interface);
  616. /* async I/O */
  617. /** ingroup asyncio
  618.  * Get the data section of a control transfer. This convenience function is here
  619.  * to remind you that the data does not start until 8 bytes into the actual
  620.  * buffer, as the setup packet comes first. 
  621.  *
  622.  * Calling this function only makes sense from a transfer callback function,
  623.  * or situations where you have already allocated a suitably sized buffer at
  624.  * transfer->buffer.
  625.  *
  626.  * param transfer a transfer
  627.  * returns pointer to the first byte of the data section
  628.  */
  629. static inline unsigned char *libusb_control_transfer_get_data(
  630. struct libusb_transfer *transfer)
  631. {
  632. return transfer->buffer + LIBUSB_CONTROL_SETUP_SIZE;
  633. }
  634. /** ingroup asyncio
  635.  * Get the control setup packet of a control transfer. This convenience
  636.  * function is here to remind you that the control setup occupies the first
  637.  * 8 bytes of the transfer data buffer.
  638.  *
  639.  * Calling this function only makes sense from a transfer callback function,
  640.  * or situations where you have already allocated a suitably sized buffer at
  641.  * transfer->buffer.
  642.  *
  643.  * param transfer a transfer
  644.  * returns a casted pointer to the start of the transfer data buffer
  645.  */
  646. static inline struct libusb_control_setup *libusb_control_transfer_get_setup(
  647. struct libusb_transfer *transfer)
  648. {
  649. return (struct libusb_control_setup *) transfer->buffer;
  650. }
  651. /** ingroup asyncio
  652.  * Helper function to populate the setup packet (first 8 bytes of the data
  653.  * buffer) for a control transfer. The wIndex, wValue and wLength values should
  654.  * be given in host-endian byte order.
  655.  * 
  656.  * param buffer buffer to output the setup packet into
  657.  * param bmRequestType see the
  658.  * ref libusb_control_setup::bmRequestType "bmRequestType" field of
  659.  * ref libusb_control_setup
  660.  * param bRequest see the
  661.  * ref libusb_control_setup::bRequest "bRequest" field of 
  662.  * ref libusb_control_setup
  663.  * param wValue see the
  664.  * ref libusb_control_setup::wValue "wValue" field of 
  665.  * ref libusb_control_setup
  666.  * param wIndex see the
  667.  * ref libusb_control_setup::wIndex "wIndex" field of 
  668.  * ref libusb_control_setup
  669.  * param wLength see the
  670.  * ref libusb_control_setup::wLength "wLength" field of 
  671.  * ref libusb_control_setup
  672.  */
  673. static inline void libusb_fill_control_setup(unsigned char *buffer,
  674. uint8_t bmRequestType, uint8_t bRequest, uint16_t wValue, uint16_t wIndex,
  675. uint16_t wLength)
  676. {
  677. struct libusb_control_setup *setup = (struct libusb_control_setup *) buffer;
  678. setup->bmRequestType = bmRequestType;
  679. setup->bRequest = bRequest;
  680. setup->wValue = libusb_cpu_to_le16(wValue);
  681. setup->wIndex = libusb_cpu_to_le16(wIndex);
  682. setup->wLength = libusb_cpu_to_le16(wLength);
  683. }
  684. struct libusb_transfer *libusb_alloc_transfer(int iso_packets);
  685. int libusb_submit_transfer(struct libusb_transfer *transfer);
  686. int libusb_cancel_transfer(struct libusb_transfer *transfer);
  687. void libusb_free_transfer(struct libusb_transfer *transfer);
  688. /** ingroup asyncio
  689.  * Helper function to populate the required ref libusb_transfer fields
  690.  * for a control transfer.
  691.  *
  692.  * If you pass a transfer buffer to this function, the first 8 bytes will
  693.  * be interpreted as a control setup packet, and the wLength field will be
  694.  * used to automatically populate the ref libusb_transfer::length "length"
  695.  * field of the transfer. Therefore the recommended approach is:
  696.  * -# Allocate a suitably sized data buffer (including space for control setup)
  697.  * -# Call libusb_fill_control_setup()
  698.  * -# If this is a host-to-device transfer with a data stage, put the data
  699.  *    in place after the setup packet
  700.  * -# Call this function
  701.  * -# Call libusb_submit_transfer()
  702.  *
  703.  * It is also legal to pass a NULL buffer to this function, in which case this
  704.  * function will not attempt to populate the length field. Remember that you
  705.  * must then populate the buffer and length fields later.
  706.  *
  707.  * param transfer the transfer to populate
  708.  * param dev_handle handle of the device that will handle the transfer
  709.  * param buffer data buffer. If provided, this function will interpret the
  710.  * first 8 bytes as a setup packet and infer the transfer length from that.
  711.  * param callback callback function to be invoked on transfer completion
  712.  * param user_data user data to pass to callback function
  713.  * param timeout timeout for the transfer in milliseconds
  714.  */
  715. static inline void libusb_fill_control_transfer(
  716. struct libusb_transfer *transfer, libusb_device_handle *dev_handle,
  717. unsigned char *buffer, libusb_transfer_cb_fn callback, void *user_data,
  718. unsigned int timeout)
  719. {
  720. struct libusb_control_setup *setup = (struct libusb_control_setup *) buffer;
  721. transfer->dev_handle = dev_handle;
  722. transfer->endpoint = 0;
  723. transfer->type = LIBUSB_TRANSFER_TYPE_CONTROL;
  724. transfer->timeout = timeout;
  725. transfer->buffer = buffer;
  726. if (setup)
  727. transfer->length = LIBUSB_CONTROL_SETUP_SIZE
  728. + libusb_le16_to_cpu(setup->wLength);
  729. transfer->user_data = user_data;
  730. transfer->callback = callback;
  731. }
  732. /** ingroup asyncio
  733.  * Helper function to populate the required ref libusb_transfer fields
  734.  * for a bulk transfer.
  735.  *
  736.  * param transfer the transfer to populate
  737.  * param dev_handle handle of the device that will handle the transfer
  738.  * param endpoint address of the endpoint where this transfer will be sent
  739.  * param buffer data buffer
  740.  * param length length of data buffer
  741.  * param callback callback function to be invoked on transfer completion
  742.  * param user_data user data to pass to callback function
  743.  * param timeout timeout for the transfer in milliseconds
  744.  */
  745. static inline void libusb_fill_bulk_transfer(struct libusb_transfer *transfer,
  746. libusb_device_handle *dev_handle, unsigned char endpoint,
  747. unsigned char *buffer, int length, libusb_transfer_cb_fn callback,
  748. void *user_data, unsigned int timeout)
  749. {
  750. transfer->dev_handle = dev_handle;
  751. transfer->endpoint = endpoint;
  752. transfer->type = LIBUSB_TRANSFER_TYPE_BULK;
  753. transfer->timeout = timeout;
  754. transfer->buffer = buffer;
  755. transfer->length = length;
  756. transfer->user_data = user_data;
  757. transfer->callback = callback;
  758. }
  759. /** ingroup asyncio
  760.  * Helper function to populate the required ref libusb_transfer fields
  761.  * for an interrupt transfer.
  762.  *
  763.  * param transfer the transfer to populate
  764.  * param dev_handle handle of the device that will handle the transfer
  765.  * param endpoint address of the endpoint where this transfer will be sent
  766.  * param buffer data buffer
  767.  * param length length of data buffer
  768.  * param callback callback function to be invoked on transfer completion
  769.  * param user_data user data to pass to callback function
  770.  * param timeout timeout for the transfer in milliseconds
  771.  */
  772. static inline void libusb_fill_interrupt_transfer(
  773. struct libusb_transfer *transfer, libusb_device_handle *dev_handle,
  774. unsigned char endpoint, unsigned char *buffer, int length,
  775. libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout)
  776. {
  777. transfer->dev_handle = dev_handle;
  778. transfer->endpoint = endpoint;
  779. transfer->type = LIBUSB_TRANSFER_TYPE_INTERRUPT;
  780. transfer->timeout = timeout;
  781. transfer->buffer = buffer;
  782. transfer->length = length;
  783. transfer->user_data = user_data;
  784. transfer->callback = callback;
  785. }
  786. /** ingroup asyncio
  787.  * Helper function to populate the required ref libusb_transfer fields
  788.  * for an isochronous transfer.
  789.  *
  790.  * param transfer the transfer to populate
  791.  * param dev_handle handle of the device that will handle the transfer
  792.  * param endpoint address of the endpoint where this transfer will be sent
  793.  * param buffer data buffer
  794.  * param length length of data buffer
  795.  * param num_iso_packets the number of isochronous packets
  796.  * param callback callback function to be invoked on transfer completion
  797.  * param user_data user data to pass to callback function
  798.  * param timeout timeout for the transfer in milliseconds
  799.  */
  800. static inline void libusb_fill_iso_transfer(struct libusb_transfer *transfer,
  801. libusb_device_handle *dev_handle, unsigned char endpoint,
  802. unsigned char *buffer, int length, int num_iso_packets,
  803. libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout)
  804. {
  805. transfer->dev_handle = dev_handle;
  806. transfer->endpoint = endpoint;
  807. transfer->type = LIBUSB_TRANSFER_TYPE_ISOCHRONOUS;
  808. transfer->timeout = timeout;
  809. transfer->buffer = buffer;
  810. transfer->length = length;
  811. transfer->num_iso_packets = num_iso_packets;
  812. transfer->user_data = user_data;
  813. transfer->callback = callback;
  814. }
  815. /** ingroup asyncio
  816.  * Convenience function to set the length of all packets in an isochronous
  817.  * transfer, based on the num_iso_packets field in the transfer structure.
  818.  *
  819.  * param transfer a transfer
  820.  * param length the length to set in each isochronous packet descriptor
  821.  * see libusb_get_max_packet_size()
  822.  */
  823. static inline void libusb_set_iso_packet_lengths(
  824. struct libusb_transfer *transfer, unsigned int length)
  825. {
  826. int i;
  827. for (i = 0; i < transfer->num_iso_packets; i++)
  828. transfer->iso_packet_desc[i].length = length;
  829. }
  830. /** ingroup asyncio
  831.  * Convenience function to locate the position of an isochronous packet
  832.  * within the buffer of an isochronous transfer.
  833.  *
  834.  * This is a thorough function which loops through all preceding packets,
  835.  * accumulating their lengths to find the position of the specified packet.
  836.  * Typically you will assign equal lengths to each packet in the transfer,
  837.  * and hence the above method is sub-optimal. You may wish to use
  838.  * libusb_get_iso_packet_buffer_simple() instead.
  839.  * 
  840.  * param transfer a transfer
  841.  * param packet the packet to return the address of
  842.  * returns the base address of the packet buffer inside the transfer buffer,
  843.  * or NULL if the packet does not exist.
  844.  * see libusb_get_iso_packet_buffer_simple()
  845.  */
  846. static inline unsigned char *libusb_get_iso_packet_buffer(
  847. struct libusb_transfer *transfer, unsigned int packet)
  848. {
  849. int i;
  850. size_t offset = 0;
  851. if (packet >= transfer->num_iso_packets)
  852. return NULL;
  853. for (i = 0; i < packet; i++)
  854. offset += transfer->iso_packet_desc[i].length;
  855. return transfer->buffer + offset;
  856. }
  857. /** ingroup asyncio
  858.  * Convenience function to locate the position of an isochronous packet
  859.  * within the buffer of an isochronous transfer, for transfers where each
  860.  * packet is of identical size.
  861.  *
  862.  * This function relies on the assumption that every packet within the transfer
  863.  * is of identical size to the first packet. Calculating the location of
  864.  * the packet buffer is then just a simple calculation:
  865.  * <tt>buffer + (packet_size * packet)</tt>
  866.  *
  867.  * Do not use this function on transfers other than those that have identical
  868.  * packet lengths for each packet.
  869.  *
  870.  * param transfer a transfer
  871.  * param packet the packet to return the address of
  872.  * returns the base address of the packet buffer inside the transfer buffer,
  873.  * or NULL if the packet does not exist.
  874.  * see libusb_get_iso_packet_buffer()
  875.  */
  876. static inline unsigned char *libusb_get_iso_packet_buffer_simple(
  877. struct libusb_transfer *transfer, unsigned int packet)
  878. {
  879. if (packet >= transfer->num_iso_packets)
  880. return NULL;
  881. return transfer->buffer + (transfer->iso_packet_desc[0].length * packet);
  882. }
  883. /* sync I/O */
  884. int libusb_control_transfer(libusb_device_handle *dev_handle,
  885. uint8_t request_type, uint8_t request, uint16_t value, uint16_t index,
  886. unsigned char *data, uint16_t length, unsigned int timeout);
  887. int libusb_bulk_transfer(libusb_device_handle *dev_handle,
  888. unsigned char endpoint, unsigned char *data, int length,
  889. int *actual_length, unsigned int timeout);
  890. int libusb_interrupt_transfer(libusb_device_handle *dev_handle,
  891. unsigned char endpoint, unsigned char *data, int length,
  892. int *actual_length, unsigned int timeout);
  893. /** ingroup desc
  894.  * Retrieve a descriptor from the default control pipe.
  895.  * This is a convenience function which formulates the appropriate control
  896.  * message to retrieve the descriptor.
  897.  *
  898.  * param dev a device handle
  899.  * param desc_type the descriptor type, see ref libusb_descriptor_type
  900.  * param desc_index the index of the descriptor to retrieve
  901.  * param data output buffer for descriptor
  902.  * param length size of data buffer
  903.  * returns number of bytes returned in data, or LIBUSB_ERROR code on failure
  904.  */
  905. static inline int libusb_get_descriptor(libusb_device_handle *dev,
  906. uint8_t desc_type, uint8_t desc_index, unsigned char *data, int length)
  907. {
  908. return libusb_control_transfer(dev, LIBUSB_ENDPOINT_IN,
  909. LIBUSB_REQUEST_GET_DESCRIPTOR, (desc_type << 8) | desc_index, 0, data,
  910. length, 1000);
  911. }
  912. /** ingroup desc
  913.  * Retrieve a descriptor from a device.
  914.  * This is a convenience function which formulates the appropriate control
  915.  * message to retrieve the descriptor. The string returned is Unicode, as
  916.  * detailed in the USB specifications.
  917.  *
  918.  * param dev a device handle
  919.  * param desc_index the index of the descriptor to retrieve
  920.  * param langid the language ID for the string descriptor
  921.  * param data output buffer for descriptor
  922.  * param length size of data buffer
  923.  * returns number of bytes returned in data, or LIBUSB_ERROR code on failure
  924.  * see libusb_get_string_descriptor_ascii()
  925.  */
  926. static inline int libusb_get_string_descriptor(libusb_device_handle *dev,
  927. uint8_t desc_index, uint16_t langid, unsigned char *data, int length)
  928. {
  929. return libusb_control_transfer(dev, LIBUSB_ENDPOINT_IN,
  930. LIBUSB_REQUEST_GET_DESCRIPTOR, (LIBUSB_DT_STRING << 8) | desc_index,
  931. langid, data, length, 1000);
  932. }
  933. int libusb_get_string_descriptor_ascii(libusb_device_handle *dev,
  934. uint8_t index, unsigned char *data, int length);
  935. /* polling and timeouts */
  936. int libusb_try_lock_events(libusb_context *ctx);
  937. void libusb_lock_events(libusb_context *ctx);
  938. void libusb_unlock_events(libusb_context *ctx);
  939. int libusb_event_handler_active(libusb_context *ctx);
  940. void libusb_lock_event_waiters(libusb_context *ctx);
  941. void libusb_unlock_event_waiters(libusb_context *ctx);
  942. int libusb_wait_for_event(libusb_context *ctx, struct timeval *tv);
  943. int libusb_handle_events_timeout(libusb_context *ctx, struct timeval *tv);
  944. int libusb_handle_events(libusb_context *ctx);
  945. int libusb_handle_events_locked(libusb_context *ctx, struct timeval *tv);
  946. int libusb_get_next_timeout(libusb_context *ctx, struct timeval *tv);
  947. /** ingroup poll
  948.  * File descriptor for polling
  949.  */
  950. struct libusb_pollfd {
  951. /** Numeric file descriptor */
  952. int fd;
  953. /** Event flags to poll for from <poll.h>. POLLIN indicates that you
  954.  * should monitor this file descriptor for becoming ready to read from,
  955.  * and POLLOUT indicates that you should monitor this file descriptor for
  956.  * nonblocking write readiness. */
  957. short events;
  958. };
  959. /** ingroup poll
  960.  * Callback function, invoked when a new file descriptor should be added
  961.  * to the set of file descriptors monitored for events.
  962.  * param fd the new file descriptor
  963.  * param events events to monitor for, see ref libusb_pollfd for a
  964.  * description
  965.  * param user_data User data pointer specified in
  966.  * libusb_set_pollfd_notifiers() call
  967.  * see libusb_set_pollfd_notifiers()
  968.  */
  969. typedef void (*libusb_pollfd_added_cb)(int fd, short events, void *user_data);
  970. /** ingroup poll
  971.  * Callback function, invoked when a file descriptor should be removed from
  972.  * the set of file descriptors being monitored for events. After returning
  973.  * from this callback, do not use that file descriptor again.
  974.  * param fd the file descriptor to stop monitoring
  975.  * param user_data User data pointer specified in
  976.  * libusb_set_pollfd_notifiers() call
  977.  * see libusb_set_pollfd_notifiers()
  978.  */
  979. typedef void (*libusb_pollfd_removed_cb)(int fd, void *user_data);
  980. const struct libusb_pollfd **libusb_get_pollfds(libusb_context *ctx);
  981. void libusb_set_pollfd_notifiers(libusb_context *ctx,
  982. libusb_pollfd_added_cb added_cb, libusb_pollfd_removed_cb removed_cb,
  983. void *user_data);
  984. #ifdef __cplusplus
  985. }
  986. #endif
  987. #endif