]> sigrok.org Git - libsigrok.git/blob - hardware/chronovu-la8/chronovu-la8.c
libsigrok: closedev() now has a return code.
[libsigrok.git] / hardware / chronovu-la8 / chronovu-la8.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2011 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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <ftdi.h>
22 #include <glib.h>
23 #include <string.h>
24 #include <sigrok.h>
25 #include <sigrok-internal.h>
26
27 #define USB_VENDOR_ID                   0x0403
28 #define USB_PRODUCT_ID                  0x6001
29 #define USB_DESCRIPTION                 "ChronoVu LA8"
30 #define USB_VENDOR_NAME                 "ChronoVu"
31 #define USB_MODEL_NAME                  "LA8"
32 #define USB_MODEL_VERSION               ""
33
34 #define NUM_PROBES                      8
35 #define TRIGGER_TYPES                   "01"
36 #define SDRAM_SIZE                      (8 * 1024 * 1024)
37 #define MIN_NUM_SAMPLES                 1
38
39 static GSList *device_instances = NULL;
40
41 struct la8 {
42         /** FTDI device context (used by libftdi). */
43         struct ftdi_context *ftdic;
44
45         /** The currently configured samplerate of the device. */
46         uint64_t cur_samplerate;
47
48         /** The current sampling limit (in ms). */
49         uint64_t limit_msec;
50
51         /** The current sampling limit (in number of samples). */
52         uint64_t limit_samples;
53
54         /** TODO */
55         gpointer session_id;
56
57         /**
58          * An 4KB buffer containing some (mangled) samples from the device.
59          * Format: Pretty mangled-up (due to hardware reasons), see code.
60          */
61         uint8_t mangled_buf[4096];
62
63         /**
64          * An 8MB buffer where we'll store the de-mangled samples.
65          * Format: Each sample is 1 byte, MSB is channel 7, LSB is channel 0.
66          */
67         uint8_t *final_buf;
68
69         /**
70          * Trigger pattern (MSB = channel 7, LSB = channel 0).
71          * A 1 bit matches a high signal, 0 matches a low signal on a probe.
72          * Only low/high triggers (but not e.g. rising/falling) are supported.
73          */
74         uint8_t trigger_pattern;
75
76         /**
77          * Trigger mask (MSB = channel 7, LSB = channel 0).
78          * A 1 bit means "must match trigger_pattern", 0 means "don't care".
79          */
80         uint8_t trigger_mask;
81
82         /** Time (in seconds) before the trigger times out. */
83         uint64_t trigger_timeout;
84
85         /** TODO */
86         time_t done;
87
88         /** Counter/index for the data block (0..2047) to be read. */
89         int block_counter;
90
91         /** The divcount value (determines the sample period) for the LA8. */
92         uint8_t divcount;
93 };
94
95 /* This will be initialized via hw_get_device_info()/SR_DI_SAMPLERATES. */
96 static uint64_t supported_samplerates[255 + 1] = { 0 };
97
98 /*
99  * Min: 1 sample per 0.01us -> sample time is 0.084s, samplerate 100MHz
100  * Max: 1 sample per 2.55us -> sample time is 21.391s, samplerate 392.15kHz
101  */
102 static struct sr_samplerates samplerates = {
103         .low  = 0,
104         .high = 0,
105         .step = 0,
106         .list = supported_samplerates,
107 };
108
109 /* Note: Continuous sampling is not supported by the hardware. */
110 static int capabilities[] = {
111         SR_HWCAP_LOGIC_ANALYZER,
112         SR_HWCAP_SAMPLERATE,
113         SR_HWCAP_LIMIT_MSEC, /* TODO: Not yet implemented. */
114         SR_HWCAP_LIMIT_SAMPLES, /* TODO: Not yet implemented. */
115         0,
116 };
117
118 /* Function prototypes. */
119 static int la8_close_usb_reset_sequencer(struct la8 *la8);
120 static void hw_stop_acquisition(int device_index, gpointer session_device_id);
121 static int la8_reset(struct la8 *la8);
122
123 static void fill_supported_samplerates_if_needed(void)
124 {
125         int i;
126
127         /* Do nothing if supported_samplerates[] is already filled. */
128         if (supported_samplerates[0] != 0)
129                 return;
130
131         /* Fill supported_samplerates[] with the proper values. */
132         for (i = 0; i < 255; i++)
133                 supported_samplerates[254 - i] = SR_MHZ(100) / (i + 1);
134         supported_samplerates[255] = 0;
135 }
136
137 /**
138  * Check if the given samplerate is supported by the LA8 hardware.
139  *
140  * @param samplerate The samplerate (in Hz) to check.
141  * @return 1 if the samplerate is supported/valid, 0 otherwise.
142  */
143 static int is_valid_samplerate(uint64_t samplerate)
144 {
145         int i;
146
147         fill_supported_samplerates_if_needed();
148
149         for (i = 0; i < 255; i++) {
150                 if (supported_samplerates[i] == samplerate)
151                         return 1;
152         }
153
154         sr_warn("la8: %s: invalid samplerate (%" PRIu64 "Hz)",
155                 __func__, samplerate);
156
157         return 0;
158 }
159
160 /**
161  * Convert a samplerate (in Hz) to the 'divcount' value the LA8 wants.
162  *
163  * LA8 hardware: sample period = (divcount + 1) * 10ns.
164  * Min. value for divcount: 0x00 (10ns sample period, 100MHz samplerate).
165  * Max. value for divcount: 0xfe (2550ns sample period, 392.15kHz samplerate).
166  *
167  * @param samplerate The samplerate in Hz.
168  * @return The divcount value as needed by the hardware, or 0xff upon errors.
169  */
170 static uint8_t samplerate_to_divcount(uint64_t samplerate)
171 {
172         if (samplerate == 0) {
173                 sr_err("la8: %s: samplerate was 0", __func__);
174                 return 0xff;
175         }
176
177         if (!is_valid_samplerate(samplerate)) {
178                 sr_err("la8: %s: can't get divcount, samplerate invalid",
179                        __func__);
180                 return 0xff;
181         }
182
183         return (SR_MHZ(100) / samplerate) - 1;
184 }
185
186 /**
187  * Write data of a certain length to the LA8's FTDI device.
188  *
189  * @param la8 The LA8 struct containing private per-device-instance data.
190  * @param buf The buffer containing the data to write.
191  * @param size The number of bytes to write.
192  * @return The number of bytes written, or a negative value upon errors.
193  */
194 static int la8_write(struct la8 *la8, uint8_t *buf, int size)
195 {
196         int bytes_written;
197
198         if (!la8) {
199                 sr_err("la8: %s: la8 was NULL", __func__);
200                 return SR_ERR_ARG;
201         }
202
203         if (!la8->ftdic) {
204                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
205                 return SR_ERR_ARG;
206         }
207
208         if (!buf) {
209                 sr_err("la8: %s: buf was NULL", __func__);
210                 return SR_ERR_ARG;
211         }
212
213         if (size < 0) {
214                 sr_err("la8: %s: size was < 0", __func__);
215                 return SR_ERR_ARG;
216         }
217
218         bytes_written = ftdi_write_data(la8->ftdic, buf, size);
219
220         if (bytes_written < 0) {
221                 sr_warn("la8: %s: ftdi_write_data: (%d) %s", __func__,
222                         bytes_written, ftdi_get_error_string(la8->ftdic));
223                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
224         } else if (bytes_written != size) {
225                 sr_warn("la8: %s: bytes to write: %d, bytes written: %d",
226                         __func__, size, bytes_written);
227                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
228         }
229
230         return bytes_written;
231 }
232
233 /**
234  * Read a certain amount of bytes from the LA8's FTDI device.
235  *
236  * @param la8 The LA8 struct containing private per-device-instance data.
237  * @param buf The buffer where the received data will be stored.
238  * @param size The number of bytes to read.
239  * @return The number of bytes read, or a negative value upon errors.
240  */
241 static int la8_read(struct la8 *la8, uint8_t *buf, int size)
242 {
243         int bytes_read;
244
245         if (!la8) {
246                 sr_err("la8: %s: la8 was NULL", __func__);
247                 return SR_ERR_ARG;
248         }
249
250         if (!la8->ftdic) {
251                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
252                 return SR_ERR_ARG;
253         }
254
255         if (!buf) {
256                 sr_err("la8: %s: buf was NULL", __func__);
257                 return SR_ERR_ARG;
258         }
259
260         if (size <= 0) {
261                 sr_err("la8: %s: size was <= 0", __func__);
262                 return SR_ERR_ARG;
263         }
264
265         bytes_read = ftdi_read_data(la8->ftdic, buf, size);
266
267         if (bytes_read < 0) {
268                 sr_warn("la8: %s: ftdi_read_data: (%d) %s", __func__,
269                         bytes_read, ftdi_get_error_string(la8->ftdic));
270         } else if (bytes_read != size) {
271                 // sr_warn("la8: %s: bytes to read: %d, bytes read: %d",
272                 //      __func__, size, bytes_read);
273         }
274
275         return bytes_read;
276 }
277
278 static int la8_close(struct la8 *la8)
279 {
280         int ret;
281
282         if (!la8) {
283                 sr_err("la8: %s: la8 was NULL", __func__);
284                 return SR_ERR_ARG;
285         }
286
287         if (!la8->ftdic) {
288                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
289                 return SR_ERR_ARG;
290         }
291
292         if ((ret = ftdi_usb_close(la8->ftdic)) < 0) {
293                 sr_warn("la8: %s: ftdi_usb_close: (%d) %s",
294                         __func__, ret, ftdi_get_error_string(la8->ftdic));
295         }
296
297         return ret;
298 }
299
300 /**
301  * Close the ChronoVu LA8 USB port and reset the LA8 sequencer logic.
302  *
303  * @param la8 The LA8 struct containing private per-device-instance data.
304  * @return SR_OK upon success, SR_ERR upon failure.
305  */
306 static int la8_close_usb_reset_sequencer(struct la8 *la8)
307 {
308         /* Magic sequence of bytes for resetting the LA8 sequencer logic. */
309         uint8_t buf[8] = {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01};
310         int ret;
311
312         sr_dbg("la8: entering %s", __func__);
313
314         if (!la8) {
315                 sr_err("la8: %s: la8 was NULL", __func__);
316                 return SR_ERR_ARG;
317         }
318
319         if (!la8->ftdic) {
320                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
321                 return SR_ERR_ARG;
322         }
323
324         if (la8->ftdic->usb_dev) {
325                 /* Reset the LA8 sequencer logic, then wait 100ms. */
326                 sr_dbg("la8: resetting sequencer logic");
327                 (void) la8_write(la8, buf, 8); /* Ignore errors. */
328                 g_usleep(100 * 1000);
329
330                 /* Purge FTDI buffers, then reset and close the FTDI device. */
331                 sr_dbg("la8: purging buffers, resetting+closing FTDI device");
332
333                 /* Log errors, but ignore them (i.e., don't abort). */
334                 if ((ret = ftdi_usb_purge_buffers(la8->ftdic)) < 0)
335                         sr_warn("la8: %s: ftdi_usb_purge_buffers: (%d) %s",
336                             __func__, ret, ftdi_get_error_string(la8->ftdic));
337                 if ((ret = ftdi_usb_reset(la8->ftdic)) < 0)
338                         sr_warn("la8: %s: ftdi_usb_reset: (%d) %s", __func__,
339                                 ret, ftdi_get_error_string(la8->ftdic));
340                 if ((ret = ftdi_usb_close(la8->ftdic)) < 0)
341                         sr_warn("la8: %s: ftdi_usb_close: (%d) %s", __func__,
342                                 ret, ftdi_get_error_string(la8->ftdic));
343         } else {
344                 sr_dbg("la8: %s: usb_dev was NULL, nothing to do", __func__);
345         }
346
347         ftdi_free(la8->ftdic); /* Returns void. */
348         la8->ftdic = NULL;
349
350         return SR_OK;
351 }
352
353 /**
354  * Reset the ChronoVu LA8.
355  *
356  * The LA8 must be reset after a failed read/write operation or upon timeouts.
357  *
358  * @param la8 The LA8 struct containing private per-device-instance data.
359  * @return SR_OK upon success, SR_ERR upon failure.
360  */
361 static int la8_reset(struct la8 *la8)
362 {
363         uint8_t buf[4096];
364         time_t done, now;
365         int bytes_read;
366
367         if (!la8) {
368                 sr_err("la8: %s: la8 was NULL", __func__);
369                 return SR_ERR_ARG;
370         }
371
372         if (!la8->ftdic) {
373                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
374                 return SR_ERR_ARG;
375         }
376
377         sr_dbg("la8: resetting the device");
378
379         /*
380          * Purge pending read data from the FTDI hardware FIFO until
381          * no more data is left, or a timeout occurs (after 20s).
382          */
383         done = 20 + time(NULL);
384         do {
385                 /* TODO: Ignore errors? Check for < 0 at least! */
386                 bytes_read = la8_read(la8, (uint8_t *)&buf, 4096);
387                 now = time(NULL);
388         } while ((done > now) && (bytes_read > 0));
389
390         /* Reset the LA8 sequencer logic and close the USB port. */
391         (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
392
393         sr_dbg("la8: device reset finished");
394
395         return SR_OK;
396 }
397
398 static int configure_probes(struct la8 *la8, GSList *probes)
399 {
400         struct sr_probe *probe;
401         GSList *l;
402         uint8_t probe_bit;
403         char *tc;
404
405         la8->trigger_pattern = 0;
406         la8->trigger_mask = 0; /* Default to "don't care" for all probes. */
407
408         for (l = probes; l; l = l->next) {
409                 probe = (struct sr_probe *)l->data;
410
411                 if (!probe) {
412                         sr_err("la8: %s: probe was NULL", __func__);
413                         return SR_ERR;
414                 }
415
416                 /* Skip disabled probes. */
417                 if (!probe->enabled)
418                         continue;
419
420                 /* Skip (enabled) probes with no configured trigger. */
421                 if (!probe->trigger)
422                         continue;
423
424                 /* Note: Must only be run if probe->trigger != NULL. */
425                 if (probe->index < 0 || probe->index > 7) {
426                         sr_err("la8: %s: invalid probe index %d, must be "
427                                "between 0 and 7", __func__, probe->index);
428                         return SR_ERR;
429                 }
430
431                 probe_bit = (1 << (probe->index - 1));
432
433                 /* Configure the probe's trigger mask and trigger pattern. */
434                 for (tc = probe->trigger; tc && *tc; tc++) {
435                         la8->trigger_mask |= probe_bit;
436
437                         /* Sanity check, LA8 only supports low/high trigger. */
438                         if (*tc != '0' && *tc != '1') {
439                                 sr_err("la8: %s: invalid trigger '%c', only "
440                                        "'0'/'1' supported", __func__, *tc);
441                                 return SR_ERR;
442                         }
443
444                         if (*tc == '1')
445                                 la8->trigger_pattern |= probe_bit;
446                 }
447         }
448
449         sr_dbg("la8: %s: trigger_mask = 0x%x, trigger_pattern = 0x%x",
450                __func__, la8->trigger_mask, la8->trigger_pattern);
451
452         return SR_OK;
453 }
454
455 static int hw_init(const char *deviceinfo)
456 {
457         int ret;
458         struct sr_device_instance *sdi;
459         struct la8 *la8;
460
461         sr_dbg("la8: entering %s", __func__);
462
463         /* Avoid compiler errors. */
464         deviceinfo = deviceinfo;
465
466         /* Allocate memory for our private driver context. */
467         if (!(la8 = g_try_malloc(sizeof(struct la8)))) {
468                 sr_err("la8: %s: struct la8 malloc failed", __func__);
469                 ret = SR_ERR_MALLOC;
470                 goto err_free_nothing;
471         }
472
473         /* Set some sane defaults. */
474         la8->ftdic = NULL;
475         la8->cur_samplerate = SR_MHZ(100); /* 100MHz == max. samplerate */
476         la8->limit_msec = 0;
477         la8->limit_samples = 0;
478         la8->session_id = NULL;
479         memset(la8->mangled_buf, 0, 4096);
480         la8->final_buf = NULL;
481         la8->trigger_pattern = 0x00; /* Value irrelevant, see trigger_mask. */
482         la8->trigger_mask = 0x00; /* All probes are "don't care". */
483         la8->trigger_timeout = 10; /* Default to 10s trigger timeout. */
484         la8->done = 0;
485         la8->block_counter = 0;
486         la8->divcount = 0; /* 10ns sample period == 100MHz samplerate */
487
488         /* Allocate memory where we'll store the de-mangled data. */
489         if (!(la8->final_buf = g_try_malloc(SDRAM_SIZE))) {
490                 sr_err("la8: %s: final_buf malloc failed", __func__);
491                 ret = SR_ERR_MALLOC;
492                 goto err_free_la8;
493         }
494
495         /* Allocate memory for the FTDI context (ftdic) and initialize it. */
496         if (!(la8->ftdic = ftdi_new())) {
497                 sr_err("la8: %s: ftdi_new failed", __func__);
498                 ret = SR_ERR; /* TODO: More specific error? */
499                 goto err_free_final_buf;
500         }
501
502         /* Check for the device and temporarily open it. */
503         if ((ret = ftdi_usb_open_desc(la8->ftdic, USB_VENDOR_ID,
504                         USB_PRODUCT_ID, USB_DESCRIPTION, NULL)) < 0) {
505                 sr_err("la8: %s: ftdi_usb_open_desc: (%d) %s",
506                        __func__, ret, ftdi_get_error_string(la8->ftdic));
507                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
508                 ret = SR_ERR; /* TODO: More specific error? */
509                 goto err_free_ftdic;
510         }
511         sr_dbg("la8: found device");
512
513         /* Register the device with libsigrok. */
514         sdi = sr_device_instance_new(0, SR_ST_INITIALIZING,
515                         USB_VENDOR_NAME, USB_MODEL_NAME, USB_MODEL_VERSION);
516         if (!sdi) {
517                 sr_err("la8: %s: sr_device_instance_new failed", __func__);
518                 ret = SR_ERR; /* TODO: More specific error? */
519                 goto err_close_ftdic;
520         }
521
522         sdi->priv = la8;
523
524         device_instances = g_slist_append(device_instances, sdi);
525
526         sr_dbg("la8: %s finished successfully", __func__);
527
528         /* Close device. We'll reopen it again when we need it. */
529         (void) la8_close(la8); /* Log, but ignore errors. */
530
531         // return SR_OK; /* TODO */
532         return 1;
533
534 err_close_ftdic:
535         (void) la8_close(la8); /* Log, but ignore errors. */
536 err_free_ftdic:
537         free(la8->ftdic); /* NOT g_free()! */
538 err_free_final_buf:
539         g_free(la8->final_buf);
540 err_free_la8:
541         g_free(la8);
542 err_free_nothing:
543         // return ret; /* TODO */
544         return 0;
545 }
546
547 static int hw_opendev(int device_index)
548 {
549         int ret;
550         struct sr_device_instance *sdi;
551         struct la8 *la8;
552
553         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
554                 sr_err("la8: %s: sdi was NULL", __func__);
555                 return SR_ERR; /* TODO: SR_ERR_ARG? */
556         }
557
558         if (!(la8 = sdi->priv)) {
559                 sr_err("la8: %s: sdi->priv was NULL", __func__);
560                 return SR_ERR; /* TODO: SR_ERR_ARG? */
561         }
562
563         sr_dbg("la8: opening device");
564
565         /* Open the device. */
566         if ((ret = ftdi_usb_open_desc(la8->ftdic, USB_VENDOR_ID,
567                         USB_PRODUCT_ID, USB_DESCRIPTION, NULL)) < 0) {
568                 sr_err("la8: %s: ftdi_usb_open_desc: (%d) %s",
569                        __func__, ret, ftdi_get_error_string(la8->ftdic));
570                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
571                 return SR_ERR;
572         }
573         sr_dbg("la8: device opened successfully");
574
575         /* Purge RX/TX buffers in the FTDI chip. */
576         if ((ret = ftdi_usb_purge_buffers(la8->ftdic)) < 0) {
577                 sr_err("la8: %s: ftdi_usb_purge_buffers: (%d) %s",
578                        __func__, ret, ftdi_get_error_string(la8->ftdic));
579                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
580                 goto err_opendev_close_ftdic;
581         }
582         sr_dbg("la8: FTDI buffers purged successfully");
583
584         /* Enable flow control in the FTDI chip. */
585         if ((ret = ftdi_setflowctrl(la8->ftdic, SIO_RTS_CTS_HS)) < 0) {
586                 sr_err("la8: %s: ftdi_setflowcontrol: (%d) %s",
587                        __func__, ret, ftdi_get_error_string(la8->ftdic));
588                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
589                 goto err_opendev_close_ftdic;
590         }
591         sr_dbg("la8: FTDI flow control enabled successfully");
592
593         /* Wait 100ms. */
594         g_usleep(100 * 1000);
595
596         sdi->status = SR_ST_ACTIVE;
597
598         return SR_OK;
599
600 err_opendev_close_ftdic:
601         (void) la8_close(la8); /* Log, but ignore errors. */
602         return SR_ERR;
603 }
604
605 static int set_samplerate(struct sr_device_instance *sdi, uint64_t samplerate)
606 {
607         struct la8 *la8;
608
609         if (!sdi) {
610                 sr_err("la8: %s: sdi was NULL", __func__);
611                 return SR_ERR_ARG;
612         }
613
614         if (!(la8 = sdi->priv)) {
615                 sr_err("la8: %s: sdi->priv was NULL", __func__);
616                 return SR_ERR_ARG;
617         }
618
619         sr_dbg("la8: setting samplerate");
620
621         fill_supported_samplerates_if_needed();
622
623         /* Check if this is a samplerate supported by the hardware. */
624         if (!is_valid_samplerate(samplerate))
625                 return SR_ERR;
626
627         /* Set the new samplerate. */
628         la8->cur_samplerate = samplerate;
629
630         sr_dbg("la8: samplerate set to %" PRIu64 "Hz", la8->cur_samplerate);
631
632         return SR_OK;
633 }
634
635 static int hw_closedev(int device_index)
636 {
637         struct sr_device_instance *sdi;
638         struct la8 *la8;
639
640         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
641                 sr_err("la8: %s: sdi was NULL", __func__);
642                 return SR_ERR; /* TODO: SR_ERR_ARG? */
643         }
644
645         if (!(la8 = sdi->priv)) {
646                 sr_err("la8: %s: sdi->priv was NULL", __func__);
647                 return SR_ERR; /* TODO: SR_ERR_ARG? */
648         }
649
650         sr_dbg("la8: closing device");
651
652         if (sdi->status == SR_ST_ACTIVE) {
653                 sr_dbg("la8: %s: status ACTIVE, closing device", __func__);
654                 /* TODO: Really ignore errors here, or return SR_ERR? */
655                 (void) la8_close_usb_reset_sequencer(la8); /* Ignore errors. */
656         } else {
657                 sr_dbg("la8: %s: status not ACTIVE, nothing to do", __func__);
658         }
659
660         sdi->status = SR_ST_INACTIVE;
661
662         sr_dbg("la8: %s: freeing sample buffers", __func__);
663         free(la8->final_buf);
664
665         return SR_OK;
666 }
667
668 static void hw_cleanup(void)
669 {
670         GSList *l;
671         struct sr_device_instance *sdi;
672
673         sr_dbg("la8: entering %s", __func__);
674
675         /* Properly close all devices. */
676         for (l = device_instances; l; l = l->next) {
677                 if ((sdi = l->data) == NULL) {
678                         sr_warn("la8: %s: sdi was NULL, continuing", __func__);
679                         continue;
680                 }
681                 if (sdi->priv != NULL)
682                         free(sdi->priv);
683                 else
684                         sr_warn("la8: %s: sdi->priv was NULL, nothing "
685                                 "to do", __func__);
686                 sr_device_instance_free(sdi); /* Returns void. */
687         }
688         g_slist_free(device_instances); /* Returns void. */
689         device_instances = NULL;
690 }
691
692 static void *hw_get_device_info(int device_index, int device_info_id)
693 {
694         struct sr_device_instance *sdi;
695         struct la8 *la8;
696         void *info;
697
698         sr_dbg("la8: entering %s", __func__);
699
700         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
701                 sr_err("la8: %s: sdi was NULL", __func__);
702                 return NULL;
703         }
704
705         if (!(la8 = sdi->priv)) {
706                 sr_err("la8: %s: sdi->priv was NULL", __func__);
707                 return NULL;
708         }
709
710         switch (device_info_id) {
711         case SR_DI_INSTANCE:
712                 info = sdi;
713                 break;
714         case SR_DI_NUM_PROBES:
715                 info = GINT_TO_POINTER(NUM_PROBES);
716                 break;
717         case SR_DI_SAMPLERATES:
718                 fill_supported_samplerates_if_needed();
719                 info = &samplerates;
720                 break;
721         case SR_DI_TRIGGER_TYPES:
722                 info = (char *)TRIGGER_TYPES;
723                 break;
724         case SR_DI_CUR_SAMPLERATE:
725                 info = &la8->cur_samplerate;
726                 break;
727         default:
728                 /* Unknown device info ID, return NULL. */
729                 sr_err("la8: %s: Unknown device info ID", __func__);
730                 info = NULL;
731                 break;
732         }
733
734         return info;
735 }
736
737 static int hw_get_status(int device_index)
738 {
739         struct sr_device_instance *sdi;
740
741         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
742                 sr_warn("la8: %s: sdi was NULL, device not found", __func__);
743                 return SR_ST_NOT_FOUND;
744         }
745
746         sr_dbg("la8: %s: returning status %d", __func__, sdi->status);
747
748         return sdi->status;
749 }
750
751 static int *hw_get_capabilities(void)
752 {
753         sr_dbg("la8: entering %s", __func__);
754
755         return capabilities;
756 }
757
758 static int hw_set_configuration(int device_index, int capability, void *value)
759 {
760         struct sr_device_instance *sdi;
761         struct la8 *la8;
762
763         sr_dbg("la8: entering %s", __func__);
764
765         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
766                 sr_err("la8: %s: sdi was NULL", __func__);
767                 return SR_ERR; /* TODO: SR_ERR_ARG? */
768         }
769
770         if (!(la8 = sdi->priv)) {
771                 sr_err("la8: %s: sdi->priv was NULL", __func__);
772                 return SR_ERR; /* TODO: SR_ERR_ARG? */
773         }
774
775         switch (capability) {
776         case SR_HWCAP_SAMPLERATE:
777                 if (set_samplerate(sdi, *(uint64_t *)value) == SR_ERR)
778                         return SR_ERR;
779                 sr_dbg("la8: SAMPLERATE = %" PRIu64, la8->cur_samplerate);
780                 break;
781         case SR_HWCAP_PROBECONFIG:
782                 if (configure_probes(la8, (GSList *)value) != SR_OK) {
783                         sr_err("la8: %s: probe config failed", __func__);
784                         return SR_ERR;
785                 }
786                 break;
787         case SR_HWCAP_LIMIT_MSEC:
788                 if (*(uint64_t *)value == 0) {
789                         sr_err("la8: %s: LIMIT_MSEC can't be 0", __func__);
790                         return SR_ERR;
791                 }
792                 la8->limit_msec = *(uint64_t *)value;
793                 sr_dbg("la8: LIMIT_MSEC = %" PRIu64, la8->limit_msec);
794                 break;
795         case SR_HWCAP_LIMIT_SAMPLES:
796                 if (*(uint64_t *)value < MIN_NUM_SAMPLES) {
797                         sr_err("la8: %s: LIMIT_SAMPLES too small", __func__);
798                         return SR_ERR;
799                 }
800                 la8->limit_samples = *(uint64_t *)value;
801                 sr_dbg("la8: LIMIT_SAMPLES = %" PRIu64, la8->limit_samples);
802                 break;
803         default:
804                 /* Unknown capability, return SR_ERR. */
805                 sr_err("la8: %s: Unknown capability", __func__);
806                 return SR_ERR;
807                 break;
808         }
809
810         return SR_OK;
811 }
812
813 /**
814  * Get a block of 4096 bytes of data from the LA8.
815  *
816  * @param la8 The LA8 struct containing private per-device-instance data.
817  * @return SR_OK upon success, or SR_ERR upon errors.
818  */
819 static int la8_read_block(struct la8 *la8)
820 {
821         int i, byte_offset, m, mi, p, index, bytes_read;
822         time_t now;
823
824         if (!la8) {
825                 sr_err("la8: %s: la8 was NULL", __func__);
826                 return SR_ERR_ARG;
827         }
828
829         if (!la8->ftdic) {
830                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
831                 return SR_ERR_ARG;
832         }
833
834         // sr_dbg("la8: %s: reading block %d", __func__, la8->block_counter);
835
836         bytes_read = la8_read(la8, la8->mangled_buf, 4096);
837
838         /* If first block read got 0 bytes, retry until success or timeout. */
839         if ((bytes_read == 0) && (la8->block_counter == 0)) {
840                 do {
841                         // sr_dbg("la8: %s: reading block 0 again", __func__);
842                         bytes_read = la8_read(la8, la8->mangled_buf, 4096);
843                         /* TODO: How to handle read errors here? */
844                         now = time(NULL);
845                 } while ((la8->done > now) && (bytes_read == 0));
846         }
847
848         /* Check if block read was successful or a timeout occured. */
849         if (bytes_read != 4096) {
850                 sr_warn("la8: %s: trigger timed out", __func__);
851                 (void) la8_reset(la8); /* Ignore errors. */
852                 return SR_ERR;
853         }
854
855         /* De-mangle the data. */
856         // sr_dbg("la8: de-mangling samples of block %d", la8->block_counter);
857         byte_offset = la8->block_counter * 4096;
858         m = byte_offset / (1024 * 1024);
859         mi = m * (1024 * 1024);
860         for (i = 0; i < 4096; i++) {
861                 p = i & (1 << 0);
862                 index = m * 2 + (((byte_offset + i) - mi) / 2) * 16;
863                 index += (la8->divcount == 0) ? p : (1 - p);
864                 la8->final_buf[index] = la8->mangled_buf[i];
865         }
866
867         return SR_OK;
868 }
869
870 static int receive_data(int fd, int revents, void *user_data)
871 {
872         int i, ret;
873         struct sr_device_instance *sdi;
874         struct sr_datafeed_packet packet;
875         struct la8 *la8;
876
877         /* Avoid compiler errors. */
878         fd = fd;
879         revents = revents;
880
881         if (!(sdi = user_data)) {
882                 sr_err("la8: %s: user_data was NULL", __func__);
883                 return FALSE;
884         }
885
886         if (!(la8 = sdi->priv)) {
887                 sr_err("la8: %s: sdi->priv was NULL", __func__);
888                 return FALSE;
889         }
890
891         /* Get one block of data (4096 bytes). */
892         if ((ret = la8_read_block(la8)) < 0) {
893                 sr_err("la8: %s: la8_read_block error: %d", __func__, ret);
894                 hw_stop_acquisition(sdi->index, user_data);
895                 return FALSE;
896         }
897
898         /* We need to get exactly 2048 blocks (i.e. 8MB) of data. */
899         if (la8->block_counter != 2047) {
900                 la8->block_counter++;
901                 return TRUE;
902         }
903
904         sr_dbg("la8: sampling finished, sending data to session bus now");
905
906         /* All data was received and demangled, send it to the session bus. */
907         for (i = 0; i < 2048; i++) {
908                 /* Send a 4096 byte SR_DF_LOGIC packet to the session bus. */
909                 // sr_dbg("la8: %s: sending SR_DF_LOGIC packet", __func__);
910                 packet.type = SR_DF_LOGIC;
911                 packet.length = 4096;
912                 packet.unitsize = 1;
913                 packet.payload = la8->final_buf + (i * 4096);
914                 sr_session_bus(la8->session_id, &packet);
915         }
916
917         hw_stop_acquisition(sdi->index, user_data);
918
919         // return FALSE; /* FIXME? */
920         return TRUE;
921 }
922
923 static int hw_start_acquisition(int device_index, gpointer session_device_id)
924 {
925         struct sr_device_instance *sdi;
926         struct la8 *la8;
927         struct sr_datafeed_packet packet;
928         struct sr_datafeed_header header;
929         uint8_t buf[4];
930         int bytes_written;
931
932         sr_dbg("la8: entering %s", __func__);
933
934         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
935                 sr_err("la8: %s: sdi was NULL", __func__);
936                 return SR_ERR; /* TODO: SR_ERR_ARG? */
937         }
938
939         if (!(la8 = sdi->priv)) {
940                 sr_err("la8: %s: sdi->priv was NULL", __func__);
941                 return SR_ERR; /* TODO: SR_ERR_ARG? */
942         }
943
944         if (!la8->ftdic) {
945                 sr_err("la8: %s: la8->ftdic was NULL", __func__);
946                 return SR_ERR_ARG;
947         }
948
949         la8->divcount = samplerate_to_divcount(la8->cur_samplerate);
950         if (la8->divcount == 0xff) {
951                 sr_err("la8: %s: invalid divcount/samplerate", __func__);
952                 return SR_ERR;
953         }
954
955         /* Fill acquisition parameters into buf[]. */
956         buf[0] = la8->divcount;
957         buf[1] = 0xff; /* This byte must always be 0xff. */
958         buf[2] = la8->trigger_pattern;
959         buf[3] = la8->trigger_mask;
960
961         /* Start acquisition. */
962         bytes_written = la8_write(la8, buf, 4);
963
964         if (bytes_written < 0) {
965                 sr_err("la8: acquisition failed to start");
966                 return SR_ERR;
967         } else if (bytes_written != 4) {
968                 sr_err("la8: acquisition failed to start");
969                 return SR_ERR; /* TODO: Other error and return code? */
970         }
971
972         sr_dbg("la8: acquisition started successfully");
973
974         la8->session_id = session_device_id;
975
976         /* Send header packet to the session bus. */
977         sr_dbg("la8: %s: sending SR_DF_HEADER", __func__);
978         packet.type = SR_DF_HEADER;
979         packet.length = sizeof(struct sr_datafeed_header);
980         packet.unitsize = 0;
981         packet.payload = &header;
982         header.feed_version = 1;
983         gettimeofday(&header.starttime, NULL);
984         header.samplerate = la8->cur_samplerate;
985         header.protocol_id = SR_PROTO_RAW;
986         header.num_logic_probes = NUM_PROBES;
987         header.num_analog_probes = 0;
988         sr_session_bus(session_device_id, &packet);
989
990         /* Time when we should be done (for detecting trigger timeouts). */
991         la8->done = (la8->divcount + 1) * 0.08388608 + time(NULL)
992                         + la8->trigger_timeout;
993         la8->block_counter = 0;
994
995         /* Hook up a dummy handler to receive data from the LA8. */
996         sr_source_add(-1, G_IO_IN, 0, receive_data, sdi);
997
998         return SR_OK;
999 }
1000
1001 static void hw_stop_acquisition(int device_index, gpointer session_device_id)
1002 {
1003         struct sr_device_instance *sdi;
1004         struct la8 *la8;
1005         struct sr_datafeed_packet packet;
1006
1007         sr_dbg("la8: stopping acquisition");
1008
1009         if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
1010                 sr_err("la8: %s: sdi was NULL", __func__);
1011                 return;
1012         }
1013
1014         if (!(la8 = sdi->priv)) {
1015                 sr_err("la8: %s: sdi->priv was NULL", __func__);
1016                 return;
1017         }
1018
1019         /* Send end packet to the session bus. */
1020         sr_dbg("la8: %s: sending SR_DF_END", __func__);
1021         packet.type = SR_DF_END;
1022         packet.length = 0;
1023         packet.unitsize = 0;
1024         packet.payload = NULL;
1025         sr_session_bus(session_device_id, &packet);
1026 }
1027
1028 struct sr_device_plugin chronovu_la8_plugin_info = {
1029         .name = "chronovu-la8",
1030         .longname = "ChronoVu LA8",
1031         .api_version = 1,
1032         .init = hw_init,
1033         .cleanup = hw_cleanup,
1034         .opendev = hw_opendev,
1035         .closedev = hw_closedev,
1036         .get_device_info = hw_get_device_info,
1037         .get_status = hw_get_status,
1038         .get_capabilities = hw_get_capabilities,
1039         .set_configuration = hw_set_configuration,
1040         .start_acquisition = hw_start_acquisition,
1041         .stop_acquisition = hw_stop_acquisition,
1042 };