]> sigrok.org Git - libsigrok.git/blame - src/hardware/uni-t-ut32x/api.c
Drop SR_CONF_SET flag from SR_CONF_CONTINUOUS options
[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
f254bc4b 24static const uint32_t devopts[] = {
6513f97f 25 SR_CONF_THERMOMETER,
6513f97f 26 SR_CONF_CONTINUOUS,
5827f61b
BV
27 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
28 SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
6513f97f
BV
29};
30
0f34cb47
UH
31static const char *channel_names[] = {
32 "T1", "T2", "T1-T2",
6513f97f
BV
33};
34
35static const char *data_sources[] = {
36 "Live",
37 "Memory",
38};
39
3877dde4 40SR_PRIV struct sr_dev_driver uni_t_ut32x_driver_info;
3877dde4 41
4f840ce9 42static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
3877dde4
BV
43{
44 return std_init(sr_ctx, di, LOG_PREFIX);
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
BV
58 drvc->instances = NULL;
59
6513f97f
BV
60 conn = NULL;
61 for (l = options; l; l = l->next) {
62 src = l->data;
63 switch (src->key) {
64 case SR_CONF_CONN:
65 conn = g_variant_get_string(src->data, NULL);
66 break;
67 }
68 }
69 if (!conn)
70 return NULL;
71
72 devices = NULL;
e196cb61 73 if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
6513f97f
BV
74 /* We have a list of sr_usb_dev_inst matching the connection
75 * string. Wrap them in sr_dev_inst and we're done. */
76 for (l = usb_devices; l; l = l->next) {
aac29cc1 77 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
78 sdi->status = SR_ST_INACTIVE;
79 sdi->vendor = g_strdup(VENDOR);
80 sdi->model = g_strdup(MODEL);
6513f97f
BV
81 sdi->driver = di;
82 sdi->inst_type = SR_INST_USB;
83 sdi->conn = l->data;
07ffa5b3 84 for (i = 0; i < ARRAY_SIZE(channel_names); i++)
0f34cb47
UH
85 sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE,
86 channel_names[i]);
f57d8ffe 87 devc = g_malloc0(sizeof(struct dev_context));
6513f97f
BV
88 sdi->priv = devc;
89 devc->limit_samples = 0;
90 devc->data_source = DEFAULT_DATA_SOURCE;
91 drvc->instances = g_slist_append(drvc->instances, sdi);
92 devices = g_slist_append(devices, sdi);
93 }
94 g_slist_free(usb_devices);
95 } else
96 g_slist_free_full(usb_devices, g_free);
3877dde4
BV
97
98 return devices;
99}
100
3877dde4
BV
101static int dev_open(struct sr_dev_inst *sdi)
102{
4f840ce9 103 struct sr_dev_driver *di = sdi->driver;
6513f97f
BV
104 struct drv_context *drvc;
105 struct sr_usb_dev_inst *usb;
106 int ret;
107
41812aca 108 if (!(drvc = di->context)) {
6513f97f
BV
109 sr_err("Driver was not initialized.");
110 return SR_ERR;
111 }
112
113 usb = sdi->conn;
114
115 if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
116 return SR_ERR;
117
118/*
f3f19d11 119 * The libusb 1.0.9 Darwin backend is broken: it can report a kernel
6513f97f
BV
120 * driver being active, but detaching it always returns an error.
121 */
122#if !defined(__APPLE__)
d6ff054a
BV
123 if (libusb_kernel_driver_active(usb->devhdl, USB_INTERFACE) == 1) {
124 if ((ret = libusb_detach_kernel_driver(usb->devhdl, USB_INTERFACE)) < 0) {
6513f97f
BV
125 sr_err("failed to detach kernel driver: %s",
126 libusb_error_name(ret));
127 return SR_ERR;
128 }
129 }
130#endif
3877dde4 131
d6ff054a 132 if ((ret = libusb_set_configuration(usb->devhdl, USB_CONFIGURATION))) {
6513f97f
BV
133 sr_err("Failed to set configuration: %s.", libusb_error_name(ret));
134 return SR_ERR;
135 }
3877dde4 136
6513f97f
BV
137 if ((ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE))) {
138 sr_err("Failed to claim interface: %s.", libusb_error_name(ret));
139 return SR_ERR;
140 }
3877dde4
BV
141 sdi->status = SR_ST_ACTIVE;
142
6513f97f 143 return ret;
3877dde4
BV
144}
145
146static int dev_close(struct sr_dev_inst *sdi)
147{
4f840ce9 148 struct sr_dev_driver *di = sdi->driver;
6513f97f 149 struct sr_usb_dev_inst *usb;
3877dde4 150
41812aca 151 if (!di->context) {
6513f97f
BV
152 sr_err("Driver was not initialized.");
153 return SR_ERR;
154 }
155
156 usb = sdi->conn;
157 if (!usb->devhdl)
158 /* Nothing to do. */
159 return SR_OK;
3877dde4 160
6513f97f
BV
161 libusb_release_interface(usb->devhdl, USB_INTERFACE);
162 libusb_close(usb->devhdl);
163 usb->devhdl = NULL;
3877dde4
BV
164 sdi->status = SR_ST_INACTIVE;
165
166 return SR_OK;
167}
168
584560f1 169static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 170 const struct sr_channel_group *cg)
3877dde4 171{
6513f97f 172 struct dev_context *devc;
3877dde4 173
53b4680f 174 (void)cg;
d3c74a6f 175
6513f97f 176 devc = sdi->priv;
3877dde4 177 switch (key) {
6513f97f
BV
178 case SR_CONF_LIMIT_SAMPLES:
179 *data = g_variant_new_uint64(devc->limit_samples);
180 break;
181 case SR_CONF_DATA_SOURCE:
182 if (devc->data_source == DATA_SOURCE_LIVE)
183 *data = g_variant_new_string("Live");
184 else
185 *data = g_variant_new_string("Memory");
186 break;
3877dde4
BV
187 default:
188 return SR_ERR_NA;
189 }
190
6513f97f 191 return SR_OK;
3877dde4
BV
192}
193
584560f1 194static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 195 const struct sr_channel_group *cg)
3877dde4 196{
4f840ce9 197 struct sr_dev_driver *di = sdi->driver;
6513f97f 198 struct dev_context *devc;
6513f97f 199 const char *tmp_str;
3877dde4 200
53b4680f 201 (void)cg;
d3c74a6f 202
3877dde4
BV
203 if (sdi->status != SR_ST_ACTIVE)
204 return SR_ERR_DEV_CLOSED;
205
41812aca 206 if (!di->context) {
6513f97f
BV
207 sr_err("Driver was not initialized.");
208 return SR_ERR;
209 }
210
211 devc = sdi->priv;
dcd438ee 212
3877dde4 213 switch (key) {
6513f97f
BV
214 case SR_CONF_LIMIT_SAMPLES:
215 devc->limit_samples = g_variant_get_uint64(data);
6513f97f
BV
216 break;
217 case SR_CONF_DATA_SOURCE:
218 tmp_str = g_variant_get_string(data, NULL);
219 if (!strcmp(tmp_str, "Live"))
220 devc->data_source = DATA_SOURCE_LIVE;
221 else if (!strcmp(tmp_str, "Memory"))
222 devc->data_source = DATA_SOURCE_MEMORY;
223 else
224 return SR_ERR;
225 break;
3877dde4 226 default:
dcd438ee 227 return SR_ERR_NA;
3877dde4
BV
228 }
229
dcd438ee 230 return SR_OK;
3877dde4
BV
231}
232
584560f1 233static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 234 const struct sr_channel_group *cg)
3877dde4 235{
3877dde4 236 (void)sdi;
53b4680f 237 (void)cg;
3877dde4 238
3877dde4 239 switch (key) {
6513f97f 240 case SR_CONF_DEVICE_OPTIONS:
584560f1 241 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 242 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
6513f97f
BV
243 break;
244 case SR_CONF_DATA_SOURCE:
245 *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources));
246 break;
3877dde4
BV
247 default:
248 return SR_ERR_NA;
249 }
250
6513f97f 251 return SR_OK;
3877dde4
BV
252}
253
695dc859 254static int dev_acquisition_start(const struct sr_dev_inst *sdi)
3877dde4 255{
4f840ce9 256 struct sr_dev_driver *di = sdi->driver;
6513f97f
BV
257 struct drv_context *drvc;
258 struct dev_context *devc;
259 struct sr_usb_dev_inst *usb;
6c60facc 260 int len, ret;
6513f97f 261 unsigned char cmd[2];
3877dde4
BV
262
263 if (sdi->status != SR_ST_ACTIVE)
264 return SR_ERR_DEV_CLOSED;
265
41812aca 266 drvc = di->context;
6513f97f
BV
267 devc = sdi->priv;
268 usb = sdi->conn;
269
6513f97f 270 devc->num_samples = 0;
d6ff054a
BV
271 devc->packet_len = 0;
272
273 /* Configure serial port parameters on USB-UART interface
274 * chip inside the device (just baudrate 2400 actually). */
275 cmd[0] = 0x09;
276 cmd[1] = 0x60;
277 ret = libusb_control_transfer(usb->devhdl, 0x21, 0x09, 0x0300, 0x00,
278 cmd, 2, 5);
279 if (ret != 2) {
280 sr_dbg("Failed to configure CH9325: %s", libusb_error_name(ret));
281 return SR_ERR;
282 }
6513f97f 283
695dc859 284 std_session_send_df_header(sdi, LOG_PREFIX);
6513f97f
BV
285
286 if (!(devc->xfer = libusb_alloc_transfer(0)))
287 return SR_ERR;
288
6513f97f
BV
289 /* Length of payload to follow. */
290 cmd[0] = 0x01;
291 if (devc->data_source == DATA_SOURCE_LIVE)
292 cmd[1] = CMD_GET_LIVE;
293 else
294 cmd[1] = CMD_GET_STORED;
295
296 ret = libusb_bulk_transfer(usb->devhdl, EP_OUT, cmd, 2, &len, 5);
297 if (ret != 0 || len != 2) {
298 sr_dbg("Failed to start acquisition: %s", libusb_error_name(ret));
299 libusb_free_transfer(devc->xfer);
300 return SR_ERR;
301 }
302
303 libusb_fill_bulk_transfer(devc->xfer, usb->devhdl, EP_IN, devc->buf,
d6ff054a 304 8, uni_t_ut32x_receive_transfer, (void *)sdi, 15);
6513f97f
BV
305 if (libusb_submit_transfer(devc->xfer) != 0) {
306 libusb_free_transfer(devc->xfer);
307 return SR_ERR;
308 }
3877dde4 309
102f1239
BV
310 usb_source_add(sdi->session, drvc->sr_ctx, 10,
311 uni_t_ut32x_handle_events, (void *)sdi);
d6ff054a 312
3877dde4
BV
313 return SR_OK;
314}
315
695dc859 316static int dev_acquisition_stop(struct sr_dev_inst *sdi)
3877dde4 317{
3877dde4
BV
318 if (sdi->status != SR_ST_ACTIVE)
319 return SR_ERR_DEV_CLOSED;
320
d6ff054a
BV
321 /* Signal USB transfer handler to clean up and stop. */
322 sdi->status = SR_ST_STOPPING;
3877dde4
BV
323
324 return SR_OK;
325}
326
327SR_PRIV struct sr_dev_driver uni_t_ut32x_driver_info = {
328 .name = "uni-t-ut32x",
329 .longname = "UNI-T UT32x",
330 .api_version = 1,
331 .init = init,
700d6b64 332 .cleanup = std_cleanup,
3877dde4 333 .scan = scan,
c01bf34c 334 .dev_list = std_dev_list,
a6630742 335 .dev_clear = NULL,
3877dde4
BV
336 .config_get = config_get,
337 .config_set = config_set,
338 .config_list = config_list,
339 .dev_open = dev_open,
340 .dev_close = dev_close,
341 .dev_acquisition_start = dev_acquisition_start,
342 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 343 .context = NULL,
3877dde4 344};