]> sigrok.org Git - libsigrok.git/blame - hardware/chronovu-la8/api.c
sr: use new info_get API call in session driver
[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"
b908f067
UH
26#include "driver.h"
27
765ef2f7
BV
28SR_PRIV struct sr_dev_driver chronovu_la8_driver_info;
29static struct sr_dev_driver *cdi = &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
UH
40/* Function prototypes. */
41static int hw_dev_acquisition_stop(int dev_index, void *cb_data);
42
c4f3ed4b
BV
43static void clear_instances(void)
44{
45 GSList *l;
46 struct sr_dev_inst *sdi;
47 struct context *ctx;
48
49 /* Properly close all devices. */
50 for (l = cdi->instances; l; l = l->next) {
51 if (!(sdi = l->data)) {
52 /* Log error, but continue cleaning up the rest. */
53 sr_err("la8: %s: sdi was NULL, continuing", __func__);
54 continue;
55 }
56 if (sdi->priv) {
57 ctx = sdi->priv;
58 ftdi_free(ctx->ftdic);
59 g_free(ctx);
60 }
61 sr_dev_inst_free(sdi);
62 }
63 g_slist_free(cdi->instances);
64 cdi->instances = NULL;
65
66}
67
40dda2c3 68static int hw_init(void)
61136ea6
BV
69{
70
71 /* Nothing to do. */
72
73 return SR_OK;
74}
75
c4f3ed4b 76static GSList *hw_scan(GSList *options)
b908f067
UH
77{
78 int ret;
79 struct sr_dev_inst *sdi;
80 struct context *ctx;
c4f3ed4b
BV
81 GSList *devices;
82
83 (void)options;
84 devices = NULL;
b908f067 85
b908f067
UH
86 /* Allocate memory for our private driver context. */
87 if (!(ctx = g_try_malloc(sizeof(struct context)))) {
88 sr_err("la8: %s: struct context malloc failed", __func__);
89 goto err_free_nothing;
90 }
91
92 /* Set some sane defaults. */
93 ctx->ftdic = NULL;
94 ctx->cur_samplerate = SR_MHZ(100); /* 100MHz == max. samplerate */
95 ctx->limit_msec = 0;
96 ctx->limit_samples = 0;
97 ctx->session_dev_id = NULL;
98 memset(ctx->mangled_buf, 0, BS);
99 ctx->final_buf = NULL;
100 ctx->trigger_pattern = 0x00; /* Value irrelevant, see trigger_mask. */
101 ctx->trigger_mask = 0x00; /* All probes are "don't care". */
102 ctx->trigger_timeout = 10; /* Default to 10s trigger timeout. */
103 ctx->trigger_found = 0;
104 ctx->done = 0;
105 ctx->block_counter = 0;
106 ctx->divcount = 0; /* 10ns sample period == 100MHz samplerate */
d67b663e 107 ctx->usb_pid = 0;
b908f067
UH
108
109 /* Allocate memory where we'll store the de-mangled data. */
110 if (!(ctx->final_buf = g_try_malloc(SDRAM_SIZE))) {
111 sr_err("la8: %s: final_buf malloc failed", __func__);
112 goto err_free_ctx;
113 }
114
115 /* Allocate memory for the FTDI context (ftdic) and initialize it. */
116 if (!(ctx->ftdic = ftdi_new())) {
117 sr_err("la8: %s: ftdi_new failed", __func__);
118 goto err_free_final_buf;
119 }
120
121 /* Check for the device and temporarily open it. */
74e5f12d
UH
122 for (i = 0; i < ARRAY_SIZE(usb_pids); i++) {
123 sr_dbg("la8: Probing for VID/PID %04x:%04x.", USB_VENDOR_ID,
124 usb_pids[i]);
125 ret = ftdi_usb_open_desc(ctx->ftdic, USB_VENDOR_ID,
126 usb_pids[i], USB_DESCRIPTION, NULL);
127 if (ret == 0) {
128 sr_dbg("la8: Found LA8 device (%04x:%04x).",
129 USB_VENDOR_ID, usb_pids[i]);
130 ctx->usb_pid = usb_pids[i];
131 }
b908f067 132 }
74e5f12d
UH
133
134 if (ctx->usb_pid == 0)
135 goto err_free_ftdic;
b908f067
UH
136
137 /* Register the device with libsigrok. */
138 sdi = sr_dev_inst_new(0, SR_ST_INITIALIZING,
139 USB_VENDOR_NAME, USB_MODEL_NAME, USB_MODEL_VERSION);
140 if (!sdi) {
141 sr_err("la8: %s: sr_dev_inst_new failed", __func__);
142 goto err_close_ftdic;
143 }
cfe8a84d 144 sdi->driver = cdi;
b908f067
UH
145 sdi->priv = ctx;
146
c4f3ed4b 147 devices = g_slist_append(devices, sdi);
765ef2f7 148 cdi->instances = g_slist_append(cdi->instances, sdi);
b908f067
UH
149
150 sr_spew("la8: Device init successful.");
151
152 /* Close device. We'll reopen it again when we need it. */
153 (void) la8_close(ctx); /* Log, but ignore errors. */
154
c4f3ed4b 155 return devices;
b908f067
UH
156
157err_close_ftdic:
158 (void) la8_close(ctx); /* Log, but ignore errors. */
159err_free_ftdic:
160 free(ctx->ftdic); /* NOT g_free()! */
161err_free_final_buf:
162 g_free(ctx->final_buf);
163err_free_ctx:
164 g_free(ctx);
165err_free_nothing:
166
c4f3ed4b 167 return NULL;
b908f067
UH
168}
169
170static int hw_dev_open(int dev_index)
171{
172 int ret;
173 struct sr_dev_inst *sdi;
174 struct context *ctx;
175
765ef2f7 176 if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) {
b908f067
UH
177 sr_err("la8: %s: sdi was NULL", __func__);
178 return SR_ERR_BUG;
179 }
180
181 if (!(ctx = sdi->priv)) {
182 sr_err("la8: %s: sdi->priv was NULL", __func__);
183 return SR_ERR_BUG;
184 }
185
186 sr_dbg("la8: Opening LA8 device (%04x:%04x).", USB_VENDOR_ID,
74e5f12d 187 ctx->usb_pid);
b908f067
UH
188
189 /* Open the device. */
190 if ((ret = ftdi_usb_open_desc(ctx->ftdic, USB_VENDOR_ID,
74e5f12d 191 ctx->usb_pid, USB_DESCRIPTION, NULL)) < 0) {
b908f067
UH
192 sr_err("la8: %s: ftdi_usb_open_desc: (%d) %s",
193 __func__, ret, ftdi_get_error_string(ctx->ftdic));
194 (void) la8_close_usb_reset_sequencer(ctx); /* Ignore errors. */
195 return SR_ERR;
196 }
197 sr_dbg("la8: Device opened successfully.");
198
199 /* Purge RX/TX buffers in the FTDI chip. */
200 if ((ret = ftdi_usb_purge_buffers(ctx->ftdic)) < 0) {
201 sr_err("la8: %s: ftdi_usb_purge_buffers: (%d) %s",
202 __func__, ret, ftdi_get_error_string(ctx->ftdic));
203 (void) la8_close_usb_reset_sequencer(ctx); /* Ignore errors. */
204 goto err_dev_open_close_ftdic;
205 }
206 sr_dbg("la8: FTDI buffers purged successfully.");
207
208 /* Enable flow control in the FTDI chip. */
209 if ((ret = ftdi_setflowctrl(ctx->ftdic, SIO_RTS_CTS_HS)) < 0) {
210 sr_err("la8: %s: ftdi_setflowcontrol: (%d) %s",
211 __func__, ret, ftdi_get_error_string(ctx->ftdic));
212 (void) la8_close_usb_reset_sequencer(ctx); /* Ignore errors. */
213 goto err_dev_open_close_ftdic;
214 }
215 sr_dbg("la8: FTDI flow control enabled successfully.");
216
217 /* Wait 100ms. */
218 g_usleep(100 * 1000);
219
220 sdi->status = SR_ST_ACTIVE;
221
222 return SR_OK;
223
224err_dev_open_close_ftdic:
225 (void) la8_close(ctx); /* Log, but ignore errors. */
226 return SR_ERR;
227}
228
229static int hw_dev_close(int dev_index)
230{
231 struct sr_dev_inst *sdi;
232 struct context *ctx;
233
765ef2f7 234 if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) {
b908f067
UH
235 sr_err("la8: %s: sdi was NULL", __func__);
236 return SR_ERR_BUG;
237 }
238
239 if (!(ctx = sdi->priv)) {
240 sr_err("la8: %s: sdi->priv was NULL", __func__);
241 return SR_ERR_BUG;
242 }
243
244 sr_dbg("la8: Closing device.");
245
246 if (sdi->status == SR_ST_ACTIVE) {
247 sr_dbg("la8: Status ACTIVE, closing device.");
248 /* TODO: Really ignore errors here, or return SR_ERR? */
249 (void) la8_close_usb_reset_sequencer(ctx); /* Ignore errors. */
250 } else {
251 sr_spew("la8: Status not ACTIVE, nothing to do.");
252 }
253
254 sdi->status = SR_ST_INACTIVE;
255
256 sr_dbg("la8: Freeing sample buffer.");
257 g_free(ctx->final_buf);
258
259 return SR_OK;
260}
261
262static int hw_cleanup(void)
263{
b908f067 264
c4f3ed4b 265 clear_instances();
b908f067 266
c4f3ed4b 267 return SR_OK;
b908f067
UH
268}
269
6a2761fd
BV
270static int hw_info_get(int info_id, const void **data,
271 const struct sr_dev_inst *sdi)
b908f067 272{
b908f067 273 struct context *ctx;
b908f067 274
6a2761fd 275 switch (info_id) {
b908f067 276 case SR_DI_INST:
6a2761fd 277 *data = sdi;
b908f067
UH
278 sr_spew("la8: %s: Returning sdi.", __func__);
279 break;
7566601c
BV
280 case SR_DI_HWCAPS:
281 *data = hwcaps;
282 break;
b908f067 283 case SR_DI_NUM_PROBES:
6a2761fd 284 *data = GINT_TO_POINTER(NUM_PROBES);
b908f067
UH
285 sr_spew("la8: %s: Returning number of probes: %d.", __func__,
286 NUM_PROBES);
287 break;
288 case SR_DI_PROBE_NAMES:
6a2761fd 289 *data = probe_names;
b908f067
UH
290 sr_spew("la8: %s: Returning probenames.", __func__);
291 break;
292 case SR_DI_SAMPLERATES:
293 fill_supported_samplerates_if_needed();
6a2761fd 294 *data = &samplerates;
b908f067
UH
295 sr_spew("la8: %s: Returning samplerates.", __func__);
296 break;
297 case SR_DI_TRIGGER_TYPES:
6a2761fd 298 *data = (char *)TRIGGER_TYPES;
b908f067
UH
299 sr_spew("la8: %s: Returning trigger types: %s.", __func__,
300 TRIGGER_TYPES);
301 break;
302 case SR_DI_CUR_SAMPLERATE:
6a2761fd
BV
303 if (sdi) {
304 ctx = sdi->priv;
305 *data = &ctx->cur_samplerate;
306 sr_spew("la8: %s: Returning samplerate: %" PRIu64 "Hz.",
307 __func__, ctx->cur_samplerate);
308 } else
309 return SR_ERR;
b908f067 310 break;
cfe8a84d
BV
311 default:
312 return SR_ERR_ARG;
b908f067
UH
313 }
314
6a2761fd 315 return SR_OK;
b908f067
UH
316}
317
318static int hw_dev_status_get(int dev_index)
319{
320 struct sr_dev_inst *sdi;
321
765ef2f7 322 if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) {
b908f067
UH
323 sr_err("la8: %s: sdi was NULL, device not found", __func__);
324 return SR_ST_NOT_FOUND;
325 }
326
327 sr_dbg("la8: Returning status: %d.", sdi->status);
328
329 return sdi->status;
330}
331
b908f067
UH
332static int hw_dev_config_set(int dev_index, int hwcap, const void *value)
333{
334 struct sr_dev_inst *sdi;
335 struct context *ctx;
336
765ef2f7 337 if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) {
b908f067
UH
338 sr_err("la8: %s: sdi was NULL", __func__);
339 return SR_ERR_BUG;
340 }
341
342 if (!(ctx = sdi->priv)) {
343 sr_err("la8: %s: sdi->priv was NULL", __func__);
344 return SR_ERR_BUG;
345 }
346
347 sr_spew("la8: %s: dev_index %d, hwcap %d", __func__, dev_index, hwcap);
348
349 switch (hwcap) {
350 case SR_HWCAP_SAMPLERATE:
351 if (set_samplerate(sdi, *(const uint64_t *)value) == SR_ERR) {
352 sr_err("la8: %s: setting samplerate failed.", __func__);
353 return SR_ERR;
354 }
355 sr_dbg("la8: SAMPLERATE = %" PRIu64, ctx->cur_samplerate);
356 break;
357 case SR_HWCAP_PROBECONFIG:
358 if (configure_probes(ctx, (const GSList *)value) != SR_OK) {
359 sr_err("la8: %s: probe config failed.", __func__);
360 return SR_ERR;
361 }
362 break;
363 case SR_HWCAP_LIMIT_MSEC:
364 if (*(const uint64_t *)value == 0) {
365 sr_err("la8: %s: LIMIT_MSEC can't be 0.", __func__);
366 return SR_ERR;
367 }
368 ctx->limit_msec = *(const uint64_t *)value;
369 sr_dbg("la8: LIMIT_MSEC = %" PRIu64, ctx->limit_msec);
370 break;
371 case SR_HWCAP_LIMIT_SAMPLES:
372 if (*(const uint64_t *)value < MIN_NUM_SAMPLES) {
373 sr_err("la8: %s: LIMIT_SAMPLES too small.", __func__);
374 return SR_ERR;
375 }
376 ctx->limit_samples = *(const uint64_t *)value;
377 sr_dbg("la8: LIMIT_SAMPLES = %" PRIu64, ctx->limit_samples);
378 break;
379 default:
380 /* Unknown capability, return SR_ERR. */
381 sr_err("la8: %s: Unknown capability.", __func__);
382 return SR_ERR;
383 break;
384 }
385
386 return SR_OK;
387}
388
389static int receive_data(int fd, int revents, void *cb_data)
390{
391 int i, ret;
392 struct sr_dev_inst *sdi;
393 struct context *ctx;
394
395 /* Avoid compiler errors. */
396 (void)fd;
397 (void)revents;
398
399 if (!(sdi = cb_data)) {
400 sr_err("la8: %s: cb_data was NULL", __func__);
401 return FALSE;
402 }
403
404 if (!(ctx = sdi->priv)) {
405 sr_err("la8: %s: sdi->priv was NULL", __func__);
406 return FALSE;
407 }
408
409 if (!ctx->ftdic) {
410 sr_err("la8: %s: ctx->ftdic was NULL", __func__);
411 return FALSE;
412 }
413
414 /* Get one block of data. */
415 if ((ret = la8_read_block(ctx)) < 0) {
416 sr_err("la8: %s: la8_read_block error: %d", __func__, ret);
417 hw_dev_acquisition_stop(sdi->index, sdi);
418 return FALSE;
419 }
420
421 /* We need to get exactly NUM_BLOCKS blocks (i.e. 8MB) of data. */
422 if (ctx->block_counter != (NUM_BLOCKS - 1)) {
423 ctx->block_counter++;
424 return TRUE;
425 }
426
427 sr_dbg("la8: Sampling finished, sending data to session bus now.");
428
429 /* All data was received and demangled, send it to the session bus. */
430 for (i = 0; i < NUM_BLOCKS; i++)
431 send_block_to_session_bus(ctx, i);
432
433 hw_dev_acquisition_stop(sdi->index, sdi);
434
435 // return FALSE; /* FIXME? */
436 return TRUE;
437}
438
439static int hw_dev_acquisition_start(int dev_index, void *cb_data)
440{
441 struct sr_dev_inst *sdi;
442 struct context *ctx;
443 struct sr_datafeed_packet packet;
444 struct sr_datafeed_header header;
445 struct sr_datafeed_meta_logic meta;
446 uint8_t buf[4];
447 int bytes_written;
448
765ef2f7 449 if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) {
b908f067
UH
450 sr_err("la8: %s: sdi was NULL", __func__);
451 return SR_ERR_BUG;
452 }
453
454 if (!(ctx = sdi->priv)) {
455 sr_err("la8: %s: sdi->priv was NULL", __func__);
456 return SR_ERR_BUG;
457 }
458
459 if (!ctx->ftdic) {
460 sr_err("la8: %s: ctx->ftdic was NULL", __func__);
461 return SR_ERR_BUG;
462 }
463
464 ctx->divcount = samplerate_to_divcount(ctx->cur_samplerate);
465 if (ctx->divcount == 0xff) {
466 sr_err("la8: %s: invalid divcount/samplerate", __func__);
467 return SR_ERR;
468 }
469
470 sr_dbg("la8: Starting acquisition.");
471
472 /* Fill acquisition parameters into buf[]. */
473 buf[0] = ctx->divcount;
474 buf[1] = 0xff; /* This byte must always be 0xff. */
475 buf[2] = ctx->trigger_pattern;
476 buf[3] = ctx->trigger_mask;
477
478 /* Start acquisition. */
479 bytes_written = la8_write(ctx, buf, 4);
480
481 if (bytes_written < 0) {
482 sr_err("la8: Acquisition failed to start.");
483 return SR_ERR;
484 } else if (bytes_written != 4) {
485 sr_err("la8: Acquisition failed to start.");
486 return SR_ERR; /* TODO: Other error and return code? */
487 }
488
489 sr_dbg("la8: Acquisition started successfully.");
490
491 ctx->session_dev_id = cb_data;
492
493 /* Send header packet to the session bus. */
494 sr_dbg("la8: Sending SR_DF_HEADER.");
495 packet.type = SR_DF_HEADER;
496 packet.payload = &header;
497 header.feed_version = 1;
498 gettimeofday(&header.starttime, NULL);
499 sr_session_send(ctx->session_dev_id, &packet);
500
501 /* Send metadata about the SR_DF_LOGIC packets to come. */
502 packet.type = SR_DF_META_LOGIC;
503 packet.payload = &meta;
504 meta.samplerate = ctx->cur_samplerate;
505 meta.num_probes = NUM_PROBES;
506 sr_session_send(ctx->session_dev_id, &packet);
507
508 /* Time when we should be done (for detecting trigger timeouts). */
509 ctx->done = (ctx->divcount + 1) * 0.08388608 + time(NULL)
510 + ctx->trigger_timeout;
511 ctx->block_counter = 0;
512 ctx->trigger_found = 0;
513
514 /* Hook up a dummy handler to receive data from the LA8. */
515 sr_source_add(-1, G_IO_IN, 0, receive_data, sdi);
516
517 return SR_OK;
518}
519
520static int hw_dev_acquisition_stop(int dev_index, void *cb_data)
521{
522 struct sr_dev_inst *sdi;
523 struct context *ctx;
524 struct sr_datafeed_packet packet;
525
526 sr_dbg("la8: Stopping acquisition.");
527
765ef2f7 528 if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) {
b908f067
UH
529 sr_err("la8: %s: sdi was NULL", __func__);
530 return SR_ERR_BUG;
531 }
532
533 if (!(ctx = sdi->priv)) {
534 sr_err("la8: %s: sdi->priv was NULL", __func__);
535 return SR_ERR_BUG;
536 }
537
538 /* Send end packet to the session bus. */
539 sr_dbg("la8: Sending SR_DF_END.");
540 packet.type = SR_DF_END;
541 sr_session_send(cb_data, &packet);
542
543 return SR_OK;
544}
545
546SR_PRIV struct sr_dev_driver chronovu_la8_driver_info = {
547 .name = "chronovu-la8",
548 .longname = "ChronoVu LA8",
549 .api_version = 1,
550 .init = hw_init,
551 .cleanup = hw_cleanup,
61136ea6 552 .scan = hw_scan,
b908f067
UH
553 .dev_open = hw_dev_open,
554 .dev_close = hw_dev_close,
6a2761fd 555 .info_get = hw_info_get,
b908f067 556 .dev_status_get = hw_dev_status_get,
b908f067
UH
557 .dev_config_set = hw_dev_config_set,
558 .dev_acquisition_start = hw_dev_acquisition_start,
559 .dev_acquisition_stop = hw_dev_acquisition_stop,
765ef2f7 560 .instances = NULL,
b908f067 561};