]> sigrok.org Git - libsigrok.git/blame - hardware/link-mso19/api.c
asix-sigma: Use std_dev_clear().
[libsigrok.git] / hardware / link-mso19 / api.c
CommitLineData
df92e5cf 1/*
50985c20 2 * This file is part of the libsigrok project.
df92e5cf 3 *
f48cef78
UH
4 * Copyright (C) 2011 Daniel Ribeiro <drwyrm@gmail.com>
5 * Copyright (C) 2012 Renato Caldas <rmsc@fe.up.pt>
6 * Copyright (C) 2013 Lior Elazary <lelazary@yahoo.com>
df92e5cf 7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include "protocol.h"
23
a9ed6877 24static const int32_t hwcaps[] = {
365f04d6 25 SR_CONF_OSCILLOSCOPE,
1953564a
BV
26 SR_CONF_LOGIC_ANALYZER,
27 SR_CONF_SAMPLERATE,
28 SR_CONF_TRIGGER_SLOPE,
29 SR_CONF_HORIZ_TRIGGERPOS,
30// SR_CONF_CAPTURE_RATIO,
31 SR_CONF_LIMIT_SAMPLES,
32// SR_CONF_RLE,
df92e5cf 33};
34
35/*
36 * Probes are numbered 0 to 7.
37 *
38 * See also: http://www.linkinstruments.com/images/mso19_1113.gif
39 */
40SR_PRIV const char *mso19_probe_names[NUM_PROBES + 1] = {
365f04d6 41 /* Note: DSO needs to be first. */
42 "DSO", "0", "1", "2", "3", "4", "5", "6", "7", NULL,
df92e5cf 43};
44
a9ed6877
BV
45static const uint64_t samplerates[] = {
46 SR_HZ(100),
47 SR_MHZ(200),
48 SR_HZ(100),
df92e5cf 49};
50
51SR_PRIV struct sr_dev_driver link_mso19_driver_info;
52static struct sr_dev_driver *di = &link_mso19_driver_info;
53
6078d2c9 54static int init(struct sr_context *sr_ctx)
df92e5cf 55{
29a27196 56 return std_hw_init(sr_ctx, di, LOG_PREFIX);
df92e5cf 57}
58
6078d2c9 59static GSList *scan(GSList *options)
df92e5cf 60{
00b44ccb
UH
61 int i;
62 GSList *devices = NULL;
63 const char *conn = NULL;
64 const char *serialcomm = NULL;
65 GSList *l;
1987b8d6 66 struct sr_config *src;
00b44ccb 67 struct udev *udev;
365f04d6 68 int ptype;
df92e5cf 69
df92e5cf 70 for (l = options; l; l = l->next) {
1987b8d6
BV
71 src = l->data;
72 switch (src->key) {
1953564a 73 case SR_CONF_CONN:
a9ed6877 74 conn = g_variant_get_string(src->data, NULL);
df92e5cf 75 break;
1953564a 76 case SR_CONF_SERIALCOMM:
06c45a66 77 serialcomm = g_variant_get_string(src->data, NULL);
df92e5cf 78 break;
79 }
80 }
81 if (!conn)
00b44ccb 82 conn = SERIALCONN;
df92e5cf 83 if (serialcomm == NULL)
84 serialcomm = SERIALCOMM;
85
00b44ccb 86 udev = udev_new();
df92e5cf 87 if (!udev) {
88 sr_err("Failed to initialize udev.");
89 }
00b44ccb 90
df92e5cf 91 struct udev_enumerate *enumerate = udev_enumerate_new(udev);
92 udev_enumerate_add_match_subsystem(enumerate, "usb-serial");
93 udev_enumerate_scan_devices(enumerate);
94 struct udev_list_entry *devs = udev_enumerate_get_list_entry(enumerate);
95 struct udev_list_entry *dev_list_entry;
00b44ccb
UH
96 for (dev_list_entry = devs;
97 dev_list_entry != NULL;
98 dev_list_entry = udev_list_entry_get_next(dev_list_entry)) {
df92e5cf 99 const char *syspath = udev_list_entry_get_name(dev_list_entry);
00b44ccb
UH
100 struct udev_device *dev =
101 udev_device_new_from_syspath(udev, syspath);
df92e5cf 102 const char *sysname = udev_device_get_sysname(dev);
00b44ccb
UH
103 struct udev_device *parent =
104 udev_device_get_parent_with_subsystem_devtype(dev, "usb",
105 "usb_device");
df92e5cf 106
107 if (!parent) {
108 sr_err("Unable to find parent usb device for %s",
109 sysname);
110 continue;
111 }
112
00b44ccb
UH
113 const char *idVendor =
114 udev_device_get_sysattr_value(parent, "idVendor");
115 const char *idProduct =
116 udev_device_get_sysattr_value(parent, "idProduct");
df92e5cf 117 if (strcmp(USB_VENDOR, idVendor)
00b44ccb 118 || strcmp(USB_PRODUCT, idProduct))
df92e5cf 119 continue;
120
00b44ccb
UH
121 const char *iSerial =
122 udev_device_get_sysattr_value(parent, "serial");
123 const char *iProduct =
124 udev_device_get_sysattr_value(parent, "product");
df92e5cf 125
00b44ccb 126 char path[32];
df92e5cf 127 snprintf(path, sizeof(path), "/dev/%s", sysname);
00b44ccb 128 conn = path;
df92e5cf 129
130 size_t s = strcspn(iProduct, " ");
00b44ccb
UH
131 char product[32];
132 char manufacturer[32];
df92e5cf 133 if (s > sizeof(product) ||
00b44ccb
UH
134 strlen(iProduct) - s > sizeof(manufacturer)) {
135 sr_err("Could not parse iProduct: %s.", iProduct);
df92e5cf 136 continue;
137 }
138 strncpy(product, iProduct, s);
139 product[s] = 0;
4db2aaff 140 strcpy(manufacturer, iProduct + s + 1);
00b44ccb
UH
141
142 //Create the device context and set its params
143 struct dev_context *devc;
144 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
145 sr_err("Device context malloc failed.");
146 return devices;
147 }
148
149 if (mso_parse_serial(iSerial, iProduct, devc) != SR_OK) {
150 sr_err("Invalid iSerial: %s.", iSerial);
151 g_free(devc);
152 return devices;
153 }
154
155 char hwrev[32];
156 sprintf(hwrev, "r%d", devc->hwrev);
157 devc->ctlbase1 = 0;
158 devc->protocol_trigger.spimode = 0;
159 for (i = 0; i < 4; i++) {
160 devc->protocol_trigger.word[i] = 0;
161 devc->protocol_trigger.mask[i] = 0xff;
162 }
163
164 if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm))) {
165 g_free(devc);
166 return devices;
167 }
168
169 struct sr_dev_inst *sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
170 manufacturer, product, hwrev);
171
172 if (!sdi) {
173 sr_err("Unable to create device instance for %s",
174 sysname);
175 sr_dev_inst_free(sdi);
176 g_free(devc);
177 return devices;
178 }
179
180 sdi->driver = di;
181 sdi->priv = devc;
182
183 for (i = 0; i < NUM_PROBES; i++) {
184 struct sr_probe *probe;
365f04d6 185 ptype = (i == 0) ? SR_PROBE_ANALOG : SR_PROBE_LOGIC;
186 if (!(probe = sr_probe_new(i, ptype, TRUE,
00b44ccb
UH
187 mso19_probe_names[i])))
188 return 0;
189 sdi->probes = g_slist_append(sdi->probes, probe);
190 }
191
192 //Add the driver
193 struct drv_context *drvc = di->priv;
194 drvc->instances = g_slist_append(drvc->instances, sdi);
195 devices = g_slist_append(devices, sdi);
196 }
5a24e89c 197
df92e5cf 198 return devices;
199}
200
6078d2c9 201static GSList *dev_list(void)
df92e5cf 202{
0e94d524 203 return ((struct drv_context *)(di->priv))->instances;
df92e5cf 204}
205
6078d2c9 206static int dev_open(struct sr_dev_inst *sdi)
df92e5cf 207{
00b44ccb 208 int ret;
df92e5cf 209 struct dev_context *devc;
210
211 devc = sdi->priv;
212
213 if (serial_open(devc->serial, SERIAL_RDWR) != SR_OK)
214 return SR_ERR;
215
216 sdi->status = SR_ST_ACTIVE;
217
218 /* FIXME: discard serial buffer */
219 mso_check_trigger(devc->serial, &devc->trigger_state);
220 sr_dbg("Trigger state: 0x%x.", devc->trigger_state);
221
00b44ccb 222 ret = mso_reset_adc(sdi);
df92e5cf 223 if (ret != SR_OK)
224 return ret;
225
226 mso_check_trigger(devc->serial, &devc->trigger_state);
227 sr_dbg("Trigger state: 0x%x.", devc->trigger_state);
228
00b44ccb
UH
229 // ret = mso_reset_fsm(sdi);
230 // if (ret != SR_OK)
231 // return ret;
232 // return SR_ERR;
df92e5cf 233
234 return SR_OK;
235}
236
6078d2c9 237static int dev_close(struct sr_dev_inst *sdi)
df92e5cf 238{
df92e5cf 239 struct dev_context *devc;
240
241 devc = sdi->priv;
242
243 if (devc->serial && devc->serial->fd != -1) {
244 serial_close(devc->serial);
245 sdi->status = SR_ST_INACTIVE;
246 }
247
248 return SR_OK;
249}
250
6078d2c9 251static int cleanup(void)
df92e5cf 252{
df92e5cf 253 GSList *l;
254 struct sr_dev_inst *sdi;
255 struct drv_context *drvc;
256 struct dev_context *devc;
257 int ret = SR_OK;
258
259 if (!(drvc = di->priv))
260 return SR_OK;
261
262 /* Properly close and free all devices. */
263 for (l = drvc->instances; l; l = l->next) {
264 if (!(sdi = l->data)) {
265 /* Log error, but continue cleaning up the rest. */
266 sr_err("%s: sdi was NULL, continuing", __func__);
267 ret = SR_ERR_BUG;
268 continue;
269 }
270 if (!(devc = sdi->priv)) {
271 /* Log error, but continue cleaning up the rest. */
272 sr_err("%s: sdi->priv was NULL, continuing", __func__);
273 ret = SR_ERR_BUG;
274 continue;
275 }
6078d2c9 276 dev_close(sdi);
df92e5cf 277 sr_serial_dev_inst_free(devc->serial);
278 sr_dev_inst_free(sdi);
279 }
280 g_slist_free(drvc->instances);
281 drvc->instances = NULL;
282
283 return ret;
284}
285
a9ed6877 286static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
df92e5cf 287{
288 struct dev_context *devc;
289
035a1078 290 switch (id) {
123e1313 291 case SR_CONF_SAMPLERATE:
df92e5cf 292 if (sdi) {
293 devc = sdi->priv;
a9ed6877 294 *data = g_variant_new_uint64(devc->cur_rate);
df92e5cf 295 } else
296 return SR_ERR;
297 break;
298 default:
bd6fbf62 299 return SR_ERR_NA;
df92e5cf 300 }
301
302 return SR_OK;
303}
304
a9ed6877 305static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
df92e5cf 306{
df92e5cf 307 int ret;
087a9161 308 struct dev_context *devc;
00b44ccb
UH
309 uint64_t num_samples, slope;
310 int trigger_pos;
a9ed6877 311 double pos;
00b44ccb
UH
312
313 devc = sdi->priv;
087a9161 314
df92e5cf 315 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 316 return SR_ERR_DEV_CLOSED;
df92e5cf 317
035a1078 318 switch (id) {
1953564a 319 case SR_CONF_SAMPLERATE:
00b44ccb 320 // FIXME
a9ed6877 321 return mso_configure_rate(sdi, g_variant_get_uint64(data));
df92e5cf 322 ret = SR_OK;
323 break;
1953564a 324 case SR_CONF_LIMIT_SAMPLES:
a9ed6877 325 num_samples = g_variant_get_uint64(data);
5952553f 326 if (num_samples != 1024) {
327 sr_err("Only 1024 samples are supported.");
00b44ccb
UH
328 ret = SR_ERR_ARG;
329 } else {
330 devc->limit_samples = num_samples;
331 sr_dbg("setting limit_samples to %i\n",
332 num_samples);
333 ret = SR_OK;
334 }
df92e5cf 335 break;
1953564a 336 case SR_CONF_CAPTURE_RATIO:
00b44ccb
UH
337 ret = SR_OK;
338 break;
1953564a 339 case SR_CONF_TRIGGER_SLOPE:
a9ed6877 340 slope = g_variant_get_uint64(data);
00b44ccb
UH
341 if (slope != SLOPE_NEGATIVE && slope != SLOPE_POSITIVE) {
342 sr_err("Invalid trigger slope");
343 ret = SR_ERR_ARG;
344 } else {
345 devc->trigger_slope = slope;
346 ret = SR_OK;
347 }
348 break;
1953564a 349 case SR_CONF_HORIZ_TRIGGERPOS:
a9ed6877 350 pos = g_variant_get_double(data);
00b44ccb
UH
351 if (pos < 0 || pos > 255) {
352 sr_err("Trigger position (%f) should be between 0 and 255.", pos);
353 ret = SR_ERR_ARG;
354 } else {
355 trigger_pos = (int)pos;
356 devc->trigger_holdoff[0] = trigger_pos & 0xff;
357 ret = SR_OK;
358 }
df92e5cf 359 break;
1953564a 360 case SR_CONF_RLE:
00b44ccb 361 ret = SR_OK;
df92e5cf 362 break;
363 default:
bd6fbf62 364 ret = SR_ERR_NA;
00b44ccb 365 break;
df92e5cf 366 }
367
368 return ret;
369}
370
a9ed6877 371static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc 372{
a9ed6877
BV
373 GVariant *gvar;
374 GVariantBuilder gvb;
a1c743fc
BV
375
376 (void)sdi;
377
378 switch (key) {
9a6517d1 379 case SR_CONF_DEVICE_OPTIONS:
a9ed6877
BV
380 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
381 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
9a6517d1 382 break;
a1c743fc 383 case SR_CONF_SAMPLERATE:
a9ed6877
BV
384 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
385 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
386 ARRAY_SIZE(samplerates), sizeof(uint64_t));
387 g_variant_builder_add(&gvb, "{sv}", "samplerate-steps", gvar);
388 *data = g_variant_builder_end(&gvb);
a1c743fc 389 break;
c50277a6 390 case SR_CONF_TRIGGER_TYPE:
a9ed6877 391 *data = g_variant_new_string(TRIGGER_TYPE);
c50277a6 392 break;
a1c743fc 393 default:
bd6fbf62 394 return SR_ERR_NA;
a1c743fc
BV
395 }
396
397 return SR_OK;
398}
399
6078d2c9 400static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
df92e5cf 401{
df92e5cf 402 struct dev_context *devc;
df92e5cf 403 int ret = SR_ERR;
00b44ccb 404
df92e5cf 405 if (sdi->status != SR_ST_ACTIVE)
e73ffd42
BV
406 return SR_ERR_DEV_CLOSED;
407
408 devc = sdi->priv;
df92e5cf 409
5a24e89c 410 if (mso_configure_probes(sdi) != SR_OK) {
411 sr_err("Failed to configure probes.");
412 return SR_ERR;
413 }
df92e5cf 414
df92e5cf 415 /* FIXME: No need to do full reconfigure every time */
00b44ccb
UH
416// ret = mso_reset_fsm(sdi);
417// if (ret != SR_OK)
418// return ret;
df92e5cf 419
420 /* FIXME: ACDC Mode */
421 devc->ctlbase1 &= 0x7f;
00b44ccb 422// devc->ctlbase1 |= devc->acdcmode;
df92e5cf 423
424 ret = mso_configure_rate(sdi, devc->cur_rate);
425 if (ret != SR_OK)
426 return ret;
427
428 /* set dac offset */
429 ret = mso_dac_out(sdi, devc->dac_offset);
430 if (ret != SR_OK)
431 return ret;
432
433 ret = mso_configure_threshold_level(sdi);
434 if (ret != SR_OK)
435 return ret;
436
437 ret = mso_configure_trigger(sdi);
438 if (ret != SR_OK)
439 return ret;
440
df92e5cf 441 /* END of config hardware part */
00b44ccb
UH
442 ret = mso_arm(sdi);
443 if (ret != SR_OK)
444 return ret;
df92e5cf 445
446 /* Start acquisition on the device. */
4db2aaff 447 mso_check_trigger(devc->serial, &devc->trigger_state);
448 ret = mso_check_trigger(devc->serial, NULL);
df92e5cf 449 if (ret != SR_OK)
450 return ret;
451
365f04d6 452 /* Reset trigger state. */
453 devc->trigger_state = 0x00;
454
4afdfd46 455 /* Send header packet to the session bus. */
29a27196 456 std_session_send_df_header(cb_data, LOG_PREFIX);
df92e5cf 457
365f04d6 458 /* Our first probe is analog, the other 8 are of type 'logic'. */
459 /* TODO. */
460
4afdfd46 461 sr_source_add(devc->serial->fd, G_IO_IN, -1, mso_receive_data, cb_data);
df92e5cf 462
463 return SR_OK;
464}
465
087a9161 466/* This stops acquisition on ALL devices, ignoring dev_index. */
6078d2c9 467static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
df92e5cf 468{
df92e5cf 469 (void)cb_data;
470
471 stop_acquisition(sdi);
472
473 return SR_OK;
474}
475
476SR_PRIV struct sr_dev_driver link_mso19_driver_info = {
477 .name = "link-mso19",
478 .longname = "Link Instruments MSO-19",
479 .api_version = 1,
6078d2c9
UH
480 .init = init,
481 .cleanup = cleanup,
482 .scan = scan,
483 .dev_list = dev_list,
484 .dev_clear = cleanup,
035a1078
BV
485 .config_get = config_get,
486 .config_set = config_set,
a1c743fc 487 .config_list = config_list,
6078d2c9
UH
488 .dev_open = dev_open,
489 .dev_close = dev_close,
490 .dev_acquisition_start = dev_acquisition_start,
491 .dev_acquisition_stop = dev_acquisition_stop,
df92e5cf 492 .priv = NULL,
493};