]> sigrok.org Git - libsigrok.git/blame - src/hardware/demo/api.c
demo: introduce graycode generator mode
[libsigrok.git] / src / hardware / demo / api.c
CommitLineData
6239c175 1/*
50985c20 2 * This file is part of the libsigrok project.
6239c175
UH
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
fc96e6f8 5 * Copyright (C) 2011 Olivier Fauchon <olivier@aixmarseille.com>
c216d623 6 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
7a8a1aba 7 * Copyright (C) 2015 Bartosz Golaszewski <bgolaszewski@baylibre.com>
6239c175
UH
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
2ea1fdf1 20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
6239c175
UH
21 */
22
6ec6c43b 23#include <config.h>
6239c175
UH
24#include <stdlib.h>
25#include <string.h>
4374219b 26#include <math.h>
c1aae900 27#include <libsigrok/libsigrok.h>
45c59c8b 28#include "libsigrok-internal.h"
ba508e22 29#include "protocol.h"
92bcedf6 30
7db90279 31#define DEFAULT_NUM_LOGIC_CHANNELS 8
b1e6eec6 32#define DEFAULT_LOGIC_PATTERN PATTERN_SIGROK
c03ed397 33
b1e6eec6 34#define DEFAULT_NUM_ANALOG_CHANNELS 4
d9251a2c 35#define DEFAULT_ANALOG_AMPLITUDE 10
85b5af06 36
77463bd3 37/* Note: No spaces allowed because of sigrok-cli. */
8b2d41ed 38static const char *logic_pattern_str[] = {
61c39f54
BV
39 "sigrok",
40 "random",
41 "incremental",
77463bd3
SA
42 "walking-one",
43 "walking-zero",
61c39f54
BV
44 "all-low",
45 "all-high",
81d53a29 46 "squid",
03733430 47 "graycode",
61c39f54
BV
48};
49
55fb76b3
UH
50static const uint32_t scanopts[] = {
51 SR_CONF_NUM_LOGIC_CHANNELS,
52 SR_CONF_NUM_ANALOG_CHANNELS,
53};
54
1e4a7cac
BV
55static const uint32_t drvopts[] = {
56 SR_CONF_DEMO_DEV,
57 SR_CONF_LOGIC_ANALYZER,
58 SR_CONF_OSCILLOSCOPE,
59};
60
390795c0 61static const uint32_t devopts[] = {
e91bb0a6 62 SR_CONF_CONTINUOUS,
5827f61b
BV
63 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
64 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
390795c0 65 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
7a8a1aba
BG
66 SR_CONF_AVERAGING | SR_CONF_GET | SR_CONF_SET,
67 SR_CONF_AVG_SAMPLES | SR_CONF_GET | SR_CONF_SET,
390795c0
BV
68};
69
70static const uint32_t devopts_cg_logic[] = {
f12d9979 71 SR_CONF_PATTERN_MODE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
49224c28
BV
72};
73
e2b99f04
SA
74static const uint32_t devopts_cg_analog_group[] = {
75 SR_CONF_AMPLITUDE | SR_CONF_GET | SR_CONF_SET,
76};
77
78static const uint32_t devopts_cg_analog_channel[] = {
f12d9979
BV
79 SR_CONF_PATTERN_MODE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
80 SR_CONF_AMPLITUDE | SR_CONF_GET | SR_CONF_SET,
7a1da331
BV
81};
82
d00088ca
BV
83static const uint64_t samplerates[] = {
84 SR_HZ(1),
85 SR_GHZ(1),
86 SR_HZ(1),
4bfbf9fc
BV
87};
88
4f840ce9 89static GSList *scan(struct sr_dev_driver *di, GSList *options)
6239c175 90{
33ef7573 91 struct dev_context *devc;
c07f60e7 92 struct sr_dev_inst *sdi;
ba7dd8bb 93 struct sr_channel *ch;
49224c28 94 struct sr_channel_group *cg, *acg;
c07f60e7 95 struct sr_config *src;
8b2d41ed 96 struct analog_gen *ag;
43376f33 97 GSList *l;
ba7dd8bb
UH
98 int num_logic_channels, num_analog_channels, pattern, i;
99 char channel_name[16];
067d0716 100
3f239f08
UH
101 num_logic_channels = DEFAULT_NUM_LOGIC_CHANNELS;
102 num_analog_channels = DEFAULT_NUM_ANALOG_CHANNELS;
c07f60e7
BV
103 for (l = options; l; l = l->next) {
104 src = l->data;
105 switch (src->key) {
3f239f08 106 case SR_CONF_NUM_LOGIC_CHANNELS:
ba7dd8bb 107 num_logic_channels = g_variant_get_int32(src->data);
c07f60e7 108 break;
3f239f08 109 case SR_CONF_NUM_ANALOG_CHANNELS:
ba7dd8bb 110 num_analog_channels = g_variant_get_int32(src->data);
c07f60e7
BV
111 break;
112 }
113 }
85b5af06 114
aac29cc1 115 sdi = g_malloc0(sizeof(struct sr_dev_inst));
45884333 116 sdi->status = SR_ST_INACTIVE;
4b664cd6 117 sdi->model = g_strdup("Demo device");
e15f48c2 118
a49a320d 119 devc = g_malloc0(sizeof(struct dev_context));
8b2d41ed 120 devc->cur_samplerate = SR_KHZ(200);
ba7dd8bb
UH
121 devc->num_logic_channels = num_logic_channels;
122 devc->logic_unitsize = (devc->num_logic_channels + 7) / 8;
015f0970
GS
123 devc->all_logic_channels_mask = 1UL << 0;
124 devc->all_logic_channels_mask <<= devc->num_logic_channels;
125 devc->all_logic_channels_mask--;
b1e6eec6 126 devc->logic_pattern = DEFAULT_LOGIC_PATTERN;
ba7dd8bb 127 devc->num_analog_channels = num_analog_channels;
8b2d41ed 128
f18e0db3
LPC
129 if (num_logic_channels > 0) {
130 /* Logic channels, all in one channel group. */
131 cg = g_malloc0(sizeof(struct sr_channel_group));
132 cg->name = g_strdup("Logic");
133 for (i = 0; i < num_logic_channels; i++) {
134 sprintf(channel_name, "D%d", i);
f1c79a6a 135 ch = sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE, channel_name);
f18e0db3
LPC
136 cg->channels = g_slist_append(cg->channels, ch);
137 }
138 sdi->channel_groups = g_slist_append(NULL, cg);
87ca93c5
BV
139 }
140
ba7dd8bb 141 /* Analog channels, channel groups and pattern generators. */
d91d0b12 142 devc->ch_ag = g_hash_table_new(g_direct_hash, g_direct_equal);
f18e0db3
LPC
143 if (num_analog_channels > 0) {
144 pattern = 0;
145 /* An "Analog" channel group with all analog channels in it. */
146 acg = g_malloc0(sizeof(struct sr_channel_group));
147 acg->name = g_strdup("Analog");
148 sdi->channel_groups = g_slist_append(sdi->channel_groups, acg);
149
f18e0db3
LPC
150 for (i = 0; i < num_analog_channels; i++) {
151 snprintf(channel_name, 16, "A%d", i);
152 ch = sr_channel_new(sdi, i + num_logic_channels, SR_CHANNEL_ANALOG,
f1c79a6a 153 TRUE, channel_name);
f18e0db3
LPC
154 acg->channels = g_slist_append(acg->channels, ch);
155
156 /* Every analog channel gets its own channel group as well. */
157 cg = g_malloc0(sizeof(struct sr_channel_group));
158 cg->name = g_strdup(channel_name);
159 cg->channels = g_slist_append(NULL, ch);
160 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
161
162 /* Every channel gets a generator struct. */
163 ag = g_malloc(sizeof(struct analog_gen));
01f2adb0 164 ag->ch = ch;
f18e0db3 165 ag->amplitude = DEFAULT_ANALOG_AMPLITUDE;
3be044aa 166 sr_analog_init(&ag->packet, &ag->encoding, &ag->meaning, &ag->spec, 2);
4b770103
UH
167 ag->packet.meaning->channels = cg->channels;
168 ag->packet.meaning->mq = 0;
169 ag->packet.meaning->mqflags = 0;
170 ag->packet.meaning->unit = SR_UNIT_VOLT;
f18e0db3
LPC
171 ag->packet.data = ag->pattern_data;
172 ag->pattern = pattern;
173 ag->avg_val = 0.0f;
174 ag->num_avgs = 0;
175 g_hash_table_insert(devc->ch_ag, ch, ag);
176
177 if (++pattern == ARRAY_SIZE(analog_pattern_str))
178 pattern = 0;
179 }
33ef7573 180 }
33ef7573
JH
181
182 sdi->priv = devc;
183
43376f33 184 return std_scan_complete(di, g_slist_append(NULL, sdi));
6239c175
UH
185}
186
3553451f 187static void clear_helper(struct dev_context *devc)
ed0b7fed 188{
49224c28
BV
189 GHashTableIter iter;
190 void *value;
ed0b7fed 191
49224c28
BV
192 /* Analog generators. */
193 g_hash_table_iter_init(&iter, devc->ch_ag);
194 while (g_hash_table_iter_next(&iter, NULL, &value))
195 g_free(value);
196 g_hash_table_unref(devc->ch_ag);
ed0b7fed
BV
197}
198
6ab68731 199static int dev_clear(const struct sr_dev_driver *di)
6239c175 200{
3553451f 201 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
6239c175
UH
202}
203
dd7a72ea
UH
204static int config_get(uint32_t key, GVariant **data,
205 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6239c175 206{
c07f60e7 207 struct dev_context *devc;
ba7dd8bb 208 struct sr_channel *ch;
2388ae86
BV
209 struct analog_gen *ag;
210 int pattern;
6f57fd96 211
2388ae86
BV
212 if (!sdi)
213 return SR_ERR_ARG;
8f996b89 214
c07f60e7 215 devc = sdi->priv;
584560f1 216 switch (key) {
123e1313 217 case SR_CONF_SAMPLERATE:
a7684294 218 *data = g_variant_new_uint64(devc->cur_samplerate);
6239c175 219 break;
2474d87e 220 case SR_CONF_LIMIT_SAMPLES:
a7684294 221 *data = g_variant_new_uint64(devc->limit_samples);
2474d87e
BV
222 break;
223 case SR_CONF_LIMIT_MSEC:
a7684294 224 *data = g_variant_new_uint64(devc->limit_msec);
2474d87e 225 break;
7a8a1aba
BG
226 case SR_CONF_AVERAGING:
227 *data = g_variant_new_boolean(devc->avg);
228 break;
229 case SR_CONF_AVG_SAMPLES:
230 *data = g_variant_new_uint64(devc->avg_samples);
231 break;
2474d87e 232 case SR_CONF_PATTERN_MODE:
53b4680f 233 if (!cg)
660e398f 234 return SR_ERR_CHANNEL_GROUP;
49224c28 235 /* Any channel in the group will do. */
ba7dd8bb 236 ch = cg->channels->data;
3f239f08 237 if (ch->type == SR_CHANNEL_LOGIC) {
2388ae86
BV
238 pattern = devc->logic_pattern;
239 *data = g_variant_new_string(logic_pattern_str[pattern]);
3f239f08 240 } else if (ch->type == SR_CHANNEL_ANALOG) {
49224c28 241 ag = g_hash_table_lookup(devc->ch_ag, ch);
2388ae86
BV
242 pattern = ag->pattern;
243 *data = g_variant_new_string(analog_pattern_str[pattern]);
244 } else
245 return SR_ERR_BUG;
c07f60e7 246 break;
dddabe37
BV
247 case SR_CONF_AMPLITUDE:
248 if (!cg)
249 return SR_ERR_CHANNEL_GROUP;
49224c28 250 /* Any channel in the group will do. */
dddabe37
BV
251 ch = cg->channels->data;
252 if (ch->type != SR_CHANNEL_ANALOG)
253 return SR_ERR_ARG;
49224c28 254 ag = g_hash_table_lookup(devc->ch_ag, ch);
dddabe37
BV
255 *data = g_variant_new_double(ag->amplitude);
256 break;
7dfcf010 257 default:
bd6fbf62 258 return SR_ERR_NA;
6239c175
UH
259 }
260
dfb0fa1a 261 return SR_OK;
6239c175
UH
262}
263
dd7a72ea
UH
264static int config_set(uint32_t key, GVariant *data,
265 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6239c175 266{
8b2d41ed 267 struct dev_context *devc;
4374219b 268 struct analog_gen *ag;
ba7dd8bb 269 struct sr_channel *ch;
49224c28 270 GSList *l;
a9010323 271 int logic_pattern, analog_pattern;
6239c175 272
8b2d41ed 273 devc = sdi->priv;
6239c175 274
584560f1 275 switch (key) {
2388ae86 276 case SR_CONF_SAMPLERATE:
a7684294 277 devc->cur_samplerate = g_variant_get_uint64(data);
2388ae86
BV
278 break;
279 case SR_CONF_LIMIT_SAMPLES:
a7684294
JH
280 devc->limit_msec = 0;
281 devc->limit_samples = g_variant_get_uint64(data);
2388ae86
BV
282 break;
283 case SR_CONF_LIMIT_MSEC:
a7684294
JH
284 devc->limit_msec = g_variant_get_uint64(data);
285 devc->limit_samples = 0;
2388ae86 286 break;
7a8a1aba
BG
287 case SR_CONF_AVERAGING:
288 devc->avg = g_variant_get_boolean(data);
289 sr_dbg("%s averaging", devc->avg ? "Enabling" : "Disabling");
290 break;
291 case SR_CONF_AVG_SAMPLES:
292 devc->avg_samples = g_variant_get_uint64(data);
293 sr_dbg("Setting averaging rate to %" PRIu64, devc->avg_samples);
294 break;
2388ae86 295 case SR_CONF_PATTERN_MODE:
53b4680f 296 if (!cg)
660e398f 297 return SR_ERR_CHANNEL_GROUP;
697fb6dd
UH
298 logic_pattern = std_str_idx(data, ARRAY_AND_SIZE(logic_pattern_str));
299 analog_pattern = std_str_idx(data, ARRAY_AND_SIZE(analog_pattern_str));
300 if (logic_pattern < 0 && analog_pattern < 0)
49224c28
BV
301 return SR_ERR_ARG;
302 for (l = cg->channels; l; l = l->next) {
303 ch = l->data;
304 if (ch->type == SR_CHANNEL_LOGIC) {
305 if (logic_pattern == -1)
306 return SR_ERR_ARG;
307 sr_dbg("Setting logic pattern to %s",
308 logic_pattern_str[logic_pattern]);
309 devc->logic_pattern = logic_pattern;
310 /* Might as well do this now, these are static. */
311 if (logic_pattern == PATTERN_ALL_LOW)
312 memset(devc->logic_data, 0x00, LOGIC_BUFSIZE);
313 else if (logic_pattern == PATTERN_ALL_HIGH)
314 memset(devc->logic_data, 0xff, LOGIC_BUFSIZE);
315 } else if (ch->type == SR_CHANNEL_ANALOG) {
316 if (analog_pattern == -1)
317 return SR_ERR_ARG;
318 sr_dbg("Setting analog pattern for channel %s to %s",
319 ch->name, analog_pattern_str[analog_pattern]);
320 ag = g_hash_table_lookup(devc->ch_ag, ch);
321 ag->pattern = analog_pattern;
322 } else
323 return SR_ERR_BUG;
324 }
2388ae86 325 break;
dddabe37
BV
326 case SR_CONF_AMPLITUDE:
327 if (!cg)
328 return SR_ERR_CHANNEL_GROUP;
49224c28
BV
329 for (l = cg->channels; l; l = l->next) {
330 ch = l->data;
331 if (ch->type != SR_CHANNEL_ANALOG)
332 return SR_ERR_ARG;
333 ag = g_hash_table_lookup(devc->ch_ag, ch);
334 ag->amplitude = g_variant_get_double(data);
335 }
dddabe37 336 break;
2388ae86 337 default:
a9010323 338 return SR_ERR_NA;
6239c175
UH
339 }
340
a9010323 341 return SR_OK;
6239c175
UH
342}
343
dd7a72ea
UH
344static int config_list(uint32_t key, GVariant **data,
345 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
a1c743fc 346{
ba7dd8bb 347 struct sr_channel *ch;
a1c743fc 348
53b4680f 349 if (!cg) {
7a1da331 350 switch (key) {
e66d1892 351 case SR_CONF_SCAN_OPTIONS:
7a1da331 352 case SR_CONF_DEVICE_OPTIONS:
e66d1892 353 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
7a1da331 354 case SR_CONF_SAMPLERATE:
53012da6 355 *data = std_gvar_samplerates_steps(ARRAY_AND_SIZE(samplerates));
7a1da331
BV
356 break;
357 default:
358 return SR_ERR_NA;
359 }
360 } else {
ba7dd8bb 361 ch = cg->channels->data;
7a1da331
BV
362 switch (key) {
363 case SR_CONF_DEVICE_OPTIONS:
49224c28 364 if (ch->type == SR_CHANNEL_LOGIC)
53012da6 365 *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg_logic));
e2b99f04
SA
366 else if (ch->type == SR_CHANNEL_ANALOG) {
367 if (strcmp(cg->name, "Analog") == 0)
53012da6 368 *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg_analog_group));
e2b99f04 369 else
53012da6 370 *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg_analog_channel));
e2b99f04 371 }
49224c28
BV
372 else
373 return SR_ERR_BUG;
7a1da331
BV
374 break;
375 case SR_CONF_PATTERN_MODE:
e2b99f04
SA
376 /* The analog group (with all 4 channels) shall not have a pattern property. */
377 if (strcmp(cg->name, "Analog") == 0)
378 return SR_ERR_NA;
379
3f239f08 380 if (ch->type == SR_CHANNEL_LOGIC)
53012da6 381 *data = g_variant_new_strv(ARRAY_AND_SIZE(logic_pattern_str));
3f239f08 382 else if (ch->type == SR_CHANNEL_ANALOG)
53012da6 383 *data = g_variant_new_strv(ARRAY_AND_SIZE(analog_pattern_str));
2388ae86
BV
384 else
385 return SR_ERR_BUG;
7a1da331
BV
386 break;
387 default:
388 return SR_ERR_NA;
389 }
a1c743fc
BV
390 }
391
392 return SR_OK;
393}
394
695dc859 395static int dev_acquisition_start(const struct sr_dev_inst *sdi)
6239c175 396{
61c39f54 397 struct dev_context *devc;
1b7b72d4
GS
398 GSList *l;
399 struct sr_channel *ch;
4a465510
GS
400 int bitpos;
401 uint8_t mask;
49224c28
BV
402 GHashTableIter iter;
403 void *value;
85b5af06 404
61c39f54 405 devc = sdi->priv;
a49a320d 406 devc->sent_samples = 0;
767ca135 407 devc->sent_frame_samples = 0;
85b5af06 408
4a465510
GS
409 /*
410 * Determine the numbers of logic and analog channels that are
411 * involved in the acquisition. Determine an offset and a mask to
412 * remove excess logic data content before datafeed submission.
413 */
1b7b72d4
GS
414 devc->enabled_logic_channels = 0;
415 devc->enabled_analog_channels = 0;
416 for (l = sdi->channels; l; l = l->next) {
417 ch = l->data;
418 if (!ch->enabled)
419 continue;
420 if (ch->type == SR_CHANNEL_ANALOG) {
421 devc->enabled_analog_channels++;
422 continue;
423 }
4a465510 424 if (ch->type != SR_CHANNEL_LOGIC)
1b7b72d4 425 continue;
4a465510
GS
426 /*
427 * TODO: Need we create a channel map here, such that the
428 * session datafeed packets will have a dense representation
429 * of the enabled channels' data? For example store channels
430 * D3 and D5 in bit positions 0 and 1 respectively, when all
431 * other channels are disabled? The current implementation
432 * generates a sparse layout, might provide data for logic
433 * channels that are disabled while it might suppress data
434 * from enabled channels at the same time.
435 */
436 devc->enabled_logic_channels++;
1b7b72d4 437 }
4a465510
GS
438 devc->first_partial_logic_index = devc->enabled_logic_channels / 8;
439 bitpos = devc->enabled_logic_channels % 8;
440 mask = (1 << bitpos) - 1;
441 devc->first_partial_logic_mask = mask;
91057d2f
UH
442 sr_dbg("num logic %zu, partial off %zu, mask 0x%02x.",
443 devc->enabled_logic_channels,
4a465510
GS
444 devc->first_partial_logic_index,
445 devc->first_partial_logic_mask);
446
447 /*
448 * Have the waveform for analog patterns pre-generated. It's
449 * supposed to be periodic, so the generator just needs to
450 * access the prepared sample data (DDS style).
451 */
49224c28
BV
452 g_hash_table_iter_init(&iter, devc->ch_ag);
453 while (g_hash_table_iter_next(&iter, NULL, &value))
ba508e22 454 demo_generate_analog_pattern(value, devc->cur_samplerate);
4374219b 455
98c01fe1 456 sr_session_source_add(sdi->session, -1, 0, 100,
ba508e22 457 demo_prepare_data, (struct sr_dev_inst *)sdi);
85b5af06 458
bee2b016 459 std_session_send_df_header(sdi);
f366e86c 460
f55bea76
SA
461 if (SAMPLES_PER_FRAME > 0)
462 std_session_send_frame_begin(sdi);
463
3b203673 464 /* We use this timestamp to decide how many more samples to send. */
a49a320d
DE
465 devc->start_us = g_get_monotonic_time();
466 devc->spent_us = 0;
471ac344 467 devc->step = 0;
3b203673 468
e46b8fb1 469 return SR_OK;
6239c175
UH
470}
471
695dc859 472static int dev_acquisition_stop(struct sr_dev_inst *sdi)
6239c175 473{
027bf077 474 sr_session_source_remove(sdi->session, -1);
f55bea76
SA
475
476 if (SAMPLES_PER_FRAME > 0)
477 std_session_send_frame_end(sdi);
478
bee2b016 479 std_session_send_df_end(sdi);
7fd3e859 480
3010f21c 481 return SR_OK;
6239c175
UH
482}
483
dd5c48a6 484static struct sr_dev_driver demo_driver_info = {
e519ba86
UH
485 .name = "demo",
486 .longname = "Demo driver and pattern generator",
487 .api_version = 1,
c2fdcc25 488 .init = std_init,
700d6b64 489 .cleanup = std_cleanup,
6078d2c9 490 .scan = scan,
c01bf34c 491 .dev_list = std_dev_list,
6ab68731 492 .dev_clear = dev_clear,
035a1078
BV
493 .config_get = config_get,
494 .config_set = config_set,
a1c743fc 495 .config_list = config_list,
4d67b9d9
UH
496 .dev_open = std_dummy_dev_open,
497 .dev_close = std_dummy_dev_close,
6078d2c9
UH
498 .dev_acquisition_start = dev_acquisition_start,
499 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 500 .context = NULL,
6239c175 501};
dd5c48a6 502SR_REGISTER_DEV_DRIVER(demo_driver_info);