]> sigrok.org Git - libsigrok.git/blame - hardware/demo/demo.c
drivers: implement config_list()
[libsigrok.git] / hardware / demo / demo.c
CommitLineData
6239c175
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
fc96e6f8 5 * Copyright (C) 2011 Olivier Fauchon <olivier@aixmarseille.com>
c216d623 6 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
6239c175
UH
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include <stdlib.h>
85b5af06 24#include <unistd.h>
6239c175 25#include <string.h>
d35aaf02
UH
26#ifdef _WIN32
27#include <io.h>
28#include <fcntl.h>
29#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
30#endif
45c59c8b
BV
31#include "libsigrok.h"
32#include "libsigrok-internal.h"
6239c175 33
92bcedf6
UH
34/* Message logging helpers with driver-specific prefix string. */
35#define DRIVER_LOG_DOMAIN "demo: "
36#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
37#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
38#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
39#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
40#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
41#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
42
c03ed397 43/* TODO: Number of probes should be configurable. */
e15f48c2 44#define NUM_PROBES 8
c03ed397 45
e15f48c2 46#define DEMONAME "Demo device"
c03ed397
UH
47
48/* The size of chunks to send through the session bus. */
49/* TODO: Should be configurable. */
e15f48c2 50#define BUFSIZE 4096
85b5af06 51
0d31276b 52/* Supported patterns which we can generate */
e15f48c2 53enum {
0d31276b
UH
54 /**
55 * Pattern which spells "sigrok" using '0's (with '1's as "background")
56 * when displayed using the 'bits' output format.
57 */
c8f4624d 58 PATTERN_SIGROK,
0d31276b 59
c03ed397 60 /** Pattern which consists of (pseudo-)random values on all probes. */
c8f4624d 61 PATTERN_RANDOM,
0d31276b
UH
62
63 /**
64 * Pattern which consists of incrementing numbers.
65 * TODO: Better description.
66 */
c8f4624d 67 PATTERN_INC,
c03ed397
UH
68
69 /** Pattern where all probes have a low logic state. */
70 PATTERN_ALL_LOW,
71
72 /** Pattern where all probes have a high logic state. */
73 PATTERN_ALL_HIGH,
e15f48c2 74};
85b5af06 75
b4750a3a
BV
76/* Private, per-device-instance driver context. */
77struct dev_context {
e15f48c2 78 int pipe_fds[2];
249ae2be 79 GIOChannel *channels[2];
e15f48c2 80 uint8_t sample_generator;
e15f48c2 81 uint64_t samples_counter;
3cd3a20b 82 void *session_dev_id;
3b203673 83 int64_t starttime;
e15f48c2 84};
85b5af06 85
915f7cc8 86static const int hwcaps[] = {
1953564a
BV
87 SR_CONF_LOGIC_ANALYZER,
88 SR_CONF_DEMO_DEV,
89 SR_CONF_SAMPLERATE,
90 SR_CONF_PATTERN_MODE,
91 SR_CONF_LIMIT_SAMPLES,
92 SR_CONF_LIMIT_MSEC,
93 SR_CONF_CONTINUOUS,
6239c175
UH
94};
95
a533743d 96static const struct sr_samplerates samplerates = {
c9140419 97 SR_HZ(1),
59df0c77 98 SR_GHZ(1),
c9140419 99 SR_HZ(1),
4bfbf9fc
BV
100 NULL,
101};
102
c8f4624d 103static const char *pattern_strings[] = {
c03ed397 104 "sigrok",
e15f48c2
BV
105 "random",
106 "incremental",
c03ed397
UH
107 "all-low",
108 "all-high",
02440dd8 109 NULL,
85b5af06
UH
110};
111
d261dbbf 112/* We name the probes 0-7 on our demo driver. */
464d12c7 113static const char *probe_names[NUM_PROBES + 1] = {
78693401 114 "0", "1", "2", "3", "4", "5", "6", "7",
464d12c7
KS
115 NULL,
116};
117
c8f4624d 118static uint8_t pattern_sigrok[] = {
917e0e71
BV
119 0x4c, 0x92, 0x92, 0x92, 0x64, 0x00, 0x00, 0x00,
120 0x82, 0xfe, 0xfe, 0x82, 0x00, 0x00, 0x00, 0x00,
121 0x7c, 0x82, 0x82, 0x92, 0x74, 0x00, 0x00, 0x00,
122 0xfe, 0x12, 0x12, 0x32, 0xcc, 0x00, 0x00, 0x00,
123 0x7c, 0x82, 0x82, 0x82, 0x7c, 0x00, 0x00, 0x00,
124 0xfe, 0x10, 0x28, 0x44, 0x82, 0x00, 0x00, 0x00,
125 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
126 0xbe, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
127};
128
ea9cfed7
UH
129/* Private, per-device-instance driver context. */
130/* TODO: struct context as with the other drivers. */
131
e7eb703f 132/* List of struct sr_dev_inst, maintained by dev_open()/dev_close(). */
dcf03d6d 133SR_PRIV struct sr_dev_driver demo_driver_info;
a873c594 134static struct sr_dev_driver *di = &demo_driver_info;
59df0c77 135static uint64_t cur_samplerate = SR_KHZ(200);
b9cc3629
BV
136static uint64_t limit_samples = 0;
137static uint64_t limit_msec = 0;
c8f4624d 138static int default_pattern = PATTERN_SIGROK;
6239c175 139
69b07d14 140static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
6239c175 141
eebb6067
UH
142static int clear_instances(void)
143{
144 /* Nothing needed so far. */
145
146 return SR_OK;
147}
148
34f06b90 149static int hw_init(struct sr_context *sr_ctx)
61136ea6 150{
b4750a3a 151 struct drv_context *drvc;
61136ea6 152
b4750a3a 153 if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
92bcedf6 154 sr_err("Driver context malloc failed.");
886a52b6 155 return SR_ERR_MALLOC;
b4750a3a 156 }
1ebe4b4e 157 drvc->sr_ctx = sr_ctx;
a873c594 158 di->priv = drvc;
61136ea6
BV
159
160 return SR_OK;
161}
162
067d0716 163static GSList *hw_scan(GSList *options)
6239c175 164{
d68e2d1a 165 struct sr_dev_inst *sdi;
87ca93c5 166 struct sr_probe *probe;
b4750a3a 167 struct drv_context *drvc;
067d0716 168 GSList *devices;
87ca93c5 169 int i;
067d0716
BV
170
171 (void)options;
64d33dc2 172
a873c594 173 drvc = di->priv;
067d0716 174 devices = NULL;
85b5af06 175
d3683c42 176 sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, DEMONAME, NULL, NULL);
c03ed397 177 if (!sdi) {
92bcedf6 178 sr_err("%s: sr_dev_inst_new failed", __func__);
85b5af06 179 return 0;
c03ed397 180 }
a873c594 181 sdi->driver = di;
e15f48c2 182
87ca93c5 183 for (i = 0; probe_names[i]; i++) {
de6e0eca 184 if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
87ca93c5
BV
185 probe_names[i])))
186 return NULL;
187 sdi->probes = g_slist_append(sdi->probes, probe);
188 }
189
067d0716 190 devices = g_slist_append(devices, sdi);
b4750a3a 191 drvc->instances = g_slist_append(drvc->instances, sdi);
85b5af06 192
067d0716 193 return devices;
6239c175
UH
194}
195
811deee4
BV
196static GSList *hw_dev_list(void)
197{
198 struct drv_context *drvc;
199
a873c594 200 drvc = di->priv;
811deee4
BV
201
202 return drvc->instances;
203}
204
25a0f108 205static int hw_dev_open(struct sr_dev_inst *sdi)
6239c175 206{
25a0f108 207 (void)sdi;
6239c175
UH
208
209 /* Nothing needed so far. */
697785d1 210
e46b8fb1 211 return SR_OK;
6239c175
UH
212}
213
25a0f108 214static int hw_dev_close(struct sr_dev_inst *sdi)
6239c175 215{
25a0f108 216 (void)sdi;
6239c175
UH
217
218 /* Nothing needed so far. */
697785d1
UH
219
220 return SR_OK;
6239c175
UH
221}
222
57ab7d9f 223static int hw_cleanup(void)
6239c175
UH
224{
225 /* Nothing needed so far. */
57ab7d9f 226 return SR_OK;
6239c175
UH
227}
228
035a1078 229static int config_get(int id, const void **data, const struct sr_dev_inst *sdi)
6239c175 230{
6f57fd96
BV
231 (void)sdi;
232
035a1078 233 switch (id) {
46c7a4da
BV
234 case SR_DI_HWCAPS:
235 *data = hwcaps;
236 break;
4bfbf9fc 237 case SR_DI_SAMPLERATES:
dfb0fa1a 238 *data = &samplerates;
4bfbf9fc 239 break;
5a2326a7 240 case SR_DI_CUR_SAMPLERATE:
dfb0fa1a 241 *data = &cur_samplerate;
6239c175 242 break;
eb0a3731 243 case SR_DI_PATTERNS:
dfb0fa1a 244 *data = &pattern_strings;
e15f48c2 245 break;
7dfcf010
BV
246 default:
247 return SR_ERR_ARG;
6239c175
UH
248 }
249
dfb0fa1a 250 return SR_OK;
6239c175
UH
251}
252
035a1078 253static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
6239c175
UH
254{
255 int ret;
1b79df2f 256 const char *stropt;
6239c175 257
6f4b1868 258 (void)sdi;
6239c175 259
035a1078 260 if (id == SR_CONF_SAMPLERATE) {
1b79df2f 261 cur_samplerate = *(const uint64_t *)value;
92bcedf6 262 sr_dbg("%s: setting samplerate to %" PRIu64, __func__,
6f422264 263 cur_samplerate);
e46b8fb1 264 ret = SR_OK;
035a1078 265 } else if (id == SR_CONF_LIMIT_SAMPLES) {
8489264f 266 limit_msec = 0;
1b79df2f 267 limit_samples = *(const uint64_t *)value;
92bcedf6 268 sr_dbg("%s: setting limit_samples to %" PRIu64, __func__,
6f422264 269 limit_samples);
e46b8fb1 270 ret = SR_OK;
035a1078 271 } else if (id == SR_CONF_LIMIT_MSEC) {
1b79df2f 272 limit_msec = *(const uint64_t *)value;
8489264f 273 limit_samples = 0;
92bcedf6 274 sr_dbg("%s: setting limit_msec to %" PRIu64, __func__,
6f422264 275 limit_msec);
e46b8fb1 276 ret = SR_OK;
035a1078 277 } else if (id == SR_CONF_PATTERN_MODE) {
e15f48c2 278 stropt = value;
c03ed397
UH
279 ret = SR_OK;
280 if (!strcmp(stropt, "sigrok")) {
281 default_pattern = PATTERN_SIGROK;
282 } else if (!strcmp(stropt, "random")) {
c8f4624d 283 default_pattern = PATTERN_RANDOM;
e15f48c2 284 } else if (!strcmp(stropt, "incremental")) {
c8f4624d 285 default_pattern = PATTERN_INC;
c03ed397
UH
286 } else if (!strcmp(stropt, "all-low")) {
287 default_pattern = PATTERN_ALL_LOW;
288 } else if (!strcmp(stropt, "all-high")) {
289 default_pattern = PATTERN_ALL_HIGH;
e15f48c2 290 } else {
e46b8fb1 291 ret = SR_ERR;
e15f48c2 292 }
92bcedf6 293 sr_dbg("%s: setting pattern to %d", __func__, default_pattern);
6239c175 294 } else {
e46b8fb1 295 ret = SR_ERR;
6239c175
UH
296 }
297
298 return ret;
299}
300
a1c743fc
BV
301static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
302{
303
304 (void)sdi;
305
306 switch (key) {
307 case SR_CONF_SAMPLERATE:
308 *data = &samplerates;
309 break;
310 default:
311 return SR_ERR_ARG;
312 }
313
314 return SR_OK;
315}
316
3b203673
AG
317static void samples_generator(uint8_t *buf, uint64_t size,
318 struct dev_context *devc)
85b5af06 319{
cddd1c5f 320 static uint64_t p = 0;
cddd1c5f 321 uint64_t i;
85b5af06 322
c03ed397 323 /* TODO: Needed? */
5096c6a6 324 memset(buf, 0, size);
85b5af06 325
b4750a3a 326 switch (devc->sample_generator) {
c03ed397 327 case PATTERN_SIGROK: /* sigrok pattern */
917e0e71 328 for (i = 0; i < size; i++) {
c8f4624d 329 *(buf + i) = ~(pattern_sigrok[p] >> 1);
917e0e71
BV
330 if (++p == 64)
331 p = 0;
332 }
333 break;
c8f4624d 334 case PATTERN_RANDOM: /* Random */
5096c6a6
UH
335 for (i = 0; i < size; i++)
336 *(buf + i) = (uint8_t)(rand() & 0xff);
85b5af06 337 break;
c8f4624d 338 case PATTERN_INC: /* Simple increment */
5096c6a6 339 for (i = 0; i < size; i++)
85b5af06
UH
340 *(buf + i) = i;
341 break;
c03ed397 342 case PATTERN_ALL_LOW: /* All probes are low */
5a9660dd 343 memset(buf, 0x00, size);
c03ed397
UH
344 break;
345 case PATTERN_ALL_HIGH: /* All probes are high */
5a9660dd 346 memset(buf, 0xff, size);
c03ed397
UH
347 break;
348 default:
92bcedf6 349 sr_err("Unknown pattern: %d.", devc->sample_generator);
c03ed397 350 break;
85b5af06
UH
351 }
352}
353
85b5af06 354/* Callback handling data */
1f9813eb 355static int receive_data(int fd, int revents, void *cb_data)
85b5af06 356{
b4750a3a 357 struct dev_context *devc = cb_data;
b9c735a2 358 struct sr_datafeed_packet packet;
9c939c51 359 struct sr_datafeed_logic logic;
3b203673
AG
360 uint8_t buf[BUFSIZE];
361 static uint64_t samples_to_send, expected_samplenum, sending_now;
362 int64_t time, elapsed;
1924f59f 363
cb93f8a9
UH
364 (void)fd;
365 (void)revents;
1924f59f 366
3b203673
AG
367 /* How many "virtual" samples should we have collected by now? */
368 time = g_get_monotonic_time();
369 elapsed = time - devc->starttime;
370 expected_samplenum = elapsed * cur_samplerate / 1000000;
371 /* Of those, how many do we still have to send? */
372 samples_to_send = expected_samplenum - devc->samples_counter;
373
374 if (limit_samples) {
375 samples_to_send = MIN(samples_to_send,
376 limit_samples - devc->samples_counter);
377 }
85b5af06 378
3b203673
AG
379 while (samples_to_send > 0) {
380 sending_now = MIN(samples_to_send, sizeof(buf));
381 samples_to_send -= sending_now;
382 samples_generator(buf, sending_now, devc);
383
384 packet.type = SR_DF_LOGIC;
385 packet.payload = &logic;
386 logic.length = sending_now;
387 logic.unitsize = 1;
388 logic.data = buf;
389 sr_session_send(devc->session_dev_id, &packet);
390 devc->samples_counter += sending_now;
391 }
392
35e199da
UH
393 if (limit_samples && devc->samples_counter >= limit_samples) {
394 sr_info("Requested number of samples reached.");
c216d623
AG
395 hw_dev_acquisition_stop(NULL, cb_data);
396 return TRUE;
85b5af06 397 }
1924f59f 398
85b5af06
UH
399 return TRUE;
400}
401
3ffb6964
BV
402static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
403 void *cb_data)
6239c175 404{
b9c735a2
UH
405 struct sr_datafeed_packet *packet;
406 struct sr_datafeed_header *header;
b4750a3a 407 struct dev_context *devc;
6239c175 408
3ffb6964
BV
409 (void)sdi;
410
49145a63
AG
411 sr_dbg("Starting acquisition.");
412
b4750a3a
BV
413 /* TODO: 'devc' is never g_free()'d? */
414 if (!(devc = g_try_malloc(sizeof(struct dev_context)))) {
92bcedf6 415 sr_err("%s: devc malloc failed", __func__);
e46b8fb1 416 return SR_ERR_MALLOC;
27a3a6fe 417 }
85b5af06 418
b4750a3a
BV
419 devc->sample_generator = default_pattern;
420 devc->session_dev_id = cb_data;
421 devc->samples_counter = 0;
85b5af06 422
3b203673
AG
423 /*
424 * Setting two channels connected by a pipe is a remnant from when the
425 * demo driver generated data in a thread, and collected and sent the
426 * data in the main program loop.
427 * They are kept here because it provides a convenient way of setting
428 * up a timeout-based polling mechanism.
429 */
b4750a3a 430 if (pipe(devc->pipe_fds)) {
c03ed397 431 /* TODO: Better error message. */
92bcedf6 432 sr_err("%s: pipe() failed", __func__);
e46b8fb1 433 return SR_ERR;
c03ed397 434 }
85b5af06 435
b4750a3a
BV
436 devc->channels[0] = g_io_channel_unix_new(devc->pipe_fds[0]);
437 devc->channels[1] = g_io_channel_unix_new(devc->pipe_fds[1]);
d35aaf02 438
b4750a3a 439 g_io_channel_set_flags(devc->channels[0], G_IO_FLAG_NONBLOCK, NULL);
e6e8f8e0 440
d35aaf02 441 /* Set channel encoding to binary (default is UTF-8). */
b4750a3a
BV
442 g_io_channel_set_encoding(devc->channels[0], NULL, NULL);
443 g_io_channel_set_encoding(devc->channels[1], NULL, NULL);
d35aaf02
UH
444
445 /* Make channels to unbuffered. */
b4750a3a
BV
446 g_io_channel_set_buffered(devc->channels[0], FALSE);
447 g_io_channel_set_buffered(devc->channels[1], FALSE);
d35aaf02 448
b4750a3a
BV
449 sr_session_source_add_channel(devc->channels[0], G_IO_IN | G_IO_ERR,
450 40, receive_data, devc);
85b5af06 451
27a3a6fe 452 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
92bcedf6 453 sr_err("%s: packet malloc failed", __func__);
e46b8fb1 454 return SR_ERR_MALLOC;
27a3a6fe
UH
455 }
456
457 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
92bcedf6 458 sr_err("%s: header malloc failed", __func__);
27a3a6fe
UH
459 return SR_ERR_MALLOC;
460 }
6239c175 461
5a2326a7 462 packet->type = SR_DF_HEADER;
9c939c51 463 packet->payload = header;
6239c175
UH
464 header->feed_version = 1;
465 gettimeofday(&header->starttime, NULL);
b4750a3a 466 sr_session_send(devc->session_dev_id, packet);
f366e86c 467
3b203673
AG
468 /* We use this timestamp to decide how many more samples to send. */
469 devc->starttime = g_get_monotonic_time();
470
27a3a6fe
UH
471 g_free(header);
472 g_free(packet);
6239c175 473
e46b8fb1 474 return SR_OK;
6239c175
UH
475}
476
69b07d14 477static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
6239c175 478{
7fd3e859 479 struct dev_context *devc;
c216d623 480 struct sr_datafeed_packet packet;
7fd3e859 481
c216d623 482 (void)sdi;
6239c175 483
c216d623 484 devc = cb_data;
7fd3e859 485
49145a63
AG
486 sr_dbg("Stopping aquisition.");
487
7fd3e859 488 sr_session_source_remove_channel(devc->channels[0]);
c216d623
AG
489 g_io_channel_shutdown(devc->channels[0], FALSE, NULL);
490
491 /* Send last packet. */
492 packet.type = SR_DF_END;
493 sr_session_send(devc->session_dev_id, &packet);
7fd3e859 494
3010f21c 495 return SR_OK;
6239c175
UH
496}
497
c09f0b57 498SR_PRIV struct sr_dev_driver demo_driver_info = {
e519ba86
UH
499 .name = "demo",
500 .longname = "Demo driver and pattern generator",
501 .api_version = 1,
502 .init = hw_init,
503 .cleanup = hw_cleanup,
61136ea6 504 .scan = hw_scan,
811deee4 505 .dev_list = hw_dev_list,
eebb6067 506 .dev_clear = clear_instances,
035a1078
BV
507 .config_get = config_get,
508 .config_set = config_set,
a1c743fc 509 .config_list = config_list,
e7eb703f
UH
510 .dev_open = hw_dev_open,
511 .dev_close = hw_dev_close,
69040b7c
UH
512 .dev_acquisition_start = hw_dev_acquisition_start,
513 .dev_acquisition_stop = hw_dev_acquisition_stop,
b4750a3a 514 .priv = NULL,
6239c175 515};