]> sigrok.org Git - libsigrok.git/blame - src/serial_hid.c
serial_hid: add support for the WCH CH9325 chip (UT-D04 cables, UT32x)
[libsigrok.git] / src / serial_hid.c
CommitLineData
4417074c
GS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2017-2019 Gerhard Sittig <gerhard.sittig@gmx.net>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "config.h"
edec0436
GS
21#include <glib.h>
22#ifdef HAVE_LIBHIDAPI
23#include <hidapi.h>
24#endif
4417074c
GS
25#include <libsigrok/libsigrok.h>
26#include "libsigrok-internal.h"
edec0436
GS
27#include "serial_hid.h"
28#include <stdlib.h>
29#include <string.h>
30#ifdef G_OS_WIN32
31#include <windows.h> /* for HANDLE */
32#endif
4417074c
GS
33
34/** @cond PRIVATE */
35#define LOG_PREFIX "serial-hid"
36/** @endcond */
37
edec0436
GS
38#ifdef HAVE_SERIAL_COMM
39
40/**
41 * @file
42 *
43 * Serial port handling, HIDAPI library specific support code.
44 */
45
46/**
47 * @defgroup grp_serial_hid Serial port handling, HID group
48 *
49 * Make serial-over-HID communication appear like a regular serial port.
50 *
51 * @{
52 */
53
54#ifdef HAVE_LIBHIDAPI
55/* {{{ helper routines */
56
57/* Strip off parity bits for "odd" data bit counts like in 7e1 frames. */
58static void ser_hid_mask_databits(struct sr_serial_dev_inst *serial,
59 uint8_t *data, size_t len)
60{
61 uint32_t mask32;
62 uint8_t mask;
63 size_t idx;
64
65 if ((serial->comm_params.data_bits % 8) == 0)
66 return;
67
68 mask32 = (1UL << serial->comm_params.data_bits) - 1;
69 mask = mask32 & 0xff;
70 for (idx = 0; idx < len; idx++)
71 data[idx] &= mask;
72}
73
74/* }}} */
75/* {{{ open/close/list/find HIDAPI connection, exchange HID requests and data */
76
77/*
78 * Convert a HIDAPI path (which depends on the target platform, and may
79 * depend on one of several available API variants on that platform) to
80 * something that is usable as a "port name" in conn= specs.
81 *
82 * Since conn= is passed with -d where multiple options (among them conn=)
83 * are separated by colons, port names themselves cannot contain colons.
84 *
85 * Just replace colons by a period in the simple case (Linux platform,
86 * hidapi-libusb implementation, bus/address/interface). Prefix the
87 * HIDAPI path in the complex cases (Linux hidapi-hidraw, Windows, Mac).
88 * Paths with colons outside of libusb based implementations are unhandled
89 * here, but were not yet seen on any sigrok supported platform either.
90 * So just reject them.
91 */
92static char *get_hidapi_path_copy(const char *path)
93{
94 static const char *accept = "0123456789abcdefABCDEF:";
95 static const char *keep = "0123456789abcdefABCDEF";
96
97 int has_colon;
98 int is_hex_colon;
99 char *name;
100
101 has_colon = strchr(path, ':') != NULL;
102 is_hex_colon = strspn(path, accept) == strlen(path);
103 if (has_colon && !is_hex_colon) {
104 sr_err("Unsupported HIDAPI path format: %s", path);
105 return NULL;
106 }
107 if (is_hex_colon) {
108 name = g_strdup_printf("%s%s", SER_HID_USB_PREFIX, path);
109 g_strcanon(name + strlen(SER_HID_USB_PREFIX), keep, '.');
110 } else {
111 name = g_strdup_printf("%s%s", SER_HID_RAW_PREFIX, path);
112 }
113
114 return name;
115}
116
117/*
118 * Undo the port name construction that was done during scan. Extract
119 * the HIDAPI path from a conn= input spec (the part after the hid/
120 * prefix and chip type).
121 *
122 * Strip off the "raw" prefix, or undo colon substitution. See @ref
123 * get_hidapi_path_copy() for details.
124 */
125static const char *extract_hidapi_path(char *buffer)
126{
127 static const char *keep = "0123456789abcdefABCDEF:";
128
129 const char *p;
130
131 p = buffer;
132 if (!p || !*p)
133 return NULL;
134
135 if (strncmp(p, SER_HID_RAW_PREFIX, strlen(SER_HID_RAW_PREFIX)) == 0) {
136 p += strlen(SER_HID_RAW_PREFIX);
137 return p;
138 }
139 if (strncmp(p, SER_HID_USB_PREFIX, strlen(SER_HID_USB_PREFIX)) == 0) {
140 p += strlen(SER_HID_USB_PREFIX);
141 g_strcanon(buffer, keep, ':');
142 return p;
143 }
144
145 return NULL;
146}
147
148/*
149 * The HIDAPI specific list() callback, invoked by common serial.c code.
150 * Enumerate all devices (no VID:PID is involved).
151 * Invoke an 'append' callback with "path" and "name".
152 */
153static GSList *ser_hid_hidapi_list(GSList *list, sr_ser_list_append_t append)
154{
155 struct hid_device_info *devs, *curdev;
156 const char *chipname;
157 char *path, *name;
158 wchar_t *manuf, *prod, *serno;
159 uint16_t vid, pid;
160 GString *desc;
161
162 devs = hid_enumerate(0x0000, 0x0000);
163 for (curdev = devs; curdev; curdev = curdev->next) {
164 /*
165 * Determine the chip name from VID:PID (if it's one of
166 * the supported types with an ID known to us).
167 */
168 vid = curdev->vendor_id;
169 pid = curdev->product_id;
170 sr_dbg("DIAG: hidapi enum, vid:pid %04x:%04x, path %s\n",
171 curdev->vendor_id, curdev->product_id, curdev->path);
172 chipname = ser_hid_chip_find_name_vid_pid(vid, pid);
173 if (!chipname)
174 chipname = "<chip>";
175
176 /*
177 * Prefix port names such that open() calls with this
178 * conn= spec will end up here and contain all details
179 * that are essential for processing.
180 */
181 path = get_hidapi_path_copy(curdev->path);
182 if (!path)
183 continue;
184 name = g_strdup_printf("%s/%s/%s",
185 SER_HID_CONN_PREFIX, chipname, path);
186 g_free(path);
187
188 /*
189 * Print whatever information was available. Construct
190 * the description text from pieces. Absence of fields
191 * is not fatal, we have seen perfectly usable cables
192 * that only had a VID and PID (permissions were not an
193 * issue).
194 */
195 manuf = curdev->manufacturer_string;
196 prod = curdev->product_string;
197 serno = curdev->serial_number;
198 vid = curdev->vendor_id;
199 pid = curdev->product_id;
200 desc = g_string_sized_new(128);
201 g_string_append_printf(desc, "HID");
202 if (manuf)
203 g_string_append_printf(desc, " %ls", manuf);
204 if (prod)
205 g_string_append_printf(desc, " %ls", prod);
206 if (serno)
207 g_string_append_printf(desc, " %ls", serno);
208 if (vid && pid)
209 g_string_append_printf(desc, " %04hx:%04hx", vid, pid);
210 list = append(list, name, desc->str);
211 g_string_free(desc, TRUE);
212 g_free(name);
213 }
214 hid_free_enumeration(devs);
215
216 return list;
217}
218
219/*
220 * The HIDAPI specific find_usb() callback, invoked by common serial.c code.
221 * Enumerate devices for the specified VID:PID pair.
222 * Invoke an "append" callback with 'path' for the device.
223 */
224static GSList *ser_hid_hidapi_find_usb(GSList *list, sr_ser_find_append_t append,
225 uint16_t vendor_id, uint16_t product_id)
226{
227 struct hid_device_info *devs, *curdev;
228 const char *name;
229
230 devs = hid_enumerate(vendor_id, product_id);
231 for (curdev = devs; curdev; curdev = curdev->next) {
232 name = curdev->path;
233 list = append(list, name);
234 }
235 hid_free_enumeration(devs);
236
237 return list;
238}
239
240/* Get the serial number of a device specified by path. */
241static int ser_hid_hidapi_get_serno(const char *path, char *buf, size_t blen)
242{
243 char *usbpath;
244 const char *hidpath;
245 hid_device *dev;
246 wchar_t *serno_wch;
247 int rc;
248
249 if (!path || !*path)
250 return SR_ERR_ARG;
251 usbpath = g_strdup(path);
252 hidpath = extract_hidapi_path(usbpath);
253 dev = hidpath ? hid_open_path(hidpath) : NULL;
254 g_free(usbpath);
255 if (!dev)
256 return SR_ERR_IO;
257
258 serno_wch = g_malloc0(blen * sizeof(*serno_wch));
259 rc = hid_get_serial_number_string(dev, serno_wch, blen - 1);
260 hid_close(dev);
261 if (rc != 0) {
262 g_free(serno_wch);
263 return SR_ERR_IO;
264 }
265
266 snprintf(buf, blen, "%ls", serno_wch);
267 g_free(serno_wch);
268
269 return SR_OK;
270}
271
272/* Get the VID and PID of a device specified by path. */
273static int ser_hid_hidapi_get_vid_pid(const char *path,
274 uint16_t *vid, uint16_t *pid)
275{
276#if 0
277 /*
278 * Bummer! It would have been most reliable to just open the
279 * device by the specified path, and grab its VID:PID. But
280 * there is no way to get these parameters, neither in the
281 * HIDAPI itself, nor when cheating and reaching behind the API
282 * and accessing the libusb handle in dirty ways. :(
283 */
284 hid_device *dev;
285
286 if (!path || !*path)
287 return SR_ERR_ARG;
288 dev = hid_open_path(path);
289 if (!dev)
290 return SR_ERR_IO;
291 if (vid)
292 *vid = dev->vendor_id;
293 if (pid)
294 *pid = dev->product_id;
295 hid_close(dev);
296
297 return SR_OK;
298#else
299 /*
300 * The fallback approach. Enumerate all devices, compare the
301 * enumerated USB path, and grab the VID:PID. Unfortunately the
302 * caller can provide path specs that differ from enumerated
303 * paths yet mean the same (address the same device). This needs
304 * more attention. Though the specific format of the path and
305 * its meaning are said to be OS specific, which is why we may
306 * not assume anything about it...
307 */
308 char *usbpath;
309 const char *hidpath;
310 struct hid_device_info *devs, *dev;
311 int found;
312
313 usbpath = g_strdup(path);
314 hidpath = extract_hidapi_path(usbpath);
315 if (!hidpath) {
316 g_free(usbpath);
317 return SR_ERR_NA;
318 }
319
320 devs = hid_enumerate(0x0000, 0x0000);
321 found = 0;
322 for (dev = devs; dev; dev = dev->next) {
323 if (strcmp(dev->path, hidpath) != 0)
324 continue;
325 if (vid)
326 *vid = dev->vendor_id;
327 if (pid)
328 *pid = dev->product_id;
329 found = 1;
330 break;
331 }
332 hid_free_enumeration(devs);
333 g_free(usbpath);
334
335 return found ? SR_OK : SR_ERR_NA;
336#endif
337}
338
339static int ser_hid_hidapi_open_dev(struct sr_serial_dev_inst *serial)
340{
341 hid_device *hid_dev;
342
343 if (!serial->usb_path || !*serial->usb_path)
344 return SR_ERR_ARG;
345
346 /*
347 * A path is available, assume that either a GUI or a
348 * user has copied what a previous listing has provided.
349 * Or a scan determined a matching device's USB path.
350 */
351 if (!serial->hid_path)
352 serial->hid_path = extract_hidapi_path(serial->usb_path);
353 hid_dev = hid_open_path(serial->hid_path);
354 sr_dbg("DBG: %s(), hid_open_path(\"%s\") => %p", __func__,
355 serial->hid_path, hid_dev);
356 if (!hid_dev) {
357 serial->hid_path = NULL;
358 return SR_ERR_IO;
359 }
360
361 serial->hid_dev = hid_dev;
362 hid_set_nonblocking(hid_dev, 1);
363
364 return SR_OK;
365}
366
367static void ser_hid_hidapi_close_dev(struct sr_serial_dev_inst *serial)
368{
369 if (serial->hid_dev) {
370 hid_close(serial->hid_dev);
371 serial->hid_dev = NULL;
372 serial->hid_path = NULL;
373 }
374 g_slist_free_full(serial->hid_source_args, g_free);
375 serial->hid_source_args = NULL;
376}
377
378struct hidapi_source_args_t {
379 /* Application callback. */
380 sr_receive_data_callback cb;
381 void *cb_data;
382 /* The serial device, to store RX data. */
383 struct sr_serial_dev_inst *serial;
384};
385
386/*
387 * Gets periodically invoked by the glib main loop. "Drives" (checks)
388 * progress of USB communication, and invokes the application's callback
389 * which processes RX data (when some has become available), as well as
390 * handles application level timeouts.
391 */
392static int hidapi_source_cb(int fd, int revents, void *cb_data)
393{
394 struct hidapi_source_args_t *args;
395 uint8_t rx_buf[SER_HID_CHUNK_SIZE];
396 int rc;
397
398 sr_dbg("DBG: %s() fd %d, evt 0x%x, data %p.", __func__, fd, revents, cb_data);
399 args = cb_data;
400
401 /*
402 * Drain receive data which the chip might have pending. This is
403 * "a copy" of the "background part" of ser_hid_read(), without
404 * the timeout support code, and not knowing how much data the
405 * application is expecting.
406 */
407 do {
408 rc = args->serial->hid_chip_funcs->read_bytes(args->serial,
409 rx_buf, sizeof(rx_buf), 0);
410 if (rc > 0) {
411 sr_dbg("DBG: %s() queueing %d bytes.", __func__, rc);
412 ser_hid_mask_databits(args->serial, rx_buf, rc);
413 sr_ser_queue_rx_data(args->serial, rx_buf, rc);
414 }
415 } while (rc > 0);
416
417 /*
418 * When RX data became available (now or earlier), pass this
419 * condition to the application callback. Always periodically
420 * run the application callback, since it handles timeouts and
421 * might carry out other tasks as well like signalling progress.
422 */
423 if (sr_ser_has_queued_data(args->serial))
424 revents |= G_IO_IN;
425 rc = args->cb(fd, revents, args->cb_data);
426 sr_dbg("DBG: %s() rc %d.", __func__, rc);
427
428 return rc;
429}
430
431#define WITH_MAXIMUM_TIMEOUT_VALUE 10
432static int ser_hid_hidapi_setup_source_add(struct sr_session *session,
433 struct sr_serial_dev_inst *serial, int events, int timeout,
434 sr_receive_data_callback cb, void *cb_data)
435{
436 struct hidapi_source_args_t *args;
437 int rc;
438
439 sr_dbg("DBG: %s() evt 0x%x, to %d.", __func__, events, timeout);
440 (void)events;
441
442 /* Optionally enforce a minimum poll period. */
443 if (WITH_MAXIMUM_TIMEOUT_VALUE && timeout > WITH_MAXIMUM_TIMEOUT_VALUE)
444 timeout = WITH_MAXIMUM_TIMEOUT_VALUE;
445
446 /* Allocate status container for background data reception. */
447 args = g_malloc0(sizeof(*args));
448 args->cb = cb;
449 args->cb_data = cb_data;
450 args->serial = serial;
451
452 /*
453 * Have a periodic timer installed. Register the allocated block
454 * with the serial device, since the GSource's finalizer won't
455 * free the memory, and we haven't bothered to create a custom
456 * HIDAPI specific GSource.
457 */
458 rc = sr_session_source_add(session, -1, events, timeout,
459 hidapi_source_cb, args);
460 sr_dbg("DBG: %s() added, rc %d.", __func__, rc);
461 if (rc != SR_OK) {
462 g_free(args);
463 return rc;
464 }
465 serial->hid_source_args = g_slist_append(serial->hid_source_args, args);
466
467 return SR_OK;
468}
469
470static int ser_hid_hidapi_setup_source_remove(struct sr_session *session,
471 struct sr_serial_dev_inst *serial)
472{
473 (void)serial;
474
475 sr_dbg("DBG: %s().", __func__);
476 (void)sr_session_source_remove(session, -1);
477 /*
478 * Release callback args here already? Can there be more than
479 * one source registered at any time, given that we pass fd -1
480 * which is used as the key for the session?
481 */
482
483 return SR_OK;
484}
485
486SR_PRIV int ser_hid_hidapi_get_report(struct sr_serial_dev_inst *serial,
487 uint8_t *data, size_t len)
488{
489 int rc;
490
491 rc = hid_get_feature_report(serial->hid_dev, data, len);
492 if (rc < 0)
493 return SR_ERR_IO;
494
495 return rc;
496}
497
498SR_PRIV int ser_hid_hidapi_set_report(struct sr_serial_dev_inst *serial,
499 const uint8_t *data, size_t len)
500{
501 int rc;
502 const wchar_t *err_text;
503
504 rc = hid_send_feature_report(serial->hid_dev, data, len);
505 if (rc < 0) {
506 err_text = hid_error(serial->hid_dev);
507 sr_dbg("%s() hidapi error: %ls", __func__, err_text);
508 return SR_ERR_IO;
509 }
510
511 return rc;
512}
513
514SR_PRIV int ser_hid_hidapi_get_data(struct sr_serial_dev_inst *serial,
515 uint8_t ep, uint8_t *data, size_t len, int timeout)
516{
517 int rc;
518
519 (void)ep;
520
521 if (timeout)
522 rc = hid_read_timeout(serial->hid_dev, data, len, timeout);
523 else
524 rc = hid_read(serial->hid_dev, data, len);
525 if (rc < 0)
526 return SR_ERR_IO;
527 if (rc == 0)
528 return 0;
529
530 return rc;
531}
532
533SR_PRIV int ser_hid_hidapi_set_data(struct sr_serial_dev_inst *serial,
534 uint8_t ep, const uint8_t *data, size_t len, int timeout)
535{
536 int rc;
537
538 (void)ep;
539 (void)timeout;
540
541 rc = hid_write(serial->hid_dev, data, len);
542 if (rc < 0)
543 return SR_ERR_IO;
544
545 return rc;
546}
547
548/* }}} */
549/* {{{ support for serial-over-HID chips */
550
551static struct ser_hid_chip_functions **chips[SER_HID_CHIP_LAST] = {
552 [SER_HID_CHIP_UNKNOWN] = NULL,
828eeea2 553 [SER_HID_CHIP_WCH_CH9325] = &ser_hid_chip_funcs_ch9325,
edec0436
GS
554};
555
556static struct ser_hid_chip_functions *get_hid_chip_funcs(enum ser_hid_chip_t chip)
557{
558 struct ser_hid_chip_functions *funcs;
559
560 if (chip >= ARRAY_SIZE(chips))
561 return NULL;
562 if (!chips[chip])
563 return NULL;
564 funcs = *chips[chip];
565 if (!funcs)
566 return NULL;
567
568 return funcs;
569}
570
571static int ser_hid_setup_funcs(struct sr_serial_dev_inst *serial)
572{
573
574 if (!serial)
575 return -1;
576
577 if (serial->hid_chip && !serial->hid_chip_funcs) {
578 serial->hid_chip_funcs = get_hid_chip_funcs(serial->hid_chip);
579 if (!serial->hid_chip_funcs)
580 return -1;
581 }
582
583 return 0;
584}
585
586/*
587 * Takes a pointer to the chip spec with potentially trailing data,
588 * returns the chip index and advances the spec pointer upon match,
589 * returns SER_HID_CHIP_UNKNOWN upon mismatch.
590 */
591static enum ser_hid_chip_t ser_hid_chip_find_enum(char **spec_p)
592{
593 gchar *spec;
594 enum ser_hid_chip_t idx;
595 struct ser_hid_chip_functions *desc;
596
597 if (!spec_p || !*spec_p)
598 return SER_HID_CHIP_UNKNOWN;
599 spec = *spec_p;
600 if (!*spec)
601 return SER_HID_CHIP_UNKNOWN;
602 for (idx = 0; idx < SER_HID_CHIP_LAST; idx++) {
603 desc = get_hid_chip_funcs(idx);
604 if (!desc)
605 continue;
606 if (!desc->chipname)
607 continue;
608 if (!g_str_has_prefix(spec, desc->chipname))
609 continue;
610 spec += strlen(desc->chipname);
611 *spec_p = spec;
612 return idx;
613 }
614
615 return SER_HID_CHIP_UNKNOWN;
616}
617
618/* See if we can find a chip name for a VID:PID spec. */
619SR_PRIV const char *ser_hid_chip_find_name_vid_pid(uint16_t vid, uint16_t pid)
620{
621 size_t chip_idx;
622 struct ser_hid_chip_functions *desc;
623 const struct vid_pid_item *vid_pids;
624
625 for (chip_idx = 0; chip_idx < SER_HID_CHIP_LAST; chip_idx++) {
626 desc = get_hid_chip_funcs(chip_idx);
627 if (!desc)
628 continue;
629 if (!desc->chipname)
630 continue;
631 vid_pids = desc->vid_pid_items;
632 if (!vid_pids)
633 continue;
634 while (vid_pids->vid) {
635 if (vid_pids->vid == vid && vid_pids->pid == pid) {
636 return desc->chipname;
637 }
638 vid_pids++;
639 }
640 }
641
642 return NULL;
643}
644
645static const char *ser_hid_chip_get_text(enum ser_hid_chip_t idx)
646{
647 struct ser_hid_chip_functions *desc;
648
649 desc = get_hid_chip_funcs(idx);
650 if (!desc)
651 return NULL;
652
653 return desc->chipdesc;
654}
655
656/**
657 * See if a text string is a valid USB path for a HID device.
658 * @param[in] serial The serial port that is about to get opened.
659 * @param[in] path The (assumed) USB path specification.
660 * @return SR_OK upon success, SR_ERR* upon failure.
661 */
662static int try_open_path(struct sr_serial_dev_inst *serial, const char *path)
663{
664 int rc;
665
666 serial->usb_path = g_strdup(path);
667 rc = ser_hid_hidapi_open_dev(serial);
668 ser_hid_hidapi_close_dev(serial);
669 g_free(serial->usb_path);
670 serial->usb_path = NULL;
671
672 return rc;
673}
674
675/**
676 * Parse conn= specs for serial over HID communication.
677 *
678 * @param[in] serial The serial port that is about to get opened.
679 * @param[in] spec The caller provided conn= specification.
680 * @param[out] chip_ref Pointer to a chip type (enum).
681 * @param[out] path_ref Pointer to a USB path (text string).
682 * @param[out] serno_ref Pointer to a serial number (text string).
683 *
684 * @return 0 upon success, non-zero upon failure. Fills the *_ref output
685 * values.
686 *
687 * @internal
688 *
689 * Summary of parsing rules as they are implemented:
690 * - Insist on the "hid" prefix. Accept "hid" alone without any other
691 * additional field.
692 * - The first field that follows can be a chip spec, yet is optional.
693 * - Any other field is assumed to be either a USB path or a serial
694 * number. There is no point in specifying both of these, as either
695 * of them uniquely identifies a device.
696 *
697 * Supported formats resulting from these rules:
698 * hid[/<chip>]
699 * hid[/<chip>]/usb=<bus>.<dev>[.<if>]
700 * hid[/<chip>]/raw=<path> (may contain slashes!)
701 * hid[/<chip>]/sn=serno
702 *
703 * This routine just parses the conn= spec, which either was provided by
704 * a user, or may reflect (cite) an item of a previously gathered listing
705 * (clipboard provided by CLI clients, or selected from a GUI form).
706 * Another routine will fill in the blanks, and do the cable selection
707 * when a filter was specified.
708 *
709 * Users will want to use short forms when they need to come up with the
710 * specs by themselves. The "verbose" or seemingly redundant forms (chip
711 * _and_ path/serno spec) are useful when the cable uses non-standard or
712 * not-yet-supported VID:PID items when automatic chip detection fails.
713 */
714static int ser_hid_parse_conn_spec(
715 struct sr_serial_dev_inst *serial, const char *spec,
716 enum ser_hid_chip_t *chip_ref, char **path_ref, char **serno_ref)
717{
718 const char *p;
719 enum ser_hid_chip_t chip;
720 char *path, *serno;
721 int rc;
722
723 if (chip_ref)
724 *chip_ref = SER_HID_CHIP_UNKNOWN;
725 if (path_ref)
726 *path_ref = NULL;
727 if (serno_ref)
728 *serno_ref = NULL;
729 chip = SER_HID_CHIP_UNKNOWN;
730 path = serno = NULL;
731
732 if (!serial || !spec || !*spec)
733 return SR_ERR_ARG;
734 sr_dbg("DBG: %s(), input spec: %s", __func__, spec);
735 p = spec;
736
737 /* The "hid" prefix is mandatory. */
738 if (!g_str_has_prefix(p, SER_HID_CONN_PREFIX)) {
739 sr_dbg("DBG: %s(), not a HID port", __func__);
740 return SR_ERR_ARG;
741 }
742 p += strlen(SER_HID_CONN_PREFIX);
743
744 /*
745 * Check for prefixed fields, assume chip type spec otherwise.
746 * Paths and serial numbers "are greedy" (span to the end of
747 * the input spec). Chip types are optional, and cannot repeat
748 * multiple times.
749 */
750 while (*p) {
751 if (*p == '/')
752 p++;
753 if (!*p)
754 break;
755 if (g_str_has_prefix(p, SER_HID_USB_PREFIX)) {
756 rc = try_open_path(serial, p);
757 sr_dbg("DBG: %s(), open usb path %s => rc %d", __func__, p, rc);
758 if (rc != SR_OK)
759 return rc;
760 path = g_strdup(p);
761 p += strlen(p);
762 } else if (g_str_has_prefix(p, SER_HID_RAW_PREFIX)) {
763 rc = try_open_path(serial, p);
764 sr_dbg("DBG: %s(), open raw path %s => rc %d", __func__, p, rc);
765 if (rc != SR_OK)
766 return rc;
767 path = g_strdup(p);
768 p += strlen(p);
769 } else if (g_str_has_prefix(p, SER_HID_SNR_PREFIX)) {
770 p += strlen(SER_HID_SNR_PREFIX);
771 sr_dbg("DBG: %s(), snr %s", __func__, p);
772 serno = g_strdup(p);
773 p += strlen(p);
774 } else if (!chip) {
775 char *copy, *endptr;
776 const char *name;
777 copy = g_strdup(p);
778 endptr = copy;
779 chip = ser_hid_chip_find_enum(&endptr);
780 sr_dbg("DBG: %s(), chip search, %s => %u", __func__, p, chip);
781 if (!chip) {
782 g_free(copy);
783 return SR_ERR_ARG;
784 }
785 p += endptr - copy;
786 g_free(copy);
787 name = ser_hid_chip_get_text(chip);
788 sr_dbg("DBG: %s(), chip %s", __func__, name);
789 } else {
790 sr_err("unsupported conn= spec %s, error at %s", spec, p);
791 return SR_ERR_ARG;
792 }
793 if (*p == '/')
794 p++;
795 if (path || serno)
796 break;
797 }
798
799 sr_dbg("DBG: %s() done, chip %d, path %s, serno %s", __func__, chip, path, serno);
800 if (chip_ref)
801 *chip_ref = chip;
802 if (path_ref && path)
803 *path_ref = path;
804 if (serno_ref && serno)
805 *serno_ref = serno;
806
807 return SR_OK;
808}
809
810/* Get and compare serial number. Boolean return value. */
811static int check_serno(const char *path, const char *serno_want)
812{
813 char *usb_path;
814 const char *hid_path;
815 char serno_got[128];
816 int rc;
817
818 sr_dbg("DBG: %s(\"%s\", \"%s\")", __func__, path, serno_want);
819
820 usb_path = g_strdup(path);
821 hid_path = extract_hidapi_path(usb_path);
822 rc = ser_hid_hidapi_get_serno(hid_path, serno_got, sizeof(serno_got));
823 sr_dbg("DBG: %s(), usb %s, hidapi %s => rc %d", __func__, usb_path, hid_path, rc);
824 g_free(usb_path);
825 if (rc) {
826 sr_dbg("DBG: %s(), could not get serial number", __func__);
827 return 0;
828 }
829 sr_dbg("DBG: %s(), got serno \"%s\"", __func__, serno_got);
830
831 rc = strcmp(serno_got, serno_want) == 0;
832 sr_dbg("DBG: %s(), return %d", __func__, rc);
833
834 return rc;
835}
836
837static GSList *append_find(GSList *devs, const char *path)
838{
839 char *copy;
840
841 if (!path || !*path)
842 return devs;
843
844 copy = g_strdup(path);
845 devs = g_slist_append(devs, copy);
846
847 return devs;
848}
849
850static GSList *list_paths_for_vids_pids(const struct vid_pid_item *vid_pids)
851{
852 GSList *list;
853 size_t idx;
854 uint16_t vid, pid;
855
856 list = NULL;
857 for (idx = 0; /* EMPTY */; idx++) {
858 if (!vid_pids) {
859 vid = pid = 0;
860 } else if (!vid_pids[idx].vid) {
861 break;
862 } else {
863 vid = vid_pids[idx].vid;
864 pid = vid_pids[idx].pid;
865 }
866 sr_dbg("DBG: %s(), searching VID:PID %04hx:%04hx",
867 __func__, vid, pid);
868 list = ser_hid_hidapi_find_usb(list, append_find, vid, pid);
869 if (!vid_pids)
870 break;
871 }
872
873 return list;
874}
875
876/**
877 * Search for a matching USB device for HID communication.
878 *
879 * @param[inout] chip The HID chip type (enum).
880 * @param[inout] usbpath The USB path for the device (string).
881 * @param[in] serno The serial number to search for.
882 *
883 * @retval SR_OK upon success
884 * @retval SR_ERR_* upon failure.
885 *
886 * @internal
887 *
888 * This routine fills in blanks which the conn= spec parser left open.
889 * When not specified yet, the HID chip type gets determined. When a
890 * serial number was specified, then search the corresponding device.
891 * Upon completion, the chip type and USB path for the device shall be
892 * known, as these are essential for subsequent operation.
893 */
894static int ser_hid_chip_search(enum ser_hid_chip_t *chip_ref,
895 char **path_ref, const char *serno)
896{
897 enum ser_hid_chip_t chip;
898 char *path;
899 int have_chip, have_path, have_serno;
900 struct ser_hid_chip_functions *chip_funcs;
901 int rc;
902 int serno_matched;
903 uint16_t vid, pid;
904 const char *name;
905 const struct vid_pid_item *vid_pids;
906 GSList *list, *matched, *matched2, *tmplist;
907
908 if (!chip_ref)
909 return SR_ERR_ARG;
910 chip = *chip_ref;
911 if (!path_ref)
912 return SR_ERR_ARG;
913 path = *path_ref;
914 sr_dbg("DBG: %s() enter, chip %d, path %s, serno %s", __func__,
915 chip, path, serno ? serno : "<none>");
916
917 /*
918 * Simplify the more complex conditions somewhat by assigning
919 * to local variables. Handle the easiest conditions first.
920 * - Either path or serial number can be specified, but not both
921 * at the same time.
922 * - When a USB path is given, immediately see which HID chip
923 * the device has, without the need for enumeration.
924 * - When a serial number is given, enumerate the devices and
925 * search for that number. Either enumerate all devices of the
926 * specified HID chip type (try the VID:PID pairs that we are
927 * aware of), or try all HID devices for unknown chip types.
928 * Not finding the serial number is fatal.
929 * - When no path was found yet, enumerate the devices and pick
930 * one of them. Try known VID:PID pairs for a HID chip, or all
931 * devices for unknown chips. Make sure to pick a device of a
932 * supported chip type if the chip was not specified.
933 * - Determine the chip type if not yet known. There should be
934 * a USB path by now, determined in one of the above blocks.
935 */
936 have_chip = (chip != SER_HID_CHIP_UNKNOWN) ? 1 : 0;
937 have_path = (path && *path) ? 1 : 0;
938 have_serno = (serno && *serno) ? 1 : 0;
939 sr_dbg("DBG: %s(), have chip %d, path %d, serno %d", __func__,
940 have_chip, have_path, have_serno);
941 if (have_path && have_serno) {
942 sr_err("Unsupported combination of USB path and serno");
943 return SR_ERR_ARG;
944 }
945 chip_funcs = have_chip ? get_hid_chip_funcs(chip) : NULL;
946 if (have_chip && !chip_funcs)
947 return SR_ERR_NA;
948 if (have_chip && !chip_funcs->vid_pid_items)
949 return SR_ERR_NA;
950 if (have_path && !have_chip) {
951 sr_dbg("DBG: %s(), searching chip for path %s", __func__, path);
952 vid = pid = 0;
953 rc = ser_hid_hidapi_get_vid_pid(path, &vid, &pid);
954 sr_dbg("DBG: %s(), rc %d, VID:PID %04x:%04x", __func__, rc, vid, pid);
955 if (rc != SR_OK)
956 return rc;
957 name = ser_hid_chip_find_name_vid_pid(vid, pid);
958 sr_dbg("DBG: %s(), name %s", __func__, name);
959 if (!name || !*name)
960 return SR_ERR_NA;
961 chip = ser_hid_chip_find_enum((char **)&name);
962 sr_dbg("DBG: %s(), chip %d", __func__, chip);
963 if (chip == SER_HID_CHIP_UNKNOWN)
964 return SR_ERR_NA;
965 have_chip = 1;
966 }
967 if (have_serno) {
968 sr_dbg("DBG: %s(), searching path for serno %s", __func__, serno);
969 vid_pids = have_chip ? chip_funcs->vid_pid_items : NULL;
970 list = list_paths_for_vids_pids(vid_pids);
971 sr_dbg("DBG: %s(), vid/pid list for chip type %p", __func__, list);
972 if (!list)
973 return SR_ERR_NA;
974 matched = NULL;
975 for (tmplist = list; tmplist; tmplist = tmplist->next) {
976 path = get_hidapi_path_copy(tmplist->data);
977 sr_dbg("DBG: %s(), checking %s", __func__, path);
978 serno_matched = check_serno(path, serno);
979 g_free(path);
980 if (!serno_matched)
981 continue;
982 matched = tmplist;
983 break;
984 }
985 if (!matched)
986 return SR_ERR_NA;
987 path = g_strdup(matched->data);
988 sr_dbg("DBG: %s(), match, path %s", __func__, path);
989 have_path = 1;
990 g_slist_free_full(list, g_free);
991 }
992 if (!have_path) {
993 sr_dbg("DBG: %s(), searching path, chip %d", __func__, chip);
994 vid_pids = have_chip ? chip_funcs->vid_pid_items : NULL;
995 list = list_paths_for_vids_pids(vid_pids);
996 if (!list)
997 return SR_ERR_NA;
998 for (tmplist = list; tmplist; tmplist = tmplist->next) {
999 path = tmplist->data;
1000 sr_dbg("DBG: %s(), path %s", __func__, path);
1001 }
1002 matched = matched2 = NULL;
1003 if (have_chip) {
1004 /* List already only contains specified chip. */
1005 matched = list;
1006 path = matched->data;
1007 sr_dbg("DBG: %s(), match 1 %s", __func__, path);
1008 matched2 = list->next;
1009 if (matched2) {
1010 path = matched2->data;
1011 sr_dbg("DBG: %s(), match 2 %s", __func__, path);
1012 }
1013 }
1014 /* Works for lists with one or multiple chips. Saves indentation. */
1015 for (tmplist = list; tmplist; tmplist = tmplist->next) {
1016 if (have_chip)
1017 break;
1018 path = tmplist->data;
1019 rc = ser_hid_hidapi_get_vid_pid(path, &vid, &pid);
1020 if (rc || !ser_hid_chip_find_name_vid_pid(vid, pid))
1021 continue;
1022 if (!matched) {
1023 matched = tmplist;
1024 sr_dbg("DBG: %s(), match 1 %s", __func__, path);
1025 continue;
1026 }
1027 if (!matched2) {
1028 matched2 = tmplist;
1029 sr_dbg("DBG: %s(), match 2 %s", __func__, path);
1030 break;
1031 }
1032 }
1033 if (!matched) {
1034 g_slist_free_full(list, g_free);
1035 return SR_ERR_NA;
1036 }
1037 /*
1038 * TODO Optionally fail harder, expect users to provide
1039 * unambiguous cable specs.
1040 */
1041 if (matched2)
1042 sr_info("More than one cable matches, random pick.");
1043 path = get_hidapi_path_copy(matched->data);
1044 sr_dbg("DBG: %s(), match, path %s", __func__, path);
1045 have_path = 1;
1046 g_slist_free_full(list, g_free);
1047 }
1048 if (have_path && !have_chip) {
1049 sr_dbg("DBG: %s(), searching chip for path %s", __func__, path);
1050 vid = pid = 0;
1051 rc = ser_hid_hidapi_get_vid_pid(path, &vid, &pid);
1052 sr_dbg("DBG: %s(), rc %d, VID:PID %04x:%04x", __func__, rc, vid, pid);
1053 if (rc != SR_OK)
1054 return rc;
1055 name = ser_hid_chip_find_name_vid_pid(vid, pid);
1056 sr_dbg("DBG: %s(), name %s", __func__, name);
1057 if (!name || !*name)
1058 return SR_ERR_NA;
1059 chip = ser_hid_chip_find_enum((char **)&name);
1060 sr_dbg("DBG: %s(), chip %d", __func__, chip);
1061 if (chip == SER_HID_CHIP_UNKNOWN)
1062 return SR_ERR_NA;
1063 have_chip = 1;
1064 }
1065
1066 sr_dbg("DBG: %s() leave, chip %d, path %s", __func__, chip, path);
1067 if (chip_ref)
1068 *chip_ref = chip;
1069 if (path_ref)
1070 *path_ref = path;
1071
1072 return SR_OK;
1073}
1074
1075/* }}} */
1076/* {{{ transport methods called by the common serial.c code */
1077
1078/* See if a serial port's name refers to an HID type. */
1079SR_PRIV int ser_name_is_hid(struct sr_serial_dev_inst *serial)
1080{
1081 size_t off;
1082 char sep;
1083
1084 if (!serial)
1085 return 0;
1086 if (!serial->port || !*serial->port)
1087 return 0;
1088
1089 /* Accept either "hid" alone, or "hid/" as a prefix. */
1090 if (!g_str_has_prefix(serial->port, SER_HID_CONN_PREFIX))
1091 return 0;
1092 off = strlen(SER_HID_CONN_PREFIX);
1093 sep = serial->port[off];
1094 if (sep != '\0' && sep != '/')
1095 return 0;
1096
1097 return 1;
1098}
1099
1100static int ser_hid_open(struct sr_serial_dev_inst *serial, int flags)
1101{
1102 enum ser_hid_chip_t chip;
1103 char *usbpath, *serno;
1104 int rc;
1105
1106 (void)flags;
1107
1108 if (ser_hid_setup_funcs(serial) != 0) {
1109 sr_err("Cannot determine HID communication library.");
1110 return SR_ERR_NA;
1111 }
1112
1113 rc = ser_hid_parse_conn_spec(serial, serial->port,
1114 &chip, &usbpath, &serno);
1115 if (rc != SR_OK)
1116 return SR_ERR_ARG;
1117
1118 /*
1119 * When a serial number was specified, or when the chip type or
1120 * the USB path were not specified, do a search to determine the
1121 * device's USB path.
1122 */
1123 if (!chip || !usbpath || serno) {
1124 sr_dbg("DBG: %s(), searching ...", __func__);
1125 rc = ser_hid_chip_search(&chip, &usbpath, serno);
1126 if (rc != 0)
1127 return SR_ERR_NA;
1128 }
1129
1130 /*
1131 * Open the HID device. Only store chip type and device handle
1132 * when open completes successfully.
1133 */
1134 serial->hid_chip = chip;
1135 if (ser_hid_setup_funcs(serial) != 0) {
1136 sr_err("Cannot determine HID chip specific routines.");
1137 return SR_ERR_NA;
1138 }
1139 if (usbpath && *usbpath)
1140 serial->usb_path = usbpath;
1141 if (serno && *serno)
1142 serial->usb_serno = serno;
1143
1144 rc = ser_hid_hidapi_open_dev(serial);
1145 if (rc) {
1146 sr_err("Failed to open HID device.");
1147 serial->hid_chip = 0;
1148 g_free(serial->usb_path);
1149 serial->usb_path = NULL;
1150 g_free(serial->usb_serno);
1151 serial->usb_serno = NULL;
1152 return SR_ERR_IO;
1153 }
1154 sr_dbg("DBG: %s() done, OK", __func__);
1155
1156 if (!serial->rcv_buffer)
1157 serial->rcv_buffer = g_string_sized_new(SER_HID_CHUNK_SIZE);
1158
1159 return SR_OK;
1160}
1161
1162static int ser_hid_close(struct sr_serial_dev_inst *serial)
1163{
1164 sr_dbg("DBG: %s()", __func__);
1165 ser_hid_hidapi_close_dev(serial);
1166
1167 return SR_OK;
1168}
1169
1170static int ser_hid_set_params(struct sr_serial_dev_inst *serial,
1171 int baudrate, int bits, int parity, int stopbits,
1172 int flowcontrol, int rts, int dtr)
1173{
1174 int rc;
1175
1176 sr_dbg("DBG: %s() enter", __func__);
1177 if (ser_hid_setup_funcs(serial) != 0)
1178 return SR_ERR_NA;
1179 sr_dbg("DBG: %s() chip funcs set", __func__);
1180 if (!serial->hid_chip_funcs || !serial->hid_chip_funcs->set_params)
1181 return SR_ERR_NA;
1182 sr_dbg("DBG: %s() set params avail", __func__);
1183 rc = serial->hid_chip_funcs->set_params(serial,
1184 baudrate, bits, parity, stopbits,
1185 flowcontrol, rts, dtr);
1186 sr_dbg("DBG: %s() set params rc %d", __func__, rc);
1187
1188 return rc;
1189}
1190
1191static int ser_hid_setup_source_add(struct sr_session *session,
1192 struct sr_serial_dev_inst *serial, int events, int timeout,
1193 sr_receive_data_callback cb, void *cb_data)
1194{
1195 return ser_hid_hidapi_setup_source_add(session, serial,
1196 events, timeout, cb, cb_data);
1197}
1198
1199static int ser_hid_setup_source_remove(struct sr_session *session,
1200 struct sr_serial_dev_inst *serial)
1201{
1202 return ser_hid_hidapi_setup_source_remove(session, serial);
1203}
1204
1205static GSList *ser_hid_list(GSList *list, sr_ser_list_append_t append)
1206{
1207 return ser_hid_hidapi_list(list, append);
1208}
1209
1210static GSList *ser_hid_find_usb(GSList *list, sr_ser_find_append_t append,
1211 uint16_t vendor_id, uint16_t product_id)
1212{
1213 return ser_hid_hidapi_find_usb(list, append, vendor_id, product_id);
1214}
1215
1216static int ser_hid_flush(struct sr_serial_dev_inst *serial)
1217{
1218 if (!serial->hid_chip_funcs || !serial->hid_chip_funcs->flush)
1219 return SR_ERR_NA;
1220
1221 return serial->hid_chip_funcs->flush(serial);
1222}
1223
1224static int ser_hid_drain(struct sr_serial_dev_inst *serial)
1225{
1226 if (!serial->hid_chip_funcs || !serial->hid_chip_funcs->drain)
1227 return SR_ERR_NA;
1228
1229 return serial->hid_chip_funcs->drain(serial);
1230}
1231
1232static int ser_hid_write(struct sr_serial_dev_inst *serial,
1233 const void *buf, size_t count,
1234 int nonblocking, unsigned int timeout_ms)
1235{
1236 int total, max_chunk, chunk_len;
1237 int rc;
1238
1239 if (!serial->hid_chip_funcs || !serial->hid_chip_funcs->write_bytes)
1240 return SR_ERR_NA;
1241 if (!serial->hid_chip_funcs->max_bytes_per_request)
1242 return SR_ERR_NA;
1243
1244 sr_dbg("DBG: %s() shall send %zu bytes TX data.", __func__, count);
1245 total = 0;
1246 max_chunk = serial->hid_chip_funcs->max_bytes_per_request;
1247 while (count > 0) {
1248 chunk_len = count;
1249 if (max_chunk && chunk_len > max_chunk)
1250 chunk_len = max_chunk;
1251 rc = serial->hid_chip_funcs->write_bytes(serial, buf, chunk_len);
1252 if (rc < 0) {
1253 sr_err("Error sending transmit data to HID device.");
1254 return total;
1255 }
1256 if (rc != chunk_len) {
1257 sr_warn("Short transmission to HID device (%d/%d bytes)?",
1258 rc, chunk_len);
1259 return total;
1260 }
1261 buf += chunk_len;
1262 count -= chunk_len;
1263 total += chunk_len;
1264 /* TODO
1265 * Need we wait here? For data to drain through the slow
1266 * UART. Not all UART-over-HID chips will have FIFOs.
1267 */
1268 if (!nonblocking) {
1269 (void)timeout_ms;
1270 /* TODO */
1271 }
1272 }
1273
1274 return total;
1275}
1276
1277static int ser_hid_read(struct sr_serial_dev_inst *serial,
1278 void *buf, size_t count,
1279 int nonblocking, unsigned int timeout_ms)
1280{
1281 gint64 deadline_us, now_us;
1282 uint8_t buffer[SER_HID_CHUNK_SIZE];
1283 int rc;
1284 unsigned int got;
1285
1286 sr_dbg("DBG: %s() count %zd, block %d, to %u", __func__,
1287 count, !nonblocking, timeout_ms);
1288
1289 if (!serial->hid_chip_funcs || !serial->hid_chip_funcs->read_bytes)
1290 return SR_ERR_NA;
1291 if (!serial->hid_chip_funcs->max_bytes_per_request)
1292 return SR_ERR_NA;
1293
1294 /*
1295 * Immediately satisfy the caller's request from the RX buffer
1296 * if the requested amount of data is available already.
1297 */
1298 if (sr_ser_has_queued_data(serial) >= count) {
1299 rc = sr_ser_unqueue_rx_data(serial, buf, count);
1300 return rc;
1301 }
1302
1303 /*
1304 * When a timeout was specified, then determine the deadline
1305 * where to stop reception.
1306 */
1307 deadline_us = 0;
1308 now_us = 0; /* Silence a (false) compiler warning. */
1309 if (timeout_ms) {
1310 now_us = g_get_monotonic_time();
1311 deadline_us = now_us + timeout_ms * 1000;
1312 }
1313
1314 /*
1315 * Keep receiving from the port until the caller's requested
1316 * amount of data has become available, or the timeout has
1317 * expired. In the absence of a timeout, stop reading when an
1318 * attempt no longer yields receive data.
1319 *
1320 * This implementation assumes that applications will call the
1321 * read routine often enough, or that reception continues in
1322 * background, such that data is not lost and hardware and
1323 * software buffers won't overrun.
1324 */
1325 while (TRUE) {
1326 /*
1327 * Determine the timeout (in milliseconds) for this
1328 * iteration. The 'now_us' timestamp was initially
1329 * determined above, and gets updated at the bottom of
1330 * the loop.
1331 */
1332 if (deadline_us) {
1333 timeout_ms = (deadline_us - now_us) / 1000;
1334 if (!timeout_ms)
1335 timeout_ms = 1;
1336 } else if (nonblocking) {
1337 timeout_ms = 10;
1338 } else {
1339 timeout_ms = 0;
1340 }
1341
1342 /*
1343 * Check the HID transport for the availability of more
1344 * receive data.
1345 */
1346 rc = serial->hid_chip_funcs->read_bytes(serial,
1347 buffer, sizeof(buffer), timeout_ms);
1348 if (rc < 0) {
1349 sr_dbg("DBG: %s() read error %d.", __func__, rc);
1350 return SR_ERR;
1351 }
1352 if (rc) {
1353 sr_dbg("DBG: %s() queueing %d bytes.", __func__, rc);
1354 ser_hid_mask_databits(serial, buffer, rc);
1355 sr_ser_queue_rx_data(serial, buffer, rc);
1356 }
1357 got = sr_ser_has_queued_data(serial);
1358
1359 /*
1360 * Stop reading when the requested amount is available,
1361 * or when the timeout has expired.
1362 *
1363 * TODO Consider whether grabbing all RX data is more
1364 * desirable. Implementing this approach requires a cheap
1365 * check for the availability of more data on the USB level.
1366 */
1367 if (got >= count)
1368 break;
1369 if (nonblocking && !rc)
1370 break;
1371 if (deadline_us) {
1372 now_us = g_get_monotonic_time();
1373 if (now_us >= deadline_us) {
1374 sr_dbg("DBG: %s() read loop timeout.", __func__);
1375 break;
1376 }
1377 }
1378 }
1379
1380 /*
1381 * Satisfy the caller's demand for receive data from previously
1382 * queued incoming data.
1383 */
1384 if (got > count)
1385 got = count;
1386 sr_dbg("DBG: %s() passing %d bytes.", __func__, got);
1387 rc = sr_ser_unqueue_rx_data(serial, buf, count);
1388
1389 return rc;
1390}
1391
1392static struct ser_lib_functions serlib_hid = {
1393 .open = ser_hid_open,
1394 .close = ser_hid_close,
1395 .flush = ser_hid_flush,
1396 .drain = ser_hid_drain,
1397 .write = ser_hid_write,
1398 .read = ser_hid_read,
1399 .set_params = ser_hid_set_params,
1400 .setup_source_add = ser_hid_setup_source_add,
1401 .setup_source_remove = ser_hid_setup_source_remove,
1402 .list = ser_hid_list,
1403 .find_usb = ser_hid_find_usb,
1404 .get_frame_format = NULL,
1405};
1406SR_PRIV struct ser_lib_functions *ser_lib_funcs_hid = &serlib_hid;
1407
1408/* }}} */
1409#else
1410
4417074c
GS
1411SR_PRIV int ser_name_is_hid(struct sr_serial_dev_inst *serial)
1412{
1413 (void)serial;
1414
1415 return 0;
1416}
1417
1418SR_PRIV struct ser_lib_functions *ser_lib_funcs_hid = NULL;
edec0436
GS
1419
1420#endif
1421#endif
1422/** @} */