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