]> sigrok.org Git - libsigrok.git/blame - hardware/demo/demo.c
demo: Use memset(), might be faster.
[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
UH
24#include <string.h>
25#include <sigrok.h>
4af22da5 26#include <sigrok-internal.h>
d35aaf02
UH
27#ifdef _WIN32
28#include <io.h>
29#include <fcntl.h>
30#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
31#endif
6239c175
UH
32#include "config.h"
33
c03ed397 34/* TODO: Number of probes should be configurable. */
e15f48c2 35#define NUM_PROBES 8
c03ed397 36
e15f48c2 37#define DEMONAME "Demo device"
c03ed397
UH
38
39/* The size of chunks to send through the session bus. */
40/* TODO: Should be configurable. */
e15f48c2 41#define BUFSIZE 4096
85b5af06 42
0d31276b 43/* Supported patterns which we can generate */
e15f48c2 44enum {
0d31276b
UH
45 /**
46 * Pattern which spells "sigrok" using '0's (with '1's as "background")
47 * when displayed using the 'bits' output format.
48 */
c8f4624d 49 PATTERN_SIGROK,
0d31276b 50
c03ed397 51 /** Pattern which consists of (pseudo-)random values on all probes. */
c8f4624d 52 PATTERN_RANDOM,
0d31276b
UH
53
54 /**
55 * Pattern which consists of incrementing numbers.
56 * TODO: Better description.
57 */
c8f4624d 58 PATTERN_INC,
c03ed397
UH
59
60 /** Pattern where all probes have a low logic state. */
61 PATTERN_ALL_LOW,
62
63 /** Pattern where all probes have a high logic state. */
64 PATTERN_ALL_HIGH,
e15f48c2 65};
85b5af06 66
29cbfeaf 67/* FIXME: Should not be global. */
d35aaf02
UH
68GIOChannel *channels[2];
69
e15f48c2
BV
70struct databag {
71 int pipe_fds[2];
72 uint8_t sample_generator;
73 uint8_t thread_running;
74 uint64_t samples_counter;
75 int device_index;
e15f48c2 76 gpointer session_device_id;
b9cc3629 77 GTimer *timer;
e15f48c2 78};
85b5af06 79
6239c175 80static int capabilities[] = {
5a2326a7 81 SR_HWCAP_LOGIC_ANALYZER,
4bfbf9fc 82 SR_HWCAP_SAMPLERATE,
5a2326a7
UH
83 SR_HWCAP_PATTERN_MODE,
84 SR_HWCAP_LIMIT_SAMPLES,
85 SR_HWCAP_LIMIT_MSEC,
86 SR_HWCAP_CONTINUOUS,
6239c175
UH
87};
88
4bfbf9fc 89static struct sr_samplerates samplerates = {
c9140419 90 SR_HZ(1),
59df0c77 91 SR_GHZ(1),
c9140419 92 SR_HZ(1),
4bfbf9fc
BV
93 NULL,
94};
95
c8f4624d 96static const char *pattern_strings[] = {
c03ed397 97 "sigrok",
e15f48c2
BV
98 "random",
99 "incremental",
c03ed397
UH
100 "all-low",
101 "all-high",
02440dd8 102 NULL,
85b5af06
UH
103};
104
c8f4624d 105static uint8_t pattern_sigrok[] = {
917e0e71
BV
106 0x4c, 0x92, 0x92, 0x92, 0x64, 0x00, 0x00, 0x00,
107 0x82, 0xfe, 0xfe, 0x82, 0x00, 0x00, 0x00, 0x00,
108 0x7c, 0x82, 0x82, 0x92, 0x74, 0x00, 0x00, 0x00,
109 0xfe, 0x12, 0x12, 0x32, 0xcc, 0x00, 0x00, 0x00,
110 0x7c, 0x82, 0x82, 0x82, 0x7c, 0x00, 0x00, 0x00,
111 0xfe, 0x10, 0x28, 0x44, 0x82, 0x00, 0x00, 0x00,
112 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
113 0xbe, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
114};
115
a00ba012 116/* List of struct sr_device_instance, maintained by opendev()/closedev(). */
85b5af06 117static GSList *device_instances = NULL;
59df0c77 118static uint64_t cur_samplerate = SR_KHZ(200);
b9cc3629
BV
119static uint64_t limit_samples = 0;
120static uint64_t limit_msec = 0;
c8f4624d 121static int default_pattern = PATTERN_SIGROK;
b9cc3629
BV
122static GThread *my_thread;
123static int thread_running;
6239c175 124
6239c175
UH
125static void hw_stop_acquisition(int device_index, gpointer session_device_id);
126
54ac5277 127static int hw_init(const char *deviceinfo)
6239c175 128{
a00ba012 129 struct sr_device_instance *sdi;
85b5af06 130
e15f48c2
BV
131 /* Avoid compiler warnings. */
132 deviceinfo = deviceinfo;
85b5af06 133
5a2326a7 134 sdi = sr_device_instance_new(0, SR_ST_ACTIVE, DEMONAME, NULL, NULL);
c03ed397
UH
135 if (!sdi) {
136 sr_err("demo: %s: sr_device_instance_new failed", __func__);
85b5af06 137 return 0;
c03ed397 138 }
e15f48c2 139
85b5af06
UH
140 device_instances = g_slist_append(device_instances, sdi);
141
142 return 1;
6239c175
UH
143}
144
145static int hw_opendev(int device_index)
146{
17e1afcb 147 /* Avoid compiler warnings. */
6239c175
UH
148 device_index = device_index;
149
150 /* Nothing needed so far. */
697785d1 151
e46b8fb1 152 return SR_OK;
6239c175
UH
153}
154
697785d1 155static int hw_closedev(int device_index)
6239c175 156{
17e1afcb 157 /* Avoid compiler warnings. */
6239c175
UH
158 device_index = device_index;
159
160 /* Nothing needed so far. */
697785d1
UH
161
162 return SR_OK;
6239c175
UH
163}
164
165static void hw_cleanup(void)
166{
167 /* Nothing needed so far. */
168}
169
170static void *hw_get_device_info(int device_index, int device_info_id)
171{
a00ba012 172 struct sr_device_instance *sdi;
85b5af06
UH
173 void *info = NULL;
174
c03ed397
UH
175 if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
176 sr_err("demo: %s: sdi was NULL", __func__);
85b5af06 177 return NULL;
c03ed397 178 }
85b5af06 179
6239c175 180 switch (device_info_id) {
5a2326a7 181 case SR_DI_INSTANCE:
85b5af06 182 info = sdi;
6239c175 183 break;
5a2326a7 184 case SR_DI_NUM_PROBES:
6239c175
UH
185 info = GINT_TO_POINTER(NUM_PROBES);
186 break;
4bfbf9fc
BV
187 case SR_DI_SAMPLERATES:
188 info = &samplerates;
189 break;
5a2326a7 190 case SR_DI_CUR_SAMPLERATE:
6239c175
UH
191 info = &cur_samplerate;
192 break;
5a2326a7 193 case SR_DI_PATTERNMODES:
c8f4624d 194 info = &pattern_strings;
e15f48c2 195 break;
6239c175
UH
196 }
197
198 return info;
199}
200
201static int hw_get_status(int device_index)
202{
17e1afcb 203 /* Avoid compiler warnings. */
6239c175 204 device_index = device_index;
5096c6a6 205
5a2326a7 206 return SR_ST_ACTIVE;
6239c175
UH
207}
208
209static int *hw_get_capabilities(void)
210{
211 return capabilities;
212}
213
214static int hw_set_configuration(int device_index, int capability, void *value)
215{
216 int ret;
e15f48c2 217 char *stropt;
6239c175 218
17e1afcb 219 /* Avoid compiler warnings. */
6239c175
UH
220 device_index = device_index;
221
5a2326a7 222 if (capability == SR_HWCAP_PROBECONFIG) {
d81d2933
BV
223 /* Nothing to do, but must be supported */
224 ret = SR_OK;
225 } else if (capability == SR_HWCAP_SAMPLERATE) {
68c12597 226 cur_samplerate = *(uint64_t *)value;
6f422264
UH
227 sr_dbg("demo: %s: setting samplerate to %" PRIu64, __func__,
228 cur_samplerate);
e46b8fb1 229 ret = SR_OK;
5a2326a7 230 } else if (capability == SR_HWCAP_LIMIT_SAMPLES) {
68c12597 231 limit_samples = *(uint64_t *)value;
6f422264
UH
232 sr_dbg("demo: %s: setting limit_samples to %" PRIu64, __func__,
233 limit_samples);
e46b8fb1 234 ret = SR_OK;
5a2326a7 235 } else if (capability == SR_HWCAP_LIMIT_MSEC) {
68c12597 236 limit_msec = *(uint64_t *)value;
6f422264
UH
237 sr_dbg("demo: %s: setting limit_msec to %" PRIu64, __func__,
238 limit_msec);
e46b8fb1 239 ret = SR_OK;
5a2326a7 240 } else if (capability == SR_HWCAP_PATTERN_MODE) {
e15f48c2 241 stropt = value;
c03ed397
UH
242 ret = SR_OK;
243 if (!strcmp(stropt, "sigrok")) {
244 default_pattern = PATTERN_SIGROK;
245 } else if (!strcmp(stropt, "random")) {
c8f4624d 246 default_pattern = PATTERN_RANDOM;
e15f48c2 247 } else if (!strcmp(stropt, "incremental")) {
c8f4624d 248 default_pattern = PATTERN_INC;
c03ed397
UH
249 } else if (!strcmp(stropt, "all-low")) {
250 default_pattern = PATTERN_ALL_LOW;
251 } else if (!strcmp(stropt, "all-high")) {
252 default_pattern = PATTERN_ALL_HIGH;
e15f48c2 253 } else {
e46b8fb1 254 ret = SR_ERR;
e15f48c2 255 }
c8f4624d
UH
256 sr_dbg("demo: %s: setting pattern to %d", __func__,
257 default_pattern);
6239c175 258 } else {
e46b8fb1 259 ret = SR_ERR;
6239c175
UH
260 }
261
262 return ret;
263}
264
5096c6a6 265static void samples_generator(uint8_t *buf, uint64_t size, void *data)
85b5af06 266{
cddd1c5f 267 static uint64_t p = 0;
85b5af06 268 struct databag *mydata = data;
cddd1c5f 269 uint64_t i;
85b5af06 270
c03ed397 271 /* TODO: Needed? */
5096c6a6 272 memset(buf, 0, size);
85b5af06
UH
273
274 switch (mydata->sample_generator) {
c03ed397 275 case PATTERN_SIGROK: /* sigrok pattern */
917e0e71 276 for (i = 0; i < size; i++) {
c8f4624d 277 *(buf + i) = ~(pattern_sigrok[p] >> 1);
917e0e71
BV
278 if (++p == 64)
279 p = 0;
280 }
281 break;
c8f4624d 282 case PATTERN_RANDOM: /* Random */
5096c6a6
UH
283 for (i = 0; i < size; i++)
284 *(buf + i) = (uint8_t)(rand() & 0xff);
85b5af06 285 break;
c8f4624d 286 case PATTERN_INC: /* Simple increment */
5096c6a6 287 for (i = 0; i < size; i++)
85b5af06
UH
288 *(buf + i) = i;
289 break;
c03ed397 290 case PATTERN_ALL_LOW: /* All probes are low */
5a9660dd 291 memset(buf, 0x00, size);
c03ed397
UH
292 break;
293 case PATTERN_ALL_HIGH: /* All probes are high */
5a9660dd 294 memset(buf, 0xff, size);
c03ed397
UH
295 break;
296 default:
297 /* TODO: Error handling. */
298 break;
85b5af06
UH
299 }
300}
301
302/* Thread function */
303static void thread_func(void *data)
304{
305 struct databag *mydata = data;
306 uint8_t buf[BUFSIZE];
307 uint64_t nb_to_send = 0;
d35aaf02 308 int bytes_written;
1924f59f
HE
309 double time_cur, time_last, time_diff;
310
311 time_last = g_timer_elapsed(mydata->timer, NULL);
85b5af06
UH
312
313 while (thread_running) {
1924f59f
HE
314 /* Rate control */
315 time_cur = g_timer_elapsed(mydata->timer, NULL);
316
317 time_diff = time_cur - time_last;
318 time_last = time_cur;
319
320 nb_to_send = cur_samplerate * time_diff;
321
c03ed397 322 if (limit_samples) {
1924f59f 323 nb_to_send = MIN(nb_to_send,
c03ed397
UH
324 limit_samples - mydata->samples_counter);
325 }
1924f59f
HE
326
327 /* Make sure we don't overflow. */
328 nb_to_send = MIN(nb_to_send, BUFSIZE);
329
330 if (nb_to_send) {
331 samples_generator(buf, nb_to_send, data);
332 mydata->samples_counter += nb_to_send;
070befcd
BV
333
334 g_io_channel_write_chars(channels[1], (gchar *)&buf,
c03ed397 335 nb_to_send, (gsize *)&bytes_written, NULL);
b9cc3629
BV
336 }
337
1924f59f
HE
338 /* Check if we're done. */
339 if ((limit_msec && time_cur * 1000 > limit_msec) ||
340 (limit_samples && mydata->samples_counter >= limit_samples))
341 {
85b5af06
UH
342 close(mydata->pipe_fds[1]);
343 thread_running = 0;
85b5af06
UH
344 }
345
1924f59f 346 g_usleep(10);
85b5af06
UH
347 }
348}
349
350/* Callback handling data */
351static int receive_data(int fd, int revents, void *user_data)
352{
b9c735a2 353 struct sr_datafeed_packet packet;
26ce0bbf 354 char c[BUFSIZE];
108a5bfb 355 gsize z;
1924f59f 356
26ce0bbf
UH
357 /* Avoid compiler warnings. */
358 fd = fd;
359 revents = revents;
1924f59f
HE
360
361 do {
362 g_io_channel_read_chars(channels[0],
070befcd 363 (gchar *)&c, BUFSIZE, &z, NULL);
1924f59f
HE
364
365 if (z > 0) {
5a2326a7 366 packet.type = SR_DF_LOGIC;
1924f59f
HE
367 packet.length = z;
368 packet.unitsize = 1;
369 packet.payload = c;
8a2efef2 370 sr_session_bus(user_data, &packet);
1924f59f
HE
371 }
372 } while (z > 0);
85b5af06 373
c03ed397
UH
374 if (!thread_running && z <= 0) {
375 /* Make sure we don't receive more packets. */
1924f59f 376 g_io_channel_close(channels[0]);
d35aaf02 377
1924f59f 378 /* Send last packet. */
5a2326a7 379 packet.type = SR_DF_END;
8a2efef2 380 sr_session_bus(user_data, &packet);
1924f59f
HE
381
382 return FALSE;
85b5af06 383 }
1924f59f 384
85b5af06
UH
385 return TRUE;
386}
387
6239c175
UH
388static int hw_start_acquisition(int device_index, gpointer session_device_id)
389{
b9c735a2
UH
390 struct sr_datafeed_packet *packet;
391 struct sr_datafeed_header *header;
85b5af06 392 struct databag *mydata;
6239c175 393
27a3a6fe
UH
394 /* TODO: 'mydata' is never g_free()'d? */
395 if (!(mydata = g_try_malloc(sizeof(struct databag)))) {
396 sr_err("demo: %s: mydata malloc failed", __func__);
e46b8fb1 397 return SR_ERR_MALLOC;
27a3a6fe 398 }
85b5af06 399
c8f4624d 400 mydata->sample_generator = default_pattern;
85b5af06
UH
401 mydata->session_device_id = session_device_id;
402 mydata->device_index = device_index;
403 mydata->samples_counter = 0;
85b5af06 404
c03ed397
UH
405 if (pipe(mydata->pipe_fds)) {
406 /* TODO: Better error message. */
407 sr_err("demo: %s: pipe() failed", __func__);
e46b8fb1 408 return SR_ERR;
c03ed397 409 }
85b5af06 410
d35aaf02
UH
411 channels[0] = g_io_channel_unix_new(mydata->pipe_fds[0]);
412 channels[1] = g_io_channel_unix_new(mydata->pipe_fds[1]);
413
414 /* Set channel encoding to binary (default is UTF-8). */
415 g_io_channel_set_encoding(channels[0], NULL, NULL);
416 g_io_channel_set_encoding(channels[1], NULL, NULL);
417
418 /* Make channels to unbuffered. */
419 g_io_channel_set_buffered(channels[0], FALSE);
420 g_io_channel_set_buffered(channels[1], FALSE);
421
6f1be0a2
UH
422 sr_source_add(mydata->pipe_fds[0], G_IO_IN | G_IO_ERR, 40,
423 receive_data, session_device_id);
85b5af06
UH
424
425 /* Run the demo thread. */
426 g_thread_init(NULL);
c03ed397 427 /* This must to be done between g_thread_init() & g_thread_create(). */
1924f59f 428 mydata->timer = g_timer_new();
85b5af06
UH
429 thread_running = 1;
430 my_thread =
431 g_thread_create((GThreadFunc)thread_func, mydata, TRUE, NULL);
c03ed397
UH
432 if (!my_thread) {
433 sr_err("demo: %s: g_thread_create failed", __func__);
434 return SR_ERR; /* TODO */
435 }
6239c175 436
27a3a6fe
UH
437 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
438 sr_err("demo: %s: packet malloc failed", __func__);
e46b8fb1 439 return SR_ERR_MALLOC;
27a3a6fe
UH
440 }
441
442 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
443 sr_err("demo: %s: header malloc failed", __func__);
444 return SR_ERR_MALLOC;
445 }
6239c175 446
5a2326a7 447 packet->type = SR_DF_HEADER;
b9c735a2 448 packet->length = sizeof(struct sr_datafeed_header);
6239c175
UH
449 packet->payload = (unsigned char *)header;
450 header->feed_version = 1;
451 gettimeofday(&header->starttime, NULL);
452 header->samplerate = cur_samplerate;
5a2326a7 453 header->protocol_id = SR_PROTO_RAW;
c2616fb9
DR
454 header->num_logic_probes = NUM_PROBES;
455 header->num_analog_probes = 0;
8a2efef2 456 sr_session_bus(session_device_id, packet);
27a3a6fe
UH
457 g_free(header);
458 g_free(packet);
6239c175 459
e46b8fb1 460 return SR_OK;
6239c175
UH
461}
462
6239c175
UH
463static void hw_stop_acquisition(int device_index, gpointer session_device_id)
464{
17e1afcb 465 /* Avoid compiler warnings. */
6239c175 466 device_index = device_index;
1924f59f 467 session_device_id = session_device_id;
6239c175 468
1924f59f
HE
469 /* Stop generate thread. */
470 thread_running = 0;
6239c175
UH
471}
472
5c2d46d1 473struct sr_device_plugin demo_plugin_info = {
e519ba86
UH
474 .name = "demo",
475 .longname = "Demo driver and pattern generator",
476 .api_version = 1,
477 .init = hw_init,
478 .cleanup = hw_cleanup,
86f5e3d8
UH
479 .opendev = hw_opendev,
480 .closedev = hw_closedev,
e519ba86
UH
481 .get_device_info = hw_get_device_info,
482 .get_status = hw_get_status,
483 .get_capabilities = hw_get_capabilities,
484 .set_configuration = hw_set_configuration,
485 .start_acquisition = hw_start_acquisition,
486 .stop_acquisition = hw_stop_acquisition,
6239c175 487};