]> sigrok.org Git - libsigrok.git/blame - hardware/ikalogic-scanaplus/api.c
Consistent use of "IKALOGIC" spelling.
[libsigrok.git] / hardware / ikalogic-scanaplus / api.c
CommitLineData
fdf4a1f5
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.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 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
21#include "protocol.h"
22
ab4bb6eb
UH
23#define USB_VENDOR_ID 0x0403
24#define USB_DEVICE_ID 0x6014
ce95428c 25#define USB_VENDOR_NAME "IKALOGIC"
ab4bb6eb
UH
26#define USB_MODEL_NAME "ScanaPLUS"
27#define USB_IPRODUCT "SCANAPLUS"
28
29#define SAMPLE_BUF_SIZE (8 * 1024 * 1024)
30
31static const int32_t hwcaps[] = {
32 SR_CONF_LOGIC_ANALYZER,
33 SR_CONF_SAMPLERATE,
34 SR_CONF_LIMIT_MSEC,
35 SR_CONF_LIMIT_SAMPLES,
36 SR_CONF_CONTINUOUS, // TODO?
37};
38
39/* Probes are numbered 1-9. */
40static const char *probe_names[] = {
41 "1", "2", "3", "4", "5", "6", "7", "8", "9",
42 NULL,
43};
44
ce95428c 45/* Note: The IKALOGIC ScanaPLUS always samples at 100MHz. */
ab4bb6eb
UH
46static uint64_t samplerates[1] = { SR_MHZ(100) };
47
fdf4a1f5
UH
48SR_PRIV struct sr_dev_driver ikalogic_scanaplus_driver_info;
49static struct sr_dev_driver *di = &ikalogic_scanaplus_driver_info;
50
ab4bb6eb
UH
51static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
52
53static void clear_helper(void *priv)
54{
55 struct dev_context *devc;
56
57 devc = priv;
58
59 ftdi_free(devc->ftdic);
60 g_free(devc->compressed_buf);
61 g_free(devc->sample_buf);
62}
63
64static int dev_clear(void)
65{
66 return std_dev_clear(di, clear_helper);
67}
68
fdf4a1f5
UH
69static int init(struct sr_context *sr_ctx)
70{
ab4bb6eb 71 return std_init(sr_ctx, di, LOG_PREFIX);
fdf4a1f5
UH
72}
73
74static GSList *scan(GSList *options)
75{
ab4bb6eb
UH
76 struct sr_dev_inst *sdi;
77 struct sr_probe *probe;
fdf4a1f5 78 struct drv_context *drvc;
ab4bb6eb 79 struct dev_context *devc;
fdf4a1f5 80 GSList *devices;
ab4bb6eb
UH
81 unsigned int i;
82 int ret;
fdf4a1f5
UH
83
84 (void)options;
85
fdf4a1f5 86 drvc = di->priv;
ab4bb6eb
UH
87
88 devices = NULL;
89
90 /* Allocate memory for our private device context. */
91 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
92 sr_err("Device context malloc failed.");
93 goto err_free_nothing;
94 }
95
96 /* Allocate memory for the incoming compressed samples. */
97 if (!(devc->compressed_buf = g_try_malloc0(COMPRESSED_BUF_SIZE))) {
98 sr_err("compressed_buf malloc failed.");
99 goto err_free_devc;
100 }
101
102 /* Allocate memory for the uncompressed samples. */
103 if (!(devc->sample_buf = g_try_malloc0(SAMPLE_BUF_SIZE))) {
104 sr_err("sample_buf malloc failed.");
105 goto err_free_compressed_buf;
106 }
107
108 /* Allocate memory for the FTDI context (ftdic) and initialize it. */
109 if (!(devc->ftdic = ftdi_new())) {
110 sr_err("Failed to initialize libftdi.");
111 goto err_free_sample_buf;
112 }
113
114 /* Check for the device and temporarily open it. */
115 ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID, USB_DEVICE_ID,
116 USB_IPRODUCT, NULL);
117 if (ret < 0) {
118 /* Log errors, except for -3 ("device not found"). */
119 if (ret != -3)
120 sr_err("Failed to open device (%d): %s", ret,
121 ftdi_get_error_string(devc->ftdic));
122 goto err_free_ftdic;
123 }
124
125 /* Register the device with libsigrok. */
126 sdi = sr_dev_inst_new(0, SR_ST_INITIALIZING,
127 USB_VENDOR_NAME, USB_MODEL_NAME, NULL);
128 if (!sdi) {
129 sr_err("Failed to create device instance.");
130 goto err_close_ftdic;
131 }
132 sdi->driver = di;
133 sdi->priv = devc;
134
135 for (i = 0; probe_names[i]; i++) {
136 if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
137 probe_names[i])))
138 return NULL;
139 sdi->probes = g_slist_append(sdi->probes, probe);
140 }
141
142 devices = g_slist_append(devices, sdi);
143 drvc->instances = g_slist_append(drvc->instances, sdi);
144
145 /* Close device. We'll reopen it again when we need it. */
146 scanaplus_close(devc);
fdf4a1f5
UH
147
148 return devices;
ab4bb6eb
UH
149
150err_close_ftdic:
151 scanaplus_close(devc);
152err_free_ftdic:
153 ftdi_free(devc->ftdic); /* NOT free() or g_free()! */
154err_free_sample_buf:
155 g_free(devc->sample_buf);
156err_free_compressed_buf:
157 g_free(devc->compressed_buf);
158err_free_devc:
159 g_free(devc);
160err_free_nothing:
161
162 return NULL;
fdf4a1f5
UH
163}
164
165static GSList *dev_list(void)
166{
167 return ((struct drv_context *)(di->priv))->instances;
168}
169
fdf4a1f5
UH
170static int dev_open(struct sr_dev_inst *sdi)
171{
ab4bb6eb
UH
172 struct dev_context *devc;
173 int ret;
174
175 devc = sdi->priv;
176
177 /* Select interface A, otherwise communication will fail. */
178 ret = ftdi_set_interface(devc->ftdic, INTERFACE_A);
179 if (ret < 0) {
180 sr_err("Failed to set FTDI interface A (%d): %s", ret,
181 ftdi_get_error_string(devc->ftdic));
182 return SR_ERR;
183 }
184 sr_dbg("FTDI chip interface A set successfully.");
185
186 /* Open the device. */
187 ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID, USB_DEVICE_ID,
188 USB_IPRODUCT, NULL);
189 if (ret < 0) {
190 sr_err("Failed to open device (%d): %s", ret,
191 ftdi_get_error_string(devc->ftdic));
192 return SR_ERR;
193 }
194 sr_dbg("FTDI device opened successfully.");
195
196 /* Purge RX/TX buffers in the FTDI chip. */
197 if ((ret = ftdi_usb_purge_buffers(devc->ftdic)) < 0) {
198 sr_err("Failed to purge FTDI RX/TX buffers (%d): %s.",
199 ret, ftdi_get_error_string(devc->ftdic));
200 goto err_dev_open_close_ftdic;
201 }
202 sr_dbg("FTDI chip buffers purged successfully.");
203
204 /* Reset the FTDI bitmode. */
205 ret = ftdi_set_bitmode(devc->ftdic, 0xff, BITMODE_RESET);
206 if (ret < 0) {
207 sr_err("Failed to reset the FTDI chip bitmode (%d): %s.",
208 ret, ftdi_get_error_string(devc->ftdic));
209 goto err_dev_open_close_ftdic;
210 }
211 sr_dbg("FTDI chip bitmode reset successfully.");
212
213 /* Set FTDI bitmode to "sync FIFO". */
214 ret = ftdi_set_bitmode(devc->ftdic, 0xff, BITMODE_SYNCFF);
215 if (ret < 0) {
216 sr_err("Failed to put FTDI chip into sync FIFO mode (%d): %s.",
217 ret, ftdi_get_error_string(devc->ftdic));
218 goto err_dev_open_close_ftdic;
219 }
220 sr_dbg("FTDI chip sync FIFO mode entered successfully.");
221
222 /* Set the FTDI latency timer to 2. */
223 ret = ftdi_set_latency_timer(devc->ftdic, 2);
224 if (ret < 0) {
225 sr_err("Failed to set FTDI latency timer (%d): %s.",
226 ret, ftdi_get_error_string(devc->ftdic));
227 goto err_dev_open_close_ftdic;
228 }
229 sr_dbg("FTDI chip latency timer set successfully.");
230
231 /* Set the FTDI read data chunk size to 64kB. */
232 ret = ftdi_read_data_set_chunksize(devc->ftdic, 64 * 1024);
233 if (ret < 0) {
234 sr_err("Failed to set FTDI read data chunk size (%d): %s.",
235 ret, ftdi_get_error_string(devc->ftdic));
236 goto err_dev_open_close_ftdic;
237 }
238 sr_dbg("FTDI chip read data chunk size set successfully.");
239
240 /* Get the ScanaPLUS device ID from the FTDI EEPROM. */
241 if ((ret = scanaplus_get_device_id(devc)) < 0) {
242 sr_err("Failed to get ScanaPLUS device ID: %d.", ret);
243 goto err_dev_open_close_ftdic;
244 }
245 sr_dbg("Received ScanaPLUS device ID successfully: %02x %02x %02x.",
246 devc->devid[0], devc->devid[1], devc->devid[2]);
fdf4a1f5
UH
247
248 sdi->status = SR_ST_ACTIVE;
249
250 return SR_OK;
ab4bb6eb
UH
251
252err_dev_open_close_ftdic:
253 scanaplus_close(devc);
254 return SR_ERR;
fdf4a1f5
UH
255}
256
257static int dev_close(struct sr_dev_inst *sdi)
258{
ab4bb6eb
UH
259 int ret;
260 struct dev_context *devc;
261
262 ret = SR_OK;
263 devc = sdi->priv;
264
265 if (sdi->status == SR_ST_ACTIVE) {
266 sr_dbg("Status ACTIVE, closing device.");
267 ret = scanaplus_close(devc);
268 } else {
269 sr_spew("Status not ACTIVE, nothing to do.");
270 }
fdf4a1f5
UH
271
272 sdi->status = SR_ST_INACTIVE;
273
ab4bb6eb 274 return ret;
fdf4a1f5
UH
275}
276
277static int cleanup(void)
278{
279 return dev_clear();
280}
281
ab4bb6eb 282static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
fdf4a1f5 283{
fdf4a1f5 284 (void)sdi;
fdf4a1f5 285
ab4bb6eb
UH
286 switch (id) {
287 case SR_CONF_SAMPLERATE:
288 /* The ScanaPLUS samplerate is 100MHz and can't be changed. */
289 *data = g_variant_new_uint64(SR_MHZ(100));
290 break;
fdf4a1f5
UH
291 default:
292 return SR_ERR_NA;
293 }
294
ab4bb6eb 295 return SR_OK;
fdf4a1f5
UH
296}
297
ab4bb6eb 298static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
fdf4a1f5 299{
ab4bb6eb 300 struct dev_context *devc;
fdf4a1f5
UH
301
302 if (sdi->status != SR_ST_ACTIVE)
303 return SR_ERR_DEV_CLOSED;
304
ab4bb6eb
UH
305 devc = sdi->priv;
306
307 switch (id) {
308 case SR_CONF_SAMPLERATE:
309 if (g_variant_get_uint64(data) != SR_MHZ(100)) {
310 sr_err("ScanaPLUS only supports samplerate = 100MHz.");
311 return SR_ERR_ARG;
312 }
313 /* Nothing to do, the ScanaPLUS samplerate is always 100MHz. */
314 break;
315 case SR_CONF_LIMIT_MSEC:
316 if (g_variant_get_uint64(data) == 0)
317 return SR_ERR_ARG;
318 devc->limit_msec = g_variant_get_uint64(data);
319 break;
320 case SR_CONF_LIMIT_SAMPLES:
321 if (g_variant_get_uint64(data) == 0)
322 return SR_ERR_ARG;
323 devc->limit_samples = g_variant_get_uint64(data);
324 break;
fdf4a1f5 325 default:
ab4bb6eb 326 return SR_ERR_NA;
fdf4a1f5
UH
327 }
328
ab4bb6eb 329 return SR_OK;
fdf4a1f5
UH
330}
331
332static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
333{
ab4bb6eb
UH
334 GVariant *gvar;
335 GVariantBuilder gvb;
fdf4a1f5
UH
336
337 (void)sdi;
fdf4a1f5 338
fdf4a1f5 339 switch (key) {
ab4bb6eb
UH
340 case SR_CONF_DEVICE_OPTIONS:
341 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
342 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
343 break;
344 case SR_CONF_SAMPLERATE:
345 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
346 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
347 samplerates, ARRAY_SIZE(samplerates),
348 sizeof(uint64_t));
349 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
350 *data = g_variant_builder_end(&gvb);
351 break;
fdf4a1f5
UH
352 default:
353 return SR_ERR_NA;
354 }
355
ab4bb6eb 356 return SR_OK;
fdf4a1f5
UH
357}
358
359static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
360{
ab4bb6eb
UH
361 int ret;
362 struct dev_context *devc;
fdf4a1f5
UH
363
364 if (sdi->status != SR_ST_ACTIVE)
365 return SR_ERR_DEV_CLOSED;
366
ab4bb6eb
UH
367 if (!(devc = sdi->priv))
368 return SR_ERR_BUG;
369
370 if (!devc->ftdic)
371 return SR_ERR_BUG;
372
373 /* TODO: Configure probes later (thresholds etc.). */
374
375 devc->cb_data = cb_data;
376
377 /* Properly reset internal variables before every new acquisition. */
378 devc->compressed_bytes_ignored = 0;
379 devc->samples_sent = 0;
380 devc->bytes_received = 0;
381
382 if ((ret = scanaplus_init(devc)) < 0)
383 return ret;
384
385 if ((ret = scanaplus_start_acquisition(devc)) < 0)
386 return ret;
387
388 /* Send header packet to the session bus. */
389 std_session_send_df_header(cb_data, LOG_PREFIX);
390
391 /* Hook up a dummy handler to receive data from the device. */
392 sr_source_add(-1, G_IO_IN, 0, scanaplus_receive_data, (void *)sdi);
393
fdf4a1f5
UH
394 return SR_OK;
395}
396
397static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
398{
ab4bb6eb 399 struct sr_datafeed_packet packet;
fdf4a1f5 400
ab4bb6eb
UH
401 (void)sdi;
402
403 sr_dbg("Stopping acquisition.");
404 sr_source_remove(-1);
405
406 /* Send end packet to the session bus. */
407 sr_dbg("Sending SR_DF_END.");
408 packet.type = SR_DF_END;
409 sr_session_send(cb_data, &packet);
fdf4a1f5
UH
410
411 return SR_OK;
412}
413
414SR_PRIV struct sr_dev_driver ikalogic_scanaplus_driver_info = {
415 .name = "ikalogic-scanaplus",
ce95428c 416 .longname = "IKALOGIC ScanaPLUS",
fdf4a1f5
UH
417 .api_version = 1,
418 .init = init,
419 .cleanup = cleanup,
420 .scan = scan,
421 .dev_list = dev_list,
422 .dev_clear = dev_clear,
423 .config_get = config_get,
424 .config_set = config_set,
425 .config_list = config_list,
426 .dev_open = dev_open,
427 .dev_close = dev_close,
428 .dev_acquisition_start = dev_acquisition_start,
429 .dev_acquisition_stop = dev_acquisition_stop,
430 .priv = NULL,
431};