]> sigrok.org Git - libsigrok.git/blame - src/hardware/uni-t-ut32x/api.c
uni-t-ut32x: use common code for sw limits, minor data type fixup (data source)
[libsigrok.git] / src / hardware / uni-t-ut32x / api.c
CommitLineData
3877dde4
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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
6ec6c43b 20#include <config.h>
6513f97f 21#include <string.h>
515ab088 22#include "protocol.h"
6513f97f 23
40bbf635
BV
24static const uint32_t scanopts[] = {
25 SR_CONF_CONN,
26};
27
05199c0a 28static const uint32_t drvopts[] = {
6513f97f 29 SR_CONF_THERMOMETER,
05199c0a
UH
30};
31
32static const uint32_t devopts[] = {
6513f97f 33 SR_CONF_CONTINUOUS,
5827f61b 34 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
9e111972 35 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
5827f61b 36 SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
6513f97f
BV
37};
38
0f34cb47
UH
39static const char *channel_names[] = {
40 "T1", "T2", "T1-T2",
6513f97f
BV
41};
42
43static const char *data_sources[] = {
f8195cb2 44 "Live", "Memory",
6513f97f
BV
45};
46
4f840ce9 47static GSList *scan(struct sr_dev_driver *di, GSList *options)
3877dde4
BV
48{
49 struct drv_context *drvc;
6513f97f
BV
50 struct dev_context *devc;
51 struct sr_dev_inst *sdi;
6513f97f
BV
52 struct sr_config *src;
53 GSList *usb_devices, *devices, *l;
07ffa5b3 54 unsigned int i;
6513f97f 55 const char *conn;
3877dde4 56
41812aca 57 drvc = di->context;
3877dde4 58
bf700f67 59 conn = "1a86.e008";
6513f97f
BV
60 for (l = options; l; l = l->next) {
61 src = l->data;
62 switch (src->key) {
63 case SR_CONF_CONN:
64 conn = g_variant_get_string(src->data, NULL);
65 break;
66 }
67 }
68 if (!conn)
69 return NULL;
70
71 devices = NULL;
e196cb61 72 if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
6513f97f
BV
73 /* We have a list of sr_usb_dev_inst matching the connection
74 * string. Wrap them in sr_dev_inst and we're done. */
75 for (l = usb_devices; l; l = l->next) {
aac29cc1 76 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be 77 sdi->status = SR_ST_INACTIVE;
b15ff1c9
UH
78 sdi->vendor = g_strdup("UNI-T");
79 sdi->model = g_strdup("UT32x");
6513f97f
BV
80 sdi->inst_type = SR_INST_USB;
81 sdi->conn = l->data;
07ffa5b3 82 for (i = 0; i < ARRAY_SIZE(channel_names); i++)
0f34cb47
UH
83 sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE,
84 channel_names[i]);
f57d8ffe 85 devc = g_malloc0(sizeof(struct dev_context));
6513f97f 86 sdi->priv = devc;
9e111972 87 sr_sw_limits_init(&devc->limits);
6513f97f 88 devc->data_source = DEFAULT_DATA_SOURCE;
6513f97f
BV
89 devices = g_slist_append(devices, sdi);
90 }
91 g_slist_free(usb_devices);
92 } else
93 g_slist_free_full(usb_devices, g_free);
3877dde4 94
15a5bfe4 95 return std_scan_complete(di, devices);
3877dde4
BV
96}
97
3877dde4
BV
98static int dev_open(struct sr_dev_inst *sdi)
99{
4f840ce9 100 struct sr_dev_driver *di = sdi->driver;
efa98402 101 struct drv_context *drvc = di->context;
6513f97f
BV
102 struct sr_usb_dev_inst *usb;
103 int ret;
104
6513f97f
BV
105 usb = sdi->conn;
106
107 if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
108 return SR_ERR;
109
110/*
f3f19d11 111 * The libusb 1.0.9 Darwin backend is broken: it can report a kernel
6513f97f
BV
112 * driver being active, but detaching it always returns an error.
113 */
114#if !defined(__APPLE__)
d6ff054a
BV
115 if (libusb_kernel_driver_active(usb->devhdl, USB_INTERFACE) == 1) {
116 if ((ret = libusb_detach_kernel_driver(usb->devhdl, USB_INTERFACE)) < 0) {
6513f97f
BV
117 sr_err("failed to detach kernel driver: %s",
118 libusb_error_name(ret));
119 return SR_ERR;
120 }
121 }
122#endif
3877dde4 123
d6ff054a 124 if ((ret = libusb_set_configuration(usb->devhdl, USB_CONFIGURATION))) {
6513f97f
BV
125 sr_err("Failed to set configuration: %s.", libusb_error_name(ret));
126 return SR_ERR;
127 }
3877dde4 128
6513f97f
BV
129 if ((ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE))) {
130 sr_err("Failed to claim interface: %s.", libusb_error_name(ret));
131 return SR_ERR;
132 }
3877dde4 133
7e463623 134 return SR_OK;
3877dde4
BV
135}
136
137static int dev_close(struct sr_dev_inst *sdi)
138{
6513f97f 139 struct sr_usb_dev_inst *usb;
3877dde4 140
6513f97f 141 usb = sdi->conn;
f1ba6b4b 142
6513f97f 143 if (!usb->devhdl)
f1ba6b4b 144 return SR_ERR_BUG;
3877dde4 145
6513f97f
BV
146 libusb_release_interface(usb->devhdl, USB_INTERFACE);
147 libusb_close(usb->devhdl);
148 usb->devhdl = NULL;
3877dde4
BV
149
150 return SR_OK;
151}
152
dd7a72ea
UH
153static int config_get(uint32_t key, GVariant **data,
154 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
3877dde4 155{
6513f97f 156 struct dev_context *devc;
3877dde4 157
53b4680f 158 (void)cg;
d3c74a6f 159
6513f97f 160 devc = sdi->priv;
3877dde4 161 switch (key) {
6513f97f 162 case SR_CONF_LIMIT_SAMPLES:
9e111972
GS
163 case SR_CONF_LIMIT_MSEC:
164 return sr_sw_limits_config_get(&devc->limits, key, data);
6513f97f 165 case SR_CONF_DATA_SOURCE:
9e111972 166 *data = g_variant_new_string(data_sources[devc->data_source]);
6513f97f 167 break;
3877dde4
BV
168 default:
169 return SR_ERR_NA;
170 }
171
6513f97f 172 return SR_OK;
3877dde4
BV
173}
174
dd7a72ea
UH
175static int config_set(uint32_t key, GVariant *data,
176 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
3877dde4 177{
6513f97f 178 struct dev_context *devc;
697fb6dd 179 int idx;
3877dde4 180
53b4680f 181 (void)cg;
d3c74a6f 182
6513f97f 183 devc = sdi->priv;
dcd438ee 184
3877dde4 185 switch (key) {
6513f97f 186 case SR_CONF_LIMIT_SAMPLES:
9e111972
GS
187 case SR_CONF_LIMIT_MSEC:
188 return sr_sw_limits_config_set(&devc->limits, key, data);
6513f97f 189 case SR_CONF_DATA_SOURCE:
697fb6dd
UH
190 if ((idx = std_str_idx(data, ARRAY_AND_SIZE(data_sources))) < 0)
191 return SR_ERR_ARG;
192 devc->data_source = idx;
6513f97f 193 break;
3877dde4 194 default:
dcd438ee 195 return SR_ERR_NA;
3877dde4
BV
196 }
197
dcd438ee 198 return SR_OK;
3877dde4
BV
199}
200
dd7a72ea
UH
201static int config_list(uint32_t key, GVariant **data,
202 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
3877dde4 203{
3877dde4 204 switch (key) {
40bbf635 205 case SR_CONF_SCAN_OPTIONS:
6513f97f 206 case SR_CONF_DEVICE_OPTIONS:
05199c0a 207 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
6513f97f 208 case SR_CONF_DATA_SOURCE:
53012da6 209 *data = g_variant_new_strv(ARRAY_AND_SIZE(data_sources));
6513f97f 210 break;
3877dde4
BV
211 default:
212 return SR_ERR_NA;
213 }
214
6513f97f 215 return SR_OK;
3877dde4
BV
216}
217
695dc859 218static int dev_acquisition_start(const struct sr_dev_inst *sdi)
3877dde4 219{
4f840ce9 220 struct sr_dev_driver *di = sdi->driver;
6513f97f
BV
221 struct drv_context *drvc;
222 struct dev_context *devc;
223 struct sr_usb_dev_inst *usb;
6c60facc 224 int len, ret;
6513f97f 225 unsigned char cmd[2];
3877dde4 226
41812aca 227 drvc = di->context;
6513f97f
BV
228 devc = sdi->priv;
229 usb = sdi->conn;
230
9e111972 231 sr_sw_limits_acquisition_start(&devc->limits);
d6ff054a
BV
232 devc->packet_len = 0;
233
234 /* Configure serial port parameters on USB-UART interface
235 * chip inside the device (just baudrate 2400 actually). */
236 cmd[0] = 0x09;
237 cmd[1] = 0x60;
238 ret = libusb_control_transfer(usb->devhdl, 0x21, 0x09, 0x0300, 0x00,
239 cmd, 2, 5);
240 if (ret != 2) {
241 sr_dbg("Failed to configure CH9325: %s", libusb_error_name(ret));
242 return SR_ERR;
243 }
6513f97f 244
bee2b016 245 std_session_send_df_header(sdi);
6513f97f
BV
246
247 if (!(devc->xfer = libusb_alloc_transfer(0)))
248 return SR_ERR;
249
6513f97f
BV
250 /* Length of payload to follow. */
251 cmd[0] = 0x01;
252 if (devc->data_source == DATA_SOURCE_LIVE)
253 cmd[1] = CMD_GET_LIVE;
254 else
255 cmd[1] = CMD_GET_STORED;
256
257 ret = libusb_bulk_transfer(usb->devhdl, EP_OUT, cmd, 2, &len, 5);
258 if (ret != 0 || len != 2) {
259 sr_dbg("Failed to start acquisition: %s", libusb_error_name(ret));
260 libusb_free_transfer(devc->xfer);
261 return SR_ERR;
262 }
263
264 libusb_fill_bulk_transfer(devc->xfer, usb->devhdl, EP_IN, devc->buf,
d6ff054a 265 8, uni_t_ut32x_receive_transfer, (void *)sdi, 15);
6513f97f
BV
266 if (libusb_submit_transfer(devc->xfer) != 0) {
267 libusb_free_transfer(devc->xfer);
268 return SR_ERR;
269 }
3877dde4 270
102f1239
BV
271 usb_source_add(sdi->session, drvc->sr_ctx, 10,
272 uni_t_ut32x_handle_events, (void *)sdi);
d6ff054a 273
3877dde4
BV
274 return SR_OK;
275}
276
695dc859 277static int dev_acquisition_stop(struct sr_dev_inst *sdi)
3877dde4 278{
d6ff054a
BV
279 /* Signal USB transfer handler to clean up and stop. */
280 sdi->status = SR_ST_STOPPING;
3877dde4
BV
281
282 return SR_OK;
283}
284
dd5c48a6 285static struct sr_dev_driver uni_t_ut32x_driver_info = {
3877dde4
BV
286 .name = "uni-t-ut32x",
287 .longname = "UNI-T UT32x",
288 .api_version = 1,
c2fdcc25 289 .init = std_init,
700d6b64 290 .cleanup = std_cleanup,
3877dde4 291 .scan = scan,
c01bf34c 292 .dev_list = std_dev_list,
f778bf02 293 .dev_clear = std_dev_clear,
3877dde4
BV
294 .config_get = config_get,
295 .config_set = config_set,
296 .config_list = config_list,
297 .dev_open = dev_open,
298 .dev_close = dev_close,
299 .dev_acquisition_start = dev_acquisition_start,
300 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 301 .context = NULL,
3877dde4 302};
dd5c48a6 303SR_REGISTER_DEV_DRIVER(uni_t_ut32x_driver_info);