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>
35 /* Workaround for old libusb-1.0 */
38 #define libusb_handle_events_timeout_completed(ctx, tv, x) libusb_handle_events_timeout(ctx, tv)
44 #define USB_TIMEOUT 10000
46 #define ID_VENDOR 0x1b1f
47 #define ID_PRODUCT 0xc00f
48 #define ID_PRODUCT_BL 0xc010
51 #define ASYNC_SIZE 0x0040
52 #define ASYNC_INTERVAL 32
62 /* Not in all libusb-1.0 versions, so we have to roll our own :-( */
63 static char * usb_strerror(int e
)
65 static char unknerr
[256];
71 return "Input/output error";
72 case LIBUSB_ERROR_INVALID_PARAM
:
73 return "Invalid parameter";
74 case LIBUSB_ERROR_ACCESS
:
75 return "Access denied (insufficient permissions)";
76 case LIBUSB_ERROR_NO_DEVICE
:
77 return "No such device (it may have been disconnected)";
78 case LIBUSB_ERROR_NOT_FOUND
:
79 return "Entity not found";
80 case LIBUSB_ERROR_BUSY
:
81 return "Resource busy";
82 case LIBUSB_ERROR_TIMEOUT
:
83 return "Operation timed out";
84 case LIBUSB_ERROR_OVERFLOW
:
86 case LIBUSB_ERROR_PIPE
:
88 case LIBUSB_ERROR_INTERRUPTED
:
89 return "System call interrupted (perhaps due to signal)";
90 case LIBUSB_ERROR_NO_MEM
:
91 return "Insufficient memory";
92 case LIBUSB_ERROR_NOT_SUPPORTED
:
93 return "Operation not supported or unimplemented on this platform";
94 case LIBUSB_ERROR_OTHER
:
97 snprintf(unknerr
, sizeof(unknerr
), "Unknown error code %d / 0x%02x", e
, e
);
101 static libusb_device_handle
*hmcfgusb_find() {
102 libusb_device_handle
*devh
= NULL
;
103 libusb_device
**list
;
108 cnt
= libusb_get_device_list(NULL
, &list
);
110 fprintf(stderr
, "Can't get USB device list: %d\n", (int)cnt
);
114 for (i
= 0; i
< cnt
; i
++){
115 struct libusb_device_descriptor desc
;
117 err
= libusb_get_device_descriptor(list
[i
], &desc
);
121 if ((desc
.idVendor
== ID_VENDOR
) &&
122 ((desc
.idProduct
== ID_PRODUCT
) || (desc
.idProduct
== ID_PRODUCT_BL
))) {
123 libusb_device
*dev
= list
[i
];
125 err
= libusb_open(dev
, &devh
);
127 fprintf(stderr
, "Can't open device: %s\n", usb_strerror(err
));
131 err
= libusb_detach_kernel_driver(devh
, INTERFACE
);
132 if ((err
!= 0) && (err
!= LIBUSB_ERROR_NOT_FOUND
)) {
133 fprintf(stderr
, "Can't detach kernel driver: %s\n", usb_strerror(err
));
137 err
= libusb_claim_interface(devh
, INTERFACE
);
139 fprintf(stderr
, "Can't claim interface: %s\n", usb_strerror(err
));
151 int hmcfgusb_send_null_frame(struct hmcfgusb_dev
*usbdev
, int silent
)
155 unsigned char out
[0x40];
157 memset(out
, 0, sizeof(out
));
159 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, out
, 0, &cnt
, USB_TIMEOUT
);
160 if (err
&& (!silent
)) {
161 fprintf(stderr
, "Can't send null frame: %s\n", usb_strerror(err
));
168 int hmcfgusb_send(struct hmcfgusb_dev
*usbdev
, unsigned char* send_data
, int len
, int done
)
172 struct timeval tv_start
, tv_end
;
176 hexdump(send_data
, len
, "USB < ");
179 gettimeofday(&tv_start
, NULL
);
181 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, send_data
, len
, &cnt
, USB_TIMEOUT
);
183 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
188 if (!hmcfgusb_send_null_frame(usbdev
, 0)) {
193 gettimeofday(&tv_end
, NULL
);
194 msec
= ((tv_end
.tv_sec
-tv_start
.tv_sec
)*1000)+((tv_end
.tv_usec
-tv_start
.tv_usec
)/1000);
197 fprintf(stderr
, "usb-transfer took more than 100ms (%dms), this may lead to timing problems!\n", msec
);
199 fprintf(stderr
, "usb-transfer took %dms!\n", msec
);
205 static struct libusb_transfer
*hmcfgusb_prepare_int(libusb_device_handle
*devh
, libusb_transfer_cb_fn cb
, void *data
)
207 unsigned char *data_buf
;
208 struct libusb_transfer
*transfer
;
211 data_buf
= malloc(ASYNC_SIZE
);
213 fprintf(stderr
, "Can't allocate memory for data-buffer!\n");
217 transfer
= libusb_alloc_transfer(0);
219 fprintf(stderr
, "Can't allocate memory for usb-transfer!\n");
224 libusb_fill_interrupt_transfer(transfer
, devh
, EP_IN
,
225 data_buf
, ASYNC_SIZE
, cb
, data
, USB_TIMEOUT
);
227 transfer
->flags
= LIBUSB_TRANSFER_SHORT_NOT_OK
| LIBUSB_TRANSFER_FREE_BUFFER
;
229 err
= libusb_submit_transfer(transfer
);
231 fprintf(stderr
, "Can't submit transfer: %s\n", usb_strerror(err
));
232 libusb_free_transfer(transfer
);
239 struct hmcfgusb_cb_data
{
240 struct hmcfgusb_dev
*dev
;
245 static void LIBUSB_CALL
hmcfgusb_interrupt(struct libusb_transfer
*transfer
)
248 struct hmcfgusb_cb_data
*cb_data
;
250 cb_data
= transfer
->user_data
;
252 if (transfer
->status
!= LIBUSB_TRANSFER_COMPLETED
) {
253 if (transfer
->status
!= LIBUSB_TRANSFER_TIMED_OUT
) {
254 fprintf(stderr
, "Interrupt transfer not completed: %s!\n", usb_strerror(transfer
->status
));
257 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
258 libusb_free_transfer(cb_data
->dev
->transfer
);
259 cb_data
->dev
->transfer
= NULL
;
265 if (cb_data
&& cb_data
->cb
) {
267 hexdump(transfer
->buffer
, transfer
->actual_length
, "USB > ");
269 if (!cb_data
->cb(transfer
->buffer
, transfer
->actual_length
, cb_data
->data
)) {
272 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
273 libusb_free_transfer(cb_data
->dev
->transfer
);
274 cb_data
->dev
->transfer
= NULL
;
281 hexdump(transfer
->buffer
, transfer
->actual_length
, "> ");
285 err
= libusb_submit_transfer(transfer
);
287 fprintf(stderr
, "Can't re-submit transfer: %s\n", usb_strerror(err
));
288 libusb_free_transfer(transfer
);
289 cb_data
->dev
->transfer
= NULL
;
294 struct hmcfgusb_dev
*hmcfgusb_init(hmcfgusb_cb_fn cb
, void *data
)
296 libusb_device_handle
*devh
= NULL
;
297 const struct libusb_pollfd
**usb_pfd
= NULL
;
298 struct hmcfgusb_dev
*dev
= NULL
;
299 struct hmcfgusb_cb_data
*cb_data
= NULL
;
303 err
= libusb_init(NULL
);
305 fprintf(stderr
, "Can't initialize libusb: %s\n", usb_strerror(err
));
309 devh
= hmcfgusb_find();
311 fprintf(stderr
, "Can't find/open hmcfgusb!\n");
315 dev
= malloc(sizeof(struct hmcfgusb_dev
));
317 perror("Can't allocate memory for hmcfgusb_dev");
321 memset(dev
, 0, sizeof(struct hmcfgusb_dev
));
322 dev
->usb_devh
= devh
;
324 cb_data
= malloc(sizeof(struct hmcfgusb_cb_data
));
326 perror("Can't allocate memory for hmcfgusb_cb_data");
331 memset(cb_data
, 0, sizeof(struct hmcfgusb_cb_data
));
335 cb_data
->data
= data
;
337 dev
->transfer
= hmcfgusb_prepare_int(devh
, hmcfgusb_interrupt
, cb_data
);
338 if (!dev
->transfer
) {
339 fprintf(stderr
, "Can't prepare async device io!\n");
345 usb_pfd
= libusb_get_pollfds(NULL
);
347 fprintf(stderr
, "Can't get FDset from libusb!\n");
354 for(i
= 0; usb_pfd
[i
]; i
++)
357 dev
->pfd
= malloc(dev
->n_usb_pfd
* sizeof(struct pollfd
));
359 perror("Can't allocate memory for poll-fds");
365 memset(dev
->pfd
, 0, dev
->n_usb_pfd
* sizeof(struct pollfd
));
367 for (i
= 0; i
< dev
->n_usb_pfd
; i
++) {
368 dev
->pfd
[i
].fd
= usb_pfd
[i
]->fd
;
369 dev
->pfd
[i
].events
= usb_pfd
[i
]->events
;
370 dev
->pfd
[i
].revents
= 0;
375 dev
->n_pfd
= dev
->n_usb_pfd
;
382 int hmcfgusb_add_pfd(struct hmcfgusb_dev
*dev
, int fd
, short events
)
385 dev
->pfd
= realloc(dev
->pfd
, dev
->n_pfd
* sizeof(struct pollfd
));
387 perror("Can't realloc poll-fds");
391 dev
->pfd
[dev
->n_pfd
-1].fd
= fd
;
392 dev
->pfd
[dev
->n_pfd
-1].events
= events
;
393 dev
->pfd
[dev
->n_pfd
-1].revents
= 0;
398 int hmcfgusb_poll(struct hmcfgusb_dev
*dev
, int timeout
)
410 memset(&tv
, 0, sizeof(tv
));
411 err
= libusb_get_next_timeout(NULL
, &tv
);
413 fprintf(stderr
, "libusb_get_next_timeout: %s\n", usb_strerror(err
));
416 } else if (err
== 0) {
417 /* No pending timeout or a sane platform */
420 if ((tv
.tv_sec
== 0) && (tv
.tv_usec
== 0)) {
422 } else if (tv
.tv_sec
> timeout
) {
429 for (i
= 0; i
< dev
->n_pfd
; i
++) {
430 dev
->pfd
[i
].revents
= 0;
433 n
= poll(dev
->pfd
, dev
->n_pfd
, tv
.tv_sec
* 1000);
442 for (fd_n
= 0; fd_n
< dev
->n_pfd
; fd_n
++) {
443 if (dev
->pfd
[fd_n
].revents
) {
444 if (fd_n
< dev
->n_usb_pfd
) {
449 return dev
->pfd
[fd_n
].fd
;
457 memset(&tv
, 0, sizeof(tv
));
458 err
= libusb_handle_events_timeout_completed(NULL
, &tv
, NULL
);
460 fprintf(stderr
, "libusb_handle_events_timeout_completed: %s\n", usb_strerror(err
));
468 fprintf(stderr
, "closing device-connection due to error %d\n", quit
);
478 void hmcfgusb_close(struct hmcfgusb_dev
*dev
)
483 libusb_cancel_transfer(dev
->transfer
);
486 err
= libusb_release_interface(dev
->usb_devh
, INTERFACE
);
488 fprintf(stderr
, "Can't release interface: %s\n", usb_strerror(err
));
491 libusb_close(dev
->usb_devh
);
498 void hmcfgusb_set_debug(int d
)