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
61 static int libusb_initialized
= 0;
63 /* Not in all libusb-1.0 versions, so we have to roll our own :-( */
64 static char * usb_strerror(int e
)
66 static char unknerr
[256];
72 return "Input/output error";
73 case LIBUSB_ERROR_INVALID_PARAM
:
74 return "Invalid parameter";
75 case LIBUSB_ERROR_ACCESS
:
76 return "Access denied (insufficient permissions)";
77 case LIBUSB_ERROR_NO_DEVICE
:
78 return "No such device (it may have been disconnected)";
79 case LIBUSB_ERROR_NOT_FOUND
:
80 return "Entity not found";
81 case LIBUSB_ERROR_BUSY
:
82 return "Resource busy";
83 case LIBUSB_ERROR_TIMEOUT
:
84 return "Operation timed out";
85 case LIBUSB_ERROR_OVERFLOW
:
87 case LIBUSB_ERROR_PIPE
:
89 case LIBUSB_ERROR_INTERRUPTED
:
90 return "System call interrupted (perhaps due to signal)";
91 case LIBUSB_ERROR_NO_MEM
:
92 return "Insufficient memory";
93 case LIBUSB_ERROR_NOT_SUPPORTED
:
94 return "Operation not supported or unimplemented on this platform";
95 case LIBUSB_ERROR_OTHER
:
98 snprintf(unknerr
, sizeof(unknerr
), "Unknown error code %d / 0x%02x", e
, e
);
102 static libusb_device_handle
*hmcfgusb_find(int vid
, int pid
) {
103 libusb_device_handle
*devh
= NULL
;
104 libusb_device
**list
;
109 cnt
= libusb_get_device_list(NULL
, &list
);
111 fprintf(stderr
, "Can't get USB device list: %d\n", (int)cnt
);
115 for (i
= 0; i
< cnt
; i
++){
116 struct libusb_device_descriptor desc
;
118 err
= libusb_get_device_descriptor(list
[i
], &desc
);
122 if ((desc
.idVendor
== vid
) && (desc
.idProduct
== pid
)) {
123 libusb_device
*dev
= list
[i
];
125 err
= libusb_open(dev
, &devh
);
127 fprintf(stderr
, "Can't open device: %s\n", usb_strerror(err
));
128 libusb_free_device_list(list
, 1);
132 err
= libusb_detach_kernel_driver(devh
, INTERFACE
);
133 if ((err
!= 0) && (err
!= LIBUSB_ERROR_NOT_FOUND
)) {
134 fprintf(stderr
, "Can't detach kernel driver: %s\n", usb_strerror(err
));
136 libusb_free_device_list(list
, 1);
140 err
= libusb_claim_interface(devh
, INTERFACE
);
142 fprintf(stderr
, "Can't claim interface: %s\n", usb_strerror(err
));
144 libusb_free_device_list(list
, 1);
148 libusb_free_device_list(list
, 0);
154 libusb_free_device_list(list
, 1);
158 int hmcfgusb_send_null_frame(struct hmcfgusb_dev
*usbdev
, int silent
)
162 unsigned char out
[0x40];
164 memset(out
, 0, sizeof(out
));
166 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, out
, 0, &cnt
, USB_TIMEOUT
);
167 if (err
&& (!silent
)) {
168 fprintf(stderr
, "Can't send null frame: %s\n", usb_strerror(err
));
175 int hmcfgusb_send(struct hmcfgusb_dev
*usbdev
, unsigned char* send_data
, int len
, int done
)
179 struct timeval tv_start
, tv_end
;
183 hexdump(send_data
, len
, "USB < ");
186 gettimeofday(&tv_start
, NULL
);
188 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, send_data
, len
, &cnt
, USB_TIMEOUT
);
190 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
195 if (!hmcfgusb_send_null_frame(usbdev
, 0)) {
200 gettimeofday(&tv_end
, NULL
);
201 msec
= ((tv_end
.tv_sec
-tv_start
.tv_sec
)*1000)+((tv_end
.tv_usec
-tv_start
.tv_usec
)/1000);
204 fprintf(stderr
, "usb-transfer took more than 100ms (%dms), this may lead to timing problems!\n", msec
);
206 fprintf(stderr
, "usb-transfer took %dms!\n", msec
);
212 static struct libusb_transfer
*hmcfgusb_prepare_int(libusb_device_handle
*devh
, libusb_transfer_cb_fn cb
, void *data
, int in_size
)
214 unsigned char *data_buf
;
215 struct libusb_transfer
*transfer
;
218 data_buf
= malloc(in_size
);
220 fprintf(stderr
, "Can't allocate memory for data-buffer!\n");
224 transfer
= libusb_alloc_transfer(0);
226 fprintf(stderr
, "Can't allocate memory for usb-transfer!\n");
231 libusb_fill_interrupt_transfer(transfer
, devh
, EP_IN
,
232 data_buf
, in_size
, cb
, data
, USB_TIMEOUT
);
234 transfer
->flags
= LIBUSB_TRANSFER_FREE_BUFFER
;
236 err
= libusb_submit_transfer(transfer
);
238 fprintf(stderr
, "Can't submit transfer: %s\n", usb_strerror(err
));
239 libusb_free_transfer(transfer
);
246 struct hmcfgusb_cb_data
{
247 struct hmcfgusb_dev
*dev
;
252 static void LIBUSB_CALL
hmcfgusb_interrupt(struct libusb_transfer
*transfer
)
255 struct hmcfgusb_cb_data
*cb_data
;
257 cb_data
= transfer
->user_data
;
259 if (transfer
->status
!= LIBUSB_TRANSFER_COMPLETED
) {
260 if (transfer
->status
!= LIBUSB_TRANSFER_TIMED_OUT
) {
261 if (transfer
->status
!= LIBUSB_TRANSFER_CANCELLED
)
262 fprintf(stderr
, "Interrupt transfer not completed: %s!\n", usb_strerror(transfer
->status
));
266 libusb_free_transfer(transfer
);
268 if (cb_data
->dev
&& cb_data
->dev
->transfer
) {
269 cb_data
->dev
->transfer
= NULL
;
276 if (cb_data
&& cb_data
->cb
) {
278 hexdump(transfer
->buffer
, transfer
->actual_length
, "USB > ");
280 if (!cb_data
->cb(transfer
->buffer
, transfer
->actual_length
, cb_data
->data
)) {
283 libusb_free_transfer(transfer
);
284 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
285 cb_data
->dev
->transfer
= NULL
;
292 hexdump(transfer
->buffer
, transfer
->actual_length
, "> ");
296 err
= libusb_submit_transfer(transfer
);
298 fprintf(stderr
, "Can't re-submit transfer: %s\n", usb_strerror(err
));
299 libusb_free_transfer(transfer
);
302 cb_data
->dev
->transfer
= NULL
;
308 struct hmcfgusb_dev
*hmcfgusb_init(hmcfgusb_cb_fn cb
, void *data
)
310 libusb_device_handle
*devh
= NULL
;
311 const struct libusb_pollfd
**usb_pfd
= NULL
;
312 struct hmcfgusb_dev
*dev
= NULL
;
313 struct hmcfgusb_cb_data
*cb_data
= NULL
;
318 if (!libusb_initialized
) {
319 err
= libusb_init(NULL
);
321 fprintf(stderr
, "Can't initialize libusb: %s\n", usb_strerror(err
));
325 libusb_initialized
= 1;
327 devh
= hmcfgusb_find(ID_VENDOR
, ID_PRODUCT
);
329 devh
= hmcfgusb_find(ID_VENDOR
, ID_PRODUCT_BL
);
331 fprintf(stderr
, "Can't find/open hmcfgusb!\n");
332 #ifdef NEED_LIBUSB_EXIT
340 dev
= malloc(sizeof(struct hmcfgusb_dev
));
342 perror("Can't allocate memory for hmcfgusb_dev");
344 #ifdef NEED_LIBUSB_EXIT
350 memset(dev
, 0, sizeof(struct hmcfgusb_dev
));
351 dev
->usb_devh
= devh
;
352 dev
->bootloader
= bootloader
;
353 dev
->opened_at
= time(NULL
);
355 cb_data
= malloc(sizeof(struct hmcfgusb_cb_data
));
357 perror("Can't allocate memory for hmcfgusb_cb_data");
360 #ifdef NEED_LIBUSB_EXIT
366 memset(cb_data
, 0, sizeof(struct hmcfgusb_cb_data
));
370 cb_data
->data
= data
;
372 dev
->transfer
= hmcfgusb_prepare_int(devh
, hmcfgusb_interrupt
, cb_data
, ASYNC_SIZE
);
374 if (!dev
->transfer
) {
375 fprintf(stderr
, "Can't prepare async device io!\n");
379 #ifdef NEED_LIBUSB_EXIT
385 usb_pfd
= libusb_get_pollfds(NULL
);
387 fprintf(stderr
, "Can't get FDset from libusb!\n");
388 libusb_cancel_transfer(dev
->transfer
);
389 libusb_handle_events(NULL
);
393 #ifdef NEED_LIBUSB_EXIT
400 for(i
= 0; usb_pfd
[i
]; i
++)
403 dev
->pfd
= malloc(dev
->n_usb_pfd
* sizeof(struct pollfd
));
405 perror("Can't allocate memory for poll-fds");
406 libusb_cancel_transfer(dev
->transfer
);
407 libusb_handle_events(NULL
);
411 #ifdef NEED_LIBUSB_EXIT
417 memset(dev
->pfd
, 0, dev
->n_usb_pfd
* sizeof(struct pollfd
));
419 for (i
= 0; i
< dev
->n_usb_pfd
; i
++) {
420 dev
->pfd
[i
].fd
= usb_pfd
[i
]->fd
;
421 dev
->pfd
[i
].events
= usb_pfd
[i
]->events
;
422 dev
->pfd
[i
].revents
= 0;
427 dev
->n_pfd
= dev
->n_usb_pfd
;
434 int hmcfgusb_add_pfd(struct hmcfgusb_dev
*dev
, int fd
, short events
)
437 dev
->pfd
= realloc(dev
->pfd
, dev
->n_pfd
* sizeof(struct pollfd
));
439 perror("Can't realloc poll-fds");
443 dev
->pfd
[dev
->n_pfd
-1].fd
= fd
;
444 dev
->pfd
[dev
->n_pfd
-1].events
= events
;
445 dev
->pfd
[dev
->n_pfd
-1].revents
= 0;
450 int hmcfgusb_poll(struct hmcfgusb_dev
*dev
, int timeout
)
462 memset(&tv
, 0, sizeof(tv
));
463 err
= libusb_get_next_timeout(NULL
, &tv
);
465 fprintf(stderr
, "libusb_get_next_timeout: %s\n", usb_strerror(err
));
468 } else if (err
== 0) {
469 /* No pending timeout or a sane platform */
471 if ((tv
.tv_sec
== 0) && (tv
.tv_usec
== 0)) {
473 } else if ((tv
.tv_sec
* 1000) < timeout
) {
474 timeout
= tv
.tv_sec
* 1000;
479 for (i
= 0; i
< dev
->n_pfd
; i
++) {
480 dev
->pfd
[i
].revents
= 0;
483 n
= poll(dev
->pfd
, dev
->n_pfd
, timeout
);
492 for (fd_n
= 0; fd_n
< dev
->n_pfd
; fd_n
++) {
493 if (dev
->pfd
[fd_n
].revents
) {
494 if (fd_n
< dev
->n_usb_pfd
) {
499 return dev
->pfd
[fd_n
].fd
;
507 memset(&tv
, 0, sizeof(tv
));
508 err
= libusb_handle_events_timeout_completed(NULL
, &tv
, NULL
);
510 fprintf(stderr
, "libusb_handle_events_timeout_completed: %s\n", usb_strerror(err
));
518 fprintf(stderr
, "closing device-connection due to error %d\n", quit
);
528 void hmcfgusb_enter_bootloader(struct hmcfgusb_dev
*dev
)
530 uint8_t out
[ASYNC_SIZE
];
532 if (dev
->bootloader
) {
533 fprintf(stderr
, "request for bootloader mode, but device already in bootloader!\n");
537 memset(out
, 0, sizeof(out
));
539 hmcfgusb_send(dev
, out
, sizeof(out
), 1);
544 void hmcfgusb_leave_bootloader(struct hmcfgusb_dev
*dev
)
546 uint8_t out
[ASYNC_SIZE
];
548 if (!dev
->bootloader
) {
549 fprintf(stderr
, "request for leaving bootloader mode, but device already in normal mode!\n");
553 memset(out
, 0, sizeof(out
));
555 hmcfgusb_send(dev
, out
, sizeof(out
), 1);
560 void hmcfgusb_close(struct hmcfgusb_dev
*dev
)
565 libusb_cancel_transfer(dev
->transfer
);
566 libusb_handle_events(NULL
);
569 err
= libusb_release_interface(dev
->usb_devh
, INTERFACE
);
571 fprintf(stderr
, "Can't release interface: %s\n", usb_strerror(err
));
574 libusb_close(dev
->usb_devh
);
575 #ifdef NEED_LIBUSB_EXIT
582 void hmcfgusb_exit(void)
584 if (libusb_initialized
) {
586 libusb_initialized
= 0;
590 void hmcfgusb_set_debug(int d
)