]> sigrok.org Git - libsigrok.git/blame - src/hardware/zeroplus-logic-cube/api.c
config_set(): Don't check for sdi->priv != NULL.
[libsigrok.git] / src / 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
6ec6c43b 20#include <config.h>
6d116114 21#include "protocol.h"
a1bb33af 22
8fdecced 23#define VENDOR_NAME "ZEROPLUS"
a1bb33af
UH
24#define USB_INTERFACE 0
25#define USB_CONFIGURATION 1
26#define NUM_TRIGGER_STAGES 4
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;
2c240774 34 const 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 47 {0x0c12, 0x700a, "LAP-C(16128)", 16, 128, 200},
5db0c668
RD
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},
e495a676 51 {0x0c12, 0x700e, "LAP-C(16032)", 16, 32, 100},
428edbe1 52 {0x0c12, 0x7016, "LAP-C(162000)", 16, 2048, 200},
e3594306 53 {0x0c12, 0x7100, "AKIP-9101", 16, 256, 200},
9e9dba7b 54 ALL_ZERO
a1bb33af
UH
55};
56
f254bc4b 57static const uint32_t devopts[] = {
1953564a 58 SR_CONF_LOGIC_ANALYZER,
5827f61b
BV
59 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET | SR_CONF_LIST,
60 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
61 SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
62 SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
63 SR_CONF_VOLTAGE_THRESHOLD | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
a1bb33af
UH
64};
65
28731bab
BV
66static const int32_t trigger_matches[] = {
67 SR_TRIGGER_ZERO,
68 SR_TRIGGER_ONE,
69};
70
d261dbbf 71/*
ba7dd8bb 72 * ZEROPLUS LAP-C (16032) numbers the 16 channels A0-A7 and B0-B7.
d261dbbf
UH
73 * We currently ignore other untested/unsupported devices here.
74 */
ba7dd8bb 75static const char *channel_names[] = {
78693401
UH
76 "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7",
77 "B0", "B1", "B2", "B3", "B4", "B5", "B6", "B7",
5db0c668
RD
78 "C0", "C1", "C2", "C3", "C4", "C5", "C6", "C7",
79 "D0", "D1", "D2", "D3", "D4", "D5", "D6", "D7",
464d12c7
KS
80};
81
32756547 82SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info;
a1bb33af 83
fed16f06
UH
84/*
85 * The hardware supports more samplerates than these, but these are the
86 * options hardcoded into the vendor's Windows GUI.
87 */
a1bb33af 88
8386096f 89static const uint64_t samplerates_100[] = {
17548571
UH
90 SR_HZ(100),
91 SR_HZ(500),
92 SR_KHZ(1),
93 SR_KHZ(5),
94 SR_KHZ(25),
95 SR_KHZ(50),
96 SR_KHZ(100),
97 SR_KHZ(200),
98 SR_KHZ(400),
99 SR_KHZ(800),
100 SR_MHZ(1),
101 SR_MHZ(10),
102 SR_MHZ(25),
103 SR_MHZ(50),
104 SR_MHZ(80),
105 SR_MHZ(100),
17548571
UH
106};
107
8386096f 108const uint64_t samplerates_200[] = {
c9140419
UH
109 SR_HZ(100),
110 SR_HZ(500),
59df0c77
UH
111 SR_KHZ(1),
112 SR_KHZ(5),
113 SR_KHZ(25),
114 SR_KHZ(50),
115 SR_KHZ(100),
116 SR_KHZ(200),
117 SR_KHZ(400),
118 SR_KHZ(800),
119 SR_MHZ(1),
120 SR_MHZ(10),
121 SR_MHZ(25),
122 SR_MHZ(50),
123 SR_MHZ(80),
124 SR_MHZ(100),
125 SR_MHZ(150),
126 SR_MHZ(200),
bf43ea23 127};
a1bb33af 128
6078d2c9 129static int dev_close(struct sr_dev_inst *sdi);
a1bb33af 130
3316e149
BV
131SR_PRIV int zp_set_samplerate(struct dev_context *devc, uint64_t samplerate)
132{
133 int i;
134
135 for (i = 0; ARRAY_SIZE(samplerates_200); i++)
136 if (samplerate == samplerates_200[i])
137 break;
138
139 if (i == ARRAY_SIZE(samplerates_200) || samplerate > devc->max_samplerate) {
140 sr_err("Unsupported samplerate: %" PRIu64 "Hz.", samplerate);
141 return SR_ERR_ARG;
142 }
143
144 sr_info("Setting samplerate to %" PRIu64 "Hz.", samplerate);
145
146 if (samplerate >= SR_MHZ(1))
147 analyzer_set_freq(samplerate / SR_MHZ(1), FREQ_SCALE_MHZ);
148 else if (samplerate >= SR_KHZ(1))
149 analyzer_set_freq(samplerate / SR_KHZ(1), FREQ_SCALE_KHZ);
150 else
151 analyzer_set_freq(samplerate, FREQ_SCALE_HZ);
152
153 devc->cur_samplerate = samplerate;
154
155 return SR_OK;
156}
157
4f840ce9 158static GSList *scan(struct sr_dev_driver *di, GSList *options)
a1bb33af 159{
d68e2d1a 160 struct sr_dev_inst *sdi;
310e9e9b
BV
161 struct drv_context *drvc;
162 struct dev_context *devc;
e495a676 163 const struct zp_model *prof;
a1bb33af 164 struct libusb_device_descriptor des;
ee4f9bb1 165 struct libusb_device_handle *hdl;
a1bb33af 166 libusb_device **devlist;
428edbe1 167 GSList *devices;
ee4f9bb1
SA
168 int ret, i, j;
169 char serial_num[64], connection_id[64];
a1bb33af 170
4ca38984 171 (void)options;
64d33dc2 172
41812aca 173 drvc = di->context;
4b97c74e 174
4ca38984
BV
175 devices = NULL;
176
8fdecced 177 /* Find all ZEROPLUS analyzers and add them to device list. */
d4abb463 178 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist); /* TODO: Errors. */
fed16f06
UH
179
180 for (i = 0; devlist[i]; i++) {
2a8f2d41 181 libusb_get_device_descriptor(devlist[i], &des);
a1bb33af 182
ee4f9bb1
SA
183 if ((ret = libusb_open(devlist[i], &hdl)) < 0)
184 continue;
185
186 if (des.iSerialNumber == 0) {
187 serial_num[0] = '\0';
188 } else if ((ret = libusb_get_string_descriptor_ascii(hdl,
189 des.iSerialNumber, (unsigned char *) serial_num,
190 sizeof(serial_num))) < 0) {
191 sr_warn("Failed to get serial number string descriptor: %s.",
192 libusb_error_name(ret));
193 continue;
194 }
195
196 libusb_close(hdl);
197
198 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
199
428edbe1
BV
200 prof = NULL;
201 for (j = 0; j < zeroplus_models[j].vid; j++) {
202 if (des.idVendor == zeroplus_models[j].vid &&
203 des.idProduct == zeroplus_models[j].pid) {
204 prof = &zeroplus_models[j];
bf43ea23 205 }
a1bb33af 206 }
e495a676 207 /* Skip if the device was not found. */
428edbe1
BV
208 if (!prof)
209 continue;
e495a676 210 sr_info("Found ZEROPLUS %s.", prof->model_name);
428edbe1
BV
211
212 /* Register the device with libsigrok. */
aac29cc1 213 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
214 sdi->status = SR_ST_INACTIVE;
215 sdi->vendor = g_strdup(VENDOR_NAME);
216 sdi->model = g_strdup(prof->model_name);
a873c594 217 sdi->driver = di;
ee4f9bb1
SA
218 sdi->serial_num = g_strdup(serial_num);
219 sdi->connection_id = g_strdup(connection_id);
428edbe1
BV
220
221 /* Allocate memory for our private driver context. */
f57d8ffe 222 devc = g_malloc0(sizeof(struct dev_context));
310e9e9b 223 sdi->priv = devc;
17548571 224 devc->prof = prof;
310e9e9b 225 devc->num_channels = prof->channels;
0ab0cb94 226#ifdef ZP_EXPERIMENTAL
e93fb98b 227 devc->max_sample_depth = 128 * 1024;
0ab0cb94
TY
228 devc->max_samplerate = 200;
229#else
e93fb98b 230 devc->max_sample_depth = prof->sample_depth * 1024;
0ab0cb94
TY
231 devc->max_samplerate = prof->max_sampling_freq;
232#endif
233 devc->max_samplerate *= SR_MHZ(1);
234 devc->memory_size = MEMORY_SIZE_8K;
310e9e9b 235 // memset(devc->trigger_buffer, 0, NUM_TRIGGER_STAGES);
428edbe1 236
ba7dd8bb 237 /* Fill in channellist according to this device's profile. */
5e23fcab
ML
238 for (j = 0; j < devc->num_channels; j++)
239 sr_channel_new(sdi, j, SR_CHANNEL_LOGIC, TRUE,
c368e6f3 240 channel_names[j]);
428edbe1
BV
241
242 devices = g_slist_append(devices, sdi);
310e9e9b 243 drvc->instances = g_slist_append(drvc->instances, sdi);
8111446a 244 sdi->inst_type = SR_INST_USB;
609bfd75 245 sdi->conn = sr_usb_dev_inst_new(
428edbe1
BV
246 libusb_get_bus_number(devlist[i]),
247 libusb_get_device_address(devlist[i]), NULL);
a1bb33af
UH
248 }
249 libusb_free_device_list(devlist, 1);
250
4ca38984 251 return devices;
a1bb33af
UH
252}
253
6078d2c9 254static int dev_open(struct sr_dev_inst *sdi)
a1bb33af 255{
4f840ce9 256 struct sr_dev_driver *di = sdi->driver;
310e9e9b 257 struct dev_context *devc;
e495a676 258 struct drv_context *drvc;
609bfd75 259 struct sr_usb_dev_inst *usb;
87629577 260 int ret;
a1bb33af 261
41812aca 262 drvc = di->context;
609bfd75 263 usb = sdi->conn;
61c90858 264 devc = sdi->priv;
bf43ea23 265
87629577
LPC
266 ret = sr_usb_open(drvc->sr_ctx->libusb_ctx, usb);
267 if (ret != SR_OK)
268 return ret;
428edbe1 269
87629577 270 sdi->status = SR_ST_ACTIVE;
428edbe1 271
609bfd75 272 ret = libusb_set_configuration(usb->devhdl, USB_CONFIGURATION);
ebc34738 273 if (ret < 0) {
6d116114 274 sr_err("Unable to set USB configuration %d: %s.",
d4928d71 275 USB_CONFIGURATION, libusb_error_name(ret));
185ae2c5
UH
276 return SR_ERR;
277 }
278
609bfd75 279 ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
ebc34738 280 if (ret != 0) {
6d116114 281 sr_err("Unable to claim interface: %s.",
d4928d71 282 libusb_error_name(ret));
e46b8fb1 283 return SR_ERR;
a1bb33af 284 }
185ae2c5 285
e495a676 286 /* Set default configuration after power on. */
609bfd75
BV
287 if (analyzer_read_status(usb->devhdl) == 0)
288 analyzer_configure(usb->devhdl);
0ab0cb94 289
609bfd75
BV
290 analyzer_reset(usb->devhdl);
291 analyzer_initialize(usb->devhdl);
a1bb33af 292
0ab0cb94 293 //analyzer_set_memory_size(MEMORY_SIZE_512K);
fed16f06 294 // analyzer_set_freq(g_freq, g_freq_scale);
a1bb33af 295 analyzer_set_trigger_count(1);
408e7199
UH
296 // analyzer_set_ramsize_trigger_address((((100 - g_pre_trigger)
297 // * get_memory_size(g_memory_size)) / 100) >> 2);
a1bb33af 298
fed16f06
UH
299#if 0
300 if (g_double_mode == 1)
a1bb33af
UH
301 analyzer_set_compression(COMPRESSION_DOUBLE);
302 else if (g_compression == 1)
303 analyzer_set_compression(COMPRESSION_ENABLE);
fed16f06
UH
304 else
305#endif
306 analyzer_set_compression(COMPRESSION_NONE);
a1bb33af 307
310e9e9b 308 if (devc->cur_samplerate == 0) {
0ab0cb94
TY
309 /* Samplerate hasn't been set. Default to 1MHz. */
310 analyzer_set_freq(1, FREQ_SCALE_MHZ);
311 devc->cur_samplerate = SR_MHZ(1);
a1bb33af
UH
312 }
313
7142d6b9
RD
314 if (devc->cur_threshold == 0)
315 set_voltage_threshold(devc, 1.5);
316
e46b8fb1 317 return SR_OK;
a1bb33af
UH
318}
319
6078d2c9 320static int dev_close(struct sr_dev_inst *sdi)
a1bb33af 321{
609bfd75 322 struct sr_usb_dev_inst *usb;
a1bb33af 323
609bfd75 324 usb = sdi->conn;
697785d1 325
609bfd75 326 if (!usb->devhdl)
25a0f108
BV
327 return SR_ERR;
328
ee4f9bb1
SA
329 sr_info("Closing device on %d.%d (logical) / %s (physical) interface %d.",
330 usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
609bfd75
BV
331 libusb_release_interface(usb->devhdl, USB_INTERFACE);
332 libusb_reset_device(usb->devhdl);
333 libusb_close(usb->devhdl);
334 usb->devhdl = NULL;
25a0f108 335 sdi->status = SR_ST_INACTIVE;
697785d1
UH
336
337 return SR_OK;
a1bb33af
UH
338}
339
584560f1 340static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 341 const struct sr_channel_group *cg)
a1bb33af 342{
310e9e9b 343 struct dev_context *devc;
dcd438ee 344 GVariant *range[2];
a1bb33af 345
53b4680f 346 (void)cg;
8f996b89 347
dcd438ee
UH
348 if (!sdi)
349 return SR_ERR_ARG;
350
351 devc = sdi->priv;
352
584560f1 353 switch (key) {
123e1313 354 case SR_CONF_SAMPLERATE:
dcd438ee 355 *data = g_variant_new_uint64(devc->cur_samplerate);
bf43ea23 356 break;
05f853b5 357 case SR_CONF_CAPTURE_RATIO:
dcd438ee 358 *data = g_variant_new_uint64(devc->capture_ratio);
05f853b5 359 break;
7142d6b9 360 case SR_CONF_VOLTAGE_THRESHOLD:
dcd438ee
UH
361 range[0] = g_variant_new_double(devc->cur_threshold);
362 range[1] = g_variant_new_double(devc->cur_threshold);
363 *data = g_variant_new_tuple(range, 2);
67055d4c 364 break;
bf43ea23 365 default:
bd6fbf62 366 return SR_ERR_NA;
a1bb33af
UH
367 }
368
626409ab 369 return SR_OK;
a1bb33af
UH
370}
371
584560f1 372static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 373 const struct sr_channel_group *cg)
a1bb33af 374{
310e9e9b 375 struct dev_context *devc;
7142d6b9 376 gdouble low, high;
a1bb33af 377
53b4680f 378 (void)cg;
8f996b89 379
e73ffd42
BV
380 if (sdi->status != SR_ST_ACTIVE)
381 return SR_ERR_DEV_CLOSED;
0ab0cb94 382
b0baddef 383 devc = sdi->priv;
a1bb33af 384
584560f1 385 switch (key) {
1953564a 386 case SR_CONF_SAMPLERATE:
8386096f 387 return zp_set_samplerate(devc, g_variant_get_uint64(data));
1953564a 388 case SR_CONF_LIMIT_SAMPLES:
8386096f 389 return set_limit_samples(devc, g_variant_get_uint64(data));
1953564a 390 case SR_CONF_CAPTURE_RATIO:
8386096f 391 return set_capture_ratio(devc, g_variant_get_uint64(data));
7142d6b9
RD
392 case SR_CONF_VOLTAGE_THRESHOLD:
393 g_variant_get(data, "(dd)", &low, &high);
394 return set_voltage_threshold(devc, (low + high) / 2.0);
fed16f06 395 default:
bd6fbf62 396 return SR_ERR_NA;
a1bb33af 397 }
e495a676
UH
398
399 return SR_OK;
a1bb33af
UH
400}
401
584560f1 402static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 403 const struct sr_channel_group *cg)
a1c743fc 404{
17548571 405 struct dev_context *devc;
f0de2dd0 406 GVariant *gvar, *grange[2];
8386096f 407 GVariantBuilder gvb;
7142d6b9
RD
408 double v;
409 GVariant *range[2];
a1c743fc 410
53b4680f 411 (void)cg;
8f996b89 412
a1c743fc 413 switch (key) {
9a6517d1 414 case SR_CONF_DEVICE_OPTIONS:
584560f1 415 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 416 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 417 break;
a1c743fc 418 case SR_CONF_SAMPLERATE:
17548571 419 devc = sdi->priv;
8386096f 420 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
17548571 421 if (devc->prof->max_sampling_freq == 100) {
8386096f
BV
422 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
423 samplerates_100, ARRAY_SIZE(samplerates_100),
424 sizeof(uint64_t));
17548571 425 } else if (devc->prof->max_sampling_freq == 200) {
8386096f
BV
426 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
427 samplerates_200, ARRAY_SIZE(samplerates_200),
428 sizeof(uint64_t));
17548571
UH
429 } else {
430 sr_err("Internal error: Unknown max. samplerate: %d.",
431 devc->prof->max_sampling_freq);
432 return SR_ERR_ARG;
433 }
8386096f
BV
434 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
435 *data = g_variant_builder_end(&gvb);
a1c743fc 436 break;
28731bab
BV
437 case SR_CONF_TRIGGER_MATCH:
438 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
439 trigger_matches, ARRAY_SIZE(trigger_matches),
440 sizeof(int32_t));
c50277a6 441 break;
7142d6b9
RD
442 case SR_CONF_VOLTAGE_THRESHOLD:
443 g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
444 for (v = -6.0; v <= 6.0; v += 0.1) {
445 range[0] = g_variant_new_double(v);
446 range[1] = g_variant_new_double(v);
447 gvar = g_variant_new_tuple(range, 2);
448 g_variant_builder_add_value(&gvb, gvar);
449 }
450 *data = g_variant_builder_end(&gvb);
451 break;
f0de2dd0
BV
452 case SR_CONF_LIMIT_SAMPLES:
453 if (!sdi)
454 return SR_ERR_ARG;
455 devc = sdi->priv;
456 grange[0] = g_variant_new_uint64(0);
457 grange[1] = g_variant_new_uint64(devc->max_sample_depth);
458 *data = g_variant_new_tuple(grange, 2);
459 break;
a1c743fc 460 default:
bd6fbf62 461 return SR_ERR_NA;
a1c743fc
BV
462 }
463
464 return SR_OK;
465}
466
695dc859 467static int dev_acquisition_start(const struct sr_dev_inst *sdi)
a1bb33af 468{
609bfd75
BV
469 struct dev_context *devc;
470 struct sr_usb_dev_inst *usb;
b9c735a2 471 struct sr_datafeed_packet packet;
9c939c51 472 struct sr_datafeed_logic logic;
42ceb777 473 unsigned int samples_read;
a1bb33af 474 int res;
e495a676 475 unsigned int packet_num, n;
a1bb33af 476 unsigned char *buf;
42ceb777
RD
477 unsigned int status;
478 unsigned int stop_address;
479 unsigned int now_address;
480 unsigned int trigger_address;
481 unsigned int trigger_offset;
482 unsigned int triggerbar;
483 unsigned int ramsize_trigger;
484 unsigned int memory_size;
485 unsigned int valid_samples;
486 unsigned int discard;
487 int trigger_now;
a1bb33af 488
e73ffd42
BV
489 if (sdi->status != SR_ST_ACTIVE)
490 return SR_ERR_DEV_CLOSED;
491
208c1d35 492 devc = sdi->priv;
a1bb33af 493
28731bab
BV
494 if (analyzer_add_triggers(sdi) != SR_OK) {
495 sr_err("Failed to configure triggers.");
014359e3
BV
496 return SR_ERR;
497 }
498
609bfd75
BV
499 usb = sdi->conn;
500
0ab0cb94
TY
501 set_triggerbar(devc);
502
e495a676 503 /* Push configured settings to device. */
609bfd75 504 analyzer_configure(usb->devhdl);
a143e4e5 505
609bfd75 506 analyzer_start(usb->devhdl);
6d116114 507 sr_info("Waiting for data.");
609bfd75 508 analyzer_wait_data(usb->devhdl);
a1bb33af 509
42ceb777
RD
510 status = analyzer_read_status(usb->devhdl);
511 stop_address = analyzer_get_stop_address(usb->devhdl);
512 now_address = analyzer_get_now_address(usb->devhdl);
513 trigger_address = analyzer_get_trigger_address(usb->devhdl);
514
515 triggerbar = analyzer_get_triggerbar_address();
516 ramsize_trigger = analyzer_get_ramsize_trigger_address();
517
518 n = get_memory_size(devc->memory_size);
519 memory_size = n / 4;
520
521 sr_info("Status = 0x%x.", status);
522 sr_info("Stop address = 0x%x.", stop_address);
523 sr_info("Now address = 0x%x.", now_address);
524 sr_info("Trigger address = 0x%x.", trigger_address);
525 sr_info("Triggerbar address = 0x%x.", triggerbar);
526 sr_info("Ramsize trigger = 0x%x.", ramsize_trigger);
527 sr_info("Memory size = 0x%x.", memory_size);
a1bb33af 528
695dc859 529 std_session_send_df_header(sdi, LOG_PREFIX);
f366e86c 530
42ceb777
RD
531 /* Check for empty capture */
532 if ((status & STATUS_READY) && !stop_address) {
695dc859 533 std_session_send_df_end(sdi, LOG_PREFIX);
42ceb777
RD
534 return SR_OK;
535 }
536
a95f142e 537 buf = g_malloc(PACKET_SIZE);
b53738ba 538
42ceb777
RD
539 /* Check if the trigger is in the samples we are throwing away */
540 trigger_now = now_address == trigger_address ||
541 ((now_address + 1) % memory_size) == trigger_address;
542
543 /*
544 * STATUS_READY doesn't clear until now_address advances past
545 * addr 0, but for our logic, clear it in that case
546 */
547 if (!now_address)
548 status &= ~STATUS_READY;
549
609bfd75 550 analyzer_read_start(usb->devhdl);
42ceb777
RD
551
552 /* Calculate how much data to discard */
553 discard = 0;
554 if (status & STATUS_READY) {
555 /*
556 * We haven't wrapped around, we need to throw away data from
557 * our current position to the end of the buffer.
558 * Additionally, the first two samples captured are always
559 * bogus.
560 */
561 discard += memory_size - now_address + 2;
562 now_address = 2;
563 }
564
565 /* If we have more samples than we need, discard them */
566 valid_samples = (stop_address - now_address) % memory_size;
567 if (valid_samples > ramsize_trigger + triggerbar) {
568 discard += valid_samples - (ramsize_trigger + triggerbar);
569 now_address += valid_samples - (ramsize_trigger + triggerbar);
570 }
571
572 sr_info("Need to discard %d samples.", discard);
573
574 /* Calculate how far in the trigger is */
575 if (trigger_now)
576 trigger_offset = 0;
577 else
578 trigger_offset = (trigger_address - now_address) % memory_size;
579
580 /* Recalculate the number of samples available */
581 valid_samples = (stop_address - now_address) % memory_size;
582
fed16f06 583 /* Send the incoming transfer to the session bus. */
42ceb777 584 samples_read = 0;
0ab0cb94 585 for (packet_num = 0; packet_num < n / PACKET_SIZE; packet_num++) {
42ceb777
RD
586 unsigned int len;
587 unsigned int buf_offset;
588
609bfd75 589 res = analyzer_read_data(usb->devhdl, buf, PACKET_SIZE);
6d116114 590 sr_info("Tried to read %d bytes, actually read %d bytes.",
b08024a8 591 PACKET_SIZE, res);
a1bb33af 592
42ceb777
RD
593 if (discard >= PACKET_SIZE / 4) {
594 discard -= PACKET_SIZE / 4;
595 continue;
596 }
597
598 len = PACKET_SIZE - discard * 4;
599 buf_offset = discard * 4;
600 discard = 0;
601
602 /* Check if we've read all the samples */
603 if (samples_read + len / 4 >= valid_samples)
604 len = (valid_samples - samples_read) * 4;
605 if (!len)
606 break;
607
608 if (samples_read < trigger_offset &&
609 samples_read + len / 4 > trigger_offset) {
610 /* Send out samples remaining before trigger */
611 packet.type = SR_DF_LOGIC;
612 packet.payload = &logic;
613 logic.length = (trigger_offset - samples_read) * 4;
614 logic.unitsize = 4;
615 logic.data = buf + buf_offset;
695dc859 616 sr_session_send(sdi, &packet);
42ceb777
RD
617 len -= logic.length;
618 samples_read += logic.length / 4;
619 buf_offset += logic.length;
620 }
621
622 if (samples_read == trigger_offset) {
623 /* Send out trigger */
624 packet.type = SR_DF_TRIGGER;
625 packet.payload = NULL;
695dc859 626 sr_session_send(sdi, &packet);
42ceb777
RD
627 }
628
629 /* Send out data (or data after trigger) */
5a2326a7 630 packet.type = SR_DF_LOGIC;
9c939c51 631 packet.payload = &logic;
42ceb777 632 logic.length = len;
9c939c51 633 logic.unitsize = 4;
42ceb777 634 logic.data = buf + buf_offset;
695dc859 635 sr_session_send(sdi, &packet);
42ceb777 636 samples_read += len / 4;
a1bb33af 637 }
609bfd75 638 analyzer_read_stop(usb->devhdl);
a1bb33af
UH
639 g_free(buf);
640
695dc859 641 std_session_send_df_end(sdi, LOG_PREFIX);
a1bb33af 642
e46b8fb1 643 return SR_OK;
a1bb33af
UH
644}
645
3cd3a20b 646/* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
695dc859 647static int dev_acquisition_stop(struct sr_dev_inst *sdi)
a1bb33af 648{
609bfd75 649 struct sr_usb_dev_inst *usb;
a1bb33af 650
695dc859 651 std_session_send_df_end(sdi, LOG_PREFIX);
a1bb33af 652
609bfd75
BV
653 usb = sdi->conn;
654 analyzer_reset(usb->devhdl);
fed16f06 655 /* TODO: Need to cancel and free any queued up transfers. */
3010f21c
UH
656
657 return SR_OK;
a1bb33af
UH
658}
659
c09f0b57 660SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info = {
e519ba86 661 .name = "zeroplus-logic-cube",
8fdecced 662 .longname = "ZEROPLUS Logic Cube LAP-C series",
e519ba86 663 .api_version = 1,
c2fdcc25 664 .init = std_init,
700d6b64 665 .cleanup = std_cleanup,
6078d2c9 666 .scan = scan,
c01bf34c 667 .dev_list = std_dev_list,
a6630742 668 .dev_clear = NULL,
035a1078
BV
669 .config_get = config_get,
670 .config_set = config_set,
a1c743fc 671 .config_list = config_list,
6078d2c9
UH
672 .dev_open = dev_open,
673 .dev_close = dev_close,
674 .dev_acquisition_start = dev_acquisition_start,
675 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 676 .context = NULL,
a1bb33af 677};