]> sigrok.org Git - libsigrok.git/blame - src/hardware/ikalogic-scanaplus/api.c
sr_dev_close(): Set status to SR_ST_INACTIVE.
[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
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
fdf4a1f5
UH
18 */
19
6ec6c43b 20#include <config.h>
fdf4a1f5
UH
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
ab4bb6eb
UH
46static void clear_helper(void *priv)
47{
48 struct dev_context *devc;
49
50 devc = priv;
51
52 ftdi_free(devc->ftdic);
53 g_free(devc->compressed_buf);
54 g_free(devc->sample_buf);
f817f05a 55 g_free(devc);
ab4bb6eb
UH
56}
57
4f840ce9 58static int dev_clear(const struct sr_dev_driver *di)
ab4bb6eb
UH
59{
60 return std_dev_clear(di, clear_helper);
61}
62
4f840ce9 63static GSList *scan(struct sr_dev_driver *di, GSList *options)
fdf4a1f5 64{
ab4bb6eb 65 struct sr_dev_inst *sdi;
ab4bb6eb 66 struct dev_context *devc;
ab4bb6eb
UH
67 unsigned int i;
68 int ret;
fdf4a1f5
UH
69
70 (void)options;
71
ab4bb6eb 72 /* Allocate memory for our private device context. */
f57d8ffe 73 devc = g_malloc0(sizeof(struct dev_context));
ab4bb6eb
UH
74
75 /* Allocate memory for the incoming compressed samples. */
76 if (!(devc->compressed_buf = g_try_malloc0(COMPRESSED_BUF_SIZE))) {
77 sr_err("compressed_buf malloc failed.");
78 goto err_free_devc;
79 }
80
81 /* Allocate memory for the uncompressed samples. */
82 if (!(devc->sample_buf = g_try_malloc0(SAMPLE_BUF_SIZE))) {
83 sr_err("sample_buf malloc failed.");
84 goto err_free_compressed_buf;
85 }
86
87 /* Allocate memory for the FTDI context (ftdic) and initialize it. */
88 if (!(devc->ftdic = ftdi_new())) {
89 sr_err("Failed to initialize libftdi.");
90 goto err_free_sample_buf;
91 }
92
93 /* Check for the device and temporarily open it. */
94 ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID, USB_DEVICE_ID,
95 USB_IPRODUCT, NULL);
96 if (ret < 0) {
97 /* Log errors, except for -3 ("device not found"). */
98 if (ret != -3)
99 sr_err("Failed to open device (%d): %s", ret,
100 ftdi_get_error_string(devc->ftdic));
101 goto err_free_ftdic;
102 }
103
104 /* Register the device with libsigrok. */
aac29cc1 105 sdi = g_malloc0(sizeof(struct sr_dev_inst));
45884333 106 sdi->status = SR_ST_INACTIVE;
0af636be
UH
107 sdi->vendor = g_strdup(USB_VENDOR_NAME);
108 sdi->model = g_strdup(USB_MODEL_NAME);
ab4bb6eb
UH
109 sdi->priv = devc;
110
0f34cb47
UH
111 for (i = 0; i < ARRAY_SIZE(channel_names); i++)
112 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE, channel_names[i]);
ab4bb6eb 113
ab4bb6eb
UH
114 /* Close device. We'll reopen it again when we need it. */
115 scanaplus_close(devc);
fdf4a1f5 116
43376f33 117 return std_scan_complete(di, g_slist_append(NULL, sdi));
ab4bb6eb 118
ab4bb6eb
UH
119 scanaplus_close(devc);
120err_free_ftdic:
121 ftdi_free(devc->ftdic); /* NOT free() or g_free()! */
122err_free_sample_buf:
123 g_free(devc->sample_buf);
124err_free_compressed_buf:
125 g_free(devc->compressed_buf);
126err_free_devc:
127 g_free(devc);
ab4bb6eb
UH
128
129 return NULL;
fdf4a1f5
UH
130}
131
fdf4a1f5
UH
132static int dev_open(struct sr_dev_inst *sdi)
133{
ab4bb6eb
UH
134 struct dev_context *devc;
135 int ret;
136
137 devc = sdi->priv;
138
139 /* Select interface A, otherwise communication will fail. */
140 ret = ftdi_set_interface(devc->ftdic, INTERFACE_A);
141 if (ret < 0) {
142 sr_err("Failed to set FTDI interface A (%d): %s", ret,
143 ftdi_get_error_string(devc->ftdic));
144 return SR_ERR;
145 }
146 sr_dbg("FTDI chip interface A set successfully.");
147
148 /* Open the device. */
149 ret = ftdi_usb_open_desc(devc->ftdic, USB_VENDOR_ID, USB_DEVICE_ID,
150 USB_IPRODUCT, NULL);
151 if (ret < 0) {
152 sr_err("Failed to open device (%d): %s", ret,
153 ftdi_get_error_string(devc->ftdic));
154 return SR_ERR;
155 }
156 sr_dbg("FTDI device opened successfully.");
157
158 /* Purge RX/TX buffers in the FTDI chip. */
159 if ((ret = ftdi_usb_purge_buffers(devc->ftdic)) < 0) {
160 sr_err("Failed to purge FTDI RX/TX buffers (%d): %s.",
161 ret, ftdi_get_error_string(devc->ftdic));
162 goto err_dev_open_close_ftdic;
163 }
164 sr_dbg("FTDI chip buffers purged successfully.");
165
166 /* Reset the FTDI bitmode. */
167 ret = ftdi_set_bitmode(devc->ftdic, 0xff, BITMODE_RESET);
168 if (ret < 0) {
169 sr_err("Failed to reset the FTDI chip bitmode (%d): %s.",
170 ret, ftdi_get_error_string(devc->ftdic));
171 goto err_dev_open_close_ftdic;
172 }
173 sr_dbg("FTDI chip bitmode reset successfully.");
174
175 /* Set FTDI bitmode to "sync FIFO". */
176 ret = ftdi_set_bitmode(devc->ftdic, 0xff, BITMODE_SYNCFF);
177 if (ret < 0) {
178 sr_err("Failed to put FTDI chip into sync FIFO mode (%d): %s.",
179 ret, ftdi_get_error_string(devc->ftdic));
180 goto err_dev_open_close_ftdic;
181 }
182 sr_dbg("FTDI chip sync FIFO mode entered successfully.");
183
184 /* Set the FTDI latency timer to 2. */
185 ret = ftdi_set_latency_timer(devc->ftdic, 2);
186 if (ret < 0) {
187 sr_err("Failed to set FTDI latency timer (%d): %s.",
188 ret, ftdi_get_error_string(devc->ftdic));
189 goto err_dev_open_close_ftdic;
190 }
191 sr_dbg("FTDI chip latency timer set successfully.");
192
193 /* Set the FTDI read data chunk size to 64kB. */
194 ret = ftdi_read_data_set_chunksize(devc->ftdic, 64 * 1024);
195 if (ret < 0) {
196 sr_err("Failed to set FTDI read data chunk size (%d): %s.",
197 ret, ftdi_get_error_string(devc->ftdic));
198 goto err_dev_open_close_ftdic;
199 }
200 sr_dbg("FTDI chip read data chunk size set successfully.");
201
202 /* Get the ScanaPLUS device ID from the FTDI EEPROM. */
203 if ((ret = scanaplus_get_device_id(devc)) < 0) {
204 sr_err("Failed to get ScanaPLUS device ID: %d.", ret);
205 goto err_dev_open_close_ftdic;
206 }
207 sr_dbg("Received ScanaPLUS device ID successfully: %02x %02x %02x.",
208 devc->devid[0], devc->devid[1], devc->devid[2]);
fdf4a1f5 209
fdf4a1f5 210 return SR_OK;
ab4bb6eb
UH
211
212err_dev_open_close_ftdic:
213 scanaplus_close(devc);
7e463623 214
ab4bb6eb 215 return SR_ERR;
fdf4a1f5
UH
216}
217
218static int dev_close(struct sr_dev_inst *sdi)
219{
ab4bb6eb
UH
220 struct dev_context *devc;
221
ab4bb6eb
UH
222 devc = sdi->priv;
223
093e1cba 224 return scanaplus_close(devc);
fdf4a1f5
UH
225}
226
584560f1 227static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 228 const struct sr_channel_group *cg)
fdf4a1f5 229{
fdf4a1f5 230 (void)sdi;
53b4680f 231 (void)cg;
fdf4a1f5 232
584560f1 233 switch (key) {
ab4bb6eb
UH
234 case SR_CONF_SAMPLERATE:
235 /* The ScanaPLUS samplerate is 100MHz and can't be changed. */
236 *data = g_variant_new_uint64(SR_MHZ(100));
237 break;
fdf4a1f5
UH
238 default:
239 return SR_ERR_NA;
240 }
241
ab4bb6eb 242 return SR_OK;
fdf4a1f5
UH
243}
244
584560f1 245static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 246 const struct sr_channel_group *cg)
fdf4a1f5 247{
ab4bb6eb 248 struct dev_context *devc;
fdf4a1f5 249
53b4680f 250 (void)cg;
d3c74a6f 251
ab4bb6eb
UH
252 devc = sdi->priv;
253
584560f1 254 switch (key) {
ab4bb6eb
UH
255 case SR_CONF_SAMPLERATE:
256 if (g_variant_get_uint64(data) != SR_MHZ(100)) {
257 sr_err("ScanaPLUS only supports samplerate = 100MHz.");
258 return SR_ERR_ARG;
259 }
260 /* Nothing to do, the ScanaPLUS samplerate is always 100MHz. */
261 break;
262 case SR_CONF_LIMIT_MSEC:
263 if (g_variant_get_uint64(data) == 0)
264 return SR_ERR_ARG;
265 devc->limit_msec = g_variant_get_uint64(data);
266 break;
267 case SR_CONF_LIMIT_SAMPLES:
268 if (g_variant_get_uint64(data) == 0)
269 return SR_ERR_ARG;
270 devc->limit_samples = g_variant_get_uint64(data);
271 break;
fdf4a1f5 272 default:
ab4bb6eb 273 return SR_ERR_NA;
fdf4a1f5
UH
274 }
275
ab4bb6eb 276 return SR_OK;
fdf4a1f5
UH
277}
278
584560f1 279static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 280 const struct sr_channel_group *cg)
fdf4a1f5 281{
ab4bb6eb
UH
282 GVariant *gvar;
283 GVariantBuilder gvb;
fdf4a1f5
UH
284
285 (void)sdi;
53b4680f 286 (void)cg;
fdf4a1f5 287
fdf4a1f5 288 switch (key) {
ab4bb6eb 289 case SR_CONF_DEVICE_OPTIONS:
584560f1 290 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 291 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
ab4bb6eb
UH
292 break;
293 case SR_CONF_SAMPLERATE:
294 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
295 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"),
296 samplerates, ARRAY_SIZE(samplerates),
297 sizeof(uint64_t));
298 g_variant_builder_add(&gvb, "{sv}", "samplerates", gvar);
299 *data = g_variant_builder_end(&gvb);
300 break;
fdf4a1f5
UH
301 default:
302 return SR_ERR_NA;
303 }
304
ab4bb6eb 305 return SR_OK;
fdf4a1f5
UH
306}
307
695dc859 308static int dev_acquisition_start(const struct sr_dev_inst *sdi)
fdf4a1f5 309{
ab4bb6eb
UH
310 int ret;
311 struct dev_context *devc;
fdf4a1f5 312
208c1d35 313 devc = sdi->priv;
ab4bb6eb
UH
314
315 if (!devc->ftdic)
316 return SR_ERR_BUG;
317
ba7dd8bb 318 /* TODO: Configure channels later (thresholds etc.). */
ab4bb6eb 319
ab4bb6eb
UH
320 /* Properly reset internal variables before every new acquisition. */
321 devc->compressed_bytes_ignored = 0;
322 devc->samples_sent = 0;
323 devc->bytes_received = 0;
324
325 if ((ret = scanaplus_init(devc)) < 0)
326 return ret;
327
328 if ((ret = scanaplus_start_acquisition(devc)) < 0)
329 return ret;
330
bee2b016 331 std_session_send_df_header(sdi);
ab4bb6eb
UH
332
333 /* Hook up a dummy handler to receive data from the device. */
c650d3ec 334 sr_session_source_add(sdi->session, -1, 0, 0, scanaplus_receive_data, (void *)sdi);
ab4bb6eb 335
fdf4a1f5
UH
336 return SR_OK;
337}
338
695dc859 339static int dev_acquisition_stop(struct sr_dev_inst *sdi)
fdf4a1f5 340{
102f1239 341 sr_session_source_remove(sdi->session, -1);
bee2b016 342 std_session_send_df_end(sdi);
fdf4a1f5
UH
343
344 return SR_OK;
345}
346
dd5c48a6 347static struct sr_dev_driver ikalogic_scanaplus_driver_info = {
fdf4a1f5 348 .name = "ikalogic-scanaplus",
ce95428c 349 .longname = "IKALOGIC ScanaPLUS",
fdf4a1f5 350 .api_version = 1,
c2fdcc25 351 .init = std_init,
700d6b64 352 .cleanup = std_cleanup,
fdf4a1f5 353 .scan = scan,
c01bf34c 354 .dev_list = std_dev_list,
fdf4a1f5
UH
355 .dev_clear = dev_clear,
356 .config_get = config_get,
357 .config_set = config_set,
358 .config_list = config_list,
359 .dev_open = dev_open,
360 .dev_close = dev_close,
361 .dev_acquisition_start = dev_acquisition_start,
362 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 363 .context = NULL,
fdf4a1f5 364};
dd5c48a6 365SR_REGISTER_DEV_DRIVER(ikalogic_scanaplus_driver_info);