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