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