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