]> sigrok.org Git - libsigrok.git/blame - hardware/demo/demo.c
Improve (Doxygen) comments for HWCAP entries.
[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. */
697785d1 124
e46b8fb1 125 return SR_OK;
6239c175
UH
126}
127
697785d1 128static int hw_closedev(int device_index)
6239c175 129{
17e1afcb 130 /* Avoid compiler warnings. */
6239c175
UH
131 device_index = device_index;
132
133 /* Nothing needed so far. */
697785d1
UH
134
135 return SR_OK;
6239c175
UH
136}
137
138static void hw_cleanup(void)
139{
140 /* Nothing needed so far. */
141}
142
143static void *hw_get_device_info(int device_index, int device_info_id)
144{
a00ba012 145 struct sr_device_instance *sdi;
85b5af06
UH
146 void *info = NULL;
147
d32d961d 148 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
85b5af06
UH
149 return NULL;
150
6239c175 151 switch (device_info_id) {
5a2326a7 152 case SR_DI_INSTANCE:
85b5af06 153 info = sdi;
6239c175 154 break;
5a2326a7 155 case SR_DI_NUM_PROBES:
6239c175
UH
156 info = GINT_TO_POINTER(NUM_PROBES);
157 break;
4bfbf9fc
BV
158 case SR_DI_SAMPLERATES:
159 info = &samplerates;
160 break;
5a2326a7 161 case SR_DI_CUR_SAMPLERATE:
6239c175
UH
162 info = &cur_samplerate;
163 break;
5a2326a7 164 case SR_DI_PATTERNMODES:
e15f48c2
BV
165 info = &patternmodes;
166 break;
6239c175
UH
167 }
168
169 return info;
170}
171
172static int hw_get_status(int device_index)
173{
17e1afcb 174 /* Avoid compiler warnings. */
6239c175 175 device_index = device_index;
5096c6a6 176
5a2326a7 177 return SR_ST_ACTIVE;
6239c175
UH
178}
179
180static int *hw_get_capabilities(void)
181{
182 return capabilities;
183}
184
185static int hw_set_configuration(int device_index, int capability, void *value)
186{
187 int ret;
e15f48c2 188 char *stropt;
6239c175 189
17e1afcb 190 /* Avoid compiler warnings. */
6239c175
UH
191 device_index = device_index;
192
5a2326a7 193 if (capability == SR_HWCAP_PROBECONFIG) {
d81d2933
BV
194 /* Nothing to do, but must be supported */
195 ret = SR_OK;
196 } else if (capability == SR_HWCAP_SAMPLERATE) {
68c12597 197 cur_samplerate = *(uint64_t *)value;
6f422264
UH
198 sr_dbg("demo: %s: setting samplerate to %" PRIu64, __func__,
199 cur_samplerate);
e46b8fb1 200 ret = SR_OK;
5a2326a7 201 } else if (capability == SR_HWCAP_LIMIT_SAMPLES) {
68c12597 202 limit_samples = *(uint64_t *)value;
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) {
68c12597 207 limit_msec = *(uint64_t *)value;
6f422264
UH
208 sr_dbg("demo: %s: setting limit_msec to %" PRIu64, __func__,
209 limit_msec);
e46b8fb1 210 ret = SR_OK;
5a2326a7 211 } else if (capability == SR_HWCAP_PATTERN_MODE) {
e15f48c2
BV
212 stropt = value;
213 if (!strcmp(stropt, "random")) {
214 default_genmode = GENMODE_RANDOM;
e46b8fb1 215 ret = SR_OK;
e15f48c2
BV
216 } else if (!strcmp(stropt, "incremental")) {
217 default_genmode = GENMODE_INC;
e46b8fb1 218 ret = SR_OK;
e15f48c2 219 } else {
e46b8fb1 220 ret = SR_ERR;
e15f48c2 221 }
6f422264
UH
222 sr_dbg("demo: %s: setting patternmode to %d", __func__,
223 default_genmode);
6239c175 224 } else {
e46b8fb1 225 ret = SR_ERR;
6239c175
UH
226 }
227
228 return ret;
229}
230
5096c6a6 231static void samples_generator(uint8_t *buf, uint64_t size, void *data)
85b5af06 232{
cddd1c5f 233 static uint64_t p = 0;
85b5af06 234 struct databag *mydata = data;
cddd1c5f 235 uint64_t i;
85b5af06 236
5096c6a6 237 memset(buf, 0, size);
85b5af06
UH
238
239 switch (mydata->sample_generator) {
917e0e71 240 case GENMODE_DEFAULT:
917e0e71
BV
241 for (i = 0; i < size; i++) {
242 *(buf + i) = ~(genmode_default[p] >> 1);
243 if (++p == 64)
244 p = 0;
245 }
246 break;
85b5af06 247 case GENMODE_RANDOM: /* Random */
5096c6a6
UH
248 for (i = 0; i < size; i++)
249 *(buf + i) = (uint8_t)(rand() & 0xff);
85b5af06
UH
250 break;
251 case GENMODE_INC: /* Simple increment */
5096c6a6 252 for (i = 0; i < size; i++)
85b5af06
UH
253 *(buf + i) = i;
254 break;
255 }
256}
257
258/* Thread function */
259static void thread_func(void *data)
260{
261 struct databag *mydata = data;
262 uint8_t buf[BUFSIZE];
263 uint64_t nb_to_send = 0;
d35aaf02 264 int bytes_written;
1924f59f
HE
265
266 double time_cur, time_last, time_diff;
267
268 time_last = g_timer_elapsed(mydata->timer, NULL);
85b5af06
UH
269
270 while (thread_running) {
1924f59f
HE
271 /* Rate control */
272 time_cur = g_timer_elapsed(mydata->timer, NULL);
273
274 time_diff = time_cur - time_last;
275 time_last = time_cur;
276
277 nb_to_send = cur_samplerate * time_diff;
278
ba3d481b 279 if (limit_samples)
1924f59f
HE
280 nb_to_send = MIN(nb_to_send,
281 limit_samples - mydata->samples_counter);
282
283 /* Make sure we don't overflow. */
284 nb_to_send = MIN(nb_to_send, BUFSIZE);
285
286 if (nb_to_send) {
287 samples_generator(buf, nb_to_send, data);
288 mydata->samples_counter += nb_to_send;
070befcd
BV
289
290 g_io_channel_write_chars(channels[1], (gchar *)&buf,
291 nb_to_send, (gsize *)&bytes_written, NULL);
b9cc3629
BV
292 }
293
1924f59f
HE
294 /* Check if we're done. */
295 if ((limit_msec && time_cur * 1000 > limit_msec) ||
296 (limit_samples && mydata->samples_counter >= limit_samples))
297 {
85b5af06
UH
298 close(mydata->pipe_fds[1]);
299 thread_running = 0;
85b5af06
UH
300 }
301
1924f59f 302 g_usleep(10);
85b5af06
UH
303 }
304}
305
306/* Callback handling data */
307static int receive_data(int fd, int revents, void *user_data)
308{
b9c735a2 309 struct sr_datafeed_packet packet;
26ce0bbf 310 char c[BUFSIZE];
108a5bfb 311 gsize z;
1924f59f 312
26ce0bbf
UH
313 /* Avoid compiler warnings. */
314 fd = fd;
315 revents = revents;
1924f59f
HE
316
317 do {
318 g_io_channel_read_chars(channels[0],
070befcd 319 (gchar *)&c, BUFSIZE, &z, NULL);
1924f59f
HE
320
321 if (z > 0) {
5a2326a7 322 packet.type = SR_DF_LOGIC;
1924f59f
HE
323 packet.length = z;
324 packet.unitsize = 1;
325 packet.payload = c;
8a2efef2 326 sr_session_bus(user_data, &packet);
1924f59f
HE
327 }
328 } while (z > 0);
85b5af06 329
1924f59f
HE
330 if (!thread_running && z <= 0)
331 {
332 /* Make sure we don't receive more packets */
333 g_io_channel_close(channels[0]);
d35aaf02 334
1924f59f 335 /* Send last packet. */
5a2326a7 336 packet.type = SR_DF_END;
8a2efef2 337 sr_session_bus(user_data, &packet);
1924f59f
HE
338
339 return FALSE;
85b5af06 340 }
1924f59f 341
85b5af06
UH
342 return TRUE;
343}
344
6239c175
UH
345static int hw_start_acquisition(int device_index, gpointer session_device_id)
346{
b9c735a2
UH
347 struct sr_datafeed_packet *packet;
348 struct sr_datafeed_header *header;
85b5af06 349 struct databag *mydata;
6239c175 350
27a3a6fe
UH
351 /* TODO: 'mydata' is never g_free()'d? */
352 if (!(mydata = g_try_malloc(sizeof(struct databag)))) {
353 sr_err("demo: %s: mydata malloc failed", __func__);
e46b8fb1 354 return SR_ERR_MALLOC;
27a3a6fe 355 }
85b5af06 356
e15f48c2 357 mydata->sample_generator = default_genmode;
85b5af06
UH
358 mydata->session_device_id = session_device_id;
359 mydata->device_index = device_index;
360 mydata->samples_counter = 0;
85b5af06 361
e15f48c2 362 if (pipe(mydata->pipe_fds))
e46b8fb1 363 return SR_ERR;
85b5af06 364
d35aaf02
UH
365 channels[0] = g_io_channel_unix_new(mydata->pipe_fds[0]);
366 channels[1] = g_io_channel_unix_new(mydata->pipe_fds[1]);
367
368 /* Set channel encoding to binary (default is UTF-8). */
369 g_io_channel_set_encoding(channels[0], NULL, NULL);
370 g_io_channel_set_encoding(channels[1], NULL, NULL);
371
372 /* Make channels to unbuffered. */
373 g_io_channel_set_buffered(channels[0], FALSE);
374 g_io_channel_set_buffered(channels[1], FALSE);
375
6f1be0a2
UH
376 sr_source_add(mydata->pipe_fds[0], G_IO_IN | G_IO_ERR, 40,
377 receive_data, session_device_id);
85b5af06
UH
378
379 /* Run the demo thread. */
380 g_thread_init(NULL);
cddd1c5f 381 /* this needs to be done between g_thread_init() and g_thread_create() */
1924f59f 382 mydata->timer = g_timer_new();
85b5af06
UH
383 thread_running = 1;
384 my_thread =
385 g_thread_create((GThreadFunc)thread_func, mydata, TRUE, NULL);
e15f48c2 386 if (!my_thread)
e46b8fb1 387 return SR_ERR;
6239c175 388
27a3a6fe
UH
389 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
390 sr_err("demo: %s: packet malloc failed", __func__);
e46b8fb1 391 return SR_ERR_MALLOC;
27a3a6fe
UH
392 }
393
394 if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
395 sr_err("demo: %s: header malloc failed", __func__);
396 return SR_ERR_MALLOC;
397 }
6239c175 398
5a2326a7 399 packet->type = SR_DF_HEADER;
b9c735a2 400 packet->length = sizeof(struct sr_datafeed_header);
6239c175
UH
401 packet->payload = (unsigned char *)header;
402 header->feed_version = 1;
403 gettimeofday(&header->starttime, NULL);
404 header->samplerate = cur_samplerate;
5a2326a7 405 header->protocol_id = SR_PROTO_RAW;
c2616fb9
DR
406 header->num_logic_probes = NUM_PROBES;
407 header->num_analog_probes = 0;
8a2efef2 408 sr_session_bus(session_device_id, packet);
27a3a6fe
UH
409 g_free(header);
410 g_free(packet);
6239c175 411
e46b8fb1 412 return SR_OK;
6239c175
UH
413}
414
6239c175
UH
415static void hw_stop_acquisition(int device_index, gpointer session_device_id)
416{
17e1afcb 417 /* Avoid compiler warnings. */
6239c175 418 device_index = device_index;
1924f59f 419 session_device_id = session_device_id;
6239c175 420
1924f59f
HE
421 /* Stop generate thread. */
422 thread_running = 0;
6239c175
UH
423}
424
5c2d46d1 425struct sr_device_plugin demo_plugin_info = {
e519ba86
UH
426 .name = "demo",
427 .longname = "Demo driver and pattern generator",
428 .api_version = 1,
429 .init = hw_init,
430 .cleanup = hw_cleanup,
86f5e3d8
UH
431 .opendev = hw_opendev,
432 .closedev = hw_closedev,
e519ba86
UH
433 .get_device_info = hw_get_device_info,
434 .get_status = hw_get_status,
435 .get_capabilities = hw_get_capabilities,
436 .set_configuration = hw_set_configuration,
437 .start_acquisition = hw_start_acquisition,
438 .stop_acquisition = hw_stop_acquisition,
6239c175 439};