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