]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/demo/demo.c
Hardware drivers: Use names for struct entries.
[libsigrok.git] / hardware / demo / demo.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2011 Olivier Fauchon <olivier@aixmarseille.com>
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>
23#include <unistd.h>
24#include <string.h>
25#include <sigrok.h>
26#ifdef _WIN32
27#include <io.h>
28#include <fcntl.h>
29#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
30#endif
31#include "config.h"
32
33#define NUM_PROBES 8
34#define DEMONAME "Demo device"
35/* size of chunks to send through the session bus */
36#define BUFSIZE 4096
37
38enum {
39 GENMODE_DEFAULT,
40 GENMODE_RANDOM,
41 GENMODE_INC,
42};
43
44/* FIXME: Should not be global. */
45GIOChannel *channels[2];
46
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;
53 gpointer session_device_id;
54 GTimer *timer;
55};
56
57static int capabilities[] = {
58 SR_HWCAP_LOGIC_ANALYZER,
59 SR_HWCAP_SAMPLERATE,
60 SR_HWCAP_PATTERN_MODE,
61 SR_HWCAP_LIMIT_SAMPLES,
62 SR_HWCAP_LIMIT_MSEC,
63 SR_HWCAP_CONTINUOUS,
64};
65
66static struct sr_samplerates samplerates = {
67 SR_HZ(1),
68 SR_GHZ(1),
69 SR_HZ(1),
70 NULL,
71};
72
73static const char *patternmodes[] = {
74 "random",
75 "incremental",
76 NULL,
77};
78
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
90/* List of struct sr_device_instance, maintained by opendev()/closedev(). */
91static GSList *device_instances = NULL;
92static uint64_t cur_samplerate = SR_KHZ(200);
93static uint64_t limit_samples = 0;
94static uint64_t limit_msec = 0;
95static int default_genmode = GENMODE_DEFAULT;
96static GThread *my_thread;
97static int thread_running;
98
99static void hw_stop_acquisition(int device_index, gpointer session_device_id);
100
101static int hw_init(const char *deviceinfo)
102{
103 struct sr_device_instance *sdi;
104
105 /* Avoid compiler warnings. */
106 deviceinfo = deviceinfo;
107
108 sdi = sr_device_instance_new(0, SR_ST_ACTIVE, DEMONAME, NULL, NULL);
109 if (!sdi)
110 return 0;
111
112 device_instances = g_slist_append(device_instances, sdi);
113
114 return 1;
115}
116
117static int hw_opendev(int device_index)
118{
119 /* Avoid compiler warnings. */
120 device_index = device_index;
121
122 /* Nothing needed so far. */
123 return SR_OK;
124}
125
126static void hw_closedev(int device_index)
127{
128 /* Avoid compiler warnings. */
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{
141 struct sr_device_instance *sdi;
142 void *info = NULL;
143
144 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
145 return NULL;
146
147 switch (device_info_id) {
148 case SR_DI_INSTANCE:
149 info = sdi;
150 break;
151 case SR_DI_NUM_PROBES:
152 info = GINT_TO_POINTER(NUM_PROBES);
153 break;
154 case SR_DI_SAMPLERATES:
155 info = &samplerates;
156 break;
157 case SR_DI_CUR_SAMPLERATE:
158 info = &cur_samplerate;
159 break;
160 case SR_DI_PATTERNMODES:
161 info = &patternmodes;
162 break;
163 }
164
165 return info;
166}
167
168static int hw_get_status(int device_index)
169{
170 /* Avoid compiler warnings. */
171 device_index = device_index;
172
173 return SR_ST_ACTIVE;
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;
184 uint64_t *tmp_u64;
185 char *stropt;
186
187 /* Avoid compiler warnings. */
188 device_index = device_index;
189
190 if (capability == SR_HWCAP_PROBECONFIG) {
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;
196 ret = SR_OK;
197 } else if (capability == SR_HWCAP_LIMIT_SAMPLES) {
198 tmp_u64 = value;
199 limit_samples = *tmp_u64;
200 ret = SR_OK;
201 } else if (capability == SR_HWCAP_LIMIT_MSEC) {
202 tmp_u64 = value;
203 limit_msec = *tmp_u64;
204 ret = SR_OK;
205 } else if (capability == SR_HWCAP_PATTERN_MODE) {
206 stropt = value;
207 if (!strcmp(stropt, "random")) {
208 default_genmode = GENMODE_RANDOM;
209 ret = SR_OK;
210 } else if (!strcmp(stropt, "incremental")) {
211 default_genmode = GENMODE_INC;
212 ret = SR_OK;
213 } else {
214 ret = SR_ERR;
215 }
216 } else {
217 ret = SR_ERR;
218 }
219
220 return ret;
221}
222
223static void samples_generator(uint8_t *buf, uint64_t size, void *data)
224{
225 static uint64_t p = 0;
226 struct databag *mydata = data;
227 uint64_t i;
228
229 memset(buf, 0, size);
230
231 switch (mydata->sample_generator) {
232 case GENMODE_DEFAULT:
233 for (i = 0; i < size; i++) {
234 *(buf + i) = ~(genmode_default[p] >> 1);
235 if (++p == 64)
236 p = 0;
237 }
238 break;
239 case GENMODE_RANDOM: /* Random */
240 for (i = 0; i < size; i++)
241 *(buf + i) = (uint8_t)(rand() & 0xff);
242 break;
243 case GENMODE_INC: /* Simple increment */
244 for (i = 0; i < size; i++)
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;
256 int bytes_written;
257
258 double time_cur, time_last, time_diff;
259
260 time_last = g_timer_elapsed(mydata->timer, NULL);
261
262 while (thread_running) {
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
271 if (limit_samples)
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;
281
282 g_io_channel_write_chars(channels[1], (gchar *)&buf,
283 nb_to_send, (gsize *)&bytes_written, NULL);
284 }
285
286 /* Check if we're done. */
287 if ((limit_msec && time_cur * 1000 > limit_msec) ||
288 (limit_samples && mydata->samples_counter >= limit_samples))
289 {
290 close(mydata->pipe_fds[1]);
291 thread_running = 0;
292 }
293
294 g_usleep(10);
295 }
296}
297
298/* Callback handling data */
299static int receive_data(int fd, int revents, void *user_data)
300{
301 struct sr_datafeed_packet packet;
302 char c[BUFSIZE];
303 gsize z;
304
305 /* Avoid compiler warnings. */
306 fd = fd;
307 revents = revents;
308
309 do {
310 g_io_channel_read_chars(channels[0],
311 (gchar *)&c, BUFSIZE, &z, NULL);
312
313 if (z > 0) {
314 packet.type = SR_DF_LOGIC;
315 packet.length = z;
316 packet.unitsize = 1;
317 packet.payload = c;
318 sr_session_bus(user_data, &packet);
319 }
320 } while (z > 0);
321
322 if (!thread_running && z <= 0)
323 {
324 /* Make sure we don't receive more packets */
325 g_io_channel_close(channels[0]);
326
327 /* Send last packet. */
328 packet.type = SR_DF_END;
329 sr_session_bus(user_data, &packet);
330
331 return FALSE;
332 }
333
334 return TRUE;
335}
336
337static int hw_start_acquisition(int device_index, gpointer session_device_id)
338{
339 struct sr_datafeed_packet *packet;
340 struct sr_datafeed_header *header;
341 struct databag *mydata;
342
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__);
346 return SR_ERR_MALLOC;
347 }
348
349 mydata->sample_generator = default_genmode;
350 mydata->session_device_id = session_device_id;
351 mydata->device_index = device_index;
352 mydata->samples_counter = 0;
353
354 if (pipe(mydata->pipe_fds))
355 return SR_ERR;
356
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
368 sr_source_add(mydata->pipe_fds[0], G_IO_IN | G_IO_ERR, 40,
369 receive_data, session_device_id);
370
371 /* Run the demo thread. */
372 g_thread_init(NULL);
373 /* this needs to be done between g_thread_init() and g_thread_create() */
374 mydata->timer = g_timer_new();
375 thread_running = 1;
376 my_thread =
377 g_thread_create((GThreadFunc)thread_func, mydata, TRUE, NULL);
378 if (!my_thread)
379 return SR_ERR;
380
381 if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
382 sr_err("demo: %s: packet malloc failed", __func__);
383 return SR_ERR_MALLOC;
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 }
390
391 packet->type = SR_DF_HEADER;
392 packet->length = sizeof(struct sr_datafeed_header);
393 packet->payload = (unsigned char *)header;
394 header->feed_version = 1;
395 gettimeofday(&header->starttime, NULL);
396 header->samplerate = cur_samplerate;
397 header->protocol_id = SR_PROTO_RAW;
398 header->num_logic_probes = NUM_PROBES;
399 header->num_analog_probes = 0;
400 sr_session_bus(session_device_id, packet);
401 g_free(header);
402 g_free(packet);
403
404 return SR_OK;
405}
406
407static void hw_stop_acquisition(int device_index, gpointer session_device_id)
408{
409 /* Avoid compiler warnings. */
410 device_index = device_index;
411 session_device_id = session_device_id;
412
413 /* Stop generate thread. */
414 thread_running = 0;
415}
416
417struct sr_device_plugin demo_plugin_info = {
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,
431};