1 /* HM-CFG-USB libusb-driver
3 * Copyright (c) 2013 Michael Gernoth <michael@gernoth.net>
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to
7 * deal in the Software without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
33 #include <libusb-1.0/libusb.h>
38 #define USB_TIMEOUT 10000
40 #define ID_VENDOR 0x1b1f
41 #define ID_PRODUCT 0xc00f
42 #define ID_PRODUCT_BL 0xc010
45 #define ASYNC_SIZE 0x0040
46 #define ASYNC_INTERVAL 32
56 /* Not in all libusb-1.0 versions, so we have to roll our own :-( */
57 static char * usb_strerror(int e
)
59 static char unknerr
[256];
65 return "Input/output error";
66 case LIBUSB_ERROR_INVALID_PARAM
:
67 return "Invalid parameter";
68 case LIBUSB_ERROR_ACCESS
:
69 return "Access denied (insufficient permissions)";
70 case LIBUSB_ERROR_NO_DEVICE
:
71 return "No such device (it may have been disconnected)";
72 case LIBUSB_ERROR_NOT_FOUND
:
73 return "Entity not found";
74 case LIBUSB_ERROR_BUSY
:
75 return "Resource busy";
76 case LIBUSB_ERROR_TIMEOUT
:
77 return "Operation timed out";
78 case LIBUSB_ERROR_OVERFLOW
:
80 case LIBUSB_ERROR_PIPE
:
82 case LIBUSB_ERROR_INTERRUPTED
:
83 return "System call interrupted (perhaps due to signal)";
84 case LIBUSB_ERROR_NO_MEM
:
85 return "Insufficient memory";
86 case LIBUSB_ERROR_NOT_SUPPORTED
:
87 return "Operation not supported or unimplemented on this platform";
88 case LIBUSB_ERROR_OTHER
:
91 snprintf(unknerr
, sizeof(unknerr
), "Unknown error code %d / 0x%02x", e
, e
);
95 static libusb_device_handle
*hmcfgusb_find() {
96 libusb_device_handle
*devh
= NULL
;
102 cnt
= libusb_get_device_list(NULL
, &list
);
104 fprintf(stderr
, "Can't get USB device list: %d\n", (int)cnt
);
108 for (i
= 0; i
< cnt
; i
++){
109 struct libusb_device_descriptor desc
;
111 err
= libusb_get_device_descriptor(list
[i
], &desc
);
115 if ((desc
.idVendor
== ID_VENDOR
) &&
116 ((desc
.idProduct
== ID_PRODUCT
) || (desc
.idProduct
== ID_PRODUCT_BL
))) {
117 libusb_device
*dev
= list
[i
];
119 err
= libusb_open(dev
, &devh
);
121 fprintf(stderr
, "Can't open device: %s\n", usb_strerror(err
));
125 err
= libusb_detach_kernel_driver(devh
, INTERFACE
);
126 if ((err
!= 0) && (err
!= LIBUSB_ERROR_NOT_FOUND
)) {
127 fprintf(stderr
, "Can't detach kernel driver: %s\n", usb_strerror(err
));
131 err
= libusb_claim_interface(devh
, INTERFACE
);
133 fprintf(stderr
, "Can't claim interface: %s\n", usb_strerror(err
));
145 int hmcfgusb_send_null_frame(struct hmcfgusb_dev
*usbdev
)
150 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, NULL
, 0, &cnt
, USB_TIMEOUT
);
152 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
159 int hmcfgusb_send(struct hmcfgusb_dev
*usbdev
, unsigned char* send_data
, int len
, int done
)
163 struct timeval tv_start
, tv_end
;
167 hexdump(send_data
, len
, "USB < ");
170 gettimeofday(&tv_start
, NULL
);
172 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, send_data
, len
, &cnt
, USB_TIMEOUT
);
174 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
179 if (!hmcfgusb_send_null_frame(usbdev
)) {
184 gettimeofday(&tv_end
, NULL
);
185 msec
= ((tv_end
.tv_sec
-tv_start
.tv_sec
)*1000)+((tv_end
.tv_usec
-tv_start
.tv_usec
)/1000);
188 fprintf(stderr
, "usb-transfer took more than 100ms (%dms), this may lead to timing problems!\n", msec
);
190 fprintf(stderr
, "usb-transfer took %dms!\n", msec
);
196 static struct libusb_transfer
*hmcfgusb_prepare_int(libusb_device_handle
*devh
, libusb_transfer_cb_fn cb
, void *data
)
198 unsigned char *data_buf
;
199 struct libusb_transfer
*transfer
;
202 data_buf
= malloc(ASYNC_SIZE
);
204 fprintf(stderr
, "Can't allocate memory for data-buffer!\n");
208 transfer
= libusb_alloc_transfer(0);
210 fprintf(stderr
, "Can't allocate memory for usb-transfer!\n");
215 libusb_fill_interrupt_transfer(transfer
, devh
, EP_IN
,
216 data_buf
, ASYNC_SIZE
, cb
, data
, USB_TIMEOUT
);
218 transfer
->flags
= LIBUSB_TRANSFER_SHORT_NOT_OK
| LIBUSB_TRANSFER_FREE_BUFFER
;
220 err
= libusb_submit_transfer(transfer
);
222 fprintf(stderr
, "Can't submit transfer: %s\n", usb_strerror(err
));
223 libusb_free_transfer(transfer
);
230 struct hmcfgusb_cb_data
{
231 struct hmcfgusb_dev
*dev
;
236 static void LIBUSB_CALL
hmcfgusb_interrupt(struct libusb_transfer
*transfer
)
239 struct hmcfgusb_cb_data
*cb_data
;
241 cb_data
= transfer
->user_data
;
243 if (transfer
->status
!= LIBUSB_TRANSFER_COMPLETED
) {
244 if (transfer
->status
!= LIBUSB_TRANSFER_TIMED_OUT
) {
245 fprintf(stderr
, "Interrupt transfer not completed: %d!\n", transfer
->status
);
248 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
249 libusb_free_transfer(cb_data
->dev
->transfer
);
250 cb_data
->dev
->transfer
= NULL
;
256 if (cb_data
&& cb_data
->cb
) {
258 hexdump(transfer
->buffer
, transfer
->actual_length
, "USB > ");
260 if (!cb_data
->cb(transfer
->buffer
, transfer
->actual_length
, cb_data
->data
)) {
263 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
264 libusb_free_transfer(cb_data
->dev
->transfer
);
265 cb_data
->dev
->transfer
= NULL
;
272 hexdump(transfer
->buffer
, transfer
->actual_length
, "> ");
276 err
= libusb_submit_transfer(transfer
);
278 fprintf(stderr
, "Can't re-submit transfer: %s\n", usb_strerror(err
));
279 libusb_free_transfer(transfer
);
280 cb_data
->dev
->transfer
= NULL
;
285 struct hmcfgusb_dev
*hmcfgusb_init(hmcfgusb_cb_fn cb
, void *data
)
287 libusb_device_handle
*devh
= NULL
;
288 const struct libusb_pollfd
**usb_pfd
= NULL
;
289 struct hmcfgusb_dev
*dev
= NULL
;
290 struct hmcfgusb_cb_data
*cb_data
= NULL
;
294 err
= libusb_init(NULL
);
296 fprintf(stderr
, "Can't initialize libusb: %s\n", usb_strerror(err
));
300 devh
= hmcfgusb_find();
302 fprintf(stderr
, "Can't find/open hmcfgusb!\n");
306 dev
= malloc(sizeof(struct hmcfgusb_dev
));
308 perror("Can't allocate memory for hmcfgusb_dev");
312 memset(dev
, 0, sizeof(struct hmcfgusb_dev
));
313 dev
->usb_devh
= devh
;
315 cb_data
= malloc(sizeof(struct hmcfgusb_cb_data
));
317 perror("Can't allocate memory for hmcfgusb_cb_data");
322 memset(cb_data
, 0, sizeof(struct hmcfgusb_cb_data
));
326 cb_data
->data
= data
;
328 dev
->transfer
= hmcfgusb_prepare_int(devh
, hmcfgusb_interrupt
, cb_data
);
329 if (!dev
->transfer
) {
330 fprintf(stderr
, "Can't prepare async device io!\n");
336 usb_pfd
= libusb_get_pollfds(NULL
);
338 fprintf(stderr
, "Can't get FDset from libusb!\n");
345 for(i
= 0; usb_pfd
[i
]; i
++)
348 dev
->pfd
= malloc(dev
->n_usb_pfd
* sizeof(struct pollfd
));
350 perror("Can't allocate memory for poll-fds");
356 memset(dev
->pfd
, 0, dev
->n_usb_pfd
* sizeof(struct pollfd
));
358 for (i
= 0; i
< dev
->n_usb_pfd
; i
++) {
359 dev
->pfd
[i
].fd
= usb_pfd
[i
]->fd
;
360 dev
->pfd
[i
].events
= usb_pfd
[i
]->events
;
361 dev
->pfd
[i
].revents
= 0;
366 dev
->n_pfd
= dev
->n_usb_pfd
;
373 int hmcfgusb_add_pfd(struct hmcfgusb_dev
*dev
, int fd
, short events
)
376 dev
->pfd
= realloc(dev
->pfd
, dev
->n_pfd
* sizeof(struct pollfd
));
378 perror("Can't realloc poll-fds");
382 dev
->pfd
[dev
->n_pfd
-1].fd
= fd
;
383 dev
->pfd
[dev
->n_pfd
-1].events
= events
;
384 dev
->pfd
[dev
->n_pfd
-1].revents
= 0;
389 int hmcfgusb_poll(struct hmcfgusb_dev
*dev
, int timeout
)
400 memset(&tv
, 0, sizeof(tv
));
401 err
= libusb_get_next_timeout(NULL
, &tv
);
403 fprintf(stderr
, "libusb_get_next_timeout: %s\n", usb_strerror(err
));
406 } else if (err
== 0) {
407 /* No pending timeout or a sane platform */
410 if ((tv
.tv_sec
== 0) && (tv
.tv_usec
== 0)) {
412 } else if (tv
.tv_sec
> timeout
) {
419 for (i
= 0; i
< dev
->n_pfd
; i
++) {
420 dev
->pfd
[i
].revents
= 0;
423 n
= poll(dev
->pfd
, dev
->n_pfd
, tv
.tv_sec
* 1000);
431 for (fd_n
= 0; fd_n
< dev
->n_pfd
; fd_n
++) {
432 if (dev
->pfd
[fd_n
].revents
) {
433 if (fd_n
< dev
->n_usb_pfd
) {
438 return dev
->pfd
[fd_n
].fd
;
446 memset(&tv
, 0, sizeof(tv
));
447 err
= libusb_handle_events_timeout_completed(NULL
, &tv
, NULL
);
449 fprintf(stderr
, "libusb_handle_events_timeout_completed: %s\n", usb_strerror(err
));
457 fprintf(stderr
, "closing device-connection due to error %d\n", quit
);
464 void hmcfgusb_close(struct hmcfgusb_dev
*dev
)
469 libusb_cancel_transfer(dev
->transfer
);
472 err
= libusb_release_interface(dev
->usb_devh
, INTERFACE
);
474 fprintf(stderr
, "Can't release interface: %s\n", usb_strerror(err
));
477 libusb_close(dev
->usb_devh
);
484 void hmcfgusb_set_debug(int d
)