]> sigrok.org Git - libsigrok.git/blame - hardware/demo/demo.c
alsa: Use message logging helpers.
[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>
6239c175
UH
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdlib.h>
85b5af06 23#include <unistd.h>
6239c175 24#include <string.h>
d35aaf02
UH
25#ifdef _WIN32
26#include <io.h>
27#include <fcntl.h>
28#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
29#endif
45c59c8b
BV
30#include "libsigrok.h"
31#include "libsigrok-internal.h"
6239c175 32
92bcedf6
UH
33/* Message logging helpers with driver-specific prefix string. */
34#define DRIVER_LOG_DOMAIN "demo: "
35#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
36#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
37#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
38#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
39#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
40#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
41
c03ed397 42/* TODO: Number of probes should be configurable. */
e15f48c2 43#define NUM_PROBES 8
c03ed397 44
e15f48c2 45#define DEMONAME "Demo device"
c03ed397
UH
46
47/* The size of chunks to send through the session bus. */
48/* TODO: Should be configurable. */
e15f48c2 49#define BUFSIZE 4096
85b5af06 50
0d31276b 51/* Supported patterns which we can generate */
e15f48c2 52enum {
0d31276b
UH
53 /**
54 * Pattern which spells "sigrok" using '0's (with '1's as "background")
55 * when displayed using the 'bits' output format.
56 */
c8f4624d 57 PATTERN_SIGROK,
0d31276b 58
c03ed397 59 /** Pattern which consists of (pseudo-)random values on all probes. */
c8f4624d 60 PATTERN_RANDOM,
0d31276b
UH
61
62 /**
63 * Pattern which consists of incrementing numbers.
64 * TODO: Better description.
65 */
c8f4624d 66 PATTERN_INC,
c03ed397
UH
67
68 /** Pattern where all probes have a low logic state. */
69 PATTERN_ALL_LOW,
70
71 /** Pattern where all probes have a high logic state. */
72 PATTERN_ALL_HIGH,
e15f48c2 73};
85b5af06 74
b4750a3a
BV
75/* Private, per-device-instance driver context. */
76struct dev_context {
e15f48c2 77 int pipe_fds[2];
249ae2be 78 GIOChannel *channels[2];
e15f48c2
BV
79 uint8_t sample_generator;
80 uint8_t thread_running;
81 uint64_t samples_counter;
3cd3a20b 82 void *session_dev_id;
b9cc3629 83 GTimer *timer;
e15f48c2 84};
85b5af06 85
915f7cc8 86static const int hwcaps[] = {
5a2326a7 87 SR_HWCAP_LOGIC_ANALYZER,
bb7ef793 88 SR_HWCAP_DEMO_DEV,
4bfbf9fc 89 SR_HWCAP_SAMPLERATE,
5a2326a7
UH
90 SR_HWCAP_PATTERN_MODE,
91 SR_HWCAP_LIMIT_SAMPLES,
92 SR_HWCAP_LIMIT_MSEC,
93 SR_HWCAP_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
KS
113static const char *probe_names[NUM_PROBES + 1] = {
114 "0",
115 "1",
116 "2",
117 "3",
118 "4",
119 "5",
120 "6",
121 "7",
122 NULL,
123};
124
c8f4624d 125static uint8_t pattern_sigrok[] = {
917e0e71
BV
126 0x4c, 0x92, 0x92, 0x92, 0x64, 0x00, 0x00, 0x00,
127 0x82, 0xfe, 0xfe, 0x82, 0x00, 0x00, 0x00, 0x00,
128 0x7c, 0x82, 0x82, 0x92, 0x74, 0x00, 0x00, 0x00,
129 0xfe, 0x12, 0x12, 0x32, 0xcc, 0x00, 0x00, 0x00,
130 0x7c, 0x82, 0x82, 0x82, 0x7c, 0x00, 0x00, 0x00,
131 0xfe, 0x10, 0x28, 0x44, 0x82, 0x00, 0x00, 0x00,
132 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
133 0xbe, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
134};
135
ea9cfed7
UH
136/* Private, per-device-instance driver context. */
137/* TODO: struct context as with the other drivers. */
138
e7eb703f 139/* List of struct sr_dev_inst, maintained by dev_open()/dev_close(). */
dcf03d6d
BV
140SR_PRIV struct sr_dev_driver demo_driver_info;
141static struct sr_dev_driver *ddi = &demo_driver_info;
59df0c77 142static uint64_t cur_samplerate = SR_KHZ(200);
b9cc3629
BV
143static uint64_t limit_samples = 0;
144static uint64_t limit_msec = 0;
c8f4624d 145static int default_pattern = PATTERN_SIGROK;
b9cc3629
BV
146static GThread *my_thread;
147static int thread_running;
6239c175 148
69b07d14 149static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
6239c175 150
40dda2c3 151static int hw_init(void)
61136ea6 152{
b4750a3a 153 struct drv_context *drvc;
61136ea6 154
b4750a3a 155 if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
92bcedf6 156 sr_err("Driver context malloc failed.");
886a52b6 157 return SR_ERR_MALLOC;
b4750a3a
BV
158 }
159 ddi->priv = drvc;
61136ea6
BV
160
161 return SR_OK;
162}
163
067d0716 164static GSList *hw_scan(GSList *options)
6239c175 165{
d68e2d1a 166 struct sr_dev_inst *sdi;
87ca93c5 167 struct sr_probe *probe;
b4750a3a 168 struct drv_context *drvc;
067d0716 169 GSList *devices;
87ca93c5 170 int i;
067d0716
BV
171
172 (void)options;
64d33dc2 173
b4750a3a 174 drvc = ddi->priv;
067d0716 175 devices = NULL;
85b5af06 176
d3683c42 177 sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, DEMONAME, NULL, NULL);
c03ed397 178 if (!sdi) {
92bcedf6 179 sr_err("%s: sr_dev_inst_new failed", __func__);
85b5af06 180 return 0;
c03ed397 181 }
7dfcf010 182 sdi->driver = ddi;
e15f48c2 183
87ca93c5
BV
184 for (i = 0; probe_names[i]; i++) {
185 if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, TRUE,
186 probe_names[i])))
187 return NULL;
188 sdi->probes = g_slist_append(sdi->probes, probe);
189 }
190
067d0716 191 devices = g_slist_append(devices, sdi);
b4750a3a 192 drvc->instances = g_slist_append(drvc->instances, sdi);
85b5af06 193
067d0716 194 return devices;
6239c175
UH
195}
196
811deee4
BV
197static GSList *hw_dev_list(void)
198{
199 struct drv_context *drvc;
200
201 drvc = ddi->priv;
202
203 return drvc->instances;
204}
205
25a0f108 206static int hw_dev_open(struct sr_dev_inst *sdi)
6239c175 207{
25a0f108 208 (void)sdi;
6239c175
UH
209
210 /* Nothing needed so far. */
697785d1 211
e46b8fb1 212 return SR_OK;
6239c175
UH
213}
214
25a0f108 215static int hw_dev_close(struct sr_dev_inst *sdi)
6239c175 216{
25a0f108 217 (void)sdi;
6239c175
UH
218
219 /* Nothing needed so far. */
697785d1
UH
220
221 return SR_OK;
6239c175
UH
222}
223
57ab7d9f 224static int hw_cleanup(void)
6239c175
UH
225{
226 /* Nothing needed so far. */
57ab7d9f 227 return SR_OK;
6239c175
UH
228}
229
dfb0fa1a
BV
230static int hw_info_get(int info_id, const void **data,
231 const struct sr_dev_inst *sdi)
6239c175 232{
6f57fd96
BV
233 (void)sdi;
234
dfb0fa1a 235 switch (info_id) {
46c7a4da
BV
236 case SR_DI_HWCAPS:
237 *data = hwcaps;
238 break;
5a2326a7 239 case SR_DI_NUM_PROBES:
dfb0fa1a 240 *data = GINT_TO_POINTER(NUM_PROBES);
6239c175 241 break;
464d12c7 242 case SR_DI_PROBE_NAMES:
dfb0fa1a 243 *data = probe_names;
464d12c7 244 break;
4bfbf9fc 245 case SR_DI_SAMPLERATES:
dfb0fa1a 246 *data = &samplerates;
4bfbf9fc 247 break;
5a2326a7 248 case SR_DI_CUR_SAMPLERATE:
dfb0fa1a 249 *data = &cur_samplerate;
6239c175 250 break;
eb0a3731 251 case SR_DI_PATTERNS:
dfb0fa1a 252 *data = &pattern_strings;
e15f48c2 253 break;
7dfcf010
BV
254 default:
255 return SR_ERR_ARG;
6239c175
UH
256 }
257
dfb0fa1a 258 return SR_OK;
6239c175
UH
259}
260
6f4b1868
BV
261static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
262 const void *value)
6239c175
UH
263{
264 int ret;
1b79df2f 265 const char *stropt;
6239c175 266
6f4b1868 267 (void)sdi;
6239c175 268
014359e3 269 if (hwcap == SR_HWCAP_SAMPLERATE) {
1b79df2f 270 cur_samplerate = *(const uint64_t *)value;
92bcedf6 271 sr_dbg("%s: setting samplerate to %" PRIu64, __func__,
6f422264 272 cur_samplerate);
e46b8fb1 273 ret = SR_OK;
ffedd0bf 274 } else if (hwcap == SR_HWCAP_LIMIT_SAMPLES) {
8489264f 275 limit_msec = 0;
1b79df2f 276 limit_samples = *(const uint64_t *)value;
92bcedf6 277 sr_dbg("%s: setting limit_samples to %" PRIu64, __func__,
6f422264 278 limit_samples);
e46b8fb1 279 ret = SR_OK;
ffedd0bf 280 } else if (hwcap == SR_HWCAP_LIMIT_MSEC) {
1b79df2f 281 limit_msec = *(const uint64_t *)value;
8489264f 282 limit_samples = 0;
92bcedf6 283 sr_dbg("%s: setting limit_msec to %" PRIu64, __func__,
6f422264 284 limit_msec);
e46b8fb1 285 ret = SR_OK;
ffedd0bf 286 } else if (hwcap == SR_HWCAP_PATTERN_MODE) {
e15f48c2 287 stropt = value;
c03ed397
UH
288 ret = SR_OK;
289 if (!strcmp(stropt, "sigrok")) {
290 default_pattern = PATTERN_SIGROK;
291 } else if (!strcmp(stropt, "random")) {
c8f4624d 292 default_pattern = PATTERN_RANDOM;
e15f48c2 293 } else if (!strcmp(stropt, "incremental")) {
c8f4624d 294 default_pattern = PATTERN_INC;
c03ed397
UH
295 } else if (!strcmp(stropt, "all-low")) {
296 default_pattern = PATTERN_ALL_LOW;
297 } else if (!strcmp(stropt, "all-high")) {
298 default_pattern = PATTERN_ALL_HIGH;
e15f48c2 299 } else {
e46b8fb1 300 ret = SR_ERR;
e15f48c2 301 }
92bcedf6 302 sr_dbg("%s: setting pattern to %d", __func__, default_pattern);
6239c175 303 } else {
e46b8fb1 304 ret = SR_ERR;
6239c175
UH
305 }
306
307 return ret;
308}
309
5096c6a6 310static void samples_generator(uint8_t *buf, uint64_t size, void *data)
85b5af06 311{
cddd1c5f 312 static uint64_t p = 0;
b4750a3a 313 struct dev_context *devc = data;
cddd1c5f 314 uint64_t i;
85b5af06 315
c03ed397 316 /* TODO: Needed? */
5096c6a6 317 memset(buf, 0, size);
85b5af06 318
b4750a3a 319 switch (devc->sample_generator) {
c03ed397 320 case PATTERN_SIGROK: /* sigrok pattern */
917e0e71 321 for (i = 0; i < size; i++) {
c8f4624d 322 *(buf + i) = ~(pattern_sigrok[p] >> 1);
917e0e71
BV
323 if (++p == 64)
324 p = 0;
325 }
326 break;
c8f4624d 327 case PATTERN_RANDOM: /* Random */
5096c6a6
UH
328 for (i = 0; i < size; i++)
329 *(buf + i) = (uint8_t)(rand() & 0xff);
85b5af06 330 break;
c8f4624d 331 case PATTERN_INC: /* Simple increment */
5096c6a6 332 for (i = 0; i < size; i++)
85b5af06
UH
333 *(buf + i) = i;
334 break;
c03ed397 335 case PATTERN_ALL_LOW: /* All probes are low */
5a9660dd 336 memset(buf, 0x00, size);
c03ed397
UH
337 break;
338 case PATTERN_ALL_HIGH: /* All probes are high */
5a9660dd 339 memset(buf, 0xff, size);
c03ed397
UH
340 break;
341 default:
92bcedf6 342 sr_err("Unknown pattern: %d.", devc->sample_generator);
c03ed397 343 break;
85b5af06
UH
344 }
345}
346
347/* Thread function */
348static void thread_func(void *data)
349{
b4750a3a 350 struct dev_context *devc = data;
85b5af06
UH
351 uint8_t buf[BUFSIZE];
352 uint64_t nb_to_send = 0;
d35aaf02 353 int bytes_written;
1924f59f
HE
354 double time_cur, time_last, time_diff;
355
b4750a3a 356 time_last = g_timer_elapsed(devc->timer, NULL);
85b5af06
UH
357
358 while (thread_running) {
1924f59f 359 /* Rate control */
b4750a3a 360 time_cur = g_timer_elapsed(devc->timer, NULL);
1924f59f
HE
361
362 time_diff = time_cur - time_last;
363 time_last = time_cur;
364
365 nb_to_send = cur_samplerate * time_diff;
366
c03ed397 367 if (limit_samples) {
1924f59f 368 nb_to_send = MIN(nb_to_send,
b4750a3a 369 limit_samples - devc->samples_counter);
c03ed397 370 }
1924f59f
HE
371
372 /* Make sure we don't overflow. */
373 nb_to_send = MIN(nb_to_send, BUFSIZE);
374
375 if (nb_to_send) {
376 samples_generator(buf, nb_to_send, data);
b4750a3a 377 devc->samples_counter += nb_to_send;
070befcd 378
b4750a3a 379 g_io_channel_write_chars(devc->channels[1], (gchar *)&buf,
c03ed397 380 nb_to_send, (gsize *)&bytes_written, NULL);
b9cc3629
BV
381 }
382
1924f59f
HE
383 /* Check if we're done. */
384 if ((limit_msec && time_cur * 1000 > limit_msec) ||
b4750a3a 385 (limit_samples && devc->samples_counter >= limit_samples))
1924f59f 386 {
b4750a3a 387 close(devc->pipe_fds[1]);
85b5af06 388 thread_running = 0;
85b5af06
UH
389 }
390
1924f59f 391 g_usleep(10);
85b5af06
UH
392 }
393}
394
395/* Callback handling data */
1f9813eb 396static int receive_data(int fd, int revents, void *cb_data)
85b5af06 397{
b4750a3a 398 struct dev_context *devc = cb_data;
b9c735a2 399 struct sr_datafeed_packet packet;
9c939c51
BV
400 struct sr_datafeed_logic logic;
401 static uint64_t samples_received = 0;
402 unsigned char c[BUFSIZE];
108a5bfb 403 gsize z;
1924f59f 404
cb93f8a9
UH
405 (void)fd;
406 (void)revents;
1924f59f
HE
407
408 do {
b4750a3a 409 g_io_channel_read_chars(devc->channels[0],
070befcd 410 (gchar *)&c, BUFSIZE, &z, NULL);
1924f59f
HE
411
412 if (z > 0) {
5a2326a7 413 packet.type = SR_DF_LOGIC;
9c939c51 414 packet.payload = &logic;
9c939c51
BV
415 logic.length = z;
416 logic.unitsize = 1;
417 logic.data = c;
b4750a3a 418 sr_session_send(devc->session_dev_id, &packet);
9c939c51 419 samples_received += z;
1924f59f
HE
420 }
421 } while (z > 0);
85b5af06 422
c03ed397
UH
423 if (!thread_running && z <= 0) {
424 /* Make sure we don't receive more packets. */
b4750a3a 425 g_io_channel_shutdown(devc->channels[0], FALSE, NULL);
d35aaf02 426
1924f59f 427 /* Send last packet. */
5a2326a7 428 packet.type = SR_DF_END;
b4750a3a 429 sr_session_send(devc->session_dev_id, &packet);
1924f59f
HE
430
431 return FALSE;
85b5af06 432 }
1924f59f 433
85b5af06
UH
434 return TRUE;
435}
436
3ffb6964
BV
437static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
438 void *cb_data)
6239c175 439{
b9c735a2
UH
440 struct sr_datafeed_packet *packet;
441 struct sr_datafeed_header *header;
f366e86c 442 struct sr_datafeed_meta_logic meta;
b4750a3a 443 struct dev_context *devc;
6239c175 444
3ffb6964
BV
445 (void)sdi;
446
b4750a3a
BV
447 /* TODO: 'devc' is never g_free()'d? */
448 if (!(devc = g_try_malloc(sizeof(struct dev_context)))) {
92bcedf6 449 sr_err("%s: devc malloc failed", __func__);
e46b8fb1 450 return SR_ERR_MALLOC;
27a3a6fe 451 }
85b5af06 452
b4750a3a
BV
453 devc->sample_generator = default_pattern;
454 devc->session_dev_id = cb_data;
455 devc->samples_counter = 0;
85b5af06 456
b4750a3a 457 if (pipe(devc->pipe_fds)) {
c03ed397 458 /* TODO: Better error message. */
92bcedf6 459 sr_err("%s: pipe() failed", __func__);
e46b8fb1 460 return SR_ERR;
c03ed397 461 }
85b5af06 462
b4750a3a
BV
463 devc->channels[0] = g_io_channel_unix_new(devc->pipe_fds[0]);
464 devc->channels[1] = g_io_channel_unix_new(devc->pipe_fds[1]);
d35aaf02 465
b4750a3a 466 g_io_channel_set_flags(devc->channels[0], G_IO_FLAG_NONBLOCK, NULL);
e6e8f8e0 467
d35aaf02 468 /* Set channel encoding to binary (default is UTF-8). */
b4750a3a
BV
469 g_io_channel_set_encoding(devc->channels[0], NULL, NULL);
470 g_io_channel_set_encoding(devc->channels[1], NULL, NULL);
d35aaf02
UH
471
472 /* Make channels to unbuffered. */
b4750a3a
BV
473 g_io_channel_set_buffered(devc->channels[0], FALSE);
474 g_io_channel_set_buffered(devc->channels[1], FALSE);
d35aaf02 475
b4750a3a
BV
476 sr_session_source_add_channel(devc->channels[0], G_IO_IN | G_IO_ERR,
477 40, receive_data, devc);
85b5af06
UH
478
479 /* Run the demo thread. */
b4750a3a 480 devc->timer = g_timer_new();
85b5af06 481 thread_running = 1;
4ca378df
BV
482 my_thread = g_thread_try_new("sigrok demo generator",
483 (GThreadFunc)thread_func, devc, NULL);
c03ed397 484 if (!my_thread) {
92bcedf6 485 sr_err("%s: g_thread_try_new failed", __func__);
c03ed397
UH
486 return SR_ERR; /* TODO */
487 }
6239c175 488
27a3a6fe 489 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
92bcedf6 490 sr_err("%s: packet malloc failed", __func__);
e46b8fb1 491 return SR_ERR_MALLOC;
27a3a6fe
UH
492 }
493
494 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
92bcedf6 495 sr_err("%s: header malloc failed", __func__);
27a3a6fe
UH
496 return SR_ERR_MALLOC;
497 }
6239c175 498
5a2326a7 499 packet->type = SR_DF_HEADER;
9c939c51 500 packet->payload = header;
6239c175
UH
501 header->feed_version = 1;
502 gettimeofday(&header->starttime, NULL);
b4750a3a 503 sr_session_send(devc->session_dev_id, packet);
f366e86c
BV
504
505 /* Send metadata about the SR_DF_LOGIC packets to come. */
506 packet->type = SR_DF_META_LOGIC;
507 packet->payload = &meta;
508 meta.samplerate = cur_samplerate;
509 meta.num_probes = NUM_PROBES;
b4750a3a 510 sr_session_send(devc->session_dev_id, packet);
f366e86c 511
27a3a6fe
UH
512 g_free(header);
513 g_free(packet);
6239c175 514
e46b8fb1 515 return SR_OK;
6239c175
UH
516}
517
69b07d14 518static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
6239c175 519{
7fd3e859
BV
520 struct dev_context *devc;
521
3cd3a20b 522 (void)cb_data;
6239c175 523
7fd3e859
BV
524 devc = sdi->priv;
525
1924f59f
HE
526 /* Stop generate thread. */
527 thread_running = 0;
3010f21c 528
7fd3e859
BV
529 sr_session_source_remove_channel(devc->channels[0]);
530
3010f21c 531 return SR_OK;
6239c175
UH
532}
533
c09f0b57 534SR_PRIV struct sr_dev_driver demo_driver_info = {
e519ba86
UH
535 .name = "demo",
536 .longname = "Demo driver and pattern generator",
537 .api_version = 1,
538 .init = hw_init,
539 .cleanup = hw_cleanup,
61136ea6 540 .scan = hw_scan,
811deee4 541 .dev_list = hw_dev_list,
e7eb703f
UH
542 .dev_open = hw_dev_open,
543 .dev_close = hw_dev_close,
dfb0fa1a 544 .info_get = hw_info_get,
a9a245b4 545 .dev_config_set = hw_dev_config_set,
69040b7c
UH
546 .dev_acquisition_start = hw_dev_acquisition_start,
547 .dev_acquisition_stop = hw_dev_acquisition_stop,
b4750a3a 548 .priv = NULL,
6239c175 549};