]> sigrok.org Git - libsigrok.git/blame - src/hardware/ikalogic-scanalogic2/api.c
Fix a few "value never read" scan-build warnings.
[libsigrok.git] / src / hardware / ikalogic-scanalogic2 / api.c
CommitLineData
16e76bae
MS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Marc Schink <sigrok-dev@marcschink.de>
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
6ec6c43b 20#include <config.h>
16e76bae
MS
21#include "protocol.h"
22
f254bc4b 23static const uint32_t devopts[] = {
e52e712d 24 SR_CONF_LOGIC_ANALYZER,
5827f61b
BV
25 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET | SR_CONF_LIST,
26 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
27 SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
28 SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
e52e712d
MS
29};
30
02d5c0d8
BV
31static const int32_t trigger_matches[] = {
32 SR_TRIGGER_RISING,
33 SR_TRIGGER_FALLING,
34 SR_TRIGGER_EDGE,
35};
36
79914b3a 37SR_PRIV const uint64_t sl2_samplerates[NUM_SAMPLERATES] = {
e52e712d
MS
38 SR_KHZ(1.25),
39 SR_KHZ(10),
40 SR_KHZ(50),
41 SR_KHZ(100),
42 SR_KHZ(250),
43 SR_KHZ(500),
44 SR_MHZ(1),
45 SR_MHZ(2.5),
46 SR_MHZ(5),
47 SR_MHZ(10),
c824eb63 48 SR_MHZ(20),
e52e712d
MS
49};
50
53cda65a 51static const char *channel_names[] = {
e52e712d 52 "0", "1", "2", "3",
e52e712d
MS
53};
54
16e76bae 55SR_PRIV struct sr_dev_driver ikalogic_scanalogic2_driver_info;
16e76bae 56
4f840ce9 57static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
16e76bae 58{
e52e712d 59 return std_init(sr_ctx, di, LOG_PREFIX);
16e76bae
MS
60}
61
4f840ce9 62static GSList *scan(struct sr_dev_driver *di, GSList *options)
16e76bae 63{
e52e712d 64 GSList *usb_devices, *devices, *l;
16e76bae 65 struct drv_context *drvc;
e52e712d 66 struct sr_dev_inst *sdi;
e52e712d
MS
67 struct dev_context *devc;
68 struct sr_usb_dev_inst *usb;
69 struct device_info dev_info;
dcd438ee
UH
70 unsigned int i;
71 int ret;
16e76bae
MS
72
73 (void)options;
74
75 devices = NULL;
41812aca 76 drvc = di->context;
16e76bae 77 drvc->instances = NULL;
e52e712d
MS
78
79 usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, USB_VID_PID);
80
98fec29e 81 if (!usb_devices)
e52e712d
MS
82 return NULL;
83
c824eb63 84 for (l = usb_devices; l; l = l->next) {
e52e712d
MS
85 usb = l->data;
86
79914b3a
UH
87 if ((ret = sl2_get_device_info(*usb, &dev_info)) < 0) {
88 sr_warn("Failed to get device information: %d.", ret);
e52e712d
MS
89 sr_usb_dev_inst_free(usb);
90 continue;
91 }
92
f57d8ffe 93 devc = g_malloc0(sizeof(struct dev_context));
e52e712d
MS
94
95 if (!(devc->xfer_in = libusb_alloc_transfer(0))) {
96 sr_err("Transfer malloc failed.");
97 sr_usb_dev_inst_free(usb);
98 g_free(devc);
99 continue;
100 }
101
102 if (!(devc->xfer_out = libusb_alloc_transfer(0))) {
103 sr_err("Transfer malloc failed.");
104 sr_usb_dev_inst_free(usb);
105 libusb_free_transfer(devc->xfer_in);
106 g_free(devc);
107 continue;
108 }
109
aac29cc1 110 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
111 sdi->status = SR_ST_INACTIVE;
112 sdi->vendor = g_strdup(VENDOR_NAME);
113 sdi->model = g_strdup(MODEL_NAME);
114 sdi->version = g_strdup_printf("%u.%u", dev_info.fw_ver_major, dev_info.fw_ver_minor);
115 sdi->serial_num = g_strdup_printf("%d", dev_info.serial);
e52e712d
MS
116 sdi->priv = devc;
117 sdi->driver = di;
118 sdi->inst_type = SR_INST_USB;
119 sdi->conn = usb;
120
0f34cb47
UH
121 for (i = 0; i < ARRAY_SIZE(channel_names); i++)
122 devc->channels[i] = sr_channel_new(sdi, i,
123 SR_CHANNEL_LOGIC, TRUE, channel_names[i]);
e52e712d
MS
124
125 devc->state = STATE_IDLE;
126 devc->next_state = STATE_IDLE;
127
128 /* Set default samplerate. */
79914b3a 129 sl2_set_samplerate(sdi, DEFAULT_SAMPLERATE);
e52e712d
MS
130
131 /* Set default capture ratio. */
132 devc->capture_ratio = 0;
133
134 /* Set default after trigger delay. */
135 devc->after_trigger_delay = 0;
136
137 memset(devc->xfer_buf_in, 0, LIBUSB_CONTROL_SETUP_SIZE +
138 PACKET_LENGTH);
139 memset(devc->xfer_buf_out, 0, LIBUSB_CONTROL_SETUP_SIZE +
140 PACKET_LENGTH);
141
142 libusb_fill_control_setup(devc->xfer_buf_in,
fb8d593c 143 USB_REQUEST_TYPE_IN, USB_HID_GET_REPORT,
e52e712d
MS
144 USB_HID_REPORT_TYPE_FEATURE, USB_INTERFACE,
145 PACKET_LENGTH);
146 libusb_fill_control_setup(devc->xfer_buf_out,
147 USB_REQUEST_TYPE_OUT, USB_HID_SET_REPORT,
148 USB_HID_REPORT_TYPE_FEATURE, USB_INTERFACE,
149 PACKET_LENGTH);
150
151 devc->xfer_data_in = devc->xfer_buf_in +
152 LIBUSB_CONTROL_SETUP_SIZE;
153 devc->xfer_data_out = devc->xfer_buf_out +
154 LIBUSB_CONTROL_SETUP_SIZE;
155
156 drvc->instances = g_slist_append(drvc->instances, sdi);
157 devices = g_slist_append(devices, sdi);
e52e712d 158 }
16e76bae 159
e52e712d 160 g_slist_free(usb_devices);
16e76bae
MS
161
162 return devices;
163}
164
4f840ce9 165static GSList *dev_list(const struct sr_dev_driver *di)
16e76bae 166{
41812aca 167 return ((struct drv_context *)(di->context))->instances;
16e76bae
MS
168}
169
e52e712d
MS
170static void clear_dev_context(void *priv)
171{
c824eb63
UH
172 struct dev_context *devc;
173
174 devc = priv;
e52e712d 175
c824eb63 176 sr_dbg("Device context cleared.");
e52e712d
MS
177
178 libusb_free_transfer(devc->xfer_in);
179 libusb_free_transfer(devc->xfer_out);
180 g_free(devc);
181}
182
4f840ce9 183static int dev_clear(const struct sr_dev_driver *di)
16e76bae 184{
e52e712d 185 return std_dev_clear(di, &clear_dev_context);
16e76bae
MS
186}
187
188static int dev_open(struct sr_dev_inst *sdi)
189{
4f840ce9 190 struct sr_dev_driver *di = sdi->driver;
e52e712d
MS
191 struct drv_context *drvc;
192 struct dev_context *devc;
193 struct sr_usb_dev_inst *usb;
194 uint8_t buffer[PACKET_LENGTH];
195 int ret;
196
41812aca 197 if (!(drvc = di->context)) {
e52e712d
MS
198 sr_err("Driver was not initialized.");
199 return SR_ERR;
200 }
201
202 usb = sdi->conn;
203 devc = sdi->priv;
16e76bae 204
e52e712d
MS
205 if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
206 return SR_ERR;
207
208 /*
209 * Determine if a kernel driver is active on this interface and, if so,
210 * detach it.
211 */
212 if (libusb_kernel_driver_active(usb->devhdl, USB_INTERFACE) == 1) {
213 ret = libusb_detach_kernel_driver(usb->devhdl, USB_INTERFACE);
e52e712d 214 if (ret < 0) {
9526f2d4 215 sr_err("Failed to detach kernel driver: %s.",
e52e712d
MS
216 libusb_error_name(ret));
217 return SR_ERR;
218 }
219 }
220
79914b3a 221 if ((ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE)) < 0) {
e52e712d
MS
222 sr_err("Failed to claim interface: %s.",
223 libusb_error_name(ret));
224 return SR_ERR;
225 }
226
227 libusb_fill_control_transfer(devc->xfer_in, usb->devhdl,
79914b3a 228 devc->xfer_buf_in, sl2_receive_transfer_in,
1a46cc62 229 sdi, USB_TIMEOUT_MS);
e52e712d
MS
230
231 libusb_fill_control_transfer(devc->xfer_out, usb->devhdl,
79914b3a 232 devc->xfer_buf_out, sl2_receive_transfer_out,
1a46cc62 233 sdi, USB_TIMEOUT_MS);
e52e712d
MS
234
235 memset(buffer, 0, sizeof(buffer));
236
237 buffer[0] = CMD_RESET;
79914b3a 238 if ((ret = sl2_transfer_out(usb->devhdl, buffer)) != PACKET_LENGTH) {
e52e712d
MS
239 sr_err("Device reset failed: %s.", libusb_error_name(ret));
240 return SR_ERR;
241 }
242
243 /*
244 * Set the device to idle state. If the device is not in idle state it
c824eb63
UH
245 * possibly will reset itself after a few seconds without being used
246 * and thereby close the connection.
e52e712d
MS
247 */
248 buffer[0] = CMD_IDLE;
79914b3a 249 if ((ret = sl2_transfer_out(usb->devhdl, buffer)) != PACKET_LENGTH) {
e52e712d
MS
250 sr_err("Failed to set device in idle state: %s.",
251 libusb_error_name(ret));
252 return SR_ERR;
253 }
16e76bae
MS
254
255 sdi->status = SR_ST_ACTIVE;
256
257 return SR_OK;
258}
259
260static int dev_close(struct sr_dev_inst *sdi)
261{
4f840ce9 262 struct sr_dev_driver *di = sdi->driver;
e52e712d
MS
263 struct sr_usb_dev_inst *usb;
264
41812aca 265 if (!di->context) {
e52e712d
MS
266 sr_err("Driver was not initialized.");
267 return SR_ERR;
268 }
269
270 usb = sdi->conn;
271
272 if (!usb->devhdl)
273 return SR_OK;
16e76bae 274
e52e712d
MS
275 libusb_release_interface(usb->devhdl, USB_INTERFACE);
276 libusb_close(usb->devhdl);
16e76bae 277
e52e712d 278 usb->devhdl = NULL;
16e76bae
MS
279 sdi->status = SR_ST_INACTIVE;
280
281 return SR_OK;
282}
283
4f840ce9 284static int cleanup(const struct sr_dev_driver *di)
16e76bae 285{
4f840ce9 286 return dev_clear(di);
16e76bae
MS
287}
288
584560f1 289static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 290 const struct sr_channel_group *cg)
16e76bae 291{
e52e712d 292 struct dev_context *devc;
16e76bae
MS
293 int ret;
294
53b4680f 295 (void)cg;
d3c74a6f 296
16e76bae 297 ret = SR_OK;
e52e712d
MS
298 devc = sdi->priv;
299
16e76bae 300 switch (key) {
e52e712d
MS
301 case SR_CONF_SAMPLERATE:
302 *data = g_variant_new_uint64(devc->samplerate);
303 break;
304 case SR_CONF_CAPTURE_RATIO:
305 *data = g_variant_new_uint64(devc->capture_ratio);
306 break;
16e76bae
MS
307 default:
308 return SR_ERR_NA;
309 }
310
311 return ret;
312}
313
584560f1 314static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 315 const struct sr_channel_group *cg)
16e76bae 316{
e52e712d 317 uint64_t samplerate, limit_samples, capture_ratio;
16e76bae
MS
318 int ret;
319
53b4680f 320 (void)cg;
d3c74a6f 321
16e76bae
MS
322 if (sdi->status != SR_ST_ACTIVE)
323 return SR_ERR_DEV_CLOSED;
324
16e76bae 325 switch (key) {
e52e712d
MS
326 case SR_CONF_LIMIT_SAMPLES:
327 limit_samples = g_variant_get_uint64(data);
79914b3a 328 ret = sl2_set_limit_samples(sdi, limit_samples);
e52e712d
MS
329 break;
330 case SR_CONF_SAMPLERATE:
331 samplerate = g_variant_get_uint64(data);
79914b3a 332 ret = sl2_set_samplerate(sdi, samplerate);
e52e712d
MS
333 break;
334 case SR_CONF_CAPTURE_RATIO:
335 capture_ratio = g_variant_get_uint64(data);
79914b3a 336 ret = sl2_set_capture_ratio(sdi, capture_ratio);
e52e712d 337 break;
16e76bae 338 default:
e52e712d 339 return SR_ERR_NA;
16e76bae
MS
340 }
341
342 return ret;
343}
344
584560f1 345static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 346 const struct sr_channel_group *cg)
16e76bae 347{
f0de2dd0 348 GVariant *gvar, *grange[2];
e52e712d 349 GVariantBuilder gvb;
16e76bae
MS
350 int ret;
351
352 (void)sdi;
53b4680f 353 (void)cg;
16e76bae
MS
354
355 ret = SR_OK;
356 switch (key) {
e52e712d 357 case SR_CONF_DEVICE_OPTIONS:
584560f1 358 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 359 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
e52e712d
MS
360 break;
361 case SR_CONF_SAMPLERATE:
362 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
363 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
79914b3a 364 sl2_samplerates, ARRAY_SIZE(sl2_samplerates),
e52e712d
MS
365 sizeof(uint64_t));
366 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
367 *data = g_variant_builder_end(&gvb);
368 break;
02d5c0d8
BV
369 case SR_CONF_TRIGGER_MATCH:
370 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
371 trigger_matches, ARRAY_SIZE(trigger_matches),
372 sizeof(int32_t));
e52e712d 373 break;
f0de2dd0
BV
374 case SR_CONF_LIMIT_SAMPLES:
375 grange[0] = g_variant_new_uint64(0);
376 grange[1] = g_variant_new_uint64(MAX_SAMPLES);
377 *data = g_variant_new_tuple(grange, 2);
378 break;
16e76bae
MS
379 default:
380 return SR_ERR_NA;
381 }
382
383 return ret;
384}
385
e52e712d 386static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
16e76bae 387{
4f840ce9 388 struct sr_dev_driver *di = sdi->driver;
e52e712d
MS
389 struct drv_context *drvc;
390 struct dev_context *devc;
391 uint16_t trigger_bytes, tmp;
392 unsigned int i, j;
393 int ret;
16e76bae
MS
394
395 if (sdi->status != SR_ST_ACTIVE)
396 return SR_ERR_DEV_CLOSED;
397
e52e712d 398 devc = sdi->priv;
41812aca 399 drvc = di->context;
e52e712d
MS
400
401 devc->cb_data = cb_data;
402 devc->wait_data_ready_locked = TRUE;
403 devc->stopping_in_progress = FALSE;
404 devc->transfer_error = FALSE;
405 devc->samples_processed = 0;
406 devc->channel = 0;
407 devc->sample_packet = 0;
408
409 /*
410 * The trigger must be configured first because the calculation of the
411 * pre and post trigger samples depends on a configured trigger.
412 */
02d5c0d8 413 sl2_convert_trigger(sdi);
79914b3a 414 sl2_calculate_trigger_samples(sdi);
e52e712d
MS
415
416 trigger_bytes = devc->pre_trigger_bytes + devc->post_trigger_bytes;
417
418 /* Calculate the number of expected sample packets. */
419 devc->num_sample_packets = trigger_bytes / PACKET_NUM_SAMPLE_BYTES;
420
421 /* Round up the number of expected sample packets. */
422 if (trigger_bytes % PACKET_NUM_SAMPLE_BYTES != 0)
423 devc->num_sample_packets++;
424
ba7dd8bb 425 devc->num_enabled_channels = 0;
e52e712d
MS
426
427 /*
ba7dd8bb 428 * Count the number of enabled channels and number them for a sequential
e52e712d
MS
429 * access.
430 */
3f239f08 431 for (i = 0, j = 0; i < NUM_CHANNELS; i++) {
ba7dd8bb
UH
432 if (devc->channels[i]->enabled) {
433 devc->num_enabled_channels++;
434 devc->channel_map[j] = i;
e52e712d
MS
435 j++;
436 }
437 }
438
ba7dd8bb 439 sr_dbg("Number of enabled channels: %i.", devc->num_enabled_channels);
e52e712d
MS
440
441 /* Set up the transfer buffer for the acquisition. */
442 devc->xfer_data_out[0] = CMD_SAMPLE;
443 devc->xfer_data_out[1] = 0x00;
444
445 tmp = GUINT16_TO_LE(devc->pre_trigger_bytes);
446 memcpy(devc->xfer_data_out + 2, &tmp, sizeof(tmp));
447
448 tmp = GUINT16_TO_LE(devc->post_trigger_bytes);
449 memcpy(devc->xfer_data_out + 4, &tmp, sizeof(tmp));
450
451 devc->xfer_data_out[6] = devc->samplerate_id;
452 devc->xfer_data_out[7] = devc->trigger_type;
453 devc->xfer_data_out[8] = devc->trigger_channel;
454 devc->xfer_data_out[9] = 0x00;
455
456 tmp = GUINT16_TO_LE(devc->after_trigger_delay);
457 memcpy(devc->xfer_data_out + 10, &tmp, sizeof(tmp));
458
e52e712d 459 if ((ret = libusb_submit_transfer(devc->xfer_out)) != 0) {
c824eb63 460 sr_err("Submit transfer failed: %s.", libusb_error_name(ret));
e52e712d
MS
461 return SR_ERR;
462 }
463
102f1239
BV
464 usb_source_add(sdi->session, drvc->sr_ctx, 100,
465 ikalogic_scanalogic2_receive_data, (void *)sdi);
e52e712d
MS
466
467 sr_dbg("Acquisition started successfully.");
468
469 /* Send header packet to the session bus. */
470 std_session_send_df_header(cb_data, LOG_PREFIX);
471
472 devc->next_state = STATE_SAMPLE;
16e76bae
MS
473
474 return SR_OK;
475}
476
477static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
478{
479 (void)cb_data;
480
481 if (sdi->status != SR_ST_ACTIVE)
482 return SR_ERR_DEV_CLOSED;
483
e52e712d
MS
484 sr_dbg("Stopping acquisition.");
485
486 sdi->status = SR_ST_STOPPING;
16e76bae
MS
487
488 return SR_OK;
489}
490
491SR_PRIV struct sr_dev_driver ikalogic_scanalogic2_driver_info = {
492 .name = "ikalogic-scanalogic2",
e52e712d 493 .longname = "IKALOGIC Scanalogic-2",
16e76bae
MS
494 .api_version = 1,
495 .init = init,
496 .cleanup = cleanup,
497 .scan = scan,
498 .dev_list = dev_list,
499 .dev_clear = dev_clear,
500 .config_get = config_get,
501 .config_set = config_set,
502 .config_list = config_list,
503 .dev_open = dev_open,
504 .dev_close = dev_close,
505 .dev_acquisition_start = dev_acquisition_start,
506 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 507 .context = NULL,
16e76bae 508};