]> sigrok.org Git - libsigrok.git/blame - hardware/chronovu-la8/api.c
Python bindings: Fix reported libsigrok version.
[libsigrok.git] / hardware / chronovu-la8 / api.c
CommitLineData
b908f067
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2011-2012 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <ftdi.h>
22#include <glib.h>
23#include <string.h>
45c59c8b
BV
24#include "libsigrok.h"
25#include "libsigrok-internal.h"
45e080b6 26#include "protocol.h"
b908f067 27
765ef2f7 28SR_PRIV struct sr_dev_driver chronovu_la8_driver_info;
f3a35908 29static struct sr_dev_driver *di = &chronovu_la8_driver_info;
b908f067 30
1bec72d2
BV
31/* This will be initialized via config_list()/SR_CONF_SAMPLERATE.
32 *
33 * Min: 1 sample per 0.01us -> sample time is 0.084s, samplerate 100MHz
34 * Max: 1 sample per 2.55us -> sample time is 21.391s, samplerate 392.15kHz
35 */
36SR_PRIV uint64_t chronovu_la8_samplerates[255 + 1] = { 0 };
37
38/* Note: Continuous sampling is not supported by the hardware. */
39SR_PRIV const int32_t chronovu_la8_hwcaps[] = {
40 SR_CONF_LOGIC_ANALYZER,
41 SR_CONF_SAMPLERATE,
42 SR_CONF_LIMIT_MSEC, /* TODO: Not yet implemented. */
43 SR_CONF_LIMIT_SAMPLES, /* TODO: Not yet implemented. */
44};
45
74e5f12d
UH
46/*
47 * The ChronoVu LA8 can have multiple PIDs. Older versions shipped with
48 * a standard FTDI USB VID/PID of 0403:6001, newer ones have 0403:8867.
49 */
50static const uint16_t usb_pids[] = {
51 0x6001,
52 0x8867,
53};
54
b908f067 55/* Function prototypes. */
69b07d14 56static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
b908f067 57
811deee4 58static int clear_instances(void)
c4f3ed4b
BV
59{
60 GSList *l;
61 struct sr_dev_inst *sdi;
1644fb24
BV
62 struct drv_context *drvc;
63 struct dev_context *devc;
64
f3a35908 65 drvc = di->priv;
c4f3ed4b
BV
66
67 /* Properly close all devices. */
1644fb24 68 for (l = drvc->instances; l; l = l->next) {
c4f3ed4b
BV
69 if (!(sdi = l->data)) {
70 /* Log error, but continue cleaning up the rest. */
f3a35908 71 sr_err("%s: sdi was NULL, continuing.", __func__);
c4f3ed4b
BV
72 continue;
73 }
74 if (sdi->priv) {
1644fb24
BV
75 devc = sdi->priv;
76 ftdi_free(devc->ftdic);
c4f3ed4b
BV
77 }
78 sr_dev_inst_free(sdi);
79 }
1644fb24
BV
80 g_slist_free(drvc->instances);
81 drvc->instances = NULL;
c4f3ed4b 82
811deee4 83 return SR_OK;
c4f3ed4b
BV
84}
85
34f06b90 86static int hw_init(struct sr_context *sr_ctx)
61136ea6 87{
063e7aef 88 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
61136ea6
BV
89}
90
c4f3ed4b 91static GSList *hw_scan(GSList *options)
b908f067 92{
b908f067 93 struct sr_dev_inst *sdi;
87ca93c5 94 struct sr_probe *probe;
1644fb24
BV
95 struct drv_context *drvc;
96 struct dev_context *devc;
c4f3ed4b 97 GSList *devices;
9c4311c5
BV
98 unsigned int i;
99 int ret;
c4f3ed4b
BV
100
101 (void)options;
f3a35908
UH
102
103 drvc = di->priv;
4b97c74e 104
c4f3ed4b 105 devices = NULL;
b908f067 106
1644fb24
BV
107 /* Allocate memory for our private device context. */
108 if (!(devc = g_try_malloc(sizeof(struct dev_context)))) {
f3a35908 109 sr_err("Device context malloc failed.");
b908f067
UH
110 goto err_free_nothing;
111 }
112
113 /* Set some sane defaults. */
1644fb24
BV
114 devc->ftdic = NULL;
115 devc->cur_samplerate = SR_MHZ(100); /* 100MHz == max. samplerate */
116 devc->limit_msec = 0;
117 devc->limit_samples = 0;
3e9b7f9c 118 devc->cb_data = NULL;
1644fb24
BV
119 memset(devc->mangled_buf, 0, BS);
120 devc->final_buf = NULL;
121 devc->trigger_pattern = 0x00; /* Value irrelevant, see trigger_mask. */
122 devc->trigger_mask = 0x00; /* All probes are "don't care". */
123 devc->trigger_timeout = 10; /* Default to 10s trigger timeout. */
124 devc->trigger_found = 0;
125 devc->done = 0;
126 devc->block_counter = 0;
127 devc->divcount = 0; /* 10ns sample period == 100MHz samplerate */
128 devc->usb_pid = 0;
b908f067
UH
129
130 /* Allocate memory where we'll store the de-mangled data. */
1644fb24 131 if (!(devc->final_buf = g_try_malloc(SDRAM_SIZE))) {
f3a35908 132 sr_err("final_buf malloc failed.");
1644fb24 133 goto err_free_devc;
b908f067
UH
134 }
135
136 /* Allocate memory for the FTDI context (ftdic) and initialize it. */
1644fb24 137 if (!(devc->ftdic = ftdi_new())) {
f3a35908 138 sr_err("%s: ftdi_new failed.", __func__);
b908f067
UH
139 goto err_free_final_buf;
140 }
141
142 /* Check for the device and temporarily open it. */
74e5f12d 143 for (i = 0; i < ARRAY_SIZE(usb_pids); i++) {
f3a35908 144 sr_dbg("Probing for VID/PID %04x:%04x.", USB_VENDOR_ID,
74e5f12d 145 usb_pids[i]);
1644fb24 146 ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID,
74e5f12d
UH
147 usb_pids[i], USB_DESCRIPTION, NULL);
148 if (ret == 0) {
f3a35908 149 sr_dbg("Found LA8 device (%04x:%04x).",
74e5f12d 150 USB_VENDOR_ID, usb_pids[i]);
1644fb24 151 devc->usb_pid = usb_pids[i];
74e5f12d 152 }
b908f067 153 }
74e5f12d 154
1644fb24 155 if (devc->usb_pid == 0)
74e5f12d 156 goto err_free_ftdic;
b908f067
UH
157
158 /* Register the device with libsigrok. */
159 sdi = sr_dev_inst_new(0, SR_ST_INITIALIZING,
160 USB_VENDOR_NAME, USB_MODEL_NAME, USB_MODEL_VERSION);
161 if (!sdi) {
f3a35908 162 sr_err("%s: sr_dev_inst_new failed.", __func__);
b908f067
UH
163 goto err_close_ftdic;
164 }
f3a35908 165 sdi->driver = di;
1644fb24 166 sdi->priv = devc;
b908f067 167
1bec72d2 168 for (i = 0; chronovu_la8_probe_names[i]; i++) {
de6e0eca 169 if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
1bec72d2 170 chronovu_la8_probe_names[i])))
87ca93c5
BV
171 return NULL;
172 sdi->probes = g_slist_append(sdi->probes, probe);
173 }
174
c4f3ed4b 175 devices = g_slist_append(devices, sdi);
1644fb24 176 drvc->instances = g_slist_append(drvc->instances, sdi);
b908f067 177
b908f067 178 /* Close device. We'll reopen it again when we need it. */
1644fb24 179 (void) la8_close(devc); /* Log, but ignore errors. */
b908f067 180
c4f3ed4b 181 return devices;
b908f067
UH
182
183err_close_ftdic:
1644fb24 184 (void) la8_close(devc); /* Log, but ignore errors. */
b908f067 185err_free_ftdic:
4f9bf9a2 186 ftdi_free(devc->ftdic); /* NOT free() or g_free()! */
b908f067 187err_free_final_buf:
1644fb24
BV
188 g_free(devc->final_buf);
189err_free_devc:
190 g_free(devc);
b908f067
UH
191err_free_nothing:
192
c4f3ed4b 193 return NULL;
b908f067
UH
194}
195
811deee4
BV
196static GSList *hw_dev_list(void)
197{
0e94d524 198 return ((struct drv_context *)(di->priv))->instances;
811deee4
BV
199}
200
25a0f108 201static int hw_dev_open(struct sr_dev_inst *sdi)
b908f067 202{
1644fb24 203 struct dev_context *devc;
25a0f108 204 int ret;
b908f067 205
1644fb24 206 if (!(devc = sdi->priv)) {
f3a35908 207 sr_err("%s: sdi->priv was NULL.", __func__);
b908f067
UH
208 return SR_ERR_BUG;
209 }
210
f3a35908 211 sr_dbg("Opening LA8 device (%04x:%04x).", USB_VENDOR_ID,
1644fb24 212 devc->usb_pid);
b908f067
UH
213
214 /* Open the device. */
1644fb24
BV
215 if ((ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID,
216 devc->usb_pid, USB_DESCRIPTION, NULL)) < 0) {
f3a35908 217 sr_err("%s: ftdi_usb_open_desc: (%d) %s",
1644fb24
BV
218 __func__, ret, ftdi_get_error_string(devc->ftdic));
219 (void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
b908f067
UH
220 return SR_ERR;
221 }
f3a35908 222 sr_dbg("Device opened successfully.");
b908f067
UH
223
224 /* Purge RX/TX buffers in the FTDI chip. */
1644fb24 225 if ((ret = ftdi_usb_purge_buffers(devc->ftdic)) < 0) {
f3a35908 226 sr_err("%s: ftdi_usb_purge_buffers: (%d) %s",
1644fb24
BV
227 __func__, ret, ftdi_get_error_string(devc->ftdic));
228 (void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
b908f067
UH
229 goto err_dev_open_close_ftdic;
230 }
f3a35908 231 sr_dbg("FTDI buffers purged successfully.");
b908f067
UH
232
233 /* Enable flow control in the FTDI chip. */
1644fb24 234 if ((ret = ftdi_setflowctrl(devc->ftdic, SIO_RTS_CTS_HS)) < 0) {
f3a35908 235 sr_err("%s: ftdi_setflowcontrol: (%d) %s",
1644fb24
BV
236 __func__, ret, ftdi_get_error_string(devc->ftdic));
237 (void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
b908f067
UH
238 goto err_dev_open_close_ftdic;
239 }
f3a35908 240 sr_dbg("FTDI flow control enabled successfully.");
b908f067
UH
241
242 /* Wait 100ms. */
243 g_usleep(100 * 1000);
244
245 sdi->status = SR_ST_ACTIVE;
246
247 return SR_OK;
248
249err_dev_open_close_ftdic:
1644fb24 250 (void) la8_close(devc); /* Log, but ignore errors. */
b908f067
UH
251 return SR_ERR;
252}
253
25a0f108 254static int hw_dev_close(struct sr_dev_inst *sdi)
b908f067 255{
1644fb24 256 struct dev_context *devc;
b908f067 257
961009b0 258 devc = sdi->priv;
b908f067
UH
259
260 if (sdi->status == SR_ST_ACTIVE) {
f3a35908 261 sr_dbg("Status ACTIVE, closing device.");
1644fb24 262 (void) la8_close_usb_reset_sequencer(devc); /* Ignore errors. */
b908f067 263 } else {
f3a35908 264 sr_spew("Status not ACTIVE, nothing to do.");
b908f067
UH
265 }
266
267 sdi->status = SR_ST_INACTIVE;
268
1644fb24 269 g_free(devc->final_buf);
b908f067
UH
270
271 return SR_OK;
272}
273
274static int hw_cleanup(void)
275{
33e8a3c5
BV
276 if (!di->priv)
277 /* Can get called on an unused driver, doesn't matter. */
278 return SR_OK;
cf1ebd54 279
c4f3ed4b 280 clear_instances();
b908f067 281
c4f3ed4b 282 return SR_OK;
b908f067
UH
283}
284
1bec72d2 285static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
b908f067 286{
1644fb24 287 struct dev_context *devc;
b908f067 288
035a1078 289 switch (id) {
123e1313 290 case SR_CONF_SAMPLERATE:
6a2761fd 291 if (sdi) {
1644fb24 292 devc = sdi->priv;
1bec72d2 293 *data = g_variant_new_uint64(devc->cur_samplerate);
f3a35908 294 sr_spew("%s: Returning samplerate: %" PRIu64 "Hz.",
1644fb24 295 __func__, devc->cur_samplerate);
6a2761fd
BV
296 } else
297 return SR_ERR;
b908f067 298 break;
cfe8a84d
BV
299 default:
300 return SR_ERR_ARG;
b908f067
UH
301 }
302
6a2761fd 303 return SR_OK;
b908f067
UH
304}
305
1bec72d2 306static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
b908f067 307{
1644fb24 308 struct dev_context *devc;
b908f067 309
1644fb24 310 if (!(devc = sdi->priv)) {
f3a35908 311 sr_err("%s: sdi->priv was NULL.", __func__);
b908f067
UH
312 return SR_ERR_BUG;
313 }
314
035a1078 315 switch (id) {
1953564a 316 case SR_CONF_SAMPLERATE:
1bec72d2 317 if (set_samplerate(sdi, g_variant_get_uint64(data)) == SR_ERR) {
f3a35908 318 sr_err("%s: setting samplerate failed.", __func__);
b908f067
UH
319 return SR_ERR;
320 }
f3a35908 321 sr_dbg("SAMPLERATE = %" PRIu64, devc->cur_samplerate);
b908f067 322 break;
1953564a 323 case SR_CONF_LIMIT_MSEC:
1bec72d2 324 if (g_variant_get_uint64(data) == 0) {
f3a35908 325 sr_err("%s: LIMIT_MSEC can't be 0.", __func__);
b908f067
UH
326 return SR_ERR;
327 }
1bec72d2 328 devc->limit_msec = g_variant_get_uint64(data);
f3a35908 329 sr_dbg("LIMIT_MSEC = %" PRIu64, devc->limit_msec);
b908f067 330 break;
1953564a 331 case SR_CONF_LIMIT_SAMPLES:
1bec72d2 332 if (g_variant_get_uint64(data) < MIN_NUM_SAMPLES) {
f3a35908 333 sr_err("%s: LIMIT_SAMPLES too small.", __func__);
b908f067
UH
334 return SR_ERR;
335 }
1bec72d2 336 devc->limit_samples = g_variant_get_uint64(data);
f3a35908 337 sr_dbg("LIMIT_SAMPLES = %" PRIu64, devc->limit_samples);
b908f067
UH
338 break;
339 default:
340 /* Unknown capability, return SR_ERR. */
035a1078 341 sr_err("%s: Unknown capability: %d.", __func__, id);
b908f067
UH
342 return SR_ERR;
343 break;
344 }
345
346 return SR_OK;
347}
348
1bec72d2 349static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc 350{
1bec72d2
BV
351 GVariant *gvar;
352 GVariantBuilder gvb;
a1c743fc
BV
353
354 (void)sdi;
355
356 switch (key) {
9a6517d1 357 case SR_CONF_DEVICE_OPTIONS:
1bec72d2
BV
358 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
359 chronovu_la8_hwcaps, ARRAY_SIZE(chronovu_la8_hwcaps),
360 sizeof(int32_t));
9a6517d1 361 break;
a1c743fc
BV
362 case SR_CONF_SAMPLERATE:
363 fill_supported_samplerates_if_needed();
1bec72d2
BV
364 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
365 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
366 chronovu_la8_samplerates, ARRAY_SIZE(chronovu_la8_samplerates),
367 sizeof(uint64_t));
368 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
369 *data = g_variant_builder_end(&gvb);
a1c743fc 370 break;
c50277a6 371 case SR_CONF_TRIGGER_TYPE:
1bec72d2 372 *data = g_variant_new_string(TRIGGER_TYPE);
c50277a6 373 break;
a1c743fc
BV
374 default:
375 return SR_ERR_ARG;
376 }
377
378 return SR_OK;
379}
380
b908f067
UH
381static int receive_data(int fd, int revents, void *cb_data)
382{
383 int i, ret;
384 struct sr_dev_inst *sdi;
1644fb24 385 struct dev_context *devc;
b908f067 386
b908f067
UH
387 (void)fd;
388 (void)revents;
389
390 if (!(sdi = cb_data)) {
f3a35908 391 sr_err("%s: cb_data was NULL.", __func__);
b908f067
UH
392 return FALSE;
393 }
394
1644fb24 395 if (!(devc = sdi->priv)) {
f3a35908 396 sr_err("%s: sdi->priv was NULL.", __func__);
b908f067
UH
397 return FALSE;
398 }
399
1644fb24 400 if (!devc->ftdic) {
f3a35908 401 sr_err("%s: devc->ftdic was NULL.", __func__);
b908f067
UH
402 return FALSE;
403 }
404
405 /* Get one block of data. */
1644fb24 406 if ((ret = la8_read_block(devc)) < 0) {
f3a35908 407 sr_err("%s: la8_read_block error: %d.", __func__, ret);
3ffb6964 408 hw_dev_acquisition_stop(sdi, sdi);
b908f067
UH
409 return FALSE;
410 }
411
412 /* We need to get exactly NUM_BLOCKS blocks (i.e. 8MB) of data. */
1644fb24
BV
413 if (devc->block_counter != (NUM_BLOCKS - 1)) {
414 devc->block_counter++;
b908f067
UH
415 return TRUE;
416 }
417
f3a35908 418 sr_dbg("Sampling finished, sending data to session bus now.");
b908f067
UH
419
420 /* All data was received and demangled, send it to the session bus. */
421 for (i = 0; i < NUM_BLOCKS; i++)
1644fb24 422 send_block_to_session_bus(devc, i);
b908f067 423
3ffb6964 424 hw_dev_acquisition_stop(sdi, sdi);
b908f067 425
b908f067
UH
426 return TRUE;
427}
428
3ffb6964 429static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
f3a35908 430 void *cb_data)
b908f067 431{
1644fb24 432 struct dev_context *devc;
b908f067
UH
433 uint8_t buf[4];
434 int bytes_written;
435
1644fb24 436 if (!(devc = sdi->priv)) {
f3a35908 437 sr_err("%s: sdi->priv was NULL.", __func__);
b908f067
UH
438 return SR_ERR_BUG;
439 }
440
1644fb24 441 if (!devc->ftdic) {
f3a35908 442 sr_err("%s: devc->ftdic was NULL.", __func__);
b908f067
UH
443 return SR_ERR_BUG;
444 }
445
1644fb24
BV
446 devc->divcount = samplerate_to_divcount(devc->cur_samplerate);
447 if (devc->divcount == 0xff) {
f3a35908 448 sr_err("%s: Invalid divcount/samplerate.", __func__);
b908f067
UH
449 return SR_ERR;
450 }
451
014359e3 452 if (configure_probes(sdi) != SR_OK) {
f3a35908 453 sr_err("Failed to configure probes.");
014359e3
BV
454 return SR_ERR;
455 }
456
b908f067 457 /* Fill acquisition parameters into buf[]. */
1644fb24 458 buf[0] = devc->divcount;
b908f067 459 buf[1] = 0xff; /* This byte must always be 0xff. */
1644fb24
BV
460 buf[2] = devc->trigger_pattern;
461 buf[3] = devc->trigger_mask;
b908f067
UH
462
463 /* Start acquisition. */
1644fb24 464 bytes_written = la8_write(devc, buf, 4);
b908f067
UH
465
466 if (bytes_written < 0) {
f3a35908 467 sr_err("Acquisition failed to start: %d.", bytes_written);
b908f067
UH
468 return SR_ERR;
469 } else if (bytes_written != 4) {
f3a35908 470 sr_err("Acquisition failed to start: %d.", bytes_written);
afc88319 471 return SR_ERR;
b908f067
UH
472 }
473
4afdfd46 474 sr_dbg("Hardware acquisition started successfully.");
b908f067 475
3e9b7f9c 476 devc->cb_data = cb_data;
b908f067
UH
477
478 /* Send header packet to the session bus. */
4afdfd46 479 std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
b908f067 480
b908f067 481 /* Time when we should be done (for detecting trigger timeouts). */
1644fb24
BV
482 devc->done = (devc->divcount + 1) * 0.08388608 + time(NULL)
483 + devc->trigger_timeout;
484 devc->block_counter = 0;
485 devc->trigger_found = 0;
b908f067
UH
486
487 /* Hook up a dummy handler to receive data from the LA8. */
3ffb6964 488 sr_source_add(-1, G_IO_IN, 0, receive_data, (void *)sdi);
b908f067
UH
489
490 return SR_OK;
491}
492
69b07d14 493static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
b908f067 494{
b908f067
UH
495 struct sr_datafeed_packet packet;
496
afc88319 497 (void)sdi;
b908f067 498
f3a35908 499 sr_dbg("Stopping acquisition.");
7021f985
BV
500 sr_source_remove(-1);
501
b908f067 502 /* Send end packet to the session bus. */
f3a35908 503 sr_dbg("Sending SR_DF_END.");
b908f067
UH
504 packet.type = SR_DF_END;
505 sr_session_send(cb_data, &packet);
506
507 return SR_OK;
508}
509
510SR_PRIV struct sr_dev_driver chronovu_la8_driver_info = {
511 .name = "chronovu-la8",
512 .longname = "ChronoVu LA8",
513 .api_version = 1,
514 .init = hw_init,
515 .cleanup = hw_cleanup,
61136ea6 516 .scan = hw_scan,
811deee4
BV
517 .dev_list = hw_dev_list,
518 .dev_clear = clear_instances,
035a1078
BV
519 .config_get = config_get,
520 .config_set = config_set,
a1c743fc 521 .config_list = config_list,
b908f067
UH
522 .dev_open = hw_dev_open,
523 .dev_close = hw_dev_close,
b908f067
UH
524 .dev_acquisition_start = hw_dev_acquisition_start,
525 .dev_acquisition_stop = hw_dev_acquisition_stop,
1644fb24 526 .priv = NULL,
b908f067 527};