1 /* $FreeBSD: head/lib/libusb/libusb20.h 250201 2013-05-03 07:44:58Z hselasky $ */
3 * Copyright (c) 2008-2009 Hans Petter Selasky. All rights reserved.
4 * Copyright (c) 2007-2008 Daniel Drake. All rights reserved.
5 * Copyright (c) 2001 Johannes Erdfelt. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #ifndef LIBUSB_GLOBAL_INCLUDE_FILE
45 * Error codes. Most libusb20 functions return 0 on success or one of
46 * these codes on failure.
49 /** Success (no error) */
52 /** Input/output error */
53 LIBUSB20_ERROR_IO
= -1,
55 /** Invalid parameter */
56 LIBUSB20_ERROR_INVALID_PARAM
= -2,
58 /** Access denied (insufficient permissions) */
59 LIBUSB20_ERROR_ACCESS
= -3,
61 /** No such device (it may have been disconnected) */
62 LIBUSB20_ERROR_NO_DEVICE
= -4,
64 /** Entity not found */
65 LIBUSB20_ERROR_NOT_FOUND
= -5,
68 LIBUSB20_ERROR_BUSY
= -6,
70 /** Operation timed out */
71 LIBUSB20_ERROR_TIMEOUT
= -7,
74 LIBUSB20_ERROR_OVERFLOW
= -8,
77 LIBUSB20_ERROR_PIPE
= -9,
79 /** System call interrupted (perhaps due to signal) */
80 LIBUSB20_ERROR_INTERRUPTED
= -10,
82 /** Insufficient memory */
83 LIBUSB20_ERROR_NO_MEM
= -11,
85 /** Operation not supported or unimplemented on this platform */
86 LIBUSB20_ERROR_NOT_SUPPORTED
= -12,
89 LIBUSB20_ERROR_OTHER
= -99,
93 * libusb20_tr_get_status() values */
94 enum libusb20_transfer_status
{
95 /** Transfer completed without error. Note that this does not
96 * indicate that the entire amount of requested data was
98 LIBUSB20_TRANSFER_COMPLETED
,
100 /** Callback code to start transfer */
101 LIBUSB20_TRANSFER_START
,
103 /** Drain complete callback code */
104 LIBUSB20_TRANSFER_DRAINED
,
106 /** Transfer failed */
107 LIBUSB20_TRANSFER_ERROR
,
109 /** Transfer timed out */
110 LIBUSB20_TRANSFER_TIMED_OUT
,
112 /** Transfer was cancelled */
113 LIBUSB20_TRANSFER_CANCELLED
,
115 /** For bulk/interrupt endpoints: halt condition detected
116 * (endpoint stalled). For control endpoints: control request
118 LIBUSB20_TRANSFER_STALL
,
120 /** Device was disconnected */
121 LIBUSB20_TRANSFER_NO_DEVICE
,
123 /** Device sent more data than requested */
124 LIBUSB20_TRANSFER_OVERFLOW
,
128 * libusb20_tr_set_flags() values */
129 enum libusb20_transfer_flags
{
130 /** Report a short frame as error */
131 LIBUSB20_TRANSFER_SINGLE_SHORT_NOT_OK
= 0x0001,
133 /** Multiple short frames are not allowed */
134 LIBUSB20_TRANSFER_MULTI_SHORT_NOT_OK
= 0x0002,
136 /** All transmitted frames are short terminated */
137 LIBUSB20_TRANSFER_FORCE_SHORT
= 0x0004,
139 /** Will do a clear-stall before xfer */
140 LIBUSB20_TRANSFER_DO_CLEAR_STALL
= 0x0008,
144 * libusb20_dev_get_mode() values
146 enum libusb20_device_mode
{
147 LIBUSB20_MODE_HOST
, /* default */
148 LIBUSB20_MODE_DEVICE
,
152 * libusb20_dev_get_speed() values
155 LIBUSB20_SPEED_UNKNOWN
, /* default */
159 LIBUSB20_SPEED_VARIABLE
,
160 LIBUSB20_SPEED_SUPER
,
164 * libusb20_dev_set_power() values
170 LIBUSB20_POWER_SUSPEND
,
171 LIBUSB20_POWER_RESUME
,
174 struct usb_device_info
;
175 struct libusb20_transfer
;
176 struct libusb20_backend
;
177 struct libusb20_backend_methods
;
178 struct libusb20_device
;
179 struct libusb20_device_methods
;
180 struct libusb20_config
;
181 struct LIBUSB20_CONTROL_SETUP_DECODED
;
182 struct LIBUSB20_DEVICE_DESC_DECODED
;
184 typedef void (libusb20_tr_callback_t
)(struct libusb20_transfer
*xfer
);
186 struct libusb20_quirk
{
187 uint16_t vid
; /* vendor ID */
188 uint16_t pid
; /* product ID */
189 uint16_t bcdDeviceLow
; /* low revision value, inclusive */
190 uint16_t bcdDeviceHigh
; /* high revision value, inclusive */
191 uint16_t reserved
[2]; /* for the future */
192 /* quirk name, UQ_XXX, including terminating zero */
193 char quirkname
[64 - 12];
196 #define LIBUSB20_MAX_FRAME_PRE_SCALE (1U << 31)
198 /* USB transfer operations */
199 int libusb20_tr_close(struct libusb20_transfer
*xfer
);
200 int libusb20_tr_open(struct libusb20_transfer
*xfer
, uint32_t max_buf_size
, uint32_t max_frame_count
, uint8_t ep_no
);
201 int libusb20_tr_open_stream(struct libusb20_transfer
*xfer
, uint32_t max_buf_size
, uint32_t max_frame_count
, uint8_t ep_no
, uint16_t stream_id
);
202 struct libusb20_transfer
*libusb20_tr_get_pointer(struct libusb20_device
*pdev
, uint16_t tr_index
);
203 uint16_t libusb20_tr_get_time_complete(struct libusb20_transfer
*xfer
);
204 uint32_t libusb20_tr_get_actual_frames(struct libusb20_transfer
*xfer
);
205 uint32_t libusb20_tr_get_actual_length(struct libusb20_transfer
*xfer
);
206 uint32_t libusb20_tr_get_max_frames(struct libusb20_transfer
*xfer
);
207 uint32_t libusb20_tr_get_max_packet_length(struct libusb20_transfer
*xfer
);
208 uint32_t libusb20_tr_get_max_total_length(struct libusb20_transfer
*xfer
);
209 uint8_t libusb20_tr_get_status(struct libusb20_transfer
*xfer
);
210 uint8_t libusb20_tr_pending(struct libusb20_transfer
*xfer
);
211 void libusb20_tr_callback_wrapper(struct libusb20_transfer
*xfer
);
212 void libusb20_tr_clear_stall_sync(struct libusb20_transfer
*xfer
);
213 void libusb20_tr_drain(struct libusb20_transfer
*xfer
);
214 void libusb20_tr_set_buffer(struct libusb20_transfer
*xfer
, void *buffer
, uint16_t fr_index
);
215 void libusb20_tr_set_callback(struct libusb20_transfer
*xfer
, libusb20_tr_callback_t
*cb
);
216 void libusb20_tr_set_flags(struct libusb20_transfer
*xfer
, uint8_t flags
);
217 uint32_t libusb20_tr_get_length(struct libusb20_transfer
*xfer
, uint16_t fr_index
);
218 void libusb20_tr_set_length(struct libusb20_transfer
*xfer
, uint32_t length
, uint16_t fr_index
);
219 void libusb20_tr_set_priv_sc0(struct libusb20_transfer
*xfer
, void *sc0
);
220 void libusb20_tr_set_priv_sc1(struct libusb20_transfer
*xfer
, void *sc1
);
221 void libusb20_tr_set_timeout(struct libusb20_transfer
*xfer
, uint32_t timeout
);
222 void libusb20_tr_set_total_frames(struct libusb20_transfer
*xfer
, uint32_t nFrames
);
223 void libusb20_tr_setup_bulk(struct libusb20_transfer
*xfer
, void *pbuf
, uint32_t length
, uint32_t timeout
);
224 void libusb20_tr_setup_control(struct libusb20_transfer
*xfer
, void *psetup
, void *pbuf
, uint32_t timeout
);
225 void libusb20_tr_setup_intr(struct libusb20_transfer
*xfer
, void *pbuf
, uint32_t length
, uint32_t timeout
);
226 void libusb20_tr_setup_isoc(struct libusb20_transfer
*xfer
, void *pbuf
, uint32_t length
, uint16_t fr_index
);
227 uint8_t libusb20_tr_bulk_intr_sync(struct libusb20_transfer
*xfer
, void *pbuf
, uint32_t length
, uint32_t *pactlen
, uint32_t timeout
);
228 void libusb20_tr_start(struct libusb20_transfer
*xfer
);
229 void libusb20_tr_stop(struct libusb20_transfer
*xfer
);
230 void libusb20_tr_submit(struct libusb20_transfer
*xfer
);
231 void *libusb20_tr_get_priv_sc0(struct libusb20_transfer
*xfer
);
232 void *libusb20_tr_get_priv_sc1(struct libusb20_transfer
*xfer
);
235 /* USB device operations */
237 const char *libusb20_dev_get_backend_name(struct libusb20_device
*pdev
);
238 const char *libusb20_dev_get_desc(struct libusb20_device
*pdev
);
239 int libusb20_dev_close(struct libusb20_device
*pdev
);
240 int libusb20_dev_detach_kernel_driver(struct libusb20_device
*pdev
, uint8_t iface_index
);
241 int libusb20_dev_set_config_index(struct libusb20_device
*pdev
, uint8_t configIndex
);
242 int libusb20_dev_get_debug(struct libusb20_device
*pdev
);
243 int libusb20_dev_get_fd(struct libusb20_device
*pdev
);
244 int libusb20_dev_kernel_driver_active(struct libusb20_device
*pdev
, uint8_t iface_index
);
245 int libusb20_dev_open(struct libusb20_device
*pdev
, uint16_t transfer_max
);
246 int libusb20_dev_process(struct libusb20_device
*pdev
);
247 int libusb20_dev_request_sync(struct libusb20_device
*pdev
, struct LIBUSB20_CONTROL_SETUP_DECODED
*setup
, void *data
, uint16_t *pactlen
, uint32_t timeout
, uint8_t flags
);
248 int libusb20_dev_req_string_sync(struct libusb20_device
*pdev
, uint8_t index
, uint16_t langid
, void *ptr
, uint16_t len
);
249 int libusb20_dev_req_string_simple_sync(struct libusb20_device
*pdev
, uint8_t index
, void *ptr
, uint16_t len
);
250 int libusb20_dev_reset(struct libusb20_device
*pdev
);
251 int libusb20_dev_check_connected(struct libusb20_device
*pdev
);
252 int libusb20_dev_set_power_mode(struct libusb20_device
*pdev
, uint8_t power_mode
);
253 uint8_t libusb20_dev_get_power_mode(struct libusb20_device
*pdev
);
254 int libusb20_dev_get_port_path(struct libusb20_device
*pdev
, uint8_t *buf
, uint8_t bufsize
);
255 uint16_t libusb20_dev_get_power_usage(struct libusb20_device
*pdev
);
256 int libusb20_dev_set_alt_index(struct libusb20_device
*pdev
, uint8_t iface_index
, uint8_t alt_index
);
257 int libusb20_dev_get_info(struct libusb20_device
*pdev
, struct usb_device_info
*pinfo
);
258 int libusb20_dev_get_iface_desc(struct libusb20_device
*pdev
, uint8_t iface_index
, char *buf
, uint8_t len
);
260 struct LIBUSB20_DEVICE_DESC_DECODED
*libusb20_dev_get_device_desc(struct libusb20_device
*pdev
);
261 struct libusb20_config
*libusb20_dev_alloc_config(struct libusb20_device
*pdev
, uint8_t config_index
);
262 struct libusb20_device
*libusb20_dev_alloc(void);
263 uint8_t libusb20_dev_get_address(struct libusb20_device
*pdev
);
264 uint8_t libusb20_dev_get_parent_address(struct libusb20_device
*pdev
);
265 uint8_t libusb20_dev_get_parent_port(struct libusb20_device
*pdev
);
266 uint8_t libusb20_dev_get_bus_number(struct libusb20_device
*pdev
);
267 uint8_t libusb20_dev_get_mode(struct libusb20_device
*pdev
);
268 uint8_t libusb20_dev_get_speed(struct libusb20_device
*pdev
);
269 uint8_t libusb20_dev_get_config_index(struct libusb20_device
*pdev
);
270 void libusb20_dev_free(struct libusb20_device
*pdev
);
271 void libusb20_dev_set_debug(struct libusb20_device
*pdev
, int debug
);
272 void libusb20_dev_wait_process(struct libusb20_device
*pdev
, int timeout
);
274 /* USB global operations */
276 int libusb20_be_get_dev_quirk(struct libusb20_backend
*pbe
, uint16_t index
, struct libusb20_quirk
*pq
);
277 int libusb20_be_get_quirk_name(struct libusb20_backend
*pbe
, uint16_t index
, struct libusb20_quirk
*pq
);
278 int libusb20_be_add_dev_quirk(struct libusb20_backend
*pbe
, struct libusb20_quirk
*pq
);
279 int libusb20_be_remove_dev_quirk(struct libusb20_backend
*pbe
, struct libusb20_quirk
*pq
);
280 int libusb20_be_get_template(struct libusb20_backend
*pbe
, int *ptemp
);
281 int libusb20_be_set_template(struct libusb20_backend
*pbe
, int temp
);
283 /* USB backend operations */
285 struct libusb20_backend
*libusb20_be_alloc(const struct libusb20_backend_methods
*methods
);
286 struct libusb20_backend
*libusb20_be_alloc_default(void);
287 struct libusb20_backend
*libusb20_be_alloc_freebsd(void);
288 struct libusb20_backend
*libusb20_be_alloc_linux(void);
289 struct libusb20_backend
*libusb20_be_alloc_ugen20(void);
290 struct libusb20_device
*libusb20_be_device_foreach(struct libusb20_backend
*pbe
, struct libusb20_device
*pdev
);
291 void libusb20_be_dequeue_device(struct libusb20_backend
*pbe
, struct libusb20_device
*pdev
);
292 void libusb20_be_enqueue_device(struct libusb20_backend
*pbe
, struct libusb20_device
*pdev
);
293 void libusb20_be_free(struct libusb20_backend
*pbe
);
297 const char *libusb20_strerror(int);
298 const char *libusb20_error_name(int);
308 #endif /* _LIBUSB20_H_ */