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