]> sigrok.org Git - libsigrok.git/blob - hardware/zeroplus-logic-cube/zeroplus.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / hardware / zeroplus-logic-cube / zeroplus.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-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 <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/time.h>
24 #include <inttypes.h>
25 #include <glib.h>
26 #include <libusb.h>
27 #include "libsigrok.h"
28 #include "libsigrok-internal.h"
29 #include "analyzer.h"
30
31 #define USB_VENDOR                      0x0c12
32
33 #define VENDOR_NAME                     "ZEROPLUS"
34 #define MODEL_NAME                      "Logic Cube LAP-C"
35 #define MODEL_VERSION                   NULL
36
37 #define NUM_PROBES                      16
38 #define USB_INTERFACE                   0
39 #define USB_CONFIGURATION               1
40 #define NUM_TRIGGER_STAGES              4
41 #define TRIGGER_TYPES                   "01"
42
43 #define PACKET_SIZE                     2048    /* ?? */
44
45 //#define ZP_EXPERIMENTAL
46
47 typedef struct {
48         unsigned short vid;
49         unsigned short pid;
50         char *model_name;
51         unsigned int channels;
52         unsigned int sample_depth;      /* In Ksamples/channel */
53         unsigned int max_sampling_freq;
54 } model_t;
55
56 /*
57  * Note -- 16032, 16064 and 16128 *usually* -- but not always -- have the
58  * same 128K sample depth.
59  */
60 static model_t zeroplus_models[] = {
61         {0x0c12, 0x7009, "LAP-C(16064)",  16, 64,   100},
62         {0x0c12, 0x700A, "LAP-C(16128)",  16, 128,  200},
63         /* TODO: we don't know anything about these
64         {0x0c12, 0x700B, "LAP-C(32128)",  32, 128,  200},
65         {0x0c12, 0x700C, "LAP-C(321000)", 32, 1024, 200},
66         {0x0c12, 0x700D, "LAP-C(322000)", 32, 2048, 200},
67         */
68         {0x0c12, 0x700E, "LAP-C(16032)",  16, 32,   100},
69         {0x0c12, 0x7016, "LAP-C(162000)", 16, 2048, 200},
70         { 0, 0, 0, 0, 0, 0 }
71 };
72
73 static const int hwcaps[] = {
74         SR_HWCAP_LOGIC_ANALYZER,
75         SR_HWCAP_SAMPLERATE,
76         SR_HWCAP_CAPTURE_RATIO,
77
78         /* These are really implemented in the driver, not the hardware. */
79         SR_HWCAP_LIMIT_SAMPLES,
80         0,
81 };
82
83 /*
84  * ZEROPLUS LAP-C (16032) numbers the 16 probes A0-A7 and B0-B7.
85  * We currently ignore other untested/unsupported devices here.
86  */
87 static const char *probe_names[NUM_PROBES + 1] = {
88         "A0",
89         "A1",
90         "A2",
91         "A3",
92         "A4",
93         "A5",
94         "A6",
95         "A7",
96         "B0",
97         "B1",
98         "B2",
99         "B3",
100         "B4",
101         "B5",
102         "B6",
103         "B7",
104         NULL,
105 };
106
107 /* List of struct sr_dev_inst, maintained by dev_open()/dev_close(). */
108 SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info;
109 static struct sr_dev_driver *zdi = &zeroplus_logic_cube_driver_info;
110
111 static libusb_context *usb_context = NULL;
112
113 /*
114  * The hardware supports more samplerates than these, but these are the
115  * options hardcoded into the vendor's Windows GUI.
116  */
117
118 /*
119  * TODO: We shouldn't support 150MHz and 200MHz on devices that don't go up
120  * that high.
121  */
122 static const uint64_t supported_samplerates[] = {
123         SR_HZ(100),
124         SR_HZ(500),
125         SR_KHZ(1),
126         SR_KHZ(5),
127         SR_KHZ(25),
128         SR_KHZ(50),
129         SR_KHZ(100),
130         SR_KHZ(200),
131         SR_KHZ(400),
132         SR_KHZ(800),
133         SR_MHZ(1),
134         SR_MHZ(10),
135         SR_MHZ(25),
136         SR_MHZ(50),
137         SR_MHZ(80),
138         SR_MHZ(100),
139         SR_MHZ(150),
140         SR_MHZ(200),
141         0,
142 };
143
144 static const struct sr_samplerates samplerates = {
145         0,
146         0,
147         0,
148         supported_samplerates,
149 };
150
151 /* Private, per-device-instance driver context. */
152 struct dev_context {
153         uint64_t cur_samplerate;
154         uint64_t max_samplerate;
155         uint64_t limit_samples;
156         int num_channels; /* TODO: This isn't initialized before it's needed :( */
157         int memory_size;
158         unsigned int max_memory_size;
159         //uint8_t probe_mask;
160         //uint8_t trigger_mask[NUM_TRIGGER_STAGES];
161         //uint8_t trigger_value[NUM_TRIGGER_STAGES];
162         // uint8_t trigger_buffer[NUM_TRIGGER_STAGES];
163         int trigger;
164         unsigned int capture_ratio;
165
166         /* TODO: this belongs in the device instance */
167         struct sr_usb_dev_inst *usb;
168 };
169
170 static int hw_dev_close(struct sr_dev_inst *sdi);
171
172 static unsigned int get_memory_size(int type)
173 {
174         if (type == MEMORY_SIZE_8K)
175                 return 8 * 1024;
176         else if (type == MEMORY_SIZE_64K)
177                 return 64 * 1024;
178         else if (type == MEMORY_SIZE_128K)
179                 return 128 * 1024;
180         else if (type == MEMORY_SIZE_512K)
181                 return 512 * 1024;
182         else
183                 return 0;
184 }
185
186 #if 0
187 static int configure_probes(const struct sr_dev_inst *sdi)
188 {
189         struct dev_context *devc;
190         const struct sr_probe *probe;
191         const GSList *l;
192         int probe_bit, stage, i;
193         char *tc;
194
195         /* Note: sdi and sdi->priv are non-NULL, the caller checked this. */
196         devc = sdi->priv;
197
198         devc->probe_mask = 0;
199         for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
200                 devc->trigger_mask[i] = 0;
201                 devc->trigger_value[i] = 0;
202         }
203
204         stage = -1;
205         for (l = sdi->probes; l; l = l->next) {
206                 probe = (struct sr_probe *)l->data;
207                 if (probe->enabled == FALSE)
208                         continue;
209                 probe_bit = 1 << (probe->index);
210                 devc->probe_mask |= probe_bit;
211
212                 if (probe->trigger) {
213                         stage = 0;
214                         for (tc = probe->trigger; *tc; tc++) {
215                                 devc->trigger_mask[stage] |= probe_bit;
216                                 if (*tc == '1')
217                                         devc->trigger_value[stage] |= probe_bit;
218                                 stage++;
219                                 if (stage > NUM_TRIGGER_STAGES)
220                                         return SR_ERR;
221                         }
222                 }
223         }
224
225         return SR_OK;
226 }
227 #endif
228
229 static int configure_probes(const struct sr_dev_inst *sdi)
230 {
231         struct dev_context *devc;
232         const GSList *l;
233         const struct sr_probe *probe;
234         char *tc;
235         int type;
236
237         /* Note: sdi and sdi->priv are non-NULL, the caller checked this. */
238         devc = sdi->priv;
239
240         for (l = sdi->probes; l; l = l->next) {
241                 probe = (struct sr_probe *)l->data;
242                 if (probe->enabled == FALSE)
243                         continue;
244
245                 if ((tc = probe->trigger)) {
246                         switch (*tc) {
247                         case '1':
248                                 type = TRIGGER_HIGH;
249                                 break;
250                         case '0':
251                                 type = TRIGGER_LOW;
252                                 break;
253 #if 0
254                         case 'r':
255                                 type = TRIGGER_POSEDGE;
256                                 break;
257                         case 'f':
258                                 type = TRIGGER_NEGEDGE;
259                                 break;
260                         case 'c':
261                                 type = TRIGGER_ANYEDGE;
262                                 break;
263 #endif
264                         default:
265                                 return SR_ERR;
266                         }
267                         analyzer_add_trigger(probe->index, type);
268                         devc->trigger = 1;
269                 }
270         }
271
272         return SR_OK;
273 }
274
275 static int clear_instances(void)
276 {
277         GSList *l;
278         struct sr_dev_inst *sdi;
279         struct drv_context *drvc;
280         struct dev_context *devc;
281
282         drvc = zdi->priv;
283         for (l = drvc->instances; l; l = l->next) {
284                 sdi = l->data;
285                 if (!(devc = sdi->priv)) {
286                         /* Log error, but continue cleaning up the rest. */
287                         sr_err("zeroplus: %s: sdi->priv was NULL, continuing", __func__);
288                         continue;
289                 }
290                 sr_usb_dev_inst_free(devc->usb);
291                 /* Properly close all devices... */
292                 hw_dev_close(sdi);
293                 /* ...and free all their memory. */
294                 sr_dev_inst_free(sdi);
295         }
296         g_slist_free(drvc->instances);
297         drvc->instances = NULL;
298
299         return SR_OK;
300 }
301
302 /*
303  * API callbacks
304  */
305
306 static int hw_init(void)
307 {
308         struct drv_context *drvc;
309
310         if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
311                 sr_err("zeroplus: driver context malloc failed.");
312                 return SR_ERR_MALLOC;
313         }
314         zdi->priv = drvc;
315
316         if (libusb_init(&usb_context) != 0) {
317                 sr_err("zp: Failed to initialize USB.");
318                 return 0;
319         }
320
321         return SR_OK;
322 }
323
324 static GSList *hw_scan(GSList *options)
325 {
326         struct sr_dev_inst *sdi;
327         struct sr_probe *probe;
328         struct drv_context *drvc;
329         struct dev_context *devc;
330         model_t *prof;
331         struct libusb_device_descriptor des;
332         libusb_device **devlist;
333         GSList *devices;
334         int ret, devcnt, i, j;
335
336         (void)options;
337         drvc = zdi->priv;
338         devices = NULL;
339
340         clear_instances();
341
342         /* Find all ZEROPLUS analyzers and add them to device list. */
343         devcnt = 0;
344         libusb_get_device_list(usb_context, &devlist); /* TODO: Errors. */
345
346         for (i = 0; devlist[i]; i++) {
347                 ret = libusb_get_device_descriptor(devlist[i], &des);
348                 if (ret != 0) {
349                         sr_err("zp: failed to get device descriptor: %d", ret);
350                         continue;
351                 }
352
353                 prof = NULL;
354                 for (j = 0; j < zeroplus_models[j].vid; j++) {
355                         if (des.idVendor == zeroplus_models[j].vid &&
356                                 des.idProduct == zeroplus_models[j].pid) {
357                                 prof = &zeroplus_models[j];
358                         }
359                 }
360                 /* Skip if the device was not found */
361                 if (!prof)
362                         continue;
363                 sr_info("zp: Found ZEROPLUS model %s", prof->model_name);
364
365                 /* Register the device with libsigrok. */
366                 if (!(sdi = sr_dev_inst_new(devcnt, SR_ST_INACTIVE,
367                                 VENDOR_NAME, prof->model_name, NULL))) {
368                         sr_err("zp: %s: sr_dev_inst_new failed", __func__);
369                         return NULL;
370                 }
371                 sdi->driver = zdi;
372
373                 /* Allocate memory for our private driver context. */
374                 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
375                         sr_err("zp: %s: devc malloc failed", __func__);
376                         return NULL;
377                 }
378                 sdi->priv = devc;
379                 devc->num_channels = prof->channels;
380 #ifdef ZP_EXPERIMENTAL
381                 devc->max_memory_size = 128 * 1024;
382                 devc->max_samplerate = 200;
383 #else
384                 devc->max_memory_size = prof->sample_depth * 1024;
385                 devc->max_samplerate = prof->max_sampling_freq;
386 #endif
387                 devc->max_samplerate *= SR_MHZ(1);
388                 devc->memory_size = MEMORY_SIZE_8K;
389                 // memset(devc->trigger_buffer, 0, NUM_TRIGGER_STAGES);
390
391                 /* Fill in probelist according to this device's profile. */
392                 for (j = 0; j < devc->num_channels; j++) {
393                         if (!(probe = sr_probe_new(j, SR_PROBE_LOGIC, TRUE,
394                                         probe_names[j])))
395                                 return NULL;
396                         sdi->probes = g_slist_append(sdi->probes, probe);
397                 }
398
399                 devices = g_slist_append(devices, sdi);
400                 drvc->instances = g_slist_append(drvc->instances, sdi);
401                 devc->usb = sr_usb_dev_inst_new(
402                         libusb_get_bus_number(devlist[i]),
403                         libusb_get_device_address(devlist[i]), NULL);
404                 devcnt++;
405
406         }
407         libusb_free_device_list(devlist, 1);
408
409         return devices;
410 }
411
412 static GSList *hw_dev_list(void)
413 {
414         struct drv_context *drvc;
415
416         drvc = zdi->priv;
417
418         return drvc->instances;
419 }
420
421 static int hw_dev_open(struct sr_dev_inst *sdi)
422 {
423         struct dev_context *devc;
424         libusb_device **devlist, *dev;
425         struct libusb_device_descriptor des;
426         int device_count, ret, i;
427
428         if (!(devc = sdi->priv)) {
429                 sr_err("zp: %s: sdi->priv was NULL", __func__);
430                 return SR_ERR_ARG;
431         }
432
433         device_count = libusb_get_device_list(usb_context, &devlist);
434         if (device_count < 0) {
435                 sr_err("zp: Failed to retrieve device list");
436                 return SR_ERR;
437         }
438
439         dev = NULL;
440         for (i = 0; i < device_count; i++) {
441                 if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
442                         sr_err("fx2lafw: Failed to get device descriptor: %d.",
443                                ret);
444                         continue;
445                 }
446                 if (libusb_get_bus_number(devlist[i]) == devc->usb->bus
447                     && libusb_get_device_address(devlist[i]) == devc->usb->address) {
448                         dev = devlist[i];
449                         break;
450                 }
451         }
452         if (!dev) {
453                 sr_err("device on bus %d address %d disappeared!",
454                                 devc->usb->bus, devc->usb->address);
455                 return SR_ERR;
456         }
457
458         if (!(ret = libusb_open(dev, &(devc->usb->devhdl)))) {
459                 sdi->status = SR_ST_ACTIVE;
460                 sr_info("zp: opened device %d on %d.%d interface %d",
461                         sdi->index, devc->usb->bus,
462                         devc->usb->address, USB_INTERFACE);
463         } else {
464                 sr_err("zp: failed to open device: %d", ret);
465                 return SR_ERR;
466         }
467
468         ret = libusb_set_configuration(devc->usb->devhdl, USB_CONFIGURATION);
469         if (ret < 0) {
470                 sr_err("zp: Unable to set USB configuration %d: %d",
471                        USB_CONFIGURATION, ret);
472                 return SR_ERR;
473         }
474
475         ret = libusb_claim_interface(devc->usb->devhdl, USB_INTERFACE);
476         if (ret != 0) {
477                 sr_err("zp: Unable to claim interface: %d", ret);
478                 return SR_ERR;
479         }
480
481         /* Set default configuration after power on */
482         if (analyzer_read_status(devc->usb->devhdl) == 0)
483                 analyzer_configure(devc->usb->devhdl);
484
485         analyzer_reset(devc->usb->devhdl);
486         analyzer_initialize(devc->usb->devhdl);
487
488         //analyzer_set_memory_size(MEMORY_SIZE_512K);
489         // analyzer_set_freq(g_freq, g_freq_scale);
490         analyzer_set_trigger_count(1);
491         // analyzer_set_ramsize_trigger_address((((100 - g_pre_trigger)
492         // * get_memory_size(g_memory_size)) / 100) >> 2);
493
494 #if 0
495         if (g_double_mode == 1)
496                 analyzer_set_compression(COMPRESSION_DOUBLE);
497         else if (g_compression == 1)
498                 analyzer_set_compression(COMPRESSION_ENABLE);
499         else
500 #endif
501         analyzer_set_compression(COMPRESSION_NONE);
502
503         if (devc->cur_samplerate == 0) {
504                 /* Samplerate hasn't been set. Default to 1MHz. */
505                 analyzer_set_freq(1, FREQ_SCALE_MHZ);
506                 devc->cur_samplerate = SR_MHZ(1);
507         }
508
509         return SR_OK;
510 }
511
512 static int hw_dev_close(struct sr_dev_inst *sdi)
513 {
514         struct dev_context *devc;
515
516         if (!(devc = sdi->priv)) {
517                 sr_err("zp: %s: sdi->priv was NULL", __func__);
518                 return SR_ERR;
519         }
520
521         if (!devc->usb->devhdl)
522                 return SR_ERR;
523
524         sr_info("zp: closing device %d on %d.%d interface %d", sdi->index,
525                 devc->usb->bus, devc->usb->address, USB_INTERFACE);
526         libusb_release_interface(devc->usb->devhdl, USB_INTERFACE);
527         libusb_reset_device(devc->usb->devhdl);
528         libusb_close(devc->usb->devhdl);
529         devc->usb->devhdl = NULL;
530         sdi->status = SR_ST_INACTIVE;
531
532         return SR_OK;
533 }
534
535 static int hw_cleanup(void)
536 {
537         struct drv_context *drvc;
538
539         if (!(drvc = zdi->priv))
540                 return SR_OK;
541
542         clear_instances();
543
544         if (usb_context)
545                 libusb_exit(usb_context);
546         usb_context = NULL;
547
548         return SR_OK;
549 }
550
551 static int hw_info_get(int info_id, const void **data,
552        const struct sr_dev_inst *sdi)
553 {
554         struct dev_context *devc;
555
556         switch (info_id) {
557         case SR_DI_HWCAPS:
558                 *data = hwcaps;
559                 break;
560         case SR_DI_NUM_PROBES:
561                 if (sdi) {
562                         devc = sdi->priv;
563                         *data = GINT_TO_POINTER(devc->num_channels);
564                         sr_spew("zp: %s: Returning number of channels: %d.",
565                                         __func__, devc->num_channels);
566                 } else
567                         return SR_ERR;
568                 break;
569         case SR_DI_PROBE_NAMES:
570                 *data = probe_names;
571                 sr_spew("zp: %s: Returning probenames.", __func__);
572                 break;
573         case SR_DI_SAMPLERATES:
574                 *data = &samplerates;
575                 sr_spew("zp: %s: Returning samplerates.", __func__);
576                 break;
577         case SR_DI_TRIGGER_TYPES:
578                 *data = TRIGGER_TYPES;
579                 sr_spew("zp: %s: Returning triggertypes: %s.", __func__, TRIGGER_TYPES);
580                 break;
581         case SR_DI_CUR_SAMPLERATE:
582                 if (sdi) {
583                         devc = sdi->priv;
584                         *data = &devc->cur_samplerate;
585                         sr_spew("zp: %s: Returning samplerate: %" PRIu64 "Hz.",
586                                 __func__, devc->cur_samplerate);
587                 } else
588                         return SR_ERR;
589                 break;
590         default:
591                 return SR_ERR_ARG;
592         }
593
594         return SR_OK;
595 }
596
597 static int set_samplerate(struct dev_context *devc, uint64_t samplerate)
598 {
599         int i;
600
601         for (i = 0; supported_samplerates[i]; i++)
602                 if (samplerate == supported_samplerates[i])
603                         break;
604         if (!supported_samplerates[i] || samplerate > devc->max_samplerate) {
605                 sr_err("zp: %s: unsupported samplerate", __func__);
606                 return SR_ERR_ARG;
607         }
608
609         sr_info("zp: Setting samplerate to %" PRIu64 "Hz.", samplerate);
610
611         if (samplerate >= SR_MHZ(1))
612                 analyzer_set_freq(samplerate / SR_MHZ(1), FREQ_SCALE_MHZ);
613         else if (samplerate >= SR_KHZ(1))
614                 analyzer_set_freq(samplerate / SR_KHZ(1), FREQ_SCALE_KHZ);
615         else
616                 analyzer_set_freq(samplerate, FREQ_SCALE_HZ);
617
618         devc->cur_samplerate = samplerate;
619
620         return SR_OK;
621 }
622
623 static int set_limit_samples(struct dev_context *devc, uint64_t samples)
624 {
625         devc->limit_samples = samples;
626
627         if (samples <= 2 * 1024)
628                 devc->memory_size = MEMORY_SIZE_8K;
629         else if (samples <= 16 * 1024)
630                 devc->memory_size = MEMORY_SIZE_64K;
631         else if (samples <= 32 * 1024 ||
632                  devc->max_memory_size <= 32 * 1024)
633                 devc->memory_size = MEMORY_SIZE_128K;
634         else
635                 devc->memory_size = MEMORY_SIZE_512K;
636
637         sr_info("zp: Setting memory size to %dK.",
638                 get_memory_size(devc->memory_size) / 1024);
639
640         analyzer_set_memory_size(devc->memory_size);
641
642         return SR_OK;
643 }
644
645 static int set_capture_ratio(struct dev_context *devc, uint64_t ratio)
646 {
647         if (ratio > 100) {
648                 sr_err("zp: %s: invalid capture ratio", __func__);
649                 return SR_ERR_ARG;
650         }
651
652         devc->capture_ratio = ratio;
653
654         sr_info("zp: Setting capture ratio to %d%%.", devc->capture_ratio);
655
656         return SR_OK;
657 }
658
659 static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
660                              const void *value)
661 {
662         struct dev_context *devc;
663
664         if (!sdi) {
665                 sr_err("zp: %s: sdi was NULL", __func__);
666                 return SR_ERR_ARG;
667         }
668
669         if (!(devc = sdi->priv)) {
670                 sr_err("zp: %s: sdi->priv was NULL", __func__);
671                 return SR_ERR_ARG;
672         }
673
674         switch (hwcap) {
675         case SR_HWCAP_SAMPLERATE:
676                 return set_samplerate(devc, *(const uint64_t *)value);
677         case SR_HWCAP_LIMIT_SAMPLES:
678                 return set_limit_samples(devc, *(const uint64_t *)value);
679         case SR_HWCAP_CAPTURE_RATIO:
680                 return set_capture_ratio(devc, *(const uint64_t *)value);
681         default:
682                 return SR_ERR;
683         }
684 }
685
686 static void set_triggerbar(struct dev_context *devc)
687 {
688         unsigned int ramsize;
689         unsigned int n;
690         unsigned int triggerbar;
691
692         ramsize = get_memory_size(devc->memory_size) / 4;
693         if (devc->trigger) {
694                 n = ramsize;
695                 if (devc->max_memory_size < n)
696                         n = devc->max_memory_size;
697                 if (devc->limit_samples < n)
698                         n = devc->limit_samples;
699                 n = n * devc->capture_ratio / 100;
700                 if (n > ramsize - 8)
701                         triggerbar = ramsize - 8;
702                 else
703                         triggerbar = n;
704         } else {
705                 triggerbar = 0;
706         }
707         analyzer_set_triggerbar_address(triggerbar);
708         analyzer_set_ramsize_trigger_address(ramsize - triggerbar);
709
710         sr_dbg("zp: triggerbar_address = %d(0x%x)", triggerbar, triggerbar);
711         sr_dbg("zp: ramsize_triggerbar_address = %d(0x%x)",
712                ramsize - triggerbar, ramsize - triggerbar);
713 }
714
715 static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
716                 void *cb_data)
717 {
718         struct sr_datafeed_packet packet;
719         struct sr_datafeed_logic logic;
720         struct sr_datafeed_header header;
721         struct sr_datafeed_meta_logic meta;
722         //uint64_t samples_read;
723         int res;
724         unsigned int packet_num;
725         unsigned int n;
726         unsigned char *buf;
727         struct dev_context *devc;
728
729         if (!(devc = sdi->priv)) {
730                 sr_err("zp: %s: sdi->priv was NULL", __func__);
731                 return SR_ERR_ARG;
732         }
733
734         if (configure_probes(sdi) != SR_OK) {
735                 sr_err("zp: failed to configured probes");
736                 return SR_ERR;
737         }
738
739         set_triggerbar(devc);
740
741         /* push configured settings to device */
742         analyzer_configure(devc->usb->devhdl);
743
744         analyzer_start(devc->usb->devhdl);
745         sr_info("zp: Waiting for data");
746         analyzer_wait_data(devc->usb->devhdl);
747
748         sr_info("zp: Stop address    = 0x%x",
749                 analyzer_get_stop_address(devc->usb->devhdl));
750         sr_info("zp: Now address     = 0x%x",
751                 analyzer_get_now_address(devc->usb->devhdl));
752         sr_info("zp: Trigger address = 0x%x",
753                 analyzer_get_trigger_address(devc->usb->devhdl));
754
755         packet.type = SR_DF_HEADER;
756         packet.payload = &header;
757         header.feed_version = 1;
758         gettimeofday(&header.starttime, NULL);
759         sr_session_send(cb_data, &packet);
760
761         /* Send metadata about the SR_DF_LOGIC packets to come. */
762         packet.type = SR_DF_META_LOGIC;
763         packet.payload = &meta;
764         meta.samplerate = devc->cur_samplerate;
765         meta.num_probes = devc->num_channels;
766         sr_session_send(cb_data, &packet);
767
768         if (!(buf = g_try_malloc(PACKET_SIZE))) {
769                 sr_err("zp: %s: buf malloc failed", __func__);
770                 return SR_ERR_MALLOC;
771         }
772
773         //samples_read = 0;
774         analyzer_read_start(devc->usb->devhdl);
775         /* Send the incoming transfer to the session bus. */
776         n = get_memory_size(devc->memory_size);
777         if (devc->max_memory_size * 4 < n)
778                 n = devc->max_memory_size * 4;
779         for (packet_num = 0; packet_num < n / PACKET_SIZE; packet_num++) {
780                 res = analyzer_read_data(devc->usb->devhdl, buf, PACKET_SIZE);
781                 sr_info("zp: Tried to read %d bytes, actually read %d bytes",
782                         PACKET_SIZE, res);
783
784                 packet.type = SR_DF_LOGIC;
785                 packet.payload = &logic;
786                 logic.length = PACKET_SIZE;
787                 logic.unitsize = 4;
788                 logic.data = buf;
789                 sr_session_send(cb_data, &packet);
790                 //samples_read += res / 4;
791         }
792         analyzer_read_stop(devc->usb->devhdl);
793         g_free(buf);
794
795         packet.type = SR_DF_END;
796         sr_session_send(cb_data, &packet);
797
798         return SR_OK;
799 }
800
801 /* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
802 static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
803 {
804         struct sr_datafeed_packet packet;
805         struct dev_context *devc;
806
807         packet.type = SR_DF_END;
808         sr_session_send(cb_data, &packet);
809
810         if (!(devc = sdi->priv)) {
811                 sr_err("zp: %s: sdi->priv was NULL", __func__);
812                 return SR_ERR_BUG;
813         }
814
815         analyzer_reset(devc->usb->devhdl);
816         /* TODO: Need to cancel and free any queued up transfers. */
817
818         return SR_OK;
819 }
820
821 SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info = {
822         .name = "zeroplus-logic-cube",
823         .longname = "ZEROPLUS Logic Cube LAP-C series",
824         .api_version = 1,
825         .init = hw_init,
826         .cleanup = hw_cleanup,
827         .scan = hw_scan,
828         .dev_list = hw_dev_list,
829         .dev_clear = hw_cleanup,
830         .dev_open = hw_dev_open,
831         .dev_close = hw_dev_close,
832         .info_get = hw_info_get,
833         .dev_config_set = hw_dev_config_set,
834         .dev_acquisition_start = hw_dev_acquisition_start,
835         .dev_acquisition_stop = hw_dev_acquisition_stop,
836         .priv = NULL,
837 };