]> sigrok.org Git - libsigrok.git/blob - src/hardware/sysclk-lwla/api.c
Introduce standard implementation of the dev_list() callback
[libsigrok.git] / src / hardware / sysclk-lwla / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Daniel Elstner <daniel.kitta@gmail.com>
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 3 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <config.h>
21 #include <glib.h>
22 #include <libusb.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <libsigrok/libsigrok.h>
26 #include <libsigrok-internal.h>
27 #include "protocol.h"
28
29 /* Supported device scan options.
30  */
31 static const uint32_t scanopts[] = {
32         SR_CONF_CONN,
33 };
34
35 /* Driver capabilities.
36  */
37 static const uint32_t drvopts[] = {
38         SR_CONF_LOGIC_ANALYZER,
39 };
40
41 /* Supported trigger match conditions.
42  */
43 static const int32_t trigger_matches[] = {
44         SR_TRIGGER_ZERO,
45         SR_TRIGGER_ONE,
46         SR_TRIGGER_RISING,
47         SR_TRIGGER_FALLING,
48 };
49
50 /* Names assigned to available trigger sources.
51  */
52 static const char *const trigger_source_names[] = {
53         [TRIGGER_CHANNELS] = "CH",
54         [TRIGGER_EXT_TRG] = "TRG",
55 };
56
57 /* Names assigned to available edge slope choices.
58  */
59 static const char *const signal_edge_names[] = {
60         [EDGE_POSITIVE] = "r",
61         [EDGE_NEGATIVE] = "f",
62 };
63
64 /* Initialize the SysClk LWLA driver.
65  */
66 static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
67 {
68         return std_init(sr_ctx, di, LOG_PREFIX);
69 }
70
71 /* Create a new sigrok device instance for the indicated LWLA model.
72  */
73 static struct sr_dev_inst *dev_inst_new(const struct model_info *model)
74 {
75         struct sr_dev_inst *sdi;
76         struct dev_context *devc;
77         int i;
78         char name[8];
79
80         /* Initialize private device context. */
81         devc = g_malloc0(sizeof(struct dev_context));
82         devc->model = model;
83         devc->active_fpga_config = FPGA_NOCONF;
84         devc->cfg_rle = TRUE;
85         devc->samplerate = model->samplerates[0];
86         devc->channel_mask = (UINT64_C(1) << model->num_channels) - 1;
87
88         /* Create sigrok device instance. */
89         sdi = g_malloc0(sizeof(struct sr_dev_inst));
90         sdi->status = SR_ST_INACTIVE;
91         sdi->vendor = g_strdup(VENDOR_NAME);
92         sdi->model = g_strdup(model->name);
93         sdi->priv = devc;
94
95         /* Generate list of logic channels. */
96         for (i = 0; i < model->num_channels; i++) {
97                 /* The LWLA series simply number channels from CH1 to CHxx. */
98                 g_snprintf(name, sizeof(name), "CH%d", i + 1);
99                 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE, name);
100         }
101
102         return sdi;
103 }
104
105 /* Create a new device instance for a libusb device if it is a SysClk LWLA
106  * device and also matches the connection specification.
107  */
108 static struct sr_dev_inst *dev_inst_new_matching(GSList *conn_matches,
109                                                  libusb_device *dev)
110 {
111         GSList *node;
112         struct sr_usb_dev_inst *usb;
113         const struct model_info *model;
114         struct sr_dev_inst *sdi;
115         struct libusb_device_descriptor des;
116         int bus, address, ret;
117         unsigned int vid, pid;
118
119         bus = libusb_get_bus_number(dev);
120         address = libusb_get_device_address(dev);
121
122         for (node = conn_matches; node != NULL; node = node->next) {
123                 usb = node->data;
124                 if (usb && usb->bus == bus && usb->address == address)
125                         break; /* found */
126         }
127         if (conn_matches && !node)
128                 return NULL; /* no match */
129
130         ret = libusb_get_device_descriptor(dev, &des);
131         if (ret != 0) {
132                 sr_err("Failed to get USB device descriptor: %s.",
133                         libusb_error_name(ret));
134                 return NULL;
135         }
136         vid = des.idVendor;
137         pid = des.idProduct;
138
139         /* Create sigrok device instance. */
140         if (vid == USB_VID_SYSCLK && pid == USB_PID_LWLA1016) {
141                 model = &lwla1016_info;
142         } else if (vid == USB_VID_SYSCLK && pid == USB_PID_LWLA1034) {
143                 model = &lwla1034_info;
144         } else {
145                 if (conn_matches)
146                         sr_warn("USB device %d.%d (%04x:%04x) is not a"
147                                 " SysClk LWLA.", bus, address, vid, pid);
148                 return NULL;
149         }
150         sdi = dev_inst_new(model);
151
152         sdi->inst_type = SR_INST_USB;
153         sdi->conn = sr_usb_dev_inst_new(bus, address, NULL);
154
155         return sdi;
156 }
157
158 /* Scan for SysClk LWLA devices and create a device instance for each one.
159  */
160 static GSList *scan(struct sr_dev_driver *di, GSList *options)
161 {
162         GSList *conn_devices, *devices, *node;
163         struct drv_context *drvc;
164         struct sr_dev_inst *sdi;
165         struct sr_config *src;
166         const char *conn;
167         libusb_device **devlist;
168         ssize_t num_devs, i;
169
170         drvc = di->context;
171         conn = NULL;
172         conn_devices = NULL;
173         devices = NULL;
174
175         for (node = options; node != NULL; node = node->next) {
176                 src = node->data;
177                 if (src->key == SR_CONF_CONN) {
178                         conn = g_variant_get_string(src->data, NULL);
179                         break;
180                 }
181         }
182         if (conn) {
183                 /* Find devices matching the connection specification. */
184                 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
185         }
186
187         /* List all libusb devices. */
188         num_devs = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
189         if (num_devs < 0) {
190                 sr_err("Failed to list USB devices: %s.",
191                         libusb_error_name(num_devs));
192                 g_slist_free_full(conn_devices,
193                         (GDestroyNotify)&sr_usb_dev_inst_free);
194                 return NULL;
195         }
196
197         /* Scan the USB device list for matching LWLA devices. */
198         for (i = 0; i < num_devs; i++) {
199                 sdi = dev_inst_new_matching(conn_devices, devlist[i]);
200                 if (!sdi)
201                         continue; /* no match */
202
203                 /* Register device instance with driver. */
204                 sdi->driver = di;
205                 drvc->instances = g_slist_append(drvc->instances, sdi);
206                 devices = g_slist_append(devices, sdi);
207         }
208
209         libusb_free_device_list(devlist, 1);
210         g_slist_free_full(conn_devices, (GDestroyNotify)&sr_usb_dev_inst_free);
211
212         return devices;
213 }
214
215 /* Destroy the private device context.
216  */
217 static void clear_dev_context(void *priv)
218 {
219         struct dev_context *devc;
220
221         devc = priv;
222
223         if (devc->acquisition) {
224                 sr_err("Cannot clear device context during acquisition!");
225                 return; /* Leak and pray. */
226         }
227         sr_dbg("Device context cleared.");
228
229         g_free(devc);
230 }
231
232 /* Destroy all device instances.
233  */
234 static int dev_clear(const struct sr_dev_driver *di)
235 {
236         return std_dev_clear(di, &clear_dev_context);
237 }
238
239 /* Drain any pending data from the USB transfer buffers on the device.
240  * This may be necessary e.g. after a crash or generally to clean up after
241  * an abnormal condition.
242  */
243 static int drain_usb(struct sr_usb_dev_inst *usb, unsigned int endpoint)
244 {
245         int drained, xfer_len, ret;
246         unsigned char buf[512];
247         const unsigned int drain_timeout_ms = 10;
248
249         drained = 0;
250         do {
251                 xfer_len = 0;
252                 ret = libusb_bulk_transfer(usb->devhdl, endpoint,
253                                            buf, sizeof(buf), &xfer_len,
254                                            drain_timeout_ms);
255                 drained += xfer_len;
256         } while (ret == LIBUSB_SUCCESS && xfer_len != 0);
257
258         if (ret != LIBUSB_SUCCESS && ret != LIBUSB_ERROR_TIMEOUT) {
259                 sr_err("Failed to drain USB endpoint %u: %s.",
260                        endpoint & (LIBUSB_ENDPOINT_IN - 1),
261                        libusb_error_name(ret));
262                 return SR_ERR;
263         }
264         if (drained > 0) {
265                 sr_warn("Drained %d bytes from USB endpoint %u.",
266                         drained, endpoint & (LIBUSB_ENDPOINT_IN - 1));
267         }
268
269         return SR_OK;
270 }
271
272 /* Open and initialize device.
273  */
274 static int dev_open(struct sr_dev_inst *sdi)
275 {
276         struct drv_context *drvc;
277         struct dev_context *devc;
278         struct sr_usb_dev_inst *usb;
279         int i, ret;
280
281         drvc = sdi->driver->context;
282         devc = sdi->priv;
283         usb = sdi->conn;
284
285         if (!drvc) {
286                 sr_err("Driver was not initialized.");
287                 return SR_ERR;
288         }
289         if (sdi->status != SR_ST_INACTIVE) {
290                 sr_err("Device already open.");
291                 return SR_ERR;
292         }
293
294         /* Try the whole shebang three times, fingers crossed. */
295         for (i = 0; i < 3; i++) {
296                 ret = sr_usb_open(drvc->sr_ctx->libusb_ctx, usb);
297                 if (ret != SR_OK)
298                         return ret;
299
300                 ret = libusb_set_configuration(usb->devhdl, USB_CONFIG);
301                 if (ret != LIBUSB_SUCCESS) {
302                         sr_err("Failed to set USB configuration: %s.",
303                                 libusb_error_name(ret));
304                         sr_usb_close(usb);
305                         return SR_ERR;
306                 }
307
308                 ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
309                 if (ret != LIBUSB_SUCCESS) {
310                         sr_err("Failed to claim interface: %s.",
311                                 libusb_error_name(ret));
312                         sr_usb_close(usb);
313                         return SR_ERR;
314                 }
315
316                 ret = drain_usb(usb, EP_REPLY);
317                 if (ret != SR_OK) {
318                         sr_usb_close(usb);
319                         return ret;
320                 }
321                 /* This delay appears to be necessary for reliable operation. */
322                 g_usleep(30 * 1000);
323
324                 sdi->status = SR_ST_ACTIVE;
325
326                 devc->active_fpga_config = FPGA_NOCONF;
327                 devc->short_transfer_quirk = FALSE;
328                 devc->state = STATE_IDLE;
329
330                 ret = (*devc->model->apply_fpga_config)(sdi);
331
332                 if (ret == SR_OK)
333                         ret = (*devc->model->device_init_check)(sdi);
334                 if (ret == SR_OK)
335                         break;
336
337                 /* Rinse and repeat. */
338                 sdi->status = SR_ST_INACTIVE;
339                 sr_usb_close(usb);
340         }
341
342         if (ret == SR_OK && devc->short_transfer_quirk)
343                 sr_warn("Short transfer quirk detected! "
344                         "Memory reads will be slow.");
345         return ret;
346 }
347
348 /* Shutdown and close device.
349  */
350 static int dev_close(struct sr_dev_inst *sdi)
351 {
352         struct drv_context *drvc;
353         struct dev_context *devc;
354         struct sr_usb_dev_inst *usb;
355         int ret;
356
357         drvc = sdi->driver->context;
358         devc = sdi->priv;
359         usb = sdi->conn;
360
361         if (!drvc) {
362                 sr_err("Driver was not initialized.");
363                 return SR_ERR;
364         }
365         if (sdi->status == SR_ST_INACTIVE) {
366                 sr_dbg("Device already closed.");
367                 return SR_OK;
368         }
369         if (devc->acquisition) {
370                 sr_err("Cannot close device during acquisition!");
371                 /* Request stop, leak handle, and prepare for the worst. */
372                 devc->cancel_requested = TRUE;
373                 return SR_ERR_BUG;
374         }
375
376         sdi->status = SR_ST_INACTIVE;
377
378         /* Download of the shutdown bitstream, if any. */
379         ret = (*devc->model->apply_fpga_config)(sdi);
380         if (ret != SR_OK)
381                 sr_warn("Unable to shut down device.");
382
383         libusb_release_interface(usb->devhdl, USB_INTERFACE);
384         sr_usb_close(usb);
385
386         return ret;
387 }
388
389 /* Check whether the device options contain a specific key.
390  * Also match against get/set/list bits if specified.
391  */
392 static int has_devopt(const struct model_info *model, uint32_t key)
393 {
394         unsigned int i;
395
396         for (i = 0; i < model->num_devopts; i++) {
397                 if ((model->devopts[i] & (SR_CONF_MASK | key)) == key)
398                         return TRUE;
399         }
400
401         return FALSE;
402 }
403
404 /* Read device configuration setting.
405  */
406 static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
407                       const struct sr_channel_group *cg)
408 {
409         struct dev_context *devc;
410         unsigned int idx;
411
412         (void)cg;
413
414         if (!sdi)
415                 return SR_ERR_ARG;
416
417         devc = sdi->priv;
418
419         if (!has_devopt(devc->model, key | SR_CONF_GET))
420                 return SR_ERR_NA;
421
422         switch (key) {
423         case SR_CONF_SAMPLERATE:
424                 *data = g_variant_new_uint64(devc->samplerate);
425                 break;
426         case SR_CONF_LIMIT_MSEC:
427                 *data = g_variant_new_uint64(devc->limit_msec);
428                 break;
429         case SR_CONF_LIMIT_SAMPLES:
430                 *data = g_variant_new_uint64(devc->limit_samples);
431                 break;
432         case SR_CONF_RLE:
433                 *data = g_variant_new_boolean(devc->cfg_rle);
434                 break;
435         case SR_CONF_EXTERNAL_CLOCK:
436                 *data = g_variant_new_boolean(devc->cfg_clock_source
437                                                 == CLOCK_EXT_CLK);
438                 break;
439         case SR_CONF_CLOCK_EDGE:
440                 idx = devc->cfg_clock_edge;
441                 if (idx >= ARRAY_SIZE(signal_edge_names))
442                         return SR_ERR_BUG;
443                 *data = g_variant_new_string(signal_edge_names[idx]);
444                 break;
445         case SR_CONF_TRIGGER_SOURCE:
446                 idx = devc->cfg_trigger_source;
447                 if (idx >= ARRAY_SIZE(trigger_source_names))
448                         return SR_ERR_BUG;
449                 *data = g_variant_new_string(trigger_source_names[idx]);
450                 break;
451         case SR_CONF_TRIGGER_SLOPE:
452                 idx = devc->cfg_trigger_slope;
453                 if (idx >= ARRAY_SIZE(signal_edge_names))
454                         return SR_ERR_BUG;
455                 *data = g_variant_new_string(signal_edge_names[idx]);
456                 break;
457         default:
458                 /* Must not happen for a key listed in devopts. */
459                 return SR_ERR_BUG;
460         }
461
462         return SR_OK;
463 }
464
465 /* Helper for mapping a string-typed configuration value to an index
466  * within a table of possible values.
467  */
468 static int lookup_index(GVariant *value, const char *const *table, int len)
469 {
470         const char *entry;
471         int i;
472
473         entry = g_variant_get_string(value, NULL);
474         if (!entry)
475                 return -1;
476
477         /* Linear search is fine for very small tables. */
478         for (i = 0; i < len; i++) {
479                 if (strcmp(entry, table[i]) == 0)
480                         return i;
481         }
482
483         return -1;
484 }
485
486 /* Write device configuration setting.
487  */
488 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
489                       const struct sr_channel_group *cg)
490 {
491         uint64_t value;
492         struct dev_context *devc;
493         int idx;
494
495         (void)cg;
496
497         if (!sdi)
498                 return SR_ERR_ARG;
499
500         devc = sdi->priv;
501
502         if (!has_devopt(devc->model, key | SR_CONF_SET))
503                 return SR_ERR_NA;
504
505         switch (key) {
506         case SR_CONF_SAMPLERATE:
507                 value = g_variant_get_uint64(data);
508                 if (value < devc->model->samplerates[devc->model->num_samplerates - 1]
509                                 || value > devc->model->samplerates[0])
510                         return SR_ERR_SAMPLERATE;
511                 devc->samplerate = value;
512                 break;
513         case SR_CONF_LIMIT_MSEC:
514                 value = g_variant_get_uint64(data);
515                 if (value > MAX_LIMIT_MSEC)
516                         return SR_ERR_ARG;
517                 devc->limit_msec = value;
518                 break;
519         case SR_CONF_LIMIT_SAMPLES:
520                 value = g_variant_get_uint64(data);
521                 if (value > MAX_LIMIT_SAMPLES)
522                         return SR_ERR_ARG;
523                 devc->limit_samples = value;
524                 break;
525         case SR_CONF_RLE:
526                 devc->cfg_rle = g_variant_get_boolean(data);
527                 break;
528         case SR_CONF_EXTERNAL_CLOCK:
529                 devc->cfg_clock_source = (g_variant_get_boolean(data))
530                         ? CLOCK_EXT_CLK : CLOCK_INTERNAL;
531                 break;
532         case SR_CONF_CLOCK_EDGE:
533                 idx = lookup_index(data, signal_edge_names,
534                                    ARRAY_SIZE(signal_edge_names));
535                 if (idx < 0)
536                         return SR_ERR_ARG;
537                 devc->cfg_clock_edge = idx;
538                 break;
539         case SR_CONF_TRIGGER_SOURCE:
540                 idx = lookup_index(data, trigger_source_names,
541                                    ARRAY_SIZE(trigger_source_names));
542                 if (idx < 0)
543                         return SR_ERR_ARG;
544                 devc->cfg_trigger_source = idx;
545                 break;
546         case SR_CONF_TRIGGER_SLOPE:
547                 idx = lookup_index(data, signal_edge_names,
548                                    ARRAY_SIZE(signal_edge_names));
549                 if (idx < 0)
550                         return SR_ERR_ARG;
551                 devc->cfg_trigger_slope = idx;
552                 break;
553         default:
554                 /* Must not happen for a key listed in devopts. */
555                 return SR_ERR_BUG;
556         }
557
558         return SR_OK;
559 }
560
561 /* Apply channel configuration change.
562  */
563 static int config_channel_set(const struct sr_dev_inst *sdi,
564                               struct sr_channel *ch, unsigned int changes)
565 {
566         uint64_t channel_bit;
567         struct dev_context *devc;
568
569         if (!sdi)
570                 return SR_ERR_ARG;
571
572         devc = sdi->priv;
573
574         if (ch->index < 0 || ch->index >= devc->model->num_channels) {
575                 sr_err("Channel index %d out of range.", ch->index);
576                 return SR_ERR_BUG;
577         }
578
579         if ((changes & SR_CHANNEL_SET_ENABLED) != 0) {
580                 channel_bit = UINT64_C(1) << ch->index;
581
582                 /* Enable or disable logic input for this channel. */
583                 if (ch->enabled)
584                         devc->channel_mask |= channel_bit;
585                 else
586                         devc->channel_mask &= ~channel_bit;
587         }
588
589         return SR_OK;
590 }
591
592 /* Derive trigger masks from the session's trigger configuration.
593  */
594 static int prepare_trigger_masks(const struct sr_dev_inst *sdi)
595 {
596         uint64_t trigger_mask, trigger_values, trigger_edge_mask;
597         uint64_t level_bit, type_bit;
598         struct dev_context *devc;
599         struct sr_trigger *trigger;
600         struct sr_trigger_stage *stage;
601         struct sr_trigger_match *match;
602         const GSList *node;
603         int idx;
604         enum sr_trigger_matches trg;
605
606         devc = sdi->priv;
607
608         trigger = sr_session_trigger_get(sdi->session);
609         if (!trigger || !trigger->stages)
610                 return SR_OK;
611
612         if (trigger->stages->next) {
613                 sr_err("This device only supports 1 trigger stage.");
614                 return SR_ERR_ARG;
615         }
616         stage = trigger->stages->data;
617
618         trigger_mask = 0;
619         trigger_values = 0;
620         trigger_edge_mask = 0;
621
622         for (node = stage->matches; node; node = node->next) {
623                 match = node->data;
624
625                 if (!match->channel->enabled)
626                         continue; /* Ignore disabled channel. */
627
628                 idx = match->channel->index;
629                 trg = match->match;
630
631                 if (idx < 0 || idx >= devc->model->num_channels) {
632                         sr_err("Channel index %d out of range.", idx);
633                         return SR_ERR_BUG; /* Should not happen. */
634                 }
635                 if (trg != SR_TRIGGER_ZERO
636                                 && trg != SR_TRIGGER_ONE
637                                 && trg != SR_TRIGGER_RISING
638                                 && trg != SR_TRIGGER_FALLING) {
639                         sr_err("Unsupported trigger match for CH%d.", idx + 1);
640                         return SR_ERR_ARG;
641                 }
642                 level_bit = (trg == SR_TRIGGER_ONE
643                         || trg == SR_TRIGGER_RISING) ? 1 : 0;
644                 type_bit = (trg == SR_TRIGGER_RISING
645                         || trg == SR_TRIGGER_FALLING) ? 1 : 0;
646
647                 trigger_mask |= UINT64_C(1) << idx;
648                 trigger_values |= level_bit << idx;
649                 trigger_edge_mask |= type_bit << idx;
650         }
651         devc->trigger_mask = trigger_mask;
652         devc->trigger_values = trigger_values;
653         devc->trigger_edge_mask = trigger_edge_mask;
654
655         return SR_OK;
656 }
657
658 /* Apply current device configuration to the hardware.
659  */
660 static int config_commit(const struct sr_dev_inst *sdi)
661 {
662         struct dev_context *devc;
663         int ret;
664
665         devc = sdi->priv;
666
667         if (sdi->status != SR_ST_ACTIVE)
668                 return SR_ERR_DEV_CLOSED;
669
670         if (devc->acquisition) {
671                 sr_err("Acquisition still in progress?");
672                 return SR_ERR;
673         }
674
675         ret = prepare_trigger_masks(sdi);
676         if (ret != SR_OK)
677                 return ret;
678
679         ret = (*devc->model->apply_fpga_config)(sdi);
680         if (ret != SR_OK) {
681                 sr_err("Failed to apply FPGA configuration.");
682                 return ret;
683         }
684
685         return SR_OK;
686 }
687
688 /* List available choices for a configuration setting.
689  */
690 static int config_list(uint32_t key, GVariant **data,
691                        const struct sr_dev_inst *sdi,
692                        const struct sr_channel_group *cg)
693 {
694         struct dev_context *devc;
695         GVariant *gvar;
696         GVariantBuilder gvb;
697
698         (void)cg;
699
700         if (key == SR_CONF_SCAN_OPTIONS) {
701                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
702                         scanopts, ARRAY_SIZE(scanopts), sizeof(scanopts[0]));
703                 return SR_OK;
704         }
705         if (!sdi) {
706                 if (key != SR_CONF_DEVICE_OPTIONS)
707                         return SR_ERR_ARG;
708
709                 /* List driver capabilities. */
710                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
711                         drvopts, ARRAY_SIZE(drvopts), sizeof(drvopts[0]));
712                 return SR_OK;
713         }
714
715         devc = sdi->priv;
716
717         /* List the model's device options. */
718         if (key == SR_CONF_DEVICE_OPTIONS) {
719                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
720                         devc->model->devopts, devc->model->num_devopts,
721                         sizeof(devc->model->devopts[0]));
722                 return SR_OK;
723         }
724
725         if (!has_devopt(devc->model, key | SR_CONF_LIST))
726                 return SR_ERR_NA;
727
728         switch (key) {
729         case SR_CONF_SAMPLERATE:
730                 g_variant_builder_init(&gvb, G_VARIANT_TYPE_VARDICT);
731                 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT64,
732                         devc->model->samplerates, devc->model->num_samplerates,
733                         sizeof(devc->model->samplerates[0]));
734                 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
735                 *data = g_variant_builder_end(&gvb);
736                 break;
737         case SR_CONF_TRIGGER_MATCH:
738                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
739                         trigger_matches, ARRAY_SIZE(trigger_matches),
740                         sizeof(trigger_matches[0]));
741                 break;
742         case SR_CONF_TRIGGER_SOURCE:
743                 *data = g_variant_new_strv(trigger_source_names,
744                         ARRAY_SIZE(trigger_source_names));
745                 break;
746         case SR_CONF_TRIGGER_SLOPE:
747         case SR_CONF_CLOCK_EDGE:
748                 *data = g_variant_new_strv(signal_edge_names,
749                         ARRAY_SIZE(signal_edge_names));
750                 break;
751         default:
752                 /* Must not happen for a key listed in devopts. */
753                 return SR_ERR_BUG;
754         }
755
756         return SR_OK;
757 }
758
759 /* Set up the device hardware to begin capturing samples as soon as the
760  * configured trigger conditions are met, or immediately if no triggers
761  * are configured.
762  */
763 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
764 {
765         if (sdi->status != SR_ST_ACTIVE)
766                 return SR_ERR_DEV_CLOSED;
767
768         sr_info("Starting acquisition.");
769
770         return lwla_start_acquisition(sdi);
771 }
772
773 /* Request that a running capture operation be stopped.
774  */
775 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
776 {
777         struct dev_context *devc;
778
779         devc = sdi->priv;
780
781         if (sdi->status != SR_ST_ACTIVE)
782                 return SR_ERR_DEV_CLOSED;
783
784         if (devc->state != STATE_IDLE && !devc->cancel_requested) {
785                 devc->cancel_requested = TRUE;
786                 sr_dbg("Stopping acquisition.");
787         }
788
789         return SR_OK;
790 }
791
792 /* SysClk LWLA driver descriptor.
793  */
794 SR_PRIV struct sr_dev_driver sysclk_lwla_driver_info = {
795         .name = "sysclk-lwla",
796         .longname = "SysClk LWLA series",
797         .api_version = 1,
798         .init = init,
799         .cleanup = std_cleanup,
800         .scan = scan,
801         .dev_list = std_dev_list,
802         .dev_clear = dev_clear,
803         .config_get = config_get,
804         .config_set = config_set,
805         .config_channel_set = config_channel_set,
806         .config_commit = config_commit,
807         .config_list = config_list,
808         .dev_open = dev_open,
809         .dev_close = dev_close,
810         .dev_acquisition_start = dev_acquisition_start,
811         .dev_acquisition_stop = dev_acquisition_stop,
812         .context = NULL,
813 };