]> sigrok.org Git - libsigrok.git/blob - src/hardware/lecroy-logicstudio/api.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / lecroy-logicstudio / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2015 Tilman Sauerbeck <tilman@code-monkey.de>
5  * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include <config.h>
22 #include <stdbool.h>
23 #include <stdint.h>
24 #include <string.h>
25 #include "protocol.h"
26
27 #define LOGICSTUDIO16_VID 0x05ff
28 #define LOGICSTUDIO16_PID_LACK_FIRMWARE 0xa001
29 #define LOGICSTUDIO16_PID_HAVE_FIRMWARE 0xa002
30
31 #define USB_INTERFACE 0
32 #define USB_CONFIGURATION 0
33 #define FX2_FIRMWARE "lecroy-logicstudio16-fx2lp.fw"
34
35 #define UNKNOWN_ADDRESS 0xff
36 #define MAX_RENUM_DELAY_MS 3000
37
38 #define NUM_CHANNELS 16
39
40 static const uint32_t drvopts[] = {
41         SR_CONF_LOGIC_ANALYZER,
42 };
43
44 static const uint32_t devopts[] = {
45         SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
46         SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
47         SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
48 };
49
50 static const int32_t trigger_matches[] = {
51         SR_TRIGGER_ZERO,
52         SR_TRIGGER_ONE,
53         SR_TRIGGER_RISING,
54         SR_TRIGGER_FALLING,
55         SR_TRIGGER_EDGE,
56 };
57
58 static const uint64_t samplerates[] = {
59         SR_HZ(1000),
60         SR_HZ(2500),
61         SR_KHZ(5),
62         SR_KHZ(10),
63         SR_KHZ(25),
64         SR_KHZ(50),
65         SR_KHZ(100),
66         SR_KHZ(250),
67         SR_KHZ(500),
68         SR_KHZ(1000),
69         SR_KHZ(2500),
70         SR_MHZ(5),
71         SR_MHZ(10),
72         SR_MHZ(25),
73         SR_MHZ(50),
74         SR_MHZ(100),
75         SR_MHZ(250),
76         SR_MHZ(500),
77 };
78
79 static struct sr_dev_inst *create_device(struct sr_usb_dev_inst *usb,
80                 enum sr_dev_inst_status status, int64_t fw_updated)
81 {
82         struct sr_dev_inst *sdi;
83         struct dev_context *devc;
84         char channel_name[8];
85         int i;
86
87         sdi = g_malloc0(sizeof(struct sr_dev_inst));
88         sdi->status = status;
89         sdi->vendor = g_strdup("LeCroy");
90         sdi->model = g_strdup("LogicStudio16");
91         sdi->inst_type = SR_INST_USB;
92         sdi->conn = usb;
93
94         for (i = 0; i < NUM_CHANNELS; i++) {
95                 snprintf(channel_name, sizeof(channel_name), "D%i", i);
96                 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE, channel_name);
97         }
98
99         devc = g_malloc0(sizeof(struct dev_context));
100
101         sdi->priv = devc;
102
103         devc->fw_updated = fw_updated;
104         devc->capture_ratio = 50;
105
106         lls_set_samplerate(sdi, SR_MHZ(500));
107
108         return sdi;
109 }
110
111 static GSList *scan(struct sr_dev_driver *di, GSList *options)
112 {
113         struct sr_dev_inst *sdi;
114         struct drv_context *drvc;
115         struct sr_usb_dev_inst *usb;
116         struct libusb_device_descriptor des;
117         libusb_device **devlist;
118         GSList *devices;
119         char connection_id[64];
120         size_t i;
121         int r;
122
123         (void)options;
124
125         drvc = di->context;
126
127         devices = NULL;
128
129         libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
130
131         for (i = 0; devlist[i]; i++) {
132                 libusb_get_device_descriptor(devlist[i], &des);
133
134                 if (des.idVendor != LOGICSTUDIO16_VID)
135                         continue;
136
137                 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
138                         continue;
139
140                 usb = NULL;
141
142                 switch (des.idProduct) {
143                 case LOGICSTUDIO16_PID_HAVE_FIRMWARE:
144                         usb = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
145                                 libusb_get_device_address(devlist[i]), NULL);
146
147                         sdi = create_device(usb, SR_ST_INACTIVE, 0);
148                         break;
149                 case LOGICSTUDIO16_PID_LACK_FIRMWARE:
150                         r = ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
151                                 USB_CONFIGURATION, FX2_FIRMWARE);
152                         if (r != SR_OK) {
153                                 /*
154                                  * An error message has already been logged by
155                                  * ezusb_upload_firmware().
156                                  */
157                                 continue;
158                         }
159
160                         /*
161                          * Put unknown as the address so that we know we still
162                          * need to get the proper address after the device
163                          * renumerates.
164                          */
165                         usb = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
166                                 UNKNOWN_ADDRESS, NULL);
167
168                         sdi = create_device(usb, SR_ST_INITIALIZING,
169                                 g_get_monotonic_time());
170                         break;
171                 default:
172                         break;
173                 }
174
175                 /* Cannot handle this device? */
176                 if (!usb)
177                         continue;
178
179                 sdi->connection_id = g_strdup(connection_id);
180
181                 devices = g_slist_append(devices, sdi);
182         }
183
184         libusb_free_device_list(devlist, 1);
185
186         return std_scan_complete(di, devices);
187 }
188
189 static int open_device(struct sr_dev_inst *sdi)
190 {
191         struct drv_context *drvc;
192         struct sr_usb_dev_inst *usb;
193         struct libusb_device_descriptor des;
194         libusb_device **devlist;
195         char connection_id[64];
196         bool is_opened;
197         size_t i;
198         int r;
199
200         drvc = sdi->driver->context;
201         usb = sdi->conn;
202
203         is_opened = FALSE;
204
205         libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
206
207         for (i = 0; devlist[i]; i++) {
208                 libusb_get_device_descriptor(devlist[i], &des);
209
210                 if (des.idVendor != LOGICSTUDIO16_VID ||
211                         des.idProduct != LOGICSTUDIO16_PID_HAVE_FIRMWARE)
212                         continue;
213
214                 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
215                         continue;
216
217                 /*
218                  * Check if this device is the same one that we associated
219                  * with this sdi in scan() and bail if it isn't.
220                  */
221                 if (strcmp(sdi->connection_id, connection_id))
222                         continue;
223
224                 r = libusb_open(devlist[i], &usb->devhdl);
225
226                 if (r) {
227                         sr_err("Failed to open device: %s.",
228                                 libusb_error_name(r));
229                         break;
230                 }
231
232                 /* Fix up address after firmware upload. */
233                 if (usb->address == UNKNOWN_ADDRESS)
234                         usb->address = libusb_get_device_address(devlist[i]);
235
236                 is_opened = TRUE;
237
238                 break;
239         }
240
241         libusb_free_device_list(devlist, 1);
242
243         if (!is_opened)
244                 return SR_ERR;
245
246         if ((r = libusb_claim_interface(usb->devhdl, USB_INTERFACE))) {
247                 sr_err("Failed to claim interface: %s.",
248                         libusb_error_name(r));
249                 return SR_ERR;
250         }
251
252         sdi->status = SR_ST_ACTIVE;
253
254         return SR_OK;
255 }
256
257 static int dev_open(struct sr_dev_inst *sdi)
258 {
259         struct dev_context *devc;
260         int64_t timediff_us, timediff_ms;
261         int ret;
262
263         devc = sdi->priv;
264
265         /*
266          * If we didn't need to upload FX2 firmware in scan(), open the device
267          * right away. Otherwise, wait up to MAX_RENUM_DELAY_MS ms for the
268          * FX2 to renumerate.
269          */
270         if (!devc->fw_updated) {
271                 ret = open_device(sdi);
272         } else {
273                 sr_info("Waiting for device to reset.");
274
275                 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
276                 g_usleep(300 * 1000);
277                 timediff_ms = 0;
278
279                 while (timediff_ms < MAX_RENUM_DELAY_MS) {
280                         ret = open_device(sdi);
281
282                         if (ret == SR_OK)
283                                 break;
284
285                         g_usleep(100 * 1000);
286
287                         timediff_us = g_get_monotonic_time() - devc->fw_updated;
288                         timediff_ms = timediff_us / 1000;
289
290                         sr_spew("Waited %" PRIi64 "ms.", timediff_ms);
291                 }
292
293                 if (ret != SR_OK) {
294                         sr_err("Device failed to renumerate.");
295                         return SR_ERR;
296                 }
297
298                 sr_info("Device came back after %" PRIi64 "ms.", timediff_ms);
299         }
300
301         if (ret != SR_OK) {
302                 sr_err("Unable to open device.");
303                 return ret;
304         }
305
306         /*
307          * Only allocate the sample buffer now since it's rather large.
308          * Don't want to allocate it before we know we are going to use it.
309          */
310         devc->fetched_samples = g_malloc(SAMPLE_BUF_SIZE);
311
312         devc->conv8to16 = g_malloc(CONV_8TO16_BUF_SIZE);
313
314         devc->intr_xfer = libusb_alloc_transfer(0);
315         devc->bulk_xfer = libusb_alloc_transfer(0);
316
317         return SR_OK;
318 }
319
320 static int dev_close(struct sr_dev_inst *sdi)
321 {
322         struct sr_usb_dev_inst *usb;
323         struct dev_context *devc;
324
325         usb = sdi->conn;
326         devc = sdi->priv;
327
328         g_free(devc->fetched_samples);
329         devc->fetched_samples = NULL;
330
331         g_free(devc->conv8to16);
332         devc->conv8to16 = NULL;
333
334         if (devc->intr_xfer) {
335                 devc->intr_xfer->buffer = NULL; /* Points into devc. */
336                 libusb_free_transfer(devc->intr_xfer);
337                 devc->intr_xfer = NULL;
338         }
339
340         if (devc->bulk_xfer) {
341                 devc->bulk_xfer->buffer = NULL; /* Points into devc. */
342                 libusb_free_transfer(devc->bulk_xfer);
343                 devc->bulk_xfer = NULL;
344         }
345
346         if (!usb->devhdl)
347                 return SR_ERR_BUG;
348
349         libusb_release_interface(usb->devhdl, 0);
350
351         libusb_close(usb->devhdl);
352         usb->devhdl = NULL;
353
354         return SR_OK;
355 }
356
357 static int config_get(uint32_t key, GVariant **data,
358         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
359 {
360         struct dev_context *devc;
361
362         (void)cg;
363
364         if (!sdi)
365                 return SR_ERR_ARG;
366
367         devc = sdi->priv;
368
369         switch (key) {
370         case SR_CONF_SAMPLERATE:
371                 *data = g_variant_new_uint64(lls_get_samplerate(sdi));
372                 break;
373         case SR_CONF_CAPTURE_RATIO:
374                 *data = g_variant_new_uint64(devc->capture_ratio);
375                 break;
376         default:
377                 return SR_ERR_NA;
378         }
379
380         return SR_OK;
381 }
382
383 static int config_set(uint32_t key, GVariant *data,
384         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
385 {
386         struct dev_context *devc;
387
388         (void)cg;
389
390         if (!sdi)
391                 return SR_ERR_ARG;
392
393         devc = sdi->priv;
394
395         switch (key) {
396         case SR_CONF_SAMPLERATE:
397                 return lls_set_samplerate(sdi, g_variant_get_uint64(data));
398         case SR_CONF_CAPTURE_RATIO:
399                 devc->capture_ratio = g_variant_get_uint64(data);
400                 break;
401         default:
402                 return SR_ERR_NA;
403         }
404
405         return SR_OK;
406 }
407
408 static int config_list(uint32_t key, GVariant **data,
409         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
410 {
411         switch (key) {
412         case SR_CONF_DEVICE_OPTIONS:
413                 return STD_CONFIG_LIST(key, data, sdi, cg, NULL, drvopts, devopts);
414         case SR_CONF_SAMPLERATE:
415                 *data = std_gvar_samplerates(ARRAY_AND_SIZE(samplerates));
416                 break;
417         case SR_CONF_TRIGGER_MATCH:
418                 *data = std_gvar_array_i32(ARRAY_AND_SIZE(trigger_matches));
419                 break;
420         default:
421                 return SR_ERR_NA;
422         }
423
424         return SR_OK;
425 }
426
427 static int config_commit(const struct sr_dev_inst *sdi)
428 {
429         return lls_setup_acquisition(sdi);
430 }
431
432 static int receive_usb_data(int fd, int revents, void *cb_data)
433 {
434         struct drv_context *drvc;
435         struct timeval tv;
436
437         (void)fd;
438         (void)revents;
439
440         drvc = (struct drv_context *)cb_data;
441
442         tv.tv_sec = 0;
443         tv.tv_usec = 0;
444
445         libusb_handle_events_timeout_completed(drvc->sr_ctx->libusb_ctx,
446                 &tv, NULL);
447
448         return TRUE;
449 }
450
451 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
452 {
453         struct drv_context *drvc;
454         int ret;
455
456         drvc = sdi->driver->context;
457
458         if ((ret = lls_start_acquisition(sdi)) < 0)
459                 return ret;
460
461         std_session_send_df_header(sdi);
462
463         return usb_source_add(sdi->session, drvc->sr_ctx, 100,
464                 receive_usb_data, drvc);
465 }
466
467 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
468 {
469         return lls_stop_acquisition(sdi);
470 }
471
472 static struct sr_dev_driver lecroy_logicstudio_driver_info = {
473         .name = "lecroy-logicstudio",
474         .longname = "LeCroy LogicStudio",
475         .api_version = 1,
476         .init = std_init,
477         .cleanup = std_cleanup,
478         .scan = scan,
479         .dev_list = std_dev_list,
480         .dev_clear = std_dev_clear,
481         .config_get = config_get,
482         .config_set = config_set,
483         .config_list = config_list,
484         .config_commit = config_commit,
485         .dev_open = dev_open,
486         .dev_close = dev_close,
487         .dev_acquisition_start = dev_acquisition_start,
488         .dev_acquisition_stop = dev_acquisition_stop,
489         .context = NULL,
490 };
491 SR_REGISTER_DEV_DRIVER(lecroy_logicstudio_driver_info);