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