]> sigrok.org Git - libsigrok.git/blame - hardware/demo/demo.c
restore demo driver to working state
[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
d35aaf02
UH
44GIOChannel *channels[2];
45
e15f48c2
BV
46struct databag {
47 int pipe_fds[2];
48 uint8_t sample_generator;
49 uint8_t thread_running;
50 uint64_t samples_counter;
51 int device_index;
e15f48c2 52 gpointer session_device_id;
b9cc3629 53 GTimer *timer;
e15f48c2 54};
85b5af06 55
6239c175
UH
56static int capabilities[] = {
57 HWCAP_LOGIC_ANALYZER,
e15f48c2 58 HWCAP_PATTERN_MODE,
6239c175 59 HWCAP_LIMIT_SAMPLES,
b9cc3629 60 HWCAP_LIMIT_MSEC,
ba3d481b 61 HWCAP_CONTINUOUS
6239c175
UH
62};
63
02440dd8 64static const char *patternmodes[] = {
e15f48c2
BV
65 "random",
66 "incremental",
02440dd8 67 NULL,
85b5af06
UH
68};
69
917e0e71
BV
70static uint8_t genmode_default[] = {
71 0x4c, 0x92, 0x92, 0x92, 0x64, 0x00, 0x00, 0x00,
72 0x82, 0xfe, 0xfe, 0x82, 0x00, 0x00, 0x00, 0x00,
73 0x7c, 0x82, 0x82, 0x92, 0x74, 0x00, 0x00, 0x00,
74 0xfe, 0x12, 0x12, 0x32, 0xcc, 0x00, 0x00, 0x00,
75 0x7c, 0x82, 0x82, 0x82, 0x7c, 0x00, 0x00, 0x00,
76 0xfe, 0x10, 0x28, 0x44, 0x82, 0x00, 0x00, 0x00,
77 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
78 0xbe, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
79};
80
85b5af06
UH
81/* List of struct sigrok_device_instance, maintained by opendev()/closedev(). */
82static GSList *device_instances = NULL;
1924f59f 83static uint64_t cur_samplerate = KHZ(200);
b9cc3629
BV
84static uint64_t limit_samples = 0;
85static uint64_t limit_msec = 0;
917e0e71 86static int default_genmode = GENMODE_DEFAULT;
b9cc3629
BV
87static GThread *my_thread;
88static int thread_running;
6239c175 89
6239c175
UH
90static void hw_stop_acquisition(int device_index, gpointer session_device_id);
91
6239c175
UH
92static int hw_init(char *deviceinfo)
93{
85b5af06
UH
94 struct sigrok_device_instance *sdi;
95
e15f48c2
BV
96 /* Avoid compiler warnings. */
97 deviceinfo = deviceinfo;
85b5af06 98
e15f48c2 99 sdi = sigrok_device_instance_new(0, ST_ACTIVE, DEMONAME, NULL, NULL);
85b5af06
UH
100 if (!sdi)
101 return 0;
e15f48c2 102
85b5af06
UH
103 device_instances = g_slist_append(device_instances, sdi);
104
105 return 1;
6239c175
UH
106}
107
108static int hw_opendev(int device_index)
109{
17e1afcb 110 /* Avoid compiler warnings. */
6239c175
UH
111 device_index = device_index;
112
113 /* Nothing needed so far. */
114 return SIGROK_OK;
115}
116
117static void hw_closedev(int device_index)
118{
17e1afcb 119 /* Avoid compiler warnings. */
6239c175
UH
120 device_index = device_index;
121
122 /* Nothing needed so far. */
123}
124
125static void hw_cleanup(void)
126{
127 /* Nothing needed so far. */
128}
129
130static void *hw_get_device_info(int device_index, int device_info_id)
131{
85b5af06
UH
132 struct sigrok_device_instance *sdi;
133 void *info = NULL;
134
135 if (!(sdi = get_sigrok_device_instance(device_instances, device_index)))
136 return NULL;
137
6239c175
UH
138 switch (device_info_id) {
139 case DI_INSTANCE:
85b5af06 140 info = sdi;
6239c175
UH
141 break;
142 case DI_NUM_PROBES:
143 info = GINT_TO_POINTER(NUM_PROBES);
144 break;
6239c175
UH
145 case DI_CUR_SAMPLERATE:
146 info = &cur_samplerate;
147 break;
e15f48c2
BV
148 case DI_PATTERNMODES:
149 info = &patternmodes;
150 break;
6239c175
UH
151 }
152
153 return info;
154}
155
156static int hw_get_status(int device_index)
157{
17e1afcb 158 /* Avoid compiler warnings. */
6239c175 159 device_index = device_index;
5096c6a6 160
e15f48c2 161 return ST_ACTIVE;
6239c175
UH
162}
163
164static int *hw_get_capabilities(void)
165{
166 return capabilities;
167}
168
169static int hw_set_configuration(int device_index, int capability, void *value)
170{
171 int ret;
85b5af06 172 uint64_t *tmp_u64;
e15f48c2 173 char *stropt;
6239c175 174
17e1afcb 175 /* Avoid compiler warnings. */
6239c175
UH
176 device_index = device_index;
177
e15f48c2 178 if (capability == HWCAP_PROBECONFIG) {
02440dd8 179 /* Nothing to do. */
85b5af06 180 ret = SIGROK_OK;
6239c175 181 } else if (capability == HWCAP_LIMIT_SAMPLES) {
85b5af06
UH
182 tmp_u64 = value;
183 limit_samples = *tmp_u64;
6239c175 184 ret = SIGROK_OK;
b9cc3629
BV
185 } else if (capability == HWCAP_LIMIT_MSEC) {
186 tmp_u64 = value;
187 limit_msec = *tmp_u64;
188 ret = SIGROK_OK;
e15f48c2
BV
189 } else if (capability == HWCAP_PATTERN_MODE) {
190 stropt = value;
191 if (!strcmp(stropt, "random")) {
192 default_genmode = GENMODE_RANDOM;
193 ret = SIGROK_OK;
194 } else if (!strcmp(stropt, "incremental")) {
195 default_genmode = GENMODE_INC;
196 ret = SIGROK_OK;
197 } else {
198 ret = SIGROK_ERR;
199 }
6239c175
UH
200 } else {
201 ret = SIGROK_ERR;
202 }
203
204 return ret;
205}
206
5096c6a6 207static void samples_generator(uint8_t *buf, uint64_t size, void *data)
85b5af06
UH
208{
209 struct databag *mydata = data;
917e0e71 210 uint64_t p, i;
85b5af06 211
5096c6a6 212 memset(buf, 0, size);
85b5af06
UH
213
214 switch (mydata->sample_generator) {
917e0e71
BV
215 case GENMODE_DEFAULT:
216 p = 0;
217 for (i = 0; i < size; i++) {
218 *(buf + i) = ~(genmode_default[p] >> 1);
219 if (++p == 64)
220 p = 0;
221 }
222 break;
85b5af06 223 case GENMODE_RANDOM: /* Random */
5096c6a6
UH
224 for (i = 0; i < size; i++)
225 *(buf + i) = (uint8_t)(rand() & 0xff);
85b5af06
UH
226 break;
227 case GENMODE_INC: /* Simple increment */
5096c6a6 228 for (i = 0; i < size; i++)
85b5af06
UH
229 *(buf + i) = i;
230 break;
231 }
232}
233
234/* Thread function */
235static void thread_func(void *data)
236{
237 struct databag *mydata = data;
238 uint8_t buf[BUFSIZE];
239 uint64_t nb_to_send = 0;
d35aaf02 240 int bytes_written;
1924f59f
HE
241
242 double time_cur, time_last, time_diff;
243
244 time_last = g_timer_elapsed(mydata->timer, NULL);
85b5af06
UH
245
246 while (thread_running) {
1924f59f
HE
247 /* Rate control */
248 time_cur = g_timer_elapsed(mydata->timer, NULL);
249
250 time_diff = time_cur - time_last;
251 time_last = time_cur;
252
253 nb_to_send = cur_samplerate * time_diff;
254
ba3d481b 255 if (limit_samples)
1924f59f
HE
256 nb_to_send = MIN(nb_to_send,
257 limit_samples - mydata->samples_counter);
258
259 /* Make sure we don't overflow. */
260 nb_to_send = MIN(nb_to_send, BUFSIZE);
261
262 if (nb_to_send) {
263 samples_generator(buf, nb_to_send, data);
264 mydata->samples_counter += nb_to_send;
070befcd
BV
265
266 g_io_channel_write_chars(channels[1], (gchar *)&buf,
267 nb_to_send, (gsize *)&bytes_written, NULL);
b9cc3629
BV
268 }
269
1924f59f
HE
270 /* Check if we're done. */
271 if ((limit_msec && time_cur * 1000 > limit_msec) ||
272 (limit_samples && mydata->samples_counter >= limit_samples))
273 {
85b5af06
UH
274 close(mydata->pipe_fds[1]);
275 thread_running = 0;
85b5af06
UH
276 }
277
1924f59f 278 g_usleep(10);
85b5af06
UH
279 }
280}
281
282/* Callback handling data */
283static int receive_data(int fd, int revents, void *user_data)
284{
26ce0bbf
UH
285 struct datafeed_packet packet;
286 char c[BUFSIZE];
287 uint64_t z;
1924f59f 288
26ce0bbf
UH
289 /* Avoid compiler warnings. */
290 fd = fd;
291 revents = revents;
1924f59f
HE
292
293 do {
294 g_io_channel_read_chars(channels[0],
070befcd 295 (gchar *)&c, BUFSIZE, &z, NULL);
1924f59f
HE
296
297 if (z > 0) {
298 packet.type = DF_LOGIC;
299 packet.length = z;
300 packet.unitsize = 1;
301 packet.payload = c;
302 session_bus(user_data, &packet);
303 }
304 } while (z > 0);
85b5af06 305
1924f59f
HE
306 if (!thread_running && z <= 0)
307 {
308 /* Make sure we don't receive more packets */
309 g_io_channel_close(channels[0]);
d35aaf02 310
1924f59f
HE
311 /* Send last packet. */
312 packet.type = DF_END;
85b5af06 313 session_bus(user_data, &packet);
1924f59f
HE
314
315 return FALSE;
85b5af06 316 }
1924f59f 317
85b5af06
UH
318 return TRUE;
319}
320
6239c175
UH
321static int hw_start_acquisition(int device_index, gpointer session_device_id)
322{
323 struct datafeed_packet *packet;
324 struct datafeed_header *header;
85b5af06 325 struct databag *mydata;
6239c175 326
85b5af06 327 mydata = malloc(sizeof(struct databag));
5096c6a6
UH
328 if (!mydata)
329 return SIGROK_ERR_MALLOC;
85b5af06 330
e15f48c2 331 mydata->sample_generator = default_genmode;
85b5af06
UH
332 mydata->session_device_id = session_device_id;
333 mydata->device_index = device_index;
334 mydata->samples_counter = 0;
85b5af06 335
e15f48c2
BV
336 if (pipe(mydata->pipe_fds))
337 return SIGROK_ERR;
85b5af06 338
d35aaf02
UH
339 channels[0] = g_io_channel_unix_new(mydata->pipe_fds[0]);
340 channels[1] = g_io_channel_unix_new(mydata->pipe_fds[1]);
341
342 /* Set channel encoding to binary (default is UTF-8). */
343 g_io_channel_set_encoding(channels[0], NULL, NULL);
344 g_io_channel_set_encoding(channels[1], NULL, NULL);
345
346 /* Make channels to unbuffered. */
347 g_io_channel_set_buffered(channels[0], FALSE);
348 g_io_channel_set_buffered(channels[1], FALSE);
349
85b5af06
UH
350 source_add(mydata->pipe_fds[0], G_IO_IN | G_IO_ERR, 40, receive_data,
351 session_device_id);
352
353 /* Run the demo thread. */
354 g_thread_init(NULL);
1924f59f 355 mydata->timer = g_timer_new();
85b5af06
UH
356 thread_running = 1;
357 my_thread =
358 g_thread_create((GThreadFunc)thread_func, mydata, TRUE, NULL);
e15f48c2
BV
359 if (!my_thread)
360 return SIGROK_ERR;
6239c175
UH
361
362 packet = malloc(sizeof(struct datafeed_packet));
363 header = malloc(sizeof(struct datafeed_header));
e15f48c2 364 if (!packet || !header)
6239c175
UH
365 return SIGROK_ERR_MALLOC;
366
6239c175
UH
367 packet->type = DF_HEADER;
368 packet->length = sizeof(struct datafeed_header);
369 packet->payload = (unsigned char *)header;
370 header->feed_version = 1;
371 gettimeofday(&header->starttime, NULL);
372 header->samplerate = cur_samplerate;
373 header->protocol_id = PROTO_RAW;
c2616fb9
DR
374 header->num_logic_probes = NUM_PROBES;
375 header->num_analog_probes = 0;
6239c175
UH
376 session_bus(session_device_id, packet);
377 free(header);
378 free(packet);
379
380 return SIGROK_OK;
381}
382
6239c175
UH
383static void hw_stop_acquisition(int device_index, gpointer session_device_id)
384{
17e1afcb 385 /* Avoid compiler warnings. */
6239c175 386 device_index = device_index;
1924f59f 387 session_device_id = session_device_id;
6239c175 388
1924f59f
HE
389 /* Stop generate thread. */
390 thread_running = 0;
6239c175
UH
391}
392
393struct device_plugin demo_plugin_info = {
394 "demo",
395 1,
396 hw_init,
397 hw_cleanup,
398 hw_opendev,
399 hw_closedev,
400 hw_get_device_info,
401 hw_get_status,
402 hw_get_capabilities,
403 hw_set_configuration,
404 hw_start_acquisition,
405 hw_stop_acquisition,
406};