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