X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fcommon%2Fscpi_usbtmc.c;h=1ffc34ae9392c8826161e21e669eaef232daafeb;hb=50e6311a1b76ead9e082d99bdea91c1cba08fd4e;hp=dba1a2e327772b30912c05f683868b6806d8152b;hpb=8ae157d976d9825f77c46b1cfa9ecaeacad25436;p=libsigrok.git diff --git a/hardware/common/scpi_usbtmc.c b/hardware/common/scpi_usbtmc.c index dba1a2e3..1ffc34ae 100644 --- a/hardware/common/scpi_usbtmc.c +++ b/hardware/common/scpi_usbtmc.c @@ -37,7 +37,45 @@ struct usbtmc_scpi { int response_bytes_read; }; -SR_PRIV int scpi_usbtmc_open(void *priv) +static GSList *scpi_usbtmc_scan(struct drv_context *drvc) +{ + GSList *resources = NULL; + GDir *dir; + const char *dev_name; + char *resource; + + (void)drvc; + + if (!(dir = g_dir_open("/sys/class/usbmisc/", 0, NULL))) + if (!(dir = g_dir_open("/sys/class/usb/", 0, NULL))) + return NULL; + while ((dev_name = g_dir_read_name(dir))) { + if (strncmp(dev_name, "usbtmc", 6)) + continue; + resource = g_strconcat("/dev/", dev_name, NULL); + resources = g_slist_append(resources, resource); + } + g_dir_close(dir); + + return resources; +} + +static int scpi_usbtmc_dev_inst_new(void *priv, struct drv_context *drvc, + const char *resource, char **params, const char *serialcomm) +{ + struct usbtmc_scpi *uscpi = priv; + + (void)drvc; + (void)params; + (void)serialcomm; + + if (!(uscpi->usbtmc = sr_usbtmc_dev_inst_new(resource))) + return SR_ERR; + + return SR_OK; +} + +static int scpi_usbtmc_open(void *priv) { struct usbtmc_scpi *uscpi = priv; struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc; @@ -48,7 +86,7 @@ SR_PRIV int scpi_usbtmc_open(void *priv) return SR_OK; } -SR_PRIV int scpi_usbtmc_source_add(void *priv, int events, int timeout, +static int scpi_usbtmc_source_add(void *priv, int events, int timeout, sr_receive_data_callback_t cb, void *cb_data) { struct usbtmc_scpi *uscpi = priv; @@ -57,7 +95,7 @@ SR_PRIV int scpi_usbtmc_source_add(void *priv, int events, int timeout, return sr_source_add(usbtmc->fd, events, timeout, cb, cb_data); } -SR_PRIV int scpi_usbtmc_source_remove(void *priv) +static int scpi_usbtmc_source_remove(void *priv) { struct usbtmc_scpi *uscpi = priv; struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc; @@ -65,7 +103,7 @@ SR_PRIV int scpi_usbtmc_source_remove(void *priv) return sr_source_remove(usbtmc->fd); } -SR_PRIV int scpi_usbtmc_send(void *priv, const char *command) +static int scpi_usbtmc_send(void *priv, const char *command) { struct usbtmc_scpi *uscpi = priv; struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc; @@ -89,7 +127,7 @@ SR_PRIV int scpi_usbtmc_send(void *priv, const char *command) return SR_OK; } -SR_PRIV int scpi_usbtmc_read_begin(void *priv) +static int scpi_usbtmc_read_begin(void *priv) { struct usbtmc_scpi *uscpi = priv; struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc; @@ -105,21 +143,28 @@ SR_PRIV int scpi_usbtmc_read_begin(void *priv) uscpi->response_length = len; uscpi->response_bytes_read = 0; + sr_spew("Read %d bytes from device into buffer", len); + return SR_OK; } -SR_PRIV int scpi_usbtmc_read_data(void *priv, char *buf, int maxlen) +static int scpi_usbtmc_read_data(void *priv, char *buf, int maxlen) { struct usbtmc_scpi *uscpi = priv; int read_length; - if (uscpi->response_length == MAX_READ_LENGTH - && uscpi->response_bytes_read == uscpi->response_length) - if (scpi_usbtmc_read_begin(uscpi) != SR_OK) - return SR_ERR; + sr_spew("%d bytes requested", maxlen); - if (uscpi->response_bytes_read >= uscpi->response_length) - return SR_ERR; + if (uscpi->response_bytes_read == uscpi->response_length) { + sr_spew("Buffer is empty."); + if (uscpi->response_length == MAX_READ_LENGTH) { + sr_spew("Previous read was of maximum length, reading again."); + if (scpi_usbtmc_read_begin(uscpi) != SR_OK) + return SR_ERR; + } else { + return SR_ERR; + } + } read_length = uscpi->response_length - uscpi->response_bytes_read; @@ -130,10 +175,13 @@ SR_PRIV int scpi_usbtmc_read_data(void *priv, char *buf, int maxlen) uscpi->response_bytes_read += read_length; + sr_spew("Returned %d bytes from buffer, %d/%d bytes of buffer now read", + read_length, uscpi->response_bytes_read, uscpi->response_length); + return read_length; } -SR_PRIV int scpi_usbtmc_read_complete(void *priv) +static int scpi_usbtmc_read_complete(void *priv) { struct usbtmc_scpi *uscpi = priv; @@ -144,12 +192,11 @@ SR_PRIV int scpi_usbtmc_read_complete(void *priv) return (uscpi->response_bytes_read >= uscpi->response_length); } -SR_PRIV int scpi_usbtmc_close(void *priv) +static int scpi_usbtmc_close(void *priv) { struct usbtmc_scpi *uscpi = priv; - struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc; - if (close(usbtmc->fd) < 0) + if (close(uscpi->usbtmc->fd) < 0) return SR_ERR; return SR_OK; @@ -158,37 +205,23 @@ SR_PRIV int scpi_usbtmc_close(void *priv) static void scpi_usbtmc_free(void *priv) { struct usbtmc_scpi *uscpi = priv; - struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc; - g_free(uscpi); - sr_usbtmc_dev_inst_free(usbtmc); + sr_usbtmc_dev_inst_free(uscpi->usbtmc); } -SR_PRIV struct sr_scpi_dev_inst *scpi_usbtmc_dev_inst_new(const char *device) -{ - struct sr_scpi_dev_inst *scpi; - struct usbtmc_scpi *uscpi; - struct sr_usbtmc_dev_inst *usbtmc; - - if (!(usbtmc = sr_usbtmc_dev_inst_new(device))) - return NULL; - - uscpi = g_malloc(sizeof(struct usbtmc_scpi)); - - uscpi->usbtmc = usbtmc; - - scpi = g_malloc(sizeof(struct sr_scpi_dev_inst)); - - scpi->open = scpi_usbtmc_open; - scpi->source_add = scpi_usbtmc_source_add; - scpi->source_remove = scpi_usbtmc_source_remove; - scpi->send = scpi_usbtmc_send; - scpi->read_begin = scpi_usbtmc_read_begin; - scpi->read_data = scpi_usbtmc_read_data; - scpi->read_complete = scpi_usbtmc_read_complete; - scpi->close = scpi_usbtmc_close; - scpi->free = scpi_usbtmc_free; - scpi->priv = uscpi; - - return scpi; -} +SR_PRIV const struct sr_scpi_dev_inst scpi_usbtmc_dev = { + .name = "USBTMC", + .prefix = "/dev/usbtmc", + .priv_size = sizeof(struct usbtmc_scpi), + .scan = scpi_usbtmc_scan, + .dev_inst_new = scpi_usbtmc_dev_inst_new, + .open = scpi_usbtmc_open, + .source_add = scpi_usbtmc_source_add, + .source_remove = scpi_usbtmc_source_remove, + .send = scpi_usbtmc_send, + .read_begin = scpi_usbtmc_read_begin, + .read_data = scpi_usbtmc_read_data, + .read_complete = scpi_usbtmc_read_complete, + .close = scpi_usbtmc_close, + .free = scpi_usbtmc_free, +};