X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Funi-t-ut32x%2Fapi.c;h=199fe473c069af6e86519029ff2e2b03dfddabff;hb=164c5ae537f1ae60641cd496b8332436b49c6557;hp=aa38cf5fb7bd04bb11be8c00b39bdc1d00ce4456;hpb=c368e6f3d248a73d69cd0c2c4a7c88a92def55e3;p=libsigrok.git diff --git a/src/hardware/uni-t-ut32x/api.c b/src/hardware/uni-t-ut32x/api.c index aa38cf5f..199fe473 100644 --- a/src/hardware/uni-t-ut32x/api.c +++ b/src/hardware/uni-t-ut32x/api.c @@ -17,184 +17,104 @@ * along with this program. If not, see . */ +#include +#include #include "protocol.h" -#include +static const uint32_t scanopts[] = { + SR_CONF_CONN, + SR_CONF_SERIALCOMM, +}; -static const uint32_t devopts[] = { +static const uint32_t drvopts[] = { SR_CONF_THERMOMETER, +}; + +static const uint32_t devopts[] = { SR_CONF_CONTINUOUS, SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET, + SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET, SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST, }; -static char *channels[] = { - "T1", - "T2", - "T1-T2", +/* + * BEWARE! "T1-T2" looks like a range, and is probably not a good + * channel name. Using it in sigrok-cli -C specs is troublesome. Use + * "delta" instead? -- But OTOH channels are not selected by the + * software. Instead received packets just reflect the one channel + * that manually was selected by the user via the device's buttons. + * So the name is not a blocker, and it matches the labels on the + * device and in the manual. So we can get away with it. + */ +static const char *channel_names[] = { + "T1", "T2", "T1-T2", }; static const char *data_sources[] = { - "Live", - "Memory", + "Live", "Memory", }; -SR_PRIV struct sr_dev_driver uni_t_ut32x_driver_info; -static struct sr_dev_driver *di = &uni_t_ut32x_driver_info; - - -static int init(struct sr_context *sr_ctx) +static GSList *scan(struct sr_dev_driver *di, GSList *options) { - return std_init(sr_ctx, di, LOG_PREFIX); -} - -static GSList *scan(GSList *options) -{ - struct drv_context *drvc; - struct dev_context *devc; - struct sr_dev_inst *sdi; - struct sr_channel *ch; + const char *conn, *serialcomm; struct sr_config *src; - GSList *usb_devices, *devices, *l; - int i; - const char *conn; - - drvc = di->priv; - drvc->instances = NULL; + GSList *l, *devices; + struct sr_serial_dev_inst *serial; + int rc; + struct sr_dev_inst *sdi; + struct dev_context *devc; + size_t i; - conn = NULL; + conn = "hid/ch9325"; + serialcomm = "2400/8n1"; for (l = options; l; l = l->next) { src = l->data; switch (src->key) { case SR_CONF_CONN: conn = g_variant_get_string(src->data, NULL); break; + case SR_CONF_SERIALCOMM: + serialcomm = g_variant_get_string(src->data, NULL); + break; } } - if (!conn) - return NULL; devices = NULL; - if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) { - /* We have a list of sr_usb_dev_inst matching the connection - * string. Wrap them in sr_dev_inst and we're done. */ - for (l = usb_devices; l; l = l->next) { - sdi = g_malloc0(sizeof(struct sr_dev_inst)); - sdi->status = SR_ST_INACTIVE; - sdi->vendor = g_strdup(VENDOR); - sdi->model = g_strdup(MODEL); - sdi->driver = di; - sdi->inst_type = SR_INST_USB; - sdi->conn = l->data; - for (i = 0; i < 3; i++) { - ch = sr_channel_new(i, SR_CHANNEL_ANALOG, TRUE, - channels[i]); - sdi->channels = g_slist_append(sdi->channels, ch); - } - devc = g_malloc0(sizeof(struct dev_context)); - sdi->priv = devc; - devc->limit_samples = 0; - devc->data_source = DEFAULT_DATA_SOURCE; - drvc->instances = g_slist_append(drvc->instances, sdi); - devices = g_slist_append(devices, sdi); - } - g_slist_free(usb_devices); - } else - g_slist_free_full(usb_devices, g_free); - - return devices; -} - -static GSList *dev_list(void) -{ - return ((struct drv_context *)(di->priv))->instances; -} - -static int dev_open(struct sr_dev_inst *sdi) -{ - struct drv_context *drvc; - struct sr_usb_dev_inst *usb; - int ret; - - if (!(drvc = di->priv)) { - sr_err("Driver was not initialized."); - return SR_ERR; - } - - usb = sdi->conn; - - if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK) - return SR_ERR; - -/* - * The libusbx 1.0.9 darwin backend is broken: it can report a kernel - * driver being active, but detaching it always returns an error. - */ -#if !defined(__APPLE__) - if (libusb_kernel_driver_active(usb->devhdl, USB_INTERFACE) == 1) { - if ((ret = libusb_detach_kernel_driver(usb->devhdl, USB_INTERFACE)) < 0) { - sr_err("failed to detach kernel driver: %s", - libusb_error_name(ret)); - return SR_ERR; - } - } -#endif - - if ((ret = libusb_set_configuration(usb->devhdl, USB_CONFIGURATION))) { - sr_err("Failed to set configuration: %s.", libusb_error_name(ret)); - return SR_ERR; - } - - if ((ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE))) { - sr_err("Failed to claim interface: %s.", libusb_error_name(ret)); - return SR_ERR; + serial = sr_serial_dev_inst_new(conn, serialcomm); + rc = serial_open(serial, SERIAL_RDWR); + serial_flush(serial); + /* Cannot query/identify the device. Successful open shall suffice. */ + serial_close(serial); + if (rc != SR_OK) { + sr_serial_dev_inst_free(serial); + return devices; } - sdi->status = SR_ST_ACTIVE; - return ret; -} - -static int dev_close(struct sr_dev_inst *sdi) -{ - struct sr_usb_dev_inst *usb; - - if (!di->priv) { - sr_err("Driver was not initialized."); - return SR_ERR; - } - - usb = sdi->conn; - if (!usb->devhdl) - /* Nothing to do. */ - return SR_OK; - - libusb_release_interface(usb->devhdl, USB_INTERFACE); - libusb_close(usb->devhdl); - usb->devhdl = NULL; + sdi = g_malloc0(sizeof(*sdi)); sdi->status = SR_ST_INACTIVE; + sdi->vendor = g_strdup("UNI-T"); + sdi->model = g_strdup("UT32x"); + sdi->inst_type = SR_INST_SERIAL; + sdi->conn = serial; + devc = g_malloc0(sizeof(*devc)); + sdi->priv = devc; + sr_sw_limits_init(&devc->limits); + devc->data_source = DEFAULT_DATA_SOURCE; + for (i = 0; i < ARRAY_SIZE(channel_names); i++) { + sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, + channel_names[i]); + } + devices = g_slist_append(devices, sdi); - return SR_OK; -} - -static int cleanup(void) -{ - int ret; - struct drv_context *drvc; - - if (!(drvc = di->priv)) - /* Can get called on an unused driver, doesn't matter. */ - return SR_OK; - - - ret = std_dev_clear(di, NULL); - g_free(drvc); - di->priv = NULL; + serial_close(serial); + if (!devices) + sr_serial_dev_inst_free(serial); - return ret; + return std_scan_complete(di, devices); } -static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi, - const struct sr_channel_group *cg) +static int config_get(uint32_t key, GVariant **data, + const struct sr_dev_inst *sdi, const struct sr_channel_group *cg) { struct dev_context *devc; @@ -203,13 +123,10 @@ static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *s devc = sdi->priv; switch (key) { case SR_CONF_LIMIT_SAMPLES: - *data = g_variant_new_uint64(devc->limit_samples); - break; + case SR_CONF_LIMIT_MSEC: + return sr_sw_limits_config_get(&devc->limits, key, data); case SR_CONF_DATA_SOURCE: - if (devc->data_source == DATA_SOURCE_LIVE) - *data = g_variant_new_string("Live"); - else - *data = g_variant_new_string("Memory"); + *data = g_variant_new_string(data_sources[devc->data_source]); break; default: return SR_ERR_NA; @@ -218,61 +135,41 @@ static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *s return SR_OK; } -static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi, - const struct sr_channel_group *cg) +static int config_set(uint32_t key, GVariant *data, + const struct sr_dev_inst *sdi, const struct sr_channel_group *cg) { struct dev_context *devc; - int ret; - const char *tmp_str; + int idx; (void)cg; - if (sdi->status != SR_ST_ACTIVE) - return SR_ERR_DEV_CLOSED; - - if (!di->priv) { - sr_err("Driver was not initialized."); - return SR_ERR; - } - devc = sdi->priv; - ret = SR_OK; + switch (key) { case SR_CONF_LIMIT_SAMPLES: - devc->limit_samples = g_variant_get_uint64(data); - sr_dbg("Setting sample limit to %" PRIu64 ".", - devc->limit_samples); - break; + case SR_CONF_LIMIT_MSEC: + return sr_sw_limits_config_set(&devc->limits, key, data); case SR_CONF_DATA_SOURCE: - tmp_str = g_variant_get_string(data, NULL); - if (!strcmp(tmp_str, "Live")) - devc->data_source = DATA_SOURCE_LIVE; - else if (!strcmp(tmp_str, "Memory")) - devc->data_source = DATA_SOURCE_MEMORY; - else - return SR_ERR; + if ((idx = std_str_idx(data, ARRAY_AND_SIZE(data_sources))) < 0) + return SR_ERR_ARG; + devc->data_source = idx; break; default: - ret = SR_ERR_NA; + return SR_ERR_NA; } - return ret; + return SR_OK; } -static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi, - const struct sr_channel_group *cg) +static int config_list(uint32_t key, GVariant **data, + const struct sr_dev_inst *sdi, const struct sr_channel_group *cg) { - - (void)sdi; - (void)cg; - switch (key) { + case SR_CONF_SCAN_OPTIONS: case SR_CONF_DEVICE_OPTIONS: - *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32, - devopts, ARRAY_SIZE(devopts), sizeof(uint32_t)); - break; + return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts); case SR_CONF_DATA_SOURCE: - *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources)); + *data = g_variant_new_strv(ARRAY_AND_SIZE(data_sources)); break; default: return SR_ERR_NA; @@ -281,99 +178,55 @@ static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst * return SR_OK; } -static int dev_acquisition_start(const struct sr_dev_inst *sdi, - void *cb_data) +static int dev_acquisition_start(const struct sr_dev_inst *sdi) { - struct drv_context *drvc; struct dev_context *devc; - struct sr_usb_dev_inst *usb; - int len, ret; - unsigned char cmd[2]; - - if (sdi->status != SR_ST_ACTIVE) - return SR_ERR_DEV_CLOSED; + struct sr_serial_dev_inst *serial; + uint8_t cmd; - drvc = di->priv; devc = sdi->priv; - usb = sdi->conn; + serial = sdi->conn; - devc->cb_data = cb_data; - devc->num_samples = 0; + sr_sw_limits_acquisition_start(&devc->limits); devc->packet_len = 0; + std_session_send_df_header(sdi); - /* Configure serial port parameters on USB-UART interface - * chip inside the device (just baudrate 2400 actually). */ - cmd[0] = 0x09; - cmd[1] = 0x60; - ret = libusb_control_transfer(usb->devhdl, 0x21, 0x09, 0x0300, 0x00, - cmd, 2, 5); - if (ret != 2) { - sr_dbg("Failed to configure CH9325: %s", libusb_error_name(ret)); - return SR_ERR; - } - - /* Send header packet to the session bus. */ - std_session_send_df_header(cb_data, LOG_PREFIX); - - if (!(devc->xfer = libusb_alloc_transfer(0))) - return SR_ERR; - - /* Length of payload to follow. */ - cmd[0] = 0x01; if (devc->data_source == DATA_SOURCE_LIVE) - cmd[1] = CMD_GET_LIVE; + cmd = CMD_GET_LIVE; else - cmd[1] = CMD_GET_STORED; + cmd = CMD_GET_STORED; + serial_write_blocking(serial, &cmd, sizeof(cmd), 0); - ret = libusb_bulk_transfer(usb->devhdl, EP_OUT, cmd, 2, &len, 5); - if (ret != 0 || len != 2) { - sr_dbg("Failed to start acquisition: %s", libusb_error_name(ret)); - libusb_free_transfer(devc->xfer); - return SR_ERR; - } - - libusb_fill_bulk_transfer(devc->xfer, usb->devhdl, EP_IN, devc->buf, - 8, uni_t_ut32x_receive_transfer, (void *)sdi, 15); - if (libusb_submit_transfer(devc->xfer) != 0) { - libusb_free_transfer(devc->xfer); - return SR_ERR; - } - - usb_source_add(sdi->session, drvc->sr_ctx, 10, - uni_t_ut32x_handle_events, (void *)sdi); + serial_source_add(sdi->session, serial, G_IO_IN, 10, + ut32x_handle_events, (void *)sdi); return SR_OK; } -static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data) +static int dev_acquisition_stop(struct sr_dev_inst *sdi) { - - (void)cb_data; - - if (sdi->status != SR_ST_ACTIVE) - return SR_ERR_DEV_CLOSED; - - /* Signal USB transfer handler to clean up and stop. */ + /* Have the reception routine stop the acquisition. */ sdi->status = SR_ST_STOPPING; return SR_OK; } -SR_PRIV struct sr_dev_driver uni_t_ut32x_driver_info = { +static struct sr_dev_driver uni_t_ut32x_driver_info = { .name = "uni-t-ut32x", .longname = "UNI-T UT32x", .api_version = 1, - .init = init, - .cleanup = cleanup, + .init = std_init, + .cleanup = std_cleanup, .scan = scan, - .dev_list = dev_list, - .dev_clear = NULL, + .dev_list = std_dev_list, + .dev_clear = std_dev_clear, .config_get = config_get, .config_set = config_set, .config_list = config_list, - .dev_open = dev_open, - .dev_close = dev_close, + .dev_open = std_serial_dev_open, + .dev_close = std_serial_dev_close, .dev_acquisition_start = dev_acquisition_start, .dev_acquisition_stop = dev_acquisition_stop, - .priv = NULL, + .context = NULL, }; +SR_REGISTER_DEV_DRIVER(uni_t_ut32x_driver_info);