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
44 #define ASYNC_SIZE 0x0040
45 #define ASYNC_INTERVAL 32
55 /* Not in all libusb-1.0 versions, so we have to roll our own :-( */
56 static char * usb_strerror(int e
)
58 static char unknerr
[256];
64 return "Input/output error";
65 case LIBUSB_ERROR_INVALID_PARAM
:
66 return "Invalid parameter";
67 case LIBUSB_ERROR_ACCESS
:
68 return "Access denied (insufficient permissions)";
69 case LIBUSB_ERROR_NO_DEVICE
:
70 return "No such device (it may have been disconnected)";
71 case LIBUSB_ERROR_NOT_FOUND
:
72 return "Entity not found";
73 case LIBUSB_ERROR_BUSY
:
74 return "Resource busy";
75 case LIBUSB_ERROR_TIMEOUT
:
76 return "Operation timed out";
77 case LIBUSB_ERROR_OVERFLOW
:
79 case LIBUSB_ERROR_PIPE
:
81 case LIBUSB_ERROR_INTERRUPTED
:
82 return "System call interrupted (perhaps due to signal)";
83 case LIBUSB_ERROR_NO_MEM
:
84 return "Insufficient memory";
85 case LIBUSB_ERROR_NOT_SUPPORTED
:
86 return "Operation not supported or unimplemented on this platform";
87 case LIBUSB_ERROR_OTHER
:
90 snprintf(unknerr
, sizeof(unknerr
), "Unknown error code %d / 0x%02x", e
, e
);
94 static libusb_device_handle
*hmcfgusb_find() {
95 libusb_device_handle
*devh
= NULL
;
101 cnt
= libusb_get_device_list(NULL
, &list
);
103 fprintf(stderr
, "Can't get USB device list: %d\n", (int)cnt
);
107 for (i
= 0; i
< cnt
; i
++){
108 struct libusb_device_descriptor desc
;
110 err
= libusb_get_device_descriptor(list
[i
], &desc
);
114 if ((desc
.idVendor
== ID_VENDOR
) && (desc
.idProduct
== ID_PRODUCT
)) {
115 libusb_device
*dev
= list
[i
];
117 err
= libusb_open(dev
, &devh
);
119 fprintf(stderr
, "Can't open device: %s\n", usb_strerror(err
));
123 err
= libusb_detach_kernel_driver(devh
, INTERFACE
);
124 if ((err
!= 0) && (err
!= LIBUSB_ERROR_NOT_FOUND
)) {
125 fprintf(stderr
, "Can't detach kernel driver: %s\n", usb_strerror(err
));
129 err
= libusb_claim_interface(devh
, INTERFACE
);
131 fprintf(stderr
, "Can't claim interface: %s\n", usb_strerror(err
));
143 int hmcfgusb_send(struct hmcfgusb_dev
*usbdev
, unsigned char* send_data
, int len
, int done
)
147 struct timeval tv_start
, tv_end
;
151 hexdump(send_data
, len
, "USB < ");
152 gettimeofday(&tv_start
, NULL
);
155 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, send_data
, len
, &cnt
, USB_TIMEOUT
);
157 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
162 err
= libusb_interrupt_transfer(usbdev
->usb_devh
, EP_OUT
, send_data
, 0, &cnt
, USB_TIMEOUT
);
164 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
170 gettimeofday(&tv_end
, NULL
);
171 msec
= ((tv_end
.tv_sec
-tv_start
.tv_sec
)*1000)+((tv_end
.tv_usec
-tv_start
.tv_usec
)/1000);
172 fprintf(stderr
, "send took %dms!\n", msec
);
178 static struct libusb_transfer
*hmcfgusb_prepare_int(libusb_device_handle
*devh
, libusb_transfer_cb_fn cb
, void *data
)
180 unsigned char *data_buf
;
181 struct libusb_transfer
*transfer
;
184 data_buf
= malloc(ASYNC_SIZE
);
186 fprintf(stderr
, "Can't allocate memory for data-buffer!\n");
190 transfer
= libusb_alloc_transfer(0);
192 fprintf(stderr
, "Can't allocate memory for usb-transfer!\n");
197 libusb_fill_interrupt_transfer(transfer
, devh
, EP_IN
,
198 data_buf
, ASYNC_SIZE
, cb
, data
, USB_TIMEOUT
);
200 transfer
->flags
= LIBUSB_TRANSFER_SHORT_NOT_OK
| LIBUSB_TRANSFER_FREE_BUFFER
;
202 err
= libusb_submit_transfer(transfer
);
204 fprintf(stderr
, "Can't submit transfer: %s\n", usb_strerror(err
));
205 libusb_free_transfer(transfer
);
212 struct hmcfgusb_cb_data
{
213 struct hmcfgusb_dev
*dev
;
218 static void LIBUSB_CALL
hmcfgusb_interrupt(struct libusb_transfer
*transfer
)
221 struct hmcfgusb_cb_data
*cb_data
;
223 cb_data
= transfer
->user_data
;
225 if (transfer
->status
!= LIBUSB_TRANSFER_COMPLETED
) {
226 if (transfer
->status
!= LIBUSB_TRANSFER_TIMED_OUT
) {
227 fprintf(stderr
, "Interrupt transfer not completed: %d!\n", transfer
->status
);
230 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
231 libusb_free_transfer(cb_data
->dev
->transfer
);
232 cb_data
->dev
->transfer
= NULL
;
238 if (cb_data
&& cb_data
->cb
) {
240 hexdump(transfer
->buffer
, transfer
->actual_length
, "USB > ");
242 if (!cb_data
->cb(transfer
->buffer
, transfer
->actual_length
, cb_data
->data
)) {
245 if (cb_data
&& cb_data
->dev
&& cb_data
->dev
->transfer
) {
246 libusb_free_transfer(cb_data
->dev
->transfer
);
247 cb_data
->dev
->transfer
= NULL
;
254 hexdump(transfer
->buffer
, transfer
->actual_length
, "> ");
258 err
= libusb_submit_transfer(transfer
);
260 fprintf(stderr
, "Can't re-submit transfer: %s\n", usb_strerror(err
));
261 libusb_free_transfer(transfer
);
262 cb_data
->dev
->transfer
= NULL
;
267 struct hmcfgusb_dev
*hmcfgusb_init(hmcfgusb_cb_fn cb
, void *data
)
269 libusb_device_handle
*devh
= NULL
;
270 const struct libusb_pollfd
**usb_pfd
= NULL
;
271 struct hmcfgusb_dev
*dev
= NULL
;
272 struct hmcfgusb_cb_data
*cb_data
= NULL
;
276 err
= libusb_init(NULL
);
278 fprintf(stderr
, "Can't initialize libusb: %s\n", usb_strerror(err
));
282 devh
= hmcfgusb_find();
284 fprintf(stderr
, "Can't find/open hmcfgusb!\n");
288 dev
= malloc(sizeof(struct hmcfgusb_dev
));
290 perror("Can't allocate memory for hmcfgusb_dev");
294 memset(dev
, 0, sizeof(struct hmcfgusb_dev
));
295 dev
->usb_devh
= devh
;
297 cb_data
= malloc(sizeof(struct hmcfgusb_cb_data
));
299 perror("Can't allocate memory for hmcfgusb_cb_data");
304 memset(cb_data
, 0, sizeof(struct hmcfgusb_cb_data
));
308 cb_data
->data
= data
;
310 dev
->transfer
= hmcfgusb_prepare_int(devh
, hmcfgusb_interrupt
, cb_data
);
311 if (!dev
->transfer
) {
312 fprintf(stderr
, "Can't prepare async device io!\n");
318 usb_pfd
= libusb_get_pollfds(NULL
);
320 fprintf(stderr
, "Can't get FDset from libusb!\n");
327 for(i
= 0; usb_pfd
[i
]; i
++)
330 dev
->pfd
= malloc(dev
->n_usb_pfd
* sizeof(struct pollfd
));
332 perror("Can't allocate memory for poll-fds");
338 memset(dev
->pfd
, 0, dev
->n_usb_pfd
* sizeof(struct pollfd
));
340 for (i
= 0; i
< dev
->n_usb_pfd
; i
++) {
341 dev
->pfd
[i
].fd
= usb_pfd
[i
]->fd
;
342 dev
->pfd
[i
].events
= usb_pfd
[i
]->events
;
343 dev
->pfd
[i
].revents
= 0;
348 dev
->n_pfd
= dev
->n_usb_pfd
;
355 int hmcfgusb_add_pfd(struct hmcfgusb_dev
*dev
, int fd
, short events
)
358 dev
->pfd
= realloc(dev
->pfd
, dev
->n_pfd
* sizeof(struct pollfd
));
360 perror("Can't realloc poll-fds");
364 dev
->pfd
[dev
->n_pfd
-1].fd
= fd
;
365 dev
->pfd
[dev
->n_pfd
-1].events
= events
;
366 dev
->pfd
[dev
->n_pfd
-1].revents
= 0;
371 int hmcfgusb_poll(struct hmcfgusb_dev
*dev
, int timeout
)
382 memset(&tv
, 0, sizeof(tv
));
383 err
= libusb_get_next_timeout(NULL
, &tv
);
385 fprintf(stderr
, "libusb_get_next_timeout: %s\n", usb_strerror(err
));
388 } else if (err
== 0) {
389 /* No pending timeout or a sane platform */
392 if ((tv
.tv_sec
== 0) && (tv
.tv_usec
== 0)) {
398 for (i
= 0; i
< dev
->n_pfd
; i
++) {
399 dev
->pfd
[i
].revents
= 0;
402 n
= poll(dev
->pfd
, dev
->n_pfd
, tv
.tv_sec
* 1000);
410 for (fd_n
= 0; fd_n
< dev
->n_pfd
; fd_n
++) {
411 if (dev
->pfd
[fd_n
].revents
) {
412 if (fd_n
< dev
->n_usb_pfd
) {
417 return dev
->pfd
[fd_n
].fd
;
425 memset(&tv
, 0, sizeof(tv
));
426 err
= libusb_handle_events_timeout_completed(NULL
, &tv
, NULL
);
428 fprintf(stderr
, "libusb_handle_events_timeout_completed: %s\n", usb_strerror(err
));
436 fprintf(stderr
, "closing device-connection due to error %d\n", quit
);
443 void hmcfgusb_close(struct hmcfgusb_dev
*dev
)
448 libusb_cancel_transfer(dev
->transfer
);
451 err
= libusb_release_interface(dev
->usb_devh
, INTERFACE
);
453 fprintf(stderr
, "Can't release interface: %s\n", usb_strerror(err
));
456 libusb_close(dev
->usb_devh
);
463 void hmcfgusb_set_debug(int d
)