]> sigrok.org Git - libsigrok.git/blame - hardware/lascar-el-usb/api.c
Don't automatically clear known instances from USB drivers on scan
[libsigrok.git] / hardware / lascar-el-usb / api.c
CommitLineData
46697e38
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 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
20#include <glib.h>
851d5b22 21#include <libusb.h>
46697e38
BV
22#include "libsigrok.h"
23#include "libsigrok-internal.h"
24#include "protocol.h"
25
851d5b22 26SR_PRIV struct sr_dev_inst *lascar_scan(int bus, int address);
46697e38
BV
27SR_PRIV struct sr_dev_driver lascar_el_usb_driver_info;
28static struct sr_dev_driver *di = &lascar_el_usb_driver_info;
851d5b22 29static int hw_dev_close(struct sr_dev_inst *sdi);
851d5b22 30
7faf69da 31static const int32_t hwopts[] = {
1953564a 32 SR_CONF_CONN,
851d5b22
BV
33};
34
7faf69da 35static const int32_t hwcaps[] = {
1953564a
BV
36 SR_CONF_THERMOMETER,
37 SR_CONF_HYGROMETER,
361d1511 38 SR_CONF_DATALOG,
1953564a 39 SR_CONF_LIMIT_SAMPLES,
851d5b22
BV
40};
41
46697e38
BV
42/* Properly close and free all devices. */
43static int clear_instances(void)
44{
45 struct sr_dev_inst *sdi;
46 struct drv_context *drvc;
47 struct dev_context *devc;
48 GSList *l;
49
50 if (!(drvc = di->priv))
51 return SR_OK;
52
53 for (l = drvc->instances; l; l = l->next) {
54 if (!(sdi = l->data))
55 continue;
56 if (!(devc = sdi->priv))
57 continue;
58
851d5b22 59 hw_dev_close(sdi);
0f150649 60 sr_usb_dev_inst_free(sdi->conn);
46697e38
BV
61 sr_dev_inst_free(sdi);
62 }
63
64 g_slist_free(drvc->instances);
65 drvc->instances = NULL;
66
67 return SR_OK;
68}
69
851d5b22 70static int hw_init(struct sr_context *sr_ctx)
46697e38 71{
063e7aef 72 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
46697e38
BV
73}
74
75static GSList *hw_scan(GSList *options)
76{
77 struct drv_context *drvc;
851d5b22
BV
78 struct sr_dev_inst *sdi;
79 struct sr_usb_dev_inst *usb;
1987b8d6 80 struct sr_config *src;
851d5b22
BV
81 GSList *usb_devices, *devices, *l;
82 const char *conn;
46697e38
BV
83
84 (void)options;
85
4b97c74e 86 drvc = di->priv;
46697e38 87
851d5b22
BV
88 conn = NULL;
89 for (l = options; l; l = l->next) {
1987b8d6
BV
90 src = l->data;
91 switch (src->key) {
1953564a 92 case SR_CONF_CONN:
7faf69da 93 conn = g_variant_get_string(src->data, NULL);
851d5b22
BV
94 break;
95 }
96 }
97 if (!conn)
98 return NULL;
99
100 devices = NULL;
101 if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
102 /* We have a list of sr_usb_dev_inst matching the connection
103 * string. Wrap them in sr_dev_inst and we're done. */
104 for (l = usb_devices; l; l = l->next) {
105 usb = l->data;
106 if (!(sdi = lascar_scan(usb->bus, usb->address))) {
107 /* Not a Lascar EL-USB. */
108 g_free(usb);
109 continue;
110 }
0f150649
BV
111 sdi->inst_type = SR_INST_USB;
112 sdi->conn = usb;
851d5b22
BV
113 drvc->instances = g_slist_append(drvc->instances, sdi);
114 devices = g_slist_append(devices, sdi);
115 }
116 g_slist_free(usb_devices);
117 } else
118 g_slist_free_full(usb_devices, g_free);
46697e38
BV
119
120 return devices;
121}
122
123static GSList *hw_dev_list(void)
124{
0e94d524 125 return ((struct drv_context *)(di->priv))->instances;
46697e38
BV
126}
127
128static int hw_dev_open(struct sr_dev_inst *sdi)
129{
6aa1eb4e 130 struct drv_context *drvc;
0f150649 131 struct sr_usb_dev_inst *usb;
6aa1eb4e 132 int ret;
46697e38 133
6aa1eb4e
BV
134 if (!(drvc = di->priv)) {
135 sr_err("Driver was not initialized.");
136 return SR_ERR;
137 }
138
0f150649
BV
139 usb = sdi->conn;
140
141 if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
6aa1eb4e
BV
142 return SR_ERR;
143
0f150649 144 if ((ret = libusb_claim_interface(usb->devhdl, LASCAR_INTERFACE))) {
6aa1eb4e
BV
145 sr_err("Failed to claim interface: %s.", libusb_error_name(ret));
146 return SR_ERR;
147 }
148 sdi->status = SR_ST_ACTIVE;
149
150 return ret;
46697e38
BV
151}
152
153static int hw_dev_close(struct sr_dev_inst *sdi)
154{
0f150649 155 struct sr_usb_dev_inst *usb;
6aa1eb4e
BV
156
157 if (!di->priv) {
158 sr_err("Driver was not initialized.");
159 return SR_ERR;
160 }
161
0f150649
BV
162 usb = sdi->conn;
163
164 if (!usb->devhdl)
6aa1eb4e
BV
165 /* Nothing to do. */
166 return SR_OK;
167
0f150649
BV
168 libusb_release_interface(usb->devhdl, LASCAR_INTERFACE);
169 libusb_close(usb->devhdl);
170 usb->devhdl = NULL;
6aa1eb4e
BV
171 sdi->status = SR_ST_INACTIVE;
172
46697e38
BV
173 return SR_OK;
174}
175
176static int hw_cleanup(void)
177{
6aa1eb4e 178 struct drv_context *drvc;
46697e38 179
6aa1eb4e
BV
180 if (!(drvc = di->priv))
181 /* Can get called on an unused driver, doesn't matter. */
182 return SR_OK;
183
184 clear_instances();
185 g_free(drvc);
186 di->priv = NULL;
46697e38
BV
187
188 return SR_OK;
189}
190
7faf69da 191static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
361d1511
BV
192{
193 struct dev_context *devc;
0f150649 194 struct sr_usb_dev_inst *usb;
361d1511 195 int ret;
0f150649 196 char str[128];
361d1511
BV
197
198 devc = sdi->priv;
199 switch (id) {
0f150649
BV
200 case SR_CONF_CONN:
201 if (!sdi || !sdi->conn)
202 return SR_ERR_ARG;
203 usb = sdi->conn;
204 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
205 *data = g_variant_new_string(str);
206 break;
361d1511
BV
207 case SR_CONF_DATALOG:
208 if (!sdi)
209 return SR_ERR_ARG;
210 if ((ret = lascar_is_logging(sdi)) == -1)
211 return SR_ERR;
7faf69da 212 *data = g_variant_new_boolean(ret ? TRUE : FALSE);
361d1511
BV
213 break;
214 case SR_CONF_LIMIT_SAMPLES:
7faf69da 215 *data = g_variant_new_uint64(devc->limit_samples);
361d1511
BV
216 break;
217 default:
bd6fbf62 218 return SR_ERR_NA;
361d1511
BV
219 }
220
221 return SR_OK;
222}
223
7faf69da 224static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
46697e38 225{
6aa1eb4e 226 struct dev_context *devc;
46697e38
BV
227 int ret;
228
e73ffd42
BV
229 if (sdi->status != SR_ST_ACTIVE)
230 return SR_ERR_DEV_CLOSED;
231
6aa1eb4e
BV
232 if (!di->priv) {
233 sr_err("Driver was not initialized.");
234 return SR_ERR;
235 }
46697e38 236
6aa1eb4e 237 devc = sdi->priv;
46697e38 238 ret = SR_OK;
035a1078 239 switch (id) {
361d1511 240 case SR_CONF_DATALOG:
7faf69da 241 if (g_variant_get_boolean(data)) {
361d1511
BV
242 /* Start logging. */
243 ret = lascar_start_logging(sdi);
244 } else {
245 /* Stop logging. */
246 ret = lascar_stop_logging(sdi);
247 }
248 break;
1953564a 249 case SR_CONF_LIMIT_SAMPLES:
7faf69da 250 devc->limit_samples = g_variant_get_uint64(data);
6aa1eb4e
BV
251 sr_dbg("Setting sample limit to %" PRIu64 ".",
252 devc->limit_samples);
253 break;
46697e38 254 default:
bd6fbf62 255 ret = SR_ERR_NA;
46697e38
BV
256 }
257
258 return ret;
259}
260
7faf69da 261static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc
BV
262{
263
264 (void)sdi;
265
266 switch (key) {
0d485e30 267 case SR_CONF_SCAN_OPTIONS:
7faf69da
BV
268 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
269 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
0d485e30 270 break;
9a6517d1 271 case SR_CONF_DEVICE_OPTIONS:
7faf69da
BV
272 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
273 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
9a6517d1 274 break;
a1c743fc 275 default:
bd6fbf62 276 return SR_ERR_NA;
a1c743fc
BV
277 }
278
279 return SR_OK;
280}
281
6aa1eb4e
BV
282static void mark_xfer(struct libusb_transfer *xfer)
283{
284
285 if (xfer->status == LIBUSB_TRANSFER_COMPLETED)
286 xfer->user_data = GINT_TO_POINTER(1);
287 else
288 xfer->user_data = GINT_TO_POINTER(-1);
289
290}
291
292/* The Lascar software, in its infinite ignorance, reads a set of four
293 * bytes from the device config struct and interprets it as a float.
294 * That only works because they only use windows, and only on x86. However
295 * we may be running on any architecture, any operating system. So we have
296 * to convert these four bytes as the Lascar software would on windows/x86,
297 * to the local representation of a float.
298 * The source format is little-endian, with IEEE 754-2008 BINARY32 encoding. */
299static float binary32_le_to_float(unsigned char *buf)
300{
301 GFloatIEEE754 f;
302
303 f.v_float = 0;
304 f.mpn.sign = (buf[3] & 0x80) ? 1 : 0;
305 f.mpn.biased_exponent = (buf[3] << 1) | (buf[2] >> 7);
306 f.mpn.mantissa = buf[0] | (buf[1] << 8) | ((buf[2] & 0x7f) << 16);
307
308 return f.v_float;
309}
310
311static int lascar_proc_config(const struct sr_dev_inst *sdi)
312{
313 struct dev_context *devc;
0f150649 314 struct sr_usb_dev_inst *usb;
361d1511 315 int dummy, ret;
6aa1eb4e
BV
316
317 devc = sdi->priv;
0f150649
BV
318 usb = sdi->conn;
319
320 if (lascar_get_config(usb->devhdl, devc->config, &dummy) != SR_OK)
6aa1eb4e
BV
321 return SR_ERR;
322
323 ret = SR_OK;
324 switch (devc->profile->logformat) {
325 case LOG_TEMP_RH:
6787f404
BV
326 devc->sample_size = 2;
327 devc->temp_unit = devc->config[0x2e] | (devc->config[0x2f] << 8);
328 if (devc->temp_unit != 0 && devc->temp_unit != 1) {
329 sr_dbg("invalid temperature unit %d", devc->temp_unit);
330 /* Default to Celcius, we're all adults here. */
331 devc->temp_unit = 0;
332 } else
333 sr_dbg("temperature unit is %s", devc->temp_unit
334 ? "Fahrenheit" : "Celcius");
6aa1eb4e
BV
335 break;
336 case LOG_CO:
337 devc->sample_size = 2;
6787f404
BV
338 devc->co_high = binary32_le_to_float(devc->config + 0x24);
339 devc->co_low = binary32_le_to_float(devc->config + 0x28);
6aa1eb4e
BV
340 sr_dbg("EL-USB-CO calibration high %f low %f", devc->co_high,
341 devc->co_low);
342 break;
343 default:
344 ret = SR_ERR_ARG;
345 }
346 devc->logged_samples = devc->config[0x1e] | (devc->config[0x1f] << 8);
347 sr_dbg("device log contains %d samples.", devc->logged_samples);
348
349 return ret;
350}
351
46697e38 352static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
851d5b22 353 void *cb_data)
46697e38 354{
6aa1eb4e 355 struct sr_datafeed_packet packet;
8e77bc20
BV
356 struct sr_datafeed_meta meta;
357 struct sr_config *src;
6aa1eb4e 358 struct dev_context *devc;
8e77bc20 359 struct drv_context *drvc;
0f150649 360 struct sr_usb_dev_inst *usb;
6aa1eb4e
BV
361 struct libusb_transfer *xfer_in, *xfer_out;
362 const struct libusb_pollfd **pfd;
363 struct timeval tv;
8e77bc20 364 uint64_t interval;
6aa1eb4e
BV
365 int ret, i;
366 unsigned char cmd[3], resp[4], *buf;
367
e73ffd42
BV
368 if (sdi->status != SR_ST_ACTIVE)
369 return SR_ERR_DEV_CLOSED;
370
6aa1eb4e
BV
371 if (!di->priv) {
372 sr_err("Driver was not initialized.");
373 return SR_ERR;
374 }
375
8e77bc20 376 drvc = di->priv;
6aa1eb4e 377 devc = sdi->priv;
0f150649 378 usb = sdi->conn;
6aa1eb4e
BV
379 devc->cb_data = cb_data;
380
381 if (lascar_proc_config(sdi) != SR_OK)
382 return SR_ERR;
383
384 sr_dbg("Starting log retrieval.");
385
386 /* Send header packet to the session bus. */
4afdfd46 387 std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
6aa1eb4e 388
8e77bc20
BV
389 interval = (devc->config[0x1c] | (devc->config[0x1d] << 8)) * 1000;
390 packet.type = SR_DF_META;
391 packet.payload = &meta;
7faf69da 392 src = sr_config_new(SR_CONF_SAMPLE_INTERVAL, g_variant_new_uint64(interval));
8e77bc20
BV
393 meta.config = g_slist_append(NULL, src);
394 sr_session_send(devc->cb_data, &packet);
395 g_free(src);
396
6aa1eb4e
BV
397 if (devc->logged_samples == 0) {
398 /* This ensures the frontend knows the session is done. */
399 packet.type = SR_DF_END;
400 sr_session_send(devc->cb_data, &packet);
401 return SR_OK;
402 }
403
404 if (!(xfer_in = libusb_alloc_transfer(0)) ||
405 !(xfer_out = libusb_alloc_transfer(0)))
406 return SR_ERR;
407
0f150649 408 libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
6aa1eb4e 409 0x00, 0xffff, 0x00, NULL, 0, 50);
0f150649 410 libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
6aa1eb4e 411 0x02, 0x0002, 0x00, NULL, 0, 50);
0f150649 412 libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
6aa1eb4e
BV
413 0x02, 0x0001, 0x00, NULL, 0, 50);
414
415
416 /* Flush input. The F321 requires this. */
0f150649 417 while (libusb_bulk_transfer(usb->devhdl, LASCAR_EP_IN, resp,
6aa1eb4e
BV
418 256, &ret, 5) == 0 && ret > 0)
419 ;
420
0f150649 421 libusb_fill_bulk_transfer(xfer_in, usb->devhdl, LASCAR_EP_IN,
6aa1eb4e
BV
422 resp, sizeof(resp), mark_xfer, 0, 10000);
423 if (libusb_submit_transfer(xfer_in) != 0) {
424 libusb_free_transfer(xfer_in);
425 libusb_free_transfer(xfer_out);
426 return SR_ERR;
427 }
428
429 cmd[0] = 0x03;
430 cmd[1] = 0xff;
431 cmd[2] = 0xff;
0f150649 432 libusb_fill_bulk_transfer(xfer_out, usb->devhdl, LASCAR_EP_OUT,
6aa1eb4e
BV
433 cmd, 3, mark_xfer, 0, 100);
434 if (libusb_submit_transfer(xfer_out) != 0) {
435 libusb_free_transfer(xfer_in);
436 libusb_free_transfer(xfer_out);
437 return SR_ERR;
438 }
439
440 tv.tv_sec = 0;
441 tv.tv_usec = 0;
442 while (!xfer_in->user_data || !xfer_out->user_data) {
443 g_usleep(5000);
444 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
445 }
446 if (xfer_in->user_data != GINT_TO_POINTER(1) ||
447 xfer_in->user_data != GINT_TO_POINTER(1)) {
448 sr_dbg("no response to log transfer request");
449 libusb_free_transfer(xfer_in);
450 libusb_free_transfer(xfer_out);
451 return SR_ERR;
452 }
453 if (xfer_in->actual_length != 3 || xfer_in->buffer[0] != 2) {
454 sr_dbg("invalid response to log transfer request");
455 libusb_free_transfer(xfer_in);
456 libusb_free_transfer(xfer_out);
457 return SR_ERR;
458 }
459 devc->log_size = xfer_in->buffer[1] + (xfer_in->buffer[2] << 8);
460 libusb_free_transfer(xfer_out);
461
6aa1eb4e
BV
462 pfd = libusb_get_pollfds(drvc->sr_ctx->libusb_ctx);
463 for (i = 0; pfd[i]; i++) {
464 /* Handle USB events every 100ms, for decent latency. */
465 sr_source_add(pfd[i]->fd, pfd[i]->events, 100,
466 lascar_el_usb_handle_events, (void *)sdi);
467 /* We'll need to remove this fd later. */
468 devc->usbfd[i] = pfd[i]->fd;
469 }
470 devc->usbfd[i] = -1;
471
472 buf = g_try_malloc(4096);
0f150649 473 libusb_fill_bulk_transfer(xfer_in, usb->devhdl, LASCAR_EP_IN,
6aa1eb4e
BV
474 buf, 4096, lascar_el_usb_receive_transfer, cb_data, 100);
475 if ((ret = libusb_submit_transfer(xfer_in) != 0)) {
476 sr_err("Unable to submit transfer: %s.", libusb_error_name(ret));
477 libusb_free_transfer(xfer_in);
478 g_free(buf);
479 return SR_ERR;
480 }
46697e38
BV
481
482 return SR_OK;
483}
484
6aa1eb4e 485SR_PRIV int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
46697e38
BV
486{
487 (void)cb_data;
488
6aa1eb4e
BV
489 if (!di->priv) {
490 sr_err("Driver was not initialized.");
491 return SR_ERR;
492 }
493
46697e38
BV
494 if (sdi->status != SR_ST_ACTIVE) {
495 sr_err("Device inactive, can't stop acquisition.");
496 return SR_ERR;
497 }
498
6aa1eb4e
BV
499 sdi->status = SR_ST_STOPPING;
500 /* TODO: free ongoing transfers? */
46697e38
BV
501
502 return SR_OK;
503}
504
505SR_PRIV struct sr_dev_driver lascar_el_usb_driver_info = {
506 .name = "lascar-el-usb",
507 .longname = "Lascar EL-USB",
508 .api_version = 1,
509 .init = hw_init,
510 .cleanup = hw_cleanup,
511 .scan = hw_scan,
512 .dev_list = hw_dev_list,
513 .dev_clear = clear_instances,
361d1511 514 .config_get = config_get,
035a1078 515 .config_set = config_set,
a1c743fc 516 .config_list = config_list,
46697e38
BV
517 .dev_open = hw_dev_open,
518 .dev_close = hw_dev_close,
46697e38
BV
519 .dev_acquisition_start = hw_dev_acquisition_start,
520 .dev_acquisition_stop = hw_dev_acquisition_stop,
521 .priv = NULL,
522};