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