]> sigrok.org Git - libsigrok.git/blob - hardware/zeroplus-logic-cube/api.c
zeroplus: Cosmetics, small fixes, drop unneeded stuff.
[libsigrok.git] / hardware / zeroplus-logic-cube / api.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 "protocol.h"
21
22 #define VENDOR_NAME                     "ZEROPLUS"
23 #define USB_INTERFACE                   0
24 #define USB_CONFIGURATION               1
25 #define NUM_TRIGGER_STAGES              4
26 #define TRIGGER_TYPE                    "01"
27 #define PACKET_SIZE                     2048    /* ?? */
28
29 //#define ZP_EXPERIMENTAL
30
31 struct zp_model {
32         uint16_t vid;
33         uint16_t pid;
34         char *model_name;
35         unsigned int channels;
36         unsigned int sample_depth;      /* In Ksamples/channel */
37         unsigned int max_sampling_freq;
38 };
39
40 /*
41  * Note -- 16032, 16064 and 16128 *usually* -- but not always -- have the
42  * same 128K sample depth.
43  */
44 static const struct zp_model zeroplus_models[] = {
45         {0x0c12, 0x7009, "LAP-C(16064)",  16, 64,   100},
46         {0x0c12, 0x700a, "LAP-C(16128)",  16, 128,  200},
47         /* TODO: We don't know anything about these.
48         {0x0c12, 0x700b, "LAP-C(32128)",  32, 128,  200},
49         {0x0c12, 0x700c, "LAP-C(321000)", 32, 1024, 200},
50         {0x0c12, 0x700d, "LAP-C(322000)", 32, 2048, 200},
51         */
52         {0x0c12, 0x700e, "LAP-C(16032)",  16, 32,   100},
53         {0x0c12, 0x7016, "LAP-C(162000)", 16, 2048, 200},
54         { 0, 0, 0, 0, 0, 0 }
55 };
56
57 static const int hwcaps[] = {
58         SR_CONF_LOGIC_ANALYZER,
59         SR_CONF_SAMPLERATE,
60         SR_CONF_CAPTURE_RATIO,
61         SR_CONF_LIMIT_SAMPLES,
62         0,
63 };
64
65 /*
66  * ZEROPLUS LAP-C (16032) numbers the 16 probes A0-A7 and B0-B7.
67  * We currently ignore other untested/unsupported devices here.
68  */
69 static const char *probe_names[] = {
70         "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7",
71         "B0", "B1", "B2", "B3", "B4", "B5", "B6", "B7",
72         NULL,
73 };
74
75 SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info;
76 static struct sr_dev_driver *di = &zeroplus_logic_cube_driver_info;
77
78 /*
79  * The hardware supports more samplerates than these, but these are the
80  * options hardcoded into the vendor's Windows GUI.
81  */
82
83 /*
84  * TODO: We shouldn't support 150MHz and 200MHz on devices that don't go up
85  * that high.
86  */
87 const uint64_t zp_supported_samplerates[] = {
88         SR_HZ(100),
89         SR_HZ(500),
90         SR_KHZ(1),
91         SR_KHZ(5),
92         SR_KHZ(25),
93         SR_KHZ(50),
94         SR_KHZ(100),
95         SR_KHZ(200),
96         SR_KHZ(400),
97         SR_KHZ(800),
98         SR_MHZ(1),
99         SR_MHZ(10),
100         SR_MHZ(25),
101         SR_MHZ(50),
102         SR_MHZ(80),
103         SR_MHZ(100),
104         SR_MHZ(150),
105         SR_MHZ(200),
106         0,
107 };
108
109 static const struct sr_samplerates samplerates = {
110         .low  = 0,
111         .high = 0,
112         .step = 0,
113         .list = zp_supported_samplerates,
114 };
115
116 static int hw_dev_close(struct sr_dev_inst *sdi);
117
118 #if 0
119 static int configure_probes(const struct sr_dev_inst *sdi)
120 {
121         struct dev_context *devc;
122         const struct sr_probe *probe;
123         const GSList *l;
124         int probe_bit, stage, i;
125         char *tc;
126
127         /* Note: sdi and sdi->priv are non-NULL, the caller checked this. */
128         devc = sdi->priv;
129
130         devc->probe_mask = 0;
131         for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
132                 devc->trigger_mask[i] = 0;
133                 devc->trigger_value[i] = 0;
134         }
135
136         stage = -1;
137         for (l = sdi->probes; l; l = l->next) {
138                 probe = (struct sr_probe *)l->data;
139                 if (probe->enabled == FALSE)
140                         continue;
141                 probe_bit = 1 << (probe->index);
142                 devc->probe_mask |= probe_bit;
143
144                 if (probe->trigger) {
145                         stage = 0;
146                         for (tc = probe->trigger; *tc; tc++) {
147                                 devc->trigger_mask[stage] |= probe_bit;
148                                 if (*tc == '1')
149                                         devc->trigger_value[stage] |= probe_bit;
150                                 stage++;
151                                 if (stage > NUM_TRIGGER_STAGES)
152                                         return SR_ERR;
153                         }
154                 }
155         }
156
157         return SR_OK;
158 }
159 #endif
160
161 static int configure_probes(const struct sr_dev_inst *sdi)
162 {
163         struct dev_context *devc;
164         const GSList *l;
165         const struct sr_probe *probe;
166         char *tc;
167         int type;
168
169         /* Note: sdi and sdi->priv are non-NULL, the caller checked this. */
170         devc = sdi->priv;
171
172         for (l = sdi->probes; l; l = l->next) {
173                 probe = (struct sr_probe *)l->data;
174                 if (probe->enabled == FALSE)
175                         continue;
176
177                 if ((tc = probe->trigger)) {
178                         switch (*tc) {
179                         case '1':
180                                 type = TRIGGER_HIGH;
181                                 break;
182                         case '0':
183                                 type = TRIGGER_LOW;
184                                 break;
185 #if 0
186                         case 'r':
187                                 type = TRIGGER_POSEDGE;
188                                 break;
189                         case 'f':
190                                 type = TRIGGER_NEGEDGE;
191                                 break;
192                         case 'c':
193                                 type = TRIGGER_ANYEDGE;
194                                 break;
195 #endif
196                         default:
197                                 return SR_ERR;
198                         }
199                         analyzer_add_trigger(probe->index, type);
200                         devc->trigger = 1;
201                 }
202         }
203
204         return SR_OK;
205 }
206
207 static int clear_instances(void)
208 {
209         GSList *l;
210         struct sr_dev_inst *sdi;
211         struct drv_context *drvc;
212         struct dev_context *devc;
213
214         drvc = di->priv;
215         for (l = drvc->instances; l; l = l->next) {
216                 sdi = l->data;
217                 if (!(devc = sdi->priv)) {
218                         /* Log error, but continue cleaning up the rest. */
219                         sr_err("%s: sdi->priv was NULL, continuing", __func__);
220                         continue;
221                 }
222                 sr_usb_dev_inst_free(devc->usb);
223                 /* Properly close all devices... */
224                 hw_dev_close(sdi);
225                 /* ...and free all their memory. */
226                 sr_dev_inst_free(sdi);
227         }
228         g_slist_free(drvc->instances);
229         drvc->instances = NULL;
230
231         return SR_OK;
232 }
233
234 static int hw_init(struct sr_context *sr_ctx)
235 {
236         return std_hw_init(sr_ctx, di, "zeroplus: ");
237 }
238
239 static GSList *hw_scan(GSList *options)
240 {
241         struct sr_dev_inst *sdi;
242         struct sr_probe *probe;
243         struct drv_context *drvc;
244         struct dev_context *devc;
245         const struct zp_model *prof;
246         struct libusb_device_descriptor des;
247         libusb_device **devlist;
248         GSList *devices;
249         int ret, devcnt, i, j;
250
251         (void)options;
252
253         drvc = di->priv;
254
255         devices = NULL;
256
257         clear_instances();
258
259         /* Find all ZEROPLUS analyzers and add them to device list. */
260         devcnt = 0;
261         libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist); /* TODO: Errors. */
262
263         for (i = 0; devlist[i]; i++) {
264                 ret = libusb_get_device_descriptor(devlist[i], &des);
265                 if (ret != 0) {
266                         sr_err("Failed to get device descriptor: %s.",
267                                libusb_error_name(ret));
268                         continue;
269                 }
270
271                 prof = NULL;
272                 for (j = 0; j < zeroplus_models[j].vid; j++) {
273                         if (des.idVendor == zeroplus_models[j].vid &&
274                                 des.idProduct == zeroplus_models[j].pid) {
275                                 prof = &zeroplus_models[j];
276                         }
277                 }
278                 /* Skip if the device was not found. */
279                 if (!prof)
280                         continue;
281                 sr_info("Found ZEROPLUS %s.", prof->model_name);
282
283                 /* Register the device with libsigrok. */
284                 if (!(sdi = sr_dev_inst_new(devcnt, SR_ST_INACTIVE,
285                                 VENDOR_NAME, prof->model_name, NULL))) {
286                         sr_err("%s: sr_dev_inst_new failed", __func__);
287                         return NULL;
288                 }
289                 sdi->driver = di;
290
291                 /* Allocate memory for our private driver context. */
292                 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
293                         sr_err("Device context malloc failed.");
294                         return NULL;
295                 }
296
297                 sdi->priv = devc;
298                 devc->num_channels = prof->channels;
299 #ifdef ZP_EXPERIMENTAL
300                 devc->max_memory_size = 128 * 1024;
301                 devc->max_samplerate = 200;
302 #else
303                 devc->max_memory_size = prof->sample_depth * 1024;
304                 devc->max_samplerate = prof->max_sampling_freq;
305 #endif
306                 devc->max_samplerate *= SR_MHZ(1);
307                 devc->memory_size = MEMORY_SIZE_8K;
308                 // memset(devc->trigger_buffer, 0, NUM_TRIGGER_STAGES);
309
310                 /* Fill in probelist according to this device's profile. */
311                 for (j = 0; j < devc->num_channels; j++) {
312                         if (!(probe = sr_probe_new(j, SR_PROBE_LOGIC, TRUE,
313                                         probe_names[j])))
314                                 return NULL;
315                         sdi->probes = g_slist_append(sdi->probes, probe);
316                 }
317
318                 devices = g_slist_append(devices, sdi);
319                 drvc->instances = g_slist_append(drvc->instances, sdi);
320                 devc->usb = sr_usb_dev_inst_new(
321                         libusb_get_bus_number(devlist[i]),
322                         libusb_get_device_address(devlist[i]), NULL);
323                 devcnt++;
324
325         }
326         libusb_free_device_list(devlist, 1);
327
328         return devices;
329 }
330
331 static GSList *hw_dev_list(void)
332 {
333         return ((struct drv_context *)(di->priv))->instances;
334 }
335
336 static int hw_dev_open(struct sr_dev_inst *sdi)
337 {
338         struct dev_context *devc;
339         struct drv_context *drvc;
340         libusb_device **devlist, *dev;
341         struct libusb_device_descriptor des;
342         int device_count, ret, i;
343
344         drvc = di->priv;
345
346         if (!(devc = sdi->priv)) {
347                 sr_err("%s: sdi->priv was NULL", __func__);
348                 return SR_ERR_ARG;
349         }
350
351         device_count = libusb_get_device_list(drvc->sr_ctx->libusb_ctx,
352                                               &devlist);
353         if (device_count < 0) {
354                 sr_err("Failed to retrieve device list.");
355                 return SR_ERR;
356         }
357
358         dev = NULL;
359         for (i = 0; i < device_count; i++) {
360                 if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
361                         sr_err("Failed to get device descriptor: %s.",
362                                libusb_error_name(ret));
363                         continue;
364                 }
365                 if (libusb_get_bus_number(devlist[i]) == devc->usb->bus
366                     && libusb_get_device_address(devlist[i]) == devc->usb->address) {
367                         dev = devlist[i];
368                         break;
369                 }
370         }
371         if (!dev) {
372                 sr_err("Device on bus %d address %d disappeared!",
373                        devc->usb->bus, devc->usb->address);
374                 return SR_ERR;
375         }
376
377         if (!(ret = libusb_open(dev, &(devc->usb->devhdl)))) {
378                 sdi->status = SR_ST_ACTIVE;
379                 sr_info("Opened device %d on %d.%d interface %d.",
380                         sdi->index, devc->usb->bus,
381                         devc->usb->address, USB_INTERFACE);
382         } else {
383                 sr_err("Failed to open device: %s.", libusb_error_name(ret));
384                 return SR_ERR;
385         }
386
387         ret = libusb_set_configuration(devc->usb->devhdl, USB_CONFIGURATION);
388         if (ret < 0) {
389                 sr_err("Unable to set USB configuration %d: %s.",
390                        USB_CONFIGURATION, libusb_error_name(ret));
391                 return SR_ERR;
392         }
393
394         ret = libusb_claim_interface(devc->usb->devhdl, USB_INTERFACE);
395         if (ret != 0) {
396                 sr_err("Unable to claim interface: %s.",
397                        libusb_error_name(ret));
398                 return SR_ERR;
399         }
400
401         /* Set default configuration after power on. */
402         if (analyzer_read_status(devc->usb->devhdl) == 0)
403                 analyzer_configure(devc->usb->devhdl);
404
405         analyzer_reset(devc->usb->devhdl);
406         analyzer_initialize(devc->usb->devhdl);
407
408         //analyzer_set_memory_size(MEMORY_SIZE_512K);
409         // analyzer_set_freq(g_freq, g_freq_scale);
410         analyzer_set_trigger_count(1);
411         // analyzer_set_ramsize_trigger_address((((100 - g_pre_trigger)
412         // * get_memory_size(g_memory_size)) / 100) >> 2);
413
414 #if 0
415         if (g_double_mode == 1)
416                 analyzer_set_compression(COMPRESSION_DOUBLE);
417         else if (g_compression == 1)
418                 analyzer_set_compression(COMPRESSION_ENABLE);
419         else
420 #endif
421         analyzer_set_compression(COMPRESSION_NONE);
422
423         if (devc->cur_samplerate == 0) {
424                 /* Samplerate hasn't been set. Default to 1MHz. */
425                 analyzer_set_freq(1, FREQ_SCALE_MHZ);
426                 devc->cur_samplerate = SR_MHZ(1);
427         }
428
429         return SR_OK;
430 }
431
432 static int hw_dev_close(struct sr_dev_inst *sdi)
433 {
434         struct dev_context *devc;
435
436         devc = sdi->priv;
437
438         if (!devc->usb->devhdl)
439                 return SR_ERR;
440
441         sr_info("Closing device %d on %d.%d interface %d.", sdi->index,
442                 devc->usb->bus, devc->usb->address, USB_INTERFACE);
443         libusb_release_interface(devc->usb->devhdl, USB_INTERFACE);
444         libusb_reset_device(devc->usb->devhdl);
445         libusb_close(devc->usb->devhdl);
446         devc->usb->devhdl = NULL;
447         sdi->status = SR_ST_INACTIVE;
448
449         return SR_OK;
450 }
451
452 static int hw_cleanup(void)
453 {
454         struct drv_context *drvc;
455
456         if (!(drvc = di->priv))
457                 return SR_OK;
458
459         clear_instances();
460
461         return SR_OK;
462 }
463
464 static int config_get(int id, const void **data, const struct sr_dev_inst *sdi)
465 {
466         struct dev_context *devc;
467
468         switch (id) {
469         case SR_CONF_SAMPLERATE:
470                 if (sdi) {
471                         devc = sdi->priv;
472                         *data = &devc->cur_samplerate;
473                         sr_spew("Returning samplerate: %" PRIu64 "Hz.",
474                                 devc->cur_samplerate);
475                 } else
476                         return SR_ERR;
477                 break;
478         default:
479                 return SR_ERR_ARG;
480         }
481
482         return SR_OK;
483 }
484
485 static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
486 {
487         struct dev_context *devc;
488
489         if (!sdi) {
490                 sr_err("%s: sdi was NULL", __func__);
491                 return SR_ERR_ARG;
492         }
493
494         if (!(devc = sdi->priv)) {
495                 sr_err("%s: sdi->priv was NULL", __func__);
496                 return SR_ERR_ARG;
497         }
498
499         switch (id) {
500         case SR_CONF_SAMPLERATE:
501                 return zp_set_samplerate(devc, *(const uint64_t *)value);
502         case SR_CONF_LIMIT_SAMPLES:
503                 return set_limit_samples(devc, *(const uint64_t *)value);
504         case SR_CONF_CAPTURE_RATIO:
505                 return set_capture_ratio(devc, *(const uint64_t *)value);
506         default:
507                 return SR_ERR;
508         }
509
510         return SR_OK;
511 }
512
513 static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
514 {
515         (void)sdi;
516
517         switch (key) {
518         case SR_CONF_DEVICE_OPTIONS:
519                 *data = hwcaps;
520                 break;
521         case SR_CONF_SAMPLERATE:
522                 *data = &samplerates;
523                 break;
524         case SR_CONF_TRIGGER_TYPE:
525                 *data = TRIGGER_TYPE;
526                 break;
527         default:
528                 return SR_ERR_ARG;
529         }
530
531         return SR_OK;
532 }
533
534 static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
535                 void *cb_data)
536 {
537         struct sr_datafeed_packet packet;
538         struct sr_datafeed_logic logic;
539         //uint64_t samples_read;
540         int res;
541         unsigned int packet_num, n;
542         unsigned char *buf;
543         struct dev_context *devc;
544
545         if (!(devc = sdi->priv)) {
546                 sr_err("%s: sdi->priv was NULL", __func__);
547                 return SR_ERR_ARG;
548         }
549
550         if (configure_probes(sdi) != SR_OK) {
551                 sr_err("Failed to configure probes.");
552                 return SR_ERR;
553         }
554
555         set_triggerbar(devc);
556
557         /* Push configured settings to device. */
558         analyzer_configure(devc->usb->devhdl);
559
560         analyzer_start(devc->usb->devhdl);
561         sr_info("Waiting for data.");
562         analyzer_wait_data(devc->usb->devhdl);
563
564         sr_info("Stop address    = 0x%x.",
565                 analyzer_get_stop_address(devc->usb->devhdl));
566         sr_info("Now address     = 0x%x.",
567                 analyzer_get_now_address(devc->usb->devhdl));
568         sr_info("Trigger address = 0x%x.",
569                 analyzer_get_trigger_address(devc->usb->devhdl));
570
571         /* Send header packet to the session bus. */
572         std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
573
574         if (!(buf = g_try_malloc(PACKET_SIZE))) {
575                 sr_err("Packet buffer malloc failed.");
576                 return SR_ERR_MALLOC;
577         }
578
579         //samples_read = 0;
580         analyzer_read_start(devc->usb->devhdl);
581         /* Send the incoming transfer to the session bus. */
582         n = get_memory_size(devc->memory_size);
583         if (devc->max_memory_size * 4 < n)
584                 n = devc->max_memory_size * 4;
585         for (packet_num = 0; packet_num < n / PACKET_SIZE; packet_num++) {
586                 res = analyzer_read_data(devc->usb->devhdl, buf, PACKET_SIZE);
587                 sr_info("Tried to read %d bytes, actually read %d bytes.",
588                         PACKET_SIZE, res);
589
590                 packet.type = SR_DF_LOGIC;
591                 packet.payload = &logic;
592                 logic.length = PACKET_SIZE;
593                 logic.unitsize = 4;
594                 logic.data = buf;
595                 sr_session_send(cb_data, &packet);
596                 //samples_read += res / 4;
597         }
598         analyzer_read_stop(devc->usb->devhdl);
599         g_free(buf);
600
601         packet.type = SR_DF_END;
602         sr_session_send(cb_data, &packet);
603
604         return SR_OK;
605 }
606
607 /* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
608 static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
609 {
610         struct sr_datafeed_packet packet;
611         struct dev_context *devc;
612
613         packet.type = SR_DF_END;
614         sr_session_send(cb_data, &packet);
615
616         if (!(devc = sdi->priv)) {
617                 sr_err("%s: sdi->priv was NULL", __func__);
618                 return SR_ERR_BUG;
619         }
620
621         analyzer_reset(devc->usb->devhdl);
622         /* TODO: Need to cancel and free any queued up transfers. */
623
624         return SR_OK;
625 }
626
627 SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info = {
628         .name = "zeroplus-logic-cube",
629         .longname = "ZEROPLUS Logic Cube LAP-C series",
630         .api_version = 1,
631         .init = hw_init,
632         .cleanup = hw_cleanup,
633         .scan = hw_scan,
634         .dev_list = hw_dev_list,
635         .dev_clear = hw_cleanup,
636         .config_get = config_get,
637         .config_set = config_set,
638         .config_list = config_list,
639         .dev_open = hw_dev_open,
640         .dev_close = hw_dev_close,
641         .dev_acquisition_start = hw_dev_acquisition_start,
642         .dev_acquisition_stop = hw_dev_acquisition_stop,
643         .priv = NULL,
644 };