]> sigrok.org Git - libsigrok.git/blame - src/hardware/lascar-el-usb/api.c
Remove unnecessary driver context checks
[libsigrok.git] / src / 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
6ec6c43b 20#include <config.h>
46697e38 21#include <glib.h>
851d5b22 22#include <libusb.h>
c1aae900 23#include <libsigrok/libsigrok.h>
46697e38
BV
24#include "libsigrok-internal.h"
25#include "protocol.h"
26
27SR_PRIV struct sr_dev_driver lascar_el_usb_driver_info;
851d5b22 28
a0e0bb41 29static const uint32_t scanopts[] = {
1953564a 30 SR_CONF_CONN,
851d5b22
BV
31};
32
f254bc4b 33static const uint32_t devopts[] = {
1953564a
BV
34 SR_CONF_THERMOMETER,
35 SR_CONF_HYGROMETER,
5827f61b
BV
36 SR_CONF_CONN | SR_CONF_GET,
37 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
38 SR_CONF_DATALOG | SR_CONF_GET | SR_CONF_SET,
851d5b22
BV
39};
40
4f840ce9 41static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
46697e38 42{
f6beaac5 43 return std_init(sr_ctx, di, LOG_PREFIX);
46697e38
BV
44}
45
4f840ce9 46static GSList *scan(struct sr_dev_driver *di, GSList *options)
46697e38
BV
47{
48 struct drv_context *drvc;
851d5b22
BV
49 struct sr_dev_inst *sdi;
50 struct sr_usb_dev_inst *usb;
1987b8d6 51 struct sr_config *src;
851d5b22
BV
52 GSList *usb_devices, *devices, *l;
53 const char *conn;
46697e38 54
41812aca 55 drvc = di->context;
46697e38 56
851d5b22
BV
57 conn = NULL;
58 for (l = options; l; l = l->next) {
1987b8d6
BV
59 src = l->data;
60 switch (src->key) {
1953564a 61 case SR_CONF_CONN:
7faf69da 62 conn = g_variant_get_string(src->data, NULL);
851d5b22
BV
63 break;
64 }
65 }
66 if (!conn)
67 return NULL;
68
69 devices = NULL;
70 if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
71 /* We have a list of sr_usb_dev_inst matching the connection
72 * string. Wrap them in sr_dev_inst and we're done. */
73 for (l = usb_devices; l; l = l->next) {
74 usb = l->data;
75 if (!(sdi = lascar_scan(usb->bus, usb->address))) {
76 /* Not a Lascar EL-USB. */
77 g_free(usb);
78 continue;
79 }
0f150649
BV
80 sdi->inst_type = SR_INST_USB;
81 sdi->conn = usb;
851d5b22
BV
82 drvc->instances = g_slist_append(drvc->instances, sdi);
83 devices = g_slist_append(devices, sdi);
84 }
85 g_slist_free(usb_devices);
86 } else
87 g_slist_free_full(usb_devices, g_free);
46697e38
BV
88
89 return devices;
90}
91
6078d2c9 92static int dev_open(struct sr_dev_inst *sdi)
46697e38 93{
4f840ce9 94 struct sr_dev_driver *di = sdi->driver;
efa98402 95 struct drv_context *drvc = di->context;;
0f150649 96 struct sr_usb_dev_inst *usb;
6aa1eb4e 97 int ret;
46697e38 98
0f150649
BV
99 usb = sdi->conn;
100
101 if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
6aa1eb4e
BV
102 return SR_ERR;
103
0f150649 104 if ((ret = libusb_claim_interface(usb->devhdl, LASCAR_INTERFACE))) {
6aa1eb4e
BV
105 sr_err("Failed to claim interface: %s.", libusb_error_name(ret));
106 return SR_ERR;
107 }
108 sdi->status = SR_ST_ACTIVE;
109
110 return ret;
46697e38
BV
111}
112
6078d2c9 113static int dev_close(struct sr_dev_inst *sdi)
46697e38 114{
0f150649 115 struct sr_usb_dev_inst *usb;
6aa1eb4e 116
0f150649
BV
117 usb = sdi->conn;
118
119 if (!usb->devhdl)
6aa1eb4e
BV
120 /* Nothing to do. */
121 return SR_OK;
122
0f150649
BV
123 libusb_release_interface(usb->devhdl, LASCAR_INTERFACE);
124 libusb_close(usb->devhdl);
125 usb->devhdl = NULL;
6aa1eb4e
BV
126 sdi->status = SR_ST_INACTIVE;
127
46697e38
BV
128 return SR_OK;
129}
130
584560f1 131static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 132 const struct sr_channel_group *cg)
361d1511
BV
133{
134 struct dev_context *devc;
0f150649 135 struct sr_usb_dev_inst *usb;
361d1511 136 int ret;
0f150649 137 char str[128];
361d1511 138
53b4680f 139 (void)cg;
8f996b89 140
361d1511 141 devc = sdi->priv;
584560f1 142 switch (key) {
0f150649
BV
143 case SR_CONF_CONN:
144 if (!sdi || !sdi->conn)
145 return SR_ERR_ARG;
146 usb = sdi->conn;
147 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
148 *data = g_variant_new_string(str);
149 break;
361d1511
BV
150 case SR_CONF_DATALOG:
151 if (!sdi)
152 return SR_ERR_ARG;
153 if ((ret = lascar_is_logging(sdi)) == -1)
154 return SR_ERR;
7faf69da 155 *data = g_variant_new_boolean(ret ? TRUE : FALSE);
361d1511
BV
156 break;
157 case SR_CONF_LIMIT_SAMPLES:
7faf69da 158 *data = g_variant_new_uint64(devc->limit_samples);
361d1511
BV
159 break;
160 default:
bd6fbf62 161 return SR_ERR_NA;
361d1511
BV
162 }
163
164 return SR_OK;
165}
166
584560f1 167static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 168 const struct sr_channel_group *cg)
46697e38 169{
6aa1eb4e 170 struct dev_context *devc;
46697e38
BV
171 int ret;
172
53b4680f 173 (void)cg;
8f996b89 174
e73ffd42
BV
175 if (sdi->status != SR_ST_ACTIVE)
176 return SR_ERR_DEV_CLOSED;
177
6aa1eb4e 178 devc = sdi->priv;
46697e38 179 ret = SR_OK;
584560f1 180 switch (key) {
361d1511 181 case SR_CONF_DATALOG:
dcd438ee 182 if (g_variant_get_boolean(data))
361d1511 183 ret = lascar_start_logging(sdi);
dcd438ee 184 else
361d1511 185 ret = lascar_stop_logging(sdi);
361d1511 186 break;
1953564a 187 case SR_CONF_LIMIT_SAMPLES:
7faf69da 188 devc->limit_samples = g_variant_get_uint64(data);
6aa1eb4e 189 break;
46697e38 190 default:
bd6fbf62 191 ret = SR_ERR_NA;
46697e38
BV
192 }
193
194 return ret;
195}
196
584560f1 197static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 198 const struct sr_channel_group *cg)
a1c743fc 199{
a1c743fc 200 (void)sdi;
53b4680f 201 (void)cg;
a1c743fc
BV
202
203 switch (key) {
0d485e30 204 case SR_CONF_SCAN_OPTIONS:
584560f1 205 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 206 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 207 break;
9a6517d1 208 case SR_CONF_DEVICE_OPTIONS:
584560f1 209 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 210 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 211 break;
a1c743fc 212 default:
bd6fbf62 213 return SR_ERR_NA;
a1c743fc
BV
214 }
215
216 return SR_OK;
217}
218
55462b8b 219static void LIBUSB_CALL mark_xfer(struct libusb_transfer *xfer)
6aa1eb4e
BV
220{
221
222 if (xfer->status == LIBUSB_TRANSFER_COMPLETED)
223 xfer->user_data = GINT_TO_POINTER(1);
224 else
225 xfer->user_data = GINT_TO_POINTER(-1);
226
227}
228
229/* The Lascar software, in its infinite ignorance, reads a set of four
230 * bytes from the device config struct and interprets it as a float.
231 * That only works because they only use windows, and only on x86. However
232 * we may be running on any architecture, any operating system. So we have
233 * to convert these four bytes as the Lascar software would on windows/x86,
234 * to the local representation of a float.
235 * The source format is little-endian, with IEEE 754-2008 BINARY32 encoding. */
236static float binary32_le_to_float(unsigned char *buf)
237{
238 GFloatIEEE754 f;
239
240 f.v_float = 0;
241 f.mpn.sign = (buf[3] & 0x80) ? 1 : 0;
242 f.mpn.biased_exponent = (buf[3] << 1) | (buf[2] >> 7);
243 f.mpn.mantissa = buf[0] | (buf[1] << 8) | ((buf[2] & 0x7f) << 16);
244
245 return f.v_float;
246}
247
248static int lascar_proc_config(const struct sr_dev_inst *sdi)
249{
250 struct dev_context *devc;
0f150649 251 struct sr_usb_dev_inst *usb;
361d1511 252 int dummy, ret;
6aa1eb4e
BV
253
254 devc = sdi->priv;
0f150649
BV
255 usb = sdi->conn;
256
257 if (lascar_get_config(usb->devhdl, devc->config, &dummy) != SR_OK)
6aa1eb4e
BV
258 return SR_ERR;
259
260 ret = SR_OK;
261 switch (devc->profile->logformat) {
262 case LOG_TEMP_RH:
6787f404
BV
263 devc->sample_size = 2;
264 devc->temp_unit = devc->config[0x2e] | (devc->config[0x2f] << 8);
265 if (devc->temp_unit != 0 && devc->temp_unit != 1) {
266 sr_dbg("invalid temperature unit %d", devc->temp_unit);
f3f19d11 267 /* Default to Celsius, we're all adults here. */
6787f404
BV
268 devc->temp_unit = 0;
269 } else
270 sr_dbg("temperature unit is %s", devc->temp_unit
f3f19d11 271 ? "Fahrenheit" : "Celsius");
6aa1eb4e
BV
272 break;
273 case LOG_CO:
274 devc->sample_size = 2;
6787f404
BV
275 devc->co_high = binary32_le_to_float(devc->config + 0x24);
276 devc->co_low = binary32_le_to_float(devc->config + 0x28);
6aa1eb4e
BV
277 sr_dbg("EL-USB-CO calibration high %f low %f", devc->co_high,
278 devc->co_low);
279 break;
280 default:
281 ret = SR_ERR_ARG;
282 }
283 devc->logged_samples = devc->config[0x1e] | (devc->config[0x1f] << 8);
284 sr_dbg("device log contains %d samples.", devc->logged_samples);
285
286 return ret;
287}
288
695dc859 289static int dev_acquisition_start(const struct sr_dev_inst *sdi)
46697e38 290{
4f840ce9 291 struct sr_dev_driver *di = sdi->driver;
6aa1eb4e 292 struct sr_datafeed_packet packet;
8e77bc20
BV
293 struct sr_datafeed_meta meta;
294 struct sr_config *src;
6aa1eb4e 295 struct dev_context *devc;
8e77bc20 296 struct drv_context *drvc;
0f150649 297 struct sr_usb_dev_inst *usb;
6aa1eb4e 298 struct libusb_transfer *xfer_in, *xfer_out;
6aa1eb4e 299 struct timeval tv;
8e77bc20 300 uint64_t interval;
6c60facc 301 int ret;
6aa1eb4e
BV
302 unsigned char cmd[3], resp[4], *buf;
303
e73ffd42
BV
304 if (sdi->status != SR_ST_ACTIVE)
305 return SR_ERR_DEV_CLOSED;
306
41812aca 307 drvc = di->context;
6aa1eb4e 308 devc = sdi->priv;
0f150649 309 usb = sdi->conn;
6aa1eb4e
BV
310
311 if (lascar_proc_config(sdi) != SR_OK)
312 return SR_ERR;
313
314 sr_dbg("Starting log retrieval.");
315
695dc859 316 std_session_send_df_header(sdi, LOG_PREFIX);
6aa1eb4e 317
8e77bc20
BV
318 interval = (devc->config[0x1c] | (devc->config[0x1d] << 8)) * 1000;
319 packet.type = SR_DF_META;
320 packet.payload = &meta;
7faf69da 321 src = sr_config_new(SR_CONF_SAMPLE_INTERVAL, g_variant_new_uint64(interval));
8e77bc20 322 meta.config = g_slist_append(NULL, src);
695dc859 323 sr_session_send(sdi, &packet);
8e77bc20
BV
324 g_free(src);
325
6aa1eb4e
BV
326 if (devc->logged_samples == 0) {
327 /* This ensures the frontend knows the session is done. */
695dc859 328 std_session_send_df_end(sdi, LOG_PREFIX);
6aa1eb4e
BV
329 return SR_OK;
330 }
331
332 if (!(xfer_in = libusb_alloc_transfer(0)) ||
333 !(xfer_out = libusb_alloc_transfer(0)))
334 return SR_ERR;
335
0f150649 336 libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
6aa1eb4e 337 0x00, 0xffff, 0x00, NULL, 0, 50);
0f150649 338 libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
6aa1eb4e 339 0x02, 0x0002, 0x00, NULL, 0, 50);
0f150649 340 libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR,
6aa1eb4e
BV
341 0x02, 0x0001, 0x00, NULL, 0, 50);
342
6aa1eb4e 343 /* Flush input. The F321 requires this. */
0f150649 344 while (libusb_bulk_transfer(usb->devhdl, LASCAR_EP_IN, resp,
6aa1eb4e
BV
345 256, &ret, 5) == 0 && ret > 0)
346 ;
347
0f150649 348 libusb_fill_bulk_transfer(xfer_in, usb->devhdl, LASCAR_EP_IN,
1a46cc62 349 resp, sizeof(resp), mark_xfer, 0, BULK_XFER_TIMEOUT);
6aa1eb4e
BV
350 if (libusb_submit_transfer(xfer_in) != 0) {
351 libusb_free_transfer(xfer_in);
352 libusb_free_transfer(xfer_out);
353 return SR_ERR;
354 }
355
356 cmd[0] = 0x03;
357 cmd[1] = 0xff;
358 cmd[2] = 0xff;
0f150649 359 libusb_fill_bulk_transfer(xfer_out, usb->devhdl, LASCAR_EP_OUT,
6aa1eb4e
BV
360 cmd, 3, mark_xfer, 0, 100);
361 if (libusb_submit_transfer(xfer_out) != 0) {
362 libusb_free_transfer(xfer_in);
363 libusb_free_transfer(xfer_out);
364 return SR_ERR;
365 }
366
367 tv.tv_sec = 0;
368 tv.tv_usec = 0;
369 while (!xfer_in->user_data || !xfer_out->user_data) {
1a46cc62 370 g_usleep(SLEEP_US_LONG);
6aa1eb4e
BV
371 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
372 }
373 if (xfer_in->user_data != GINT_TO_POINTER(1) ||
9851d35b 374 xfer_out->user_data != GINT_TO_POINTER(1)) {
6aa1eb4e
BV
375 sr_dbg("no response to log transfer request");
376 libusb_free_transfer(xfer_in);
377 libusb_free_transfer(xfer_out);
378 return SR_ERR;
379 }
380 if (xfer_in->actual_length != 3 || xfer_in->buffer[0] != 2) {
381 sr_dbg("invalid response to log transfer request");
382 libusb_free_transfer(xfer_in);
383 libusb_free_transfer(xfer_out);
384 return SR_ERR;
385 }
386 devc->log_size = xfer_in->buffer[1] + (xfer_in->buffer[2] << 8);
387 libusb_free_transfer(xfer_out);
388
102f1239
BV
389 usb_source_add(sdi->session, drvc->sr_ctx, 100,
390 lascar_el_usb_handle_events, (void *)sdi);
6aa1eb4e 391
a95f142e 392 buf = g_malloc(4096);
0f150649 393 libusb_fill_bulk_transfer(xfer_in, usb->devhdl, LASCAR_EP_IN,
695dc859
UH
394 buf, 4096, lascar_el_usb_receive_transfer,
395 (struct sr_dev_inst *)sdi, 100);
6aa1eb4e
BV
396 if ((ret = libusb_submit_transfer(xfer_in) != 0)) {
397 sr_err("Unable to submit transfer: %s.", libusb_error_name(ret));
398 libusb_free_transfer(xfer_in);
399 g_free(buf);
400 return SR_ERR;
401 }
46697e38
BV
402
403 return SR_OK;
404}
405
695dc859 406SR_PRIV int dev_acquisition_stop(struct sr_dev_inst *sdi)
46697e38 407{
46697e38
BV
408 if (sdi->status != SR_ST_ACTIVE) {
409 sr_err("Device inactive, can't stop acquisition.");
410 return SR_ERR;
411 }
412
6aa1eb4e
BV
413 sdi->status = SR_ST_STOPPING;
414 /* TODO: free ongoing transfers? */
46697e38
BV
415
416 return SR_OK;
417}
418
419SR_PRIV struct sr_dev_driver lascar_el_usb_driver_info = {
420 .name = "lascar-el-usb",
421 .longname = "Lascar EL-USB",
422 .api_version = 1,
6078d2c9 423 .init = init,
700d6b64 424 .cleanup = std_cleanup,
6078d2c9 425 .scan = scan,
c01bf34c 426 .dev_list = std_dev_list,
a6630742 427 .dev_clear = NULL,
361d1511 428 .config_get = config_get,
035a1078 429 .config_set = config_set,
a1c743fc 430 .config_list = config_list,
6078d2c9
UH
431 .dev_open = dev_open,
432 .dev_close = dev_close,
433 .dev_acquisition_start = dev_acquisition_start,
434 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 435 .context = NULL,
46697e38 436};