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