]> sigrok.org Git - libsigrok.git/blame - src/hardware/chronovu-la/api.c
Don't check sr_channel_new() return value (always succeeds).
[libsigrok.git] / src / hardware / chronovu-la / api.c
CommitLineData
b908f067 1/*
50985c20 2 * This file is part of the libsigrok project.
b908f067 3 *
b172c130 4 * Copyright (C) 2011-2014 Uwe Hermann <uwe@hermann-uwe.de>
b908f067
UH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
45e080b6 21#include "protocol.h"
b908f067 22
7b356712
UH
23SR_PRIV struct sr_dev_driver chronovu_la_driver_info;
24static struct sr_dev_driver *di = &chronovu_la_driver_info;
b908f067 25
f254bc4b 26static const uint32_t devopts[] = {
1bec72d2 27 SR_CONF_LOGIC_ANALYZER,
5827f61b
BV
28 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
29 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET | SR_CONF_LIST,
30 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
31 SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
1bec72d2
BV
32};
33
aeff7fa2
BV
34static const int32_t trigger_matches[] = {
35 SR_TRIGGER_ZERO,
36 SR_TRIGGER_ONE,
37 SR_TRIGGER_RISING,
38 SR_TRIGGER_FALLING,
39};
40
00910580
UH
41/* The ChronoVu LA8/LA16 can have multiple VID/PID pairs. */
42static struct {
43 uint16_t vid;
44 uint16_t pid;
45 int model;
46 const char *iproduct;
47} vid_pid[] = {
48 { 0x0403, 0x6001, CHRONOVU_LA8, "ChronoVu LA8" },
49 { 0x0403, 0x8867, CHRONOVU_LA8, "ChronoVu LA8" },
50 { 0x0403, 0x6001, CHRONOVU_LA16, "ChronoVu LA16" },
51 { 0x0403, 0x8867, CHRONOVU_LA16, "ChronoVu LA16" },
74e5f12d
UH
52};
53
6078d2c9 54static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
b908f067 55
97900799 56static void clear_helper(void *priv)
c4f3ed4b 57{
1644fb24 58 struct dev_context *devc;
b172c130 59
97900799 60 devc = priv;
1644fb24 61
97900799
UH
62 ftdi_free(devc->ftdic);
63 g_free(devc->final_buf);
64}
c4f3ed4b 65
3b412e3a 66static int dev_clear(void)
97900799
UH
67{
68 return std_dev_clear(di, clear_helper);
c4f3ed4b
BV
69}
70
6078d2c9 71static int init(struct sr_context *sr_ctx)
61136ea6 72{
f6beaac5 73 return std_init(sr_ctx, di, LOG_PREFIX);
61136ea6
BV
74}
75
00910580 76static int add_device(int idx, int model, GSList **devices)
b908f067 77{
00910580
UH
78 int ret;
79 unsigned int i;
b908f067 80 struct sr_dev_inst *sdi;
1644fb24
BV
81 struct drv_context *drvc;
82 struct dev_context *devc;
00910580 83 struct sr_channel *ch;
c4f3ed4b 84
00910580 85 ret = SR_OK;
f3a35908
UH
86
87 drvc = di->priv;
4b97c74e 88
1644fb24 89 /* Allocate memory for our private device context. */
f57d8ffe 90 devc = g_malloc0(sizeof(struct dev_context));
b908f067
UH
91
92 /* Set some sane defaults. */
00910580
UH
93 devc->prof = &cv_profiles[model];
94 devc->ftdic = NULL; /* Will be set in the open() API call. */
95 devc->cur_samplerate = 0; /* Set later (different for LA8/LA16). */
1644fb24
BV
96 devc->limit_msec = 0;
97 devc->limit_samples = 0;
3e9b7f9c 98 devc->cb_data = NULL;
1644fb24
BV
99 memset(devc->mangled_buf, 0, BS);
100 devc->final_buf = NULL;
00910580
UH
101 devc->trigger_pattern = 0x0000; /* Irrelevant, see trigger_mask. */
102 devc->trigger_mask = 0x0000; /* All channels: "don't care". */
103 devc->trigger_edgemask = 0x0000; /* All channels: "state triggered". */
1644fb24
BV
104 devc->trigger_found = 0;
105 devc->done = 0;
106 devc->block_counter = 0;
00910580
UH
107 devc->divcount = 0;
108 devc->usb_vid = vid_pid[idx].vid;
109 devc->usb_pid = vid_pid[idx].pid;
110 memset(devc->samplerates, 0, sizeof(uint64_t) * 255);
b908f067
UH
111
112 /* Allocate memory where we'll store the de-mangled data. */
1644fb24 113 if (!(devc->final_buf = g_try_malloc(SDRAM_SIZE))) {
b172c130 114 sr_err("Failed to allocate memory for sample buffer.");
00910580 115 ret = SR_ERR_MALLOC;
1644fb24 116 goto err_free_devc;
b908f067
UH
117 }
118
00910580
UH
119 /* We now know the device, set its max. samplerate as default. */
120 devc->cur_samplerate = devc->prof->max_samplerate;
b908f067
UH
121
122 /* Register the device with libsigrok. */
aac29cc1 123 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
124 sdi->status = SR_ST_INITIALIZING;
125 sdi->vendor = g_strdup("ChronoVu");
126 sdi->model = g_strdup(devc->prof->modelname);
f3a35908 127 sdi->driver = di;
1644fb24 128 sdi->priv = devc;
b908f067 129
00910580 130 for (i = 0; i < devc->prof->num_channels; i++) {
c368e6f3
UH
131 ch = sr_channel_new(i, SR_CHANNEL_LOGIC, TRUE,
132 cv_channel_names[i]);
ba7dd8bb 133 sdi->channels = g_slist_append(sdi->channels, ch);
87ca93c5
BV
134 }
135
00910580 136 *devices = g_slist_append(*devices, sdi);
1644fb24 137 drvc->instances = g_slist_append(drvc->instances, sdi);
b908f067 138
65c8d48f
BV
139 if (ret == SR_OK)
140 return SR_OK;
b908f067 141
1644fb24
BV
142err_free_devc:
143 g_free(devc);
b908f067 144
00910580
UH
145 return ret;
146}
147
148static GSList *scan(GSList *options)
149{
150 int ret;
151 unsigned int i;
152 GSList *devices;
153 struct ftdi_context *ftdic;
154
155 (void)options;
156
157 devices = NULL;
158
159 /* Allocate memory for the FTDI context and initialize it. */
160 if (!(ftdic = ftdi_new())) {
161 sr_err("Failed to initialize libftdi.");
162 return NULL;
163 }
164
165 /* Check for LA8 and/or LA16 devices with various VID/PIDs. */
166 for (i = 0; i < ARRAY_SIZE(vid_pid); i++) {
167 ret = ftdi_usb_open_desc(ftdic, vid_pid[i].vid,
168 vid_pid[i].pid, vid_pid[i].iproduct, NULL);
cfe01d06
UH
169 /* Show errors other than "device not found". */
170 if (ret < 0 && ret != -3)
171 sr_dbg("Error finding/opening device (%d): %s.",
172 ret, ftdi_get_error_string(ftdic));
00910580 173 if (ret < 0)
cfe01d06 174 continue; /* No device found, or not usable. */
00910580
UH
175
176 sr_dbg("Found %s device (%04x:%04x).",
177 vid_pid[i].iproduct, vid_pid[i].vid, vid_pid[i].pid);
178
179 if ((ret = add_device(i, vid_pid[i].model, &devices)) < 0)
180 sr_dbg("Failed to add device: %d.", ret);
181
182 if ((ret = ftdi_usb_close(ftdic)) < 0)
183 sr_dbg("Failed to close FTDI device (%d): %s.",
184 ret, ftdi_get_error_string(ftdic));
185 }
186
187 /* Close USB device, deinitialize and free the FTDI context. */
188 ftdi_free(ftdic);
189 ftdic = NULL;
190
191 return devices;
b908f067
UH
192}
193
6078d2c9 194static GSList *dev_list(void)
811deee4 195{
0e94d524 196 return ((struct drv_context *)(di->priv))->instances;
811deee4
BV
197}
198
6078d2c9 199static int dev_open(struct sr_dev_inst *sdi)
b908f067 200{
1644fb24 201 struct dev_context *devc;
25a0f108 202 int ret;
b908f067 203
b172c130 204 if (!(devc = sdi->priv))
b908f067 205 return SR_ERR_BUG;
b908f067 206
00910580
UH
207 /* Allocate memory for the FTDI context and initialize it. */
208 if (!(devc->ftdic = ftdi_new())) {
209 sr_err("Failed to initialize libftdi.");
210 return SR_ERR;
211 }
212
213 sr_dbg("Opening %s device (%04x:%04x).", devc->prof->modelname,
214 devc->usb_vid, devc->usb_pid);
b908f067
UH
215
216 /* Open the device. */
00910580
UH
217 if ((ret = ftdi_usb_open_desc(devc->ftdic, devc->usb_vid,
218 devc->usb_pid, devc->prof->iproduct, NULL)) < 0) {
b172c130
UH
219 sr_err("Failed to open FTDI device (%d): %s.",
220 ret, ftdi_get_error_string(devc->ftdic));
00910580 221 goto err_ftdi_free;
b908f067 222 }
f3a35908 223 sr_dbg("Device opened successfully.");
b908f067
UH
224
225 /* Purge RX/TX buffers in the FTDI chip. */
1644fb24 226 if ((ret = ftdi_usb_purge_buffers(devc->ftdic)) < 0) {
b172c130
UH
227 sr_err("Failed to purge FTDI buffers (%d): %s.",
228 ret, ftdi_get_error_string(devc->ftdic));
00910580 229 goto err_ftdi_free;
b908f067 230 }
f3a35908 231 sr_dbg("FTDI buffers purged successfully.");
b908f067
UH
232
233 /* Enable flow control in the FTDI chip. */
1644fb24 234 if ((ret = ftdi_setflowctrl(devc->ftdic, SIO_RTS_CTS_HS)) < 0) {
b172c130
UH
235 sr_err("Failed to enable FTDI flow control (%d): %s.",
236 ret, ftdi_get_error_string(devc->ftdic));
00910580 237 goto err_ftdi_free;
b908f067 238 }
f3a35908 239 sr_dbg("FTDI flow control enabled successfully.");
b908f067
UH
240
241 /* Wait 100ms. */
242 g_usleep(100 * 1000);
243
244 sdi->status = SR_ST_ACTIVE;
245
65c8d48f
BV
246 if (ret == SR_OK)
247 return SR_OK;
b908f067 248
00910580
UH
249err_ftdi_free:
250 ftdi_free(devc->ftdic); /* Close device (if open), free FTDI context. */
251 devc->ftdic = NULL;
252 return ret;
b908f067
UH
253}
254
6078d2c9 255static int dev_close(struct sr_dev_inst *sdi)
b908f067 256{
00910580 257 int ret;
1644fb24 258 struct dev_context *devc;
b908f067 259
00910580
UH
260 if (sdi->status != SR_ST_ACTIVE)
261 return SR_OK;
b908f067 262
00910580 263 devc = sdi->priv;
b908f067 264
00910580
UH
265 if (devc->ftdic && (ret = ftdi_usb_close(devc->ftdic)) < 0)
266 sr_err("Failed to close FTDI device (%d): %s.",
267 ret, ftdi_get_error_string(devc->ftdic));
b908f067
UH
268 sdi->status = SR_ST_INACTIVE;
269
b908f067
UH
270 return SR_OK;
271}
272
6078d2c9 273static int cleanup(void)
b908f067 274{
3b412e3a 275 return dev_clear();
b908f067
UH
276}
277
584560f1 278static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 279 const struct sr_channel_group *cg)
b908f067 280{
1644fb24 281 struct dev_context *devc;
b908f067 282
53b4680f 283 (void)cg;
8f996b89 284
584560f1 285 switch (key) {
123e1313 286 case SR_CONF_SAMPLERATE:
b172c130
UH
287 if (!sdi || !(devc = sdi->priv))
288 return SR_ERR_BUG;
289 *data = g_variant_new_uint64(devc->cur_samplerate);
b908f067 290 break;
cfe8a84d 291 default:
bd6fbf62 292 return SR_ERR_NA;
b908f067
UH
293 }
294
6a2761fd 295 return SR_OK;
b908f067
UH
296}
297
584560f1 298static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 299 const struct sr_channel_group *cg)
b908f067 300{
1644fb24 301 struct dev_context *devc;
b908f067 302
53b4680f 303 (void)cg;
8f996b89 304
e73ffd42
BV
305 if (sdi->status != SR_ST_ACTIVE)
306 return SR_ERR_DEV_CLOSED;
307
b172c130 308 if (!(devc = sdi->priv))
b908f067 309 return SR_ERR_BUG;
b908f067 310
584560f1 311 switch (key) {
1953564a 312 case SR_CONF_SAMPLERATE:
00910580 313 if (cv_set_samplerate(sdi, g_variant_get_uint64(data)) < 0)
b908f067 314 return SR_ERR;
b908f067 315 break;
1953564a 316 case SR_CONF_LIMIT_MSEC:
b172c130
UH
317 if (g_variant_get_uint64(data) == 0)
318 return SR_ERR_ARG;
1bec72d2 319 devc->limit_msec = g_variant_get_uint64(data);
b908f067 320 break;
1953564a 321 case SR_CONF_LIMIT_SAMPLES:
b172c130
UH
322 if (g_variant_get_uint64(data) == 0)
323 return SR_ERR_ARG;
1bec72d2 324 devc->limit_samples = g_variant_get_uint64(data);
b908f067
UH
325 break;
326 default:
bd6fbf62 327 return SR_ERR_NA;
b908f067
UH
328 }
329
330 return SR_OK;
331}
332
584560f1 333static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 334 const struct sr_channel_group *cg)
a1c743fc 335{
f0de2dd0 336 GVariant *gvar, *grange[2];
1bec72d2 337 GVariantBuilder gvb;
00910580 338 struct dev_context *devc;
a1c743fc 339
53b4680f 340 (void)cg;
a1c743fc
BV
341
342 switch (key) {
9a6517d1 343 case SR_CONF_DEVICE_OPTIONS:
584560f1 344 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 345 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 346 break;
a1c743fc 347 case SR_CONF_SAMPLERATE:
00910580
UH
348 if (!sdi || !sdi->priv || !(devc = sdi->priv))
349 return SR_ERR_BUG;
350 cv_fill_samplerates_if_needed(sdi);
1bec72d2
BV
351 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
352 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
00910580
UH
353 devc->samplerates,
354 ARRAY_SIZE(devc->samplerates),
1bec72d2
BV
355 sizeof(uint64_t));
356 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
357 *data = g_variant_builder_end(&gvb);
a1c743fc 358 break;
f0de2dd0 359 case SR_CONF_LIMIT_SAMPLES:
69bdcd8b
UH
360 if (!sdi || !sdi->priv || !(devc = sdi->priv) || !devc->prof)
361 return SR_ERR_BUG;
f0de2dd0 362 grange[0] = g_variant_new_uint64(0);
69bdcd8b
UH
363 if (devc->prof->model == CHRONOVU_LA8)
364 grange[1] = g_variant_new_uint64(MAX_NUM_SAMPLES);
365 else
366 grange[1] = g_variant_new_uint64(MAX_NUM_SAMPLES / 2);
f0de2dd0
BV
367 *data = g_variant_new_tuple(grange, 2);
368 break;
aeff7fa2 369 case SR_CONF_TRIGGER_MATCH:
00910580 370 if (!sdi || !sdi->priv || !(devc = sdi->priv) || !devc->prof)
13dd25bd 371 return SR_ERR_BUG;
af945a66 372 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
aeff7fa2
BV
373 trigger_matches, devc->prof->num_trigger_matches,
374 sizeof(int32_t));
c50277a6 375 break;
a1c743fc 376 default:
bd6fbf62 377 return SR_ERR_NA;
a1c743fc
BV
378 }
379
380 return SR_OK;
381}
382
b908f067
UH
383static int receive_data(int fd, int revents, void *cb_data)
384{
385 int i, ret;
386 struct sr_dev_inst *sdi;
1644fb24 387 struct dev_context *devc;
b908f067 388
b908f067
UH
389 (void)fd;
390 (void)revents;
391
392 if (!(sdi = cb_data)) {
b172c130 393 sr_err("cb_data was NULL.");
b908f067
UH
394 return FALSE;
395 }
396
1644fb24 397 if (!(devc = sdi->priv)) {
b172c130 398 sr_err("sdi->priv was NULL.");
b908f067
UH
399 return FALSE;
400 }
401
1644fb24 402 if (!devc->ftdic) {
b172c130 403 sr_err("devc->ftdic was NULL.");
b908f067
UH
404 return FALSE;
405 }
406
407 /* Get one block of data. */
b172c130
UH
408 if ((ret = cv_read_block(devc)) < 0) {
409 sr_err("Failed to read data block: %d.", ret);
6078d2c9 410 dev_acquisition_stop(sdi, sdi);
b908f067
UH
411 return FALSE;
412 }
413
414 /* We need to get exactly NUM_BLOCKS blocks (i.e. 8MB) of data. */
1644fb24
BV
415 if (devc->block_counter != (NUM_BLOCKS - 1)) {
416 devc->block_counter++;
b908f067
UH
417 return TRUE;
418 }
419
f3a35908 420 sr_dbg("Sampling finished, sending data to session bus now.");
b908f067 421
b0efc84e
UH
422 /*
423 * All data was received and demangled, send it to the session bus.
424 *
425 * Note: Due to the method how data is spread across the 8MByte of
426 * SDRAM, we can _not_ send it to the session bus in a streaming
427 * manner while we receive it. We have to receive and de-mangle the
428 * full 8MByte first, only then the whole buffer contains valid data.
429 */
b908f067 430 for (i = 0; i < NUM_BLOCKS; i++)
b172c130 431 cv_send_block_to_session_bus(devc, i);
b908f067 432
6078d2c9 433 dev_acquisition_stop(sdi, sdi);
b908f067 434
b908f067
UH
435 return TRUE;
436}
437
6078d2c9 438static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
b908f067 439{
1644fb24 440 struct dev_context *devc;
00910580
UH
441 uint8_t buf[8];
442 int bytes_to_write, bytes_written;
b908f067 443
e73ffd42
BV
444 if (sdi->status != SR_ST_ACTIVE)
445 return SR_ERR_DEV_CLOSED;
446
1644fb24 447 if (!(devc = sdi->priv)) {
b172c130 448 sr_err("sdi->priv was NULL.");
b908f067
UH
449 return SR_ERR_BUG;
450 }
451
1644fb24 452 if (!devc->ftdic) {
b172c130 453 sr_err("devc->ftdic was NULL.");
b908f067
UH
454 return SR_ERR_BUG;
455 }
456
00910580 457 devc->divcount = cv_samplerate_to_divcount(sdi, devc->cur_samplerate);
1644fb24 458 if (devc->divcount == 0xff) {
b172c130 459 sr_err("Invalid divcount/samplerate.");
b908f067
UH
460 return SR_ERR;
461 }
462
aeff7fa2
BV
463 if (cv_convert_trigger(sdi) != SR_OK) {
464 sr_err("Failed to configure trigger.");
014359e3
BV
465 return SR_ERR;
466 }
467
b908f067 468 /* Fill acquisition parameters into buf[]. */
00910580
UH
469 if (devc->prof->model == CHRONOVU_LA8) {
470 buf[0] = devc->divcount;
471 buf[1] = 0xff; /* This byte must always be 0xff. */
472 buf[2] = devc->trigger_pattern & 0xff;
473 buf[3] = devc->trigger_mask & 0xff;
474 bytes_to_write = 4;
475 } else {
476 buf[0] = devc->divcount;
477 buf[1] = 0xff; /* This byte must always be 0xff. */
478 buf[2] = (devc->trigger_pattern & 0xff00) >> 8; /* LSB */
479 buf[3] = (devc->trigger_pattern & 0x00ff) >> 0; /* MSB */
480 buf[4] = (devc->trigger_mask & 0xff00) >> 8; /* LSB */
481 buf[5] = (devc->trigger_mask & 0x00ff) >> 0; /* MSB */
482 buf[6] = (devc->trigger_edgemask & 0xff00) >> 8; /* LSB */
483 buf[7] = (devc->trigger_edgemask & 0x00ff) >> 0; /* MSB */
484 bytes_to_write = 8;
485 }
b908f067
UH
486
487 /* Start acquisition. */
00910580 488 bytes_written = cv_write(devc, buf, bytes_to_write);
b908f067 489
00910580
UH
490 if (bytes_written < 0 || bytes_written != bytes_to_write) {
491 sr_err("Acquisition failed to start.");
afc88319 492 return SR_ERR;
b908f067
UH
493 }
494
4afdfd46 495 sr_dbg("Hardware acquisition started successfully.");
b908f067 496
3e9b7f9c 497 devc->cb_data = cb_data;
b908f067
UH
498
499 /* Send header packet to the session bus. */
102f1239 500 std_session_send_df_header(sdi, LOG_PREFIX);
b908f067 501
b908f067 502 /* Time when we should be done (for detecting trigger timeouts). */
00910580
UH
503 devc->done = (devc->divcount + 1) * devc->prof->trigger_constant +
504 g_get_monotonic_time() + (10 * G_TIME_SPAN_SECOND);
1644fb24
BV
505 devc->block_counter = 0;
506 devc->trigger_found = 0;
b908f067 507
b172c130 508 /* Hook up a dummy handler to receive data from the device. */
102f1239 509 sr_session_source_add(sdi->session, -1, G_IO_IN, 0, receive_data, (void *)sdi);
b908f067
UH
510
511 return SR_OK;
512}
513
6078d2c9 514static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
b908f067 515{
b908f067
UH
516 struct sr_datafeed_packet packet;
517
102f1239 518 (void)cb_data;
b908f067 519
f3a35908 520 sr_dbg("Stopping acquisition.");
102f1239 521 sr_session_source_remove(sdi->session, -1);
7021f985 522
b908f067 523 /* Send end packet to the session bus. */
f3a35908 524 sr_dbg("Sending SR_DF_END.");
b908f067 525 packet.type = SR_DF_END;
102f1239 526 sr_session_send(sdi, &packet);
b908f067
UH
527
528 return SR_OK;
529}
530
7b356712
UH
531SR_PRIV struct sr_dev_driver chronovu_la_driver_info = {
532 .name = "chronovu-la",
533 .longname = "ChronoVu LA8/LA16",
b908f067 534 .api_version = 1,
6078d2c9
UH
535 .init = init,
536 .cleanup = cleanup,
537 .scan = scan,
538 .dev_list = dev_list,
3b412e3a 539 .dev_clear = dev_clear,
035a1078
BV
540 .config_get = config_get,
541 .config_set = config_set,
a1c743fc 542 .config_list = config_list,
6078d2c9
UH
543 .dev_open = dev_open,
544 .dev_close = dev_close,
545 .dev_acquisition_start = dev_acquisition_start,
546 .dev_acquisition_stop = dev_acquisition_stop,
1644fb24 547 .priv = NULL,
b908f067 548};