]> sigrok.org Git - libsigrok.git/blob - src/hardware/chronovu-la/api.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / chronovu-la / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2011-2015 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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 <config.h>
21 #include "protocol.h"
22
23 static const uint32_t scanopts[] = {
24         SR_CONF_CONN,
25 };
26
27 static const uint32_t drvopts[] = {
28         SR_CONF_LOGIC_ANALYZER,
29 };
30
31 static const uint32_t devopts[] = {
32         SR_CONF_LIMIT_MSEC | SR_CONF_SET,
33         SR_CONF_LIMIT_SAMPLES | SR_CONF_SET | SR_CONF_LIST,
34         SR_CONF_CONN | SR_CONF_GET,
35         SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
36         SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
37 };
38
39 static const int32_t trigger_matches[] = {
40         SR_TRIGGER_ZERO,
41         SR_TRIGGER_ONE,
42         SR_TRIGGER_RISING,
43         SR_TRIGGER_FALLING,
44 };
45
46 static void clear_helper(struct dev_context *devc)
47 {
48         ftdi_free(devc->ftdic);
49         g_free(devc->final_buf);
50 }
51
52 static int dev_clear(const struct sr_dev_driver *di)
53 {
54         return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
55 }
56
57 static int add_device(int model, struct libusb_device_descriptor *des,
58         const char *serial_num, const char *connection_id, libusb_device *usbdev,
59         GSList **devices)
60 {
61         int ret;
62         unsigned int i;
63         struct sr_dev_inst *sdi;
64         struct dev_context *devc;
65
66         ret = SR_OK;
67
68         devc = g_malloc0(sizeof(struct dev_context));
69
70         /* Set some sane defaults. */
71         devc->prof = &cv_profiles[model];
72         devc->ftdic = NULL; /* Will be set in the open() API call. */
73         devc->cur_samplerate = 0; /* Set later (different for LA8/LA16). */
74         devc->limit_msec = 0;
75         devc->limit_samples = 0;
76         memset(devc->mangled_buf, 0, BS);
77         devc->final_buf = NULL;
78         devc->trigger_pattern = 0x0000; /* Irrelevant, see trigger_mask. */
79         devc->trigger_mask = 0x0000; /* All channels: "don't care". */
80         devc->trigger_edgemask = 0x0000; /* All channels: "state triggered". */
81         devc->trigger_found = 0;
82         devc->done = 0;
83         devc->block_counter = 0;
84         devc->divcount = 0;
85         devc->usb_vid = des->idVendor;
86         devc->usb_pid = des->idProduct;
87         memset(devc->samplerates, 0, sizeof(uint64_t) * 255);
88
89         /* Allocate memory where we'll store the de-mangled data. */
90         if (!(devc->final_buf = g_try_malloc(SDRAM_SIZE))) {
91                 sr_err("Failed to allocate memory for sample buffer.");
92                 ret = SR_ERR_MALLOC;
93                 goto err_free_devc;
94         }
95
96         /* We now know the device, set its max. samplerate as default. */
97         devc->cur_samplerate = devc->prof->max_samplerate;
98
99         sdi = g_malloc0(sizeof(struct sr_dev_inst));
100         sdi->status = SR_ST_INACTIVE;
101         sdi->vendor = g_strdup("ChronoVu");
102         sdi->model = g_strdup(devc->prof->modelname);
103         sdi->serial_num = g_strdup(serial_num);
104         sdi->connection_id = g_strdup(connection_id);
105         sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(usbdev),
106                 libusb_get_device_address(usbdev), NULL);
107         sdi->priv = devc;
108
109         for (i = 0; i < devc->prof->num_channels; i++)
110                 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE,
111                                 cv_channel_names[i]);
112
113         *devices = g_slist_append(*devices, sdi);
114
115         if (ret == SR_OK)
116                 return SR_OK;
117
118 err_free_devc:
119         g_free(devc);
120
121         return ret;
122 }
123
124 static GSList *scan(struct sr_dev_driver *di, GSList *options)
125 {
126         int i, ret, model;
127         struct drv_context *drvc;
128         GSList *devices, *conn_devices, *l;
129         struct sr_usb_dev_inst *usb;
130         struct sr_config *src;
131         struct libusb_device_descriptor des;
132         libusb_device **devlist;
133         struct libusb_device_handle *hdl;
134         const char *conn;
135         char product[64], serial_num[64], connection_id[64];
136
137         drvc = di->context;
138
139         conn = NULL;
140         for (l = options; l; l = l->next) {
141                 src = l->data;
142                 switch (src->key) {
143                 case SR_CONF_CONN:
144                         conn = g_variant_get_string(src->data, NULL);
145                         break;
146                 }
147         }
148         if (conn)
149                 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
150         else
151                 conn_devices = NULL;
152
153         devices = NULL;
154         libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
155
156         for (i = 0; devlist[i]; i++) {
157                 if (conn) {
158                         for (l = conn_devices; l; l = l->next) {
159                                 usb = l->data;
160                                 if (usb->bus == libusb_get_bus_number(devlist[i])
161                                         && usb->address == libusb_get_device_address(devlist[i]))
162                                         break;
163                         }
164                         if (!l)
165                                 /* This device matched none of the ones that
166                                  * matched the conn specification. */
167                                 continue;
168                 }
169
170                 libusb_get_device_descriptor(devlist[i], &des);
171
172                 if ((ret = libusb_open(devlist[i], &hdl)) < 0)
173                         continue;
174
175                 if (des.iProduct == 0) {
176                         product[0] = '\0';
177                 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
178                                 des.iProduct, (unsigned char *)product,
179                                 sizeof(product))) < 0) {
180                         sr_warn("Failed to get product string descriptor: %s.",
181                                 libusb_error_name(ret));
182                         continue;
183                 }
184
185                 if (des.iSerialNumber == 0) {
186                         serial_num[0] = '\0';
187                 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
188                                 des.iSerialNumber, (unsigned char *)serial_num,
189                                 sizeof(serial_num))) < 0) {
190                         sr_warn("Failed to get serial number string descriptor: %s.",
191                                 libusb_error_name(ret));
192                         continue;
193                 }
194
195                 libusb_close(hdl);
196
197                 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
198                         continue;
199
200                 if (!strcmp(product, "ChronoVu LA8"))
201                         model = 0;
202                 else if (!strcmp(product, "ChronoVu LA16"))
203                         model = 1;
204                 else
205                         continue; /* Unknown iProduct string, ignore. */
206
207                 sr_dbg("Found %s (%04x:%04x, %d.%d, %s).",
208                        product, des.idVendor, des.idProduct,
209                        libusb_get_bus_number(devlist[i]),
210                        libusb_get_device_address(devlist[i]), connection_id);
211
212                 if ((ret = add_device(model, &des, serial_num, connection_id,
213                                         devlist[i], &devices)) < 0) {
214                         sr_dbg("Failed to add device: %d.", ret);
215                 }
216         }
217
218         libusb_free_device_list(devlist, 1);
219         g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
220
221         return std_scan_complete(di, devices);
222 }
223
224 static int dev_open(struct sr_dev_inst *sdi)
225 {
226         struct dev_context *devc;
227         int ret;
228
229         devc = sdi->priv;
230
231         if (!(devc->ftdic = ftdi_new())) {
232                 sr_err("Failed to initialize libftdi.");
233                 return SR_ERR;
234         }
235
236         sr_dbg("Opening %s device (%04x:%04x).", devc->prof->modelname,
237                devc->usb_vid, devc->usb_pid);
238
239         if ((ret = ftdi_usb_open_desc(devc->ftdic, devc->usb_vid,
240                         devc->usb_pid, devc->prof->iproduct, NULL)) < 0) {
241                 sr_err("Failed to open FTDI device (%d): %s.",
242                        ret, ftdi_get_error_string(devc->ftdic));
243                 goto err_ftdi_free;
244         }
245
246         if ((ret = ftdi_usb_purge_buffers(devc->ftdic)) < 0) {
247                 sr_err("Failed to purge FTDI buffers (%d): %s.",
248                        ret, ftdi_get_error_string(devc->ftdic));
249                 goto err_ftdi_free;
250         }
251
252         if ((ret = ftdi_setflowctrl(devc->ftdic, SIO_RTS_CTS_HS)) < 0) {
253                 sr_err("Failed to enable FTDI flow control (%d): %s.",
254                        ret, ftdi_get_error_string(devc->ftdic));
255                 goto err_ftdi_free;
256         }
257
258         g_usleep(100 * 1000);
259
260         return SR_OK;
261
262 err_ftdi_free:
263         ftdi_free(devc->ftdic); /* Close device (if open), free FTDI context. */
264         devc->ftdic = NULL;
265         return SR_ERR;
266 }
267
268 static int dev_close(struct sr_dev_inst *sdi)
269 {
270         int ret;
271         struct dev_context *devc;
272
273         devc = sdi->priv;
274
275         if (!devc->ftdic)
276                 return SR_ERR_BUG;
277
278         if ((ret = ftdi_usb_close(devc->ftdic)) < 0)
279                 sr_err("Failed to close FTDI device (%d): %s.",
280                        ret, ftdi_get_error_string(devc->ftdic));
281
282         return (ret == 0) ? SR_OK : SR_ERR;
283 }
284
285 static int config_get(uint32_t key, GVariant **data,
286         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
287 {
288         struct dev_context *devc;
289         struct sr_usb_dev_inst *usb;
290
291         (void)cg;
292
293         switch (key) {
294         case SR_CONF_CONN:
295                 if (!sdi || !(usb = sdi->conn))
296                         return SR_ERR_ARG;
297                 *data = g_variant_new_printf("%d.%d", usb->bus, usb->address);
298                 break;
299         case SR_CONF_SAMPLERATE:
300                 if (!sdi)
301                         return SR_ERR_BUG;
302                 devc = sdi->priv;
303                 *data = g_variant_new_uint64(devc->cur_samplerate);
304                 break;
305         default:
306                 return SR_ERR_NA;
307         }
308
309         return SR_OK;
310 }
311
312 static int config_set(uint32_t key, GVariant *data,
313         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
314 {
315         struct dev_context *devc;
316
317         (void)cg;
318
319         devc = sdi->priv;
320
321         switch (key) {
322         case SR_CONF_SAMPLERATE:
323                 if (cv_set_samplerate(sdi, g_variant_get_uint64(data)) < 0)
324                         return SR_ERR;
325                 break;
326         case SR_CONF_LIMIT_MSEC:
327                 devc->limit_msec = g_variant_get_uint64(data);
328                 break;
329         case SR_CONF_LIMIT_SAMPLES:
330                 devc->limit_samples = g_variant_get_uint64(data);
331                 break;
332         default:
333                 return SR_ERR_NA;
334         }
335
336         return SR_OK;
337 }
338
339 static int config_list(uint32_t key, GVariant **data,
340         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
341 {
342         struct dev_context *devc;
343
344         devc = (sdi) ? sdi->priv : NULL;
345
346         switch (key) {
347         case SR_CONF_SCAN_OPTIONS:
348         case SR_CONF_DEVICE_OPTIONS:
349                 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
350         case SR_CONF_SAMPLERATE:
351                 cv_fill_samplerates_if_needed(sdi);
352                 *data = std_gvar_samplerates(ARRAY_AND_SIZE(devc->samplerates));
353                 break;
354         case SR_CONF_LIMIT_SAMPLES:
355                 if (!devc || !devc->prof)
356                         return SR_ERR_BUG;
357                 *data = std_gvar_tuple_u64(0, (devc->prof->model == CHRONOVU_LA8) ? MAX_NUM_SAMPLES : MAX_NUM_SAMPLES / 2);
358                 break;
359         case SR_CONF_TRIGGER_MATCH:
360                 if (!devc || !devc->prof)
361                         return SR_ERR_BUG;
362                 *data = std_gvar_array_i32(trigger_matches, devc->prof->num_trigger_matches);
363                 break;
364         default:
365                 return SR_ERR_NA;
366         }
367
368         return SR_OK;
369 }
370
371 static int receive_data(int fd, int revents, void *cb_data)
372 {
373         int i, ret;
374         struct sr_dev_inst *sdi;
375         struct dev_context *devc;
376
377         (void)fd;
378         (void)revents;
379
380         if (!(sdi = cb_data)) {
381                 sr_err("cb_data was NULL.");
382                 return FALSE;
383         }
384
385         if (!(devc = sdi->priv)) {
386                 sr_err("sdi->priv was NULL.");
387                 return FALSE;
388         }
389
390         if (!devc->ftdic) {
391                 sr_err("devc->ftdic was NULL.");
392                 return FALSE;
393         }
394
395         /* Get one block of data. */
396         if ((ret = cv_read_block(devc)) < 0) {
397                 sr_err("Failed to read data block: %d.", ret);
398                 sr_dev_acquisition_stop(sdi);
399                 return FALSE;
400         }
401
402         /* We need to get exactly NUM_BLOCKS blocks (i.e. 8MB) of data. */
403         if (devc->block_counter != (NUM_BLOCKS - 1)) {
404                 devc->block_counter++;
405                 return TRUE;
406         }
407
408         sr_dbg("Sampling finished, sending data to session bus now.");
409
410         /*
411          * All data was received and demangled, send it to the session bus.
412          *
413          * Note: Due to the method how data is spread across the 8MByte of
414          * SDRAM, we can _not_ send it to the session bus in a streaming
415          * manner while we receive it. We have to receive and de-mangle the
416          * full 8MByte first, only then the whole buffer contains valid data.
417          */
418         for (i = 0; i < NUM_BLOCKS; i++)
419                 cv_send_block_to_session_bus(sdi, i);
420
421         sr_dev_acquisition_stop(sdi);
422
423         return TRUE;
424 }
425
426 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
427 {
428         struct dev_context *devc;
429         uint8_t buf[8];
430         int bytes_to_write, bytes_written;
431
432         devc = sdi->priv;
433
434         if (!devc->ftdic) {
435                 sr_err("devc->ftdic was NULL.");
436                 return SR_ERR_BUG;
437         }
438
439         devc->divcount = cv_samplerate_to_divcount(sdi, devc->cur_samplerate);
440         if (devc->divcount == 0xff) {
441                 sr_err("Invalid divcount/samplerate.");
442                 return SR_ERR;
443         }
444
445         if (cv_convert_trigger(sdi) != SR_OK) {
446                 sr_err("Failed to configure trigger.");
447                 return SR_ERR;
448         }
449
450         /* Fill acquisition parameters into buf[]. */
451         if (devc->prof->model == CHRONOVU_LA8) {
452                 buf[0] = devc->divcount;
453                 buf[1] = 0xff; /* This byte must always be 0xff. */
454                 buf[2] = devc->trigger_pattern & 0xff;
455                 buf[3] = devc->trigger_mask & 0xff;
456                 bytes_to_write = 4;
457         } else {
458                 buf[0] = devc->divcount;
459                 buf[1] = 0xff; /* This byte must always be 0xff. */
460                 buf[2] = (devc->trigger_pattern & 0xff00) >> 8;  /* LSB */
461                 buf[3] = (devc->trigger_pattern & 0x00ff) >> 0;  /* MSB */
462                 buf[4] = (devc->trigger_mask & 0xff00) >> 8;     /* LSB */
463                 buf[5] = (devc->trigger_mask & 0x00ff) >> 0;     /* MSB */
464                 buf[6] = (devc->trigger_edgemask & 0xff00) >> 8; /* LSB */
465                 buf[7] = (devc->trigger_edgemask & 0x00ff) >> 0; /* MSB */
466                 bytes_to_write = 8;
467         }
468
469         /* Start acquisition. */
470         bytes_written = cv_write(devc, buf, bytes_to_write);
471
472         if (bytes_written < 0 || bytes_written != bytes_to_write) {
473                 sr_err("Acquisition failed to start.");
474                 return SR_ERR;
475         }
476
477         std_session_send_df_header(sdi);
478
479         /* Time when we should be done (for detecting trigger timeouts). */
480         devc->done = (devc->divcount + 1) * devc->prof->trigger_constant +
481                         g_get_monotonic_time() + (10 * G_TIME_SPAN_SECOND);
482         devc->block_counter = 0;
483         devc->trigger_found = 0;
484
485         /* Hook up a dummy handler to receive data from the device. */
486         sr_session_source_add(sdi->session, -1, 0, 0, receive_data, (void *)sdi);
487
488         return SR_OK;
489 }
490
491 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
492 {
493         sr_session_source_remove(sdi->session, -1);
494         std_session_send_df_end(sdi);
495
496         return SR_OK;
497 }
498
499 static struct sr_dev_driver chronovu_la_driver_info = {
500         .name = "chronovu-la",
501         .longname = "ChronoVu LA8/LA16",
502         .api_version = 1,
503         .init = std_init,
504         .cleanup = std_cleanup,
505         .scan = scan,
506         .dev_list = std_dev_list,
507         .dev_clear = dev_clear,
508         .config_get = config_get,
509         .config_set = config_set,
510         .config_list = config_list,
511         .dev_open = dev_open,
512         .dev_close = dev_close,
513         .dev_acquisition_start = dev_acquisition_start,
514         .dev_acquisition_stop = dev_acquisition_stop,
515         .context = NULL,
516 };
517 SR_REGISTER_DEV_DRIVER(chronovu_la_driver_info);