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