]> sigrok.org Git - libsigrok.git/blame - hardware/link-mso19/api.c
mso-19: Fixed warning.
[libsigrok.git] / hardware / link-mso19 / api.c
CommitLineData
df92e5cf 1/*
2 * This file is part of the sigrok project.
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
df92e5cf 24static const int hwcaps[] = {
1953564a
BV
25 SR_CONF_LOGIC_ANALYZER,
26 SR_CONF_SAMPLERATE,
27 SR_CONF_TRIGGER_SLOPE,
28 SR_CONF_HORIZ_TRIGGERPOS,
29// SR_CONF_CAPTURE_RATIO,
30 SR_CONF_LIMIT_SAMPLES,
31// SR_CONF_RLE,
df92e5cf 32 0,
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] = {
41 "0", "1", "2", "3", "4", "5", "6", "7", NULL
42};
43
df92e5cf 44static const struct sr_samplerates samplerates = {
d3b38ad3
UH
45 .low = SR_HZ(100),
46 .high = SR_MHZ(200),
47 .step = SR_HZ(100),
48 .list = NULL,
df92e5cf 49};
50
51SR_PRIV struct sr_dev_driver link_mso19_driver_info;
52static struct sr_dev_driver *di = &link_mso19_driver_info;
53
54static int hw_init(struct sr_context *sr_ctx)
55{
063e7aef 56 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
df92e5cf 57}
58
59static GSList *hw_scan(GSList *options)
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;
df92e5cf 68
69 (void)options;
df92e5cf 70
df92e5cf 71 for (l = options; l; l = l->next) {
1987b8d6
BV
72 src = l->data;
73 switch (src->key) {
1953564a 74 case SR_CONF_CONN:
1987b8d6 75 conn = src->value;
df92e5cf 76 break;
1953564a 77 case SR_CONF_SERIALCOMM:
1987b8d6 78 serialcomm = src->value;
df92e5cf 79 break;
80 }
81 }
82 if (!conn)
00b44ccb 83 conn = SERIALCONN;
df92e5cf 84 if (serialcomm == NULL)
85 serialcomm = SERIALCOMM;
86
00b44ccb 87 udev = udev_new();
df92e5cf 88 if (!udev) {
89 sr_err("Failed to initialize udev.");
90 }
00b44ccb 91
df92e5cf 92 struct udev_enumerate *enumerate = udev_enumerate_new(udev);
93 udev_enumerate_add_match_subsystem(enumerate, "usb-serial");
94 udev_enumerate_scan_devices(enumerate);
95 struct udev_list_entry *devs = udev_enumerate_get_list_entry(enumerate);
96 struct udev_list_entry *dev_list_entry;
00b44ccb
UH
97 for (dev_list_entry = devs;
98 dev_list_entry != NULL;
99 dev_list_entry = udev_list_entry_get_next(dev_list_entry)) {
df92e5cf 100 const char *syspath = udev_list_entry_get_name(dev_list_entry);
00b44ccb
UH
101 struct udev_device *dev =
102 udev_device_new_from_syspath(udev, syspath);
df92e5cf 103 const char *sysname = udev_device_get_sysname(dev);
00b44ccb
UH
104 struct udev_device *parent =
105 udev_device_get_parent_with_subsystem_devtype(dev, "usb",
106 "usb_device");
df92e5cf 107
108 if (!parent) {
109 sr_err("Unable to find parent usb device for %s",
110 sysname);
111 continue;
112 }
113
00b44ccb
UH
114 const char *idVendor =
115 udev_device_get_sysattr_value(parent, "idVendor");
116 const char *idProduct =
117 udev_device_get_sysattr_value(parent, "idProduct");
df92e5cf 118 if (strcmp(USB_VENDOR, idVendor)
00b44ccb 119 || strcmp(USB_PRODUCT, idProduct))
df92e5cf 120 continue;
121
00b44ccb
UH
122 const char *iSerial =
123 udev_device_get_sysattr_value(parent, "serial");
124 const char *iProduct =
125 udev_device_get_sysattr_value(parent, "product");
df92e5cf 126
00b44ccb 127 char path[32];
df92e5cf 128 snprintf(path, sizeof(path), "/dev/%s", sysname);
00b44ccb 129 conn = path;
df92e5cf 130
131 size_t s = strcspn(iProduct, " ");
00b44ccb
UH
132 char product[32];
133 char manufacturer[32];
df92e5cf 134 if (s > sizeof(product) ||
00b44ccb
UH
135 strlen(iProduct) - s > sizeof(manufacturer)) {
136 sr_err("Could not parse iProduct: %s.", iProduct);
df92e5cf 137 continue;
138 }
139 strncpy(product, iProduct, s);
140 product[s] = 0;
4db2aaff 141 strcpy(manufacturer, iProduct + s + 1);
00b44ccb
UH
142
143 //Create the device context and set its params
144 struct dev_context *devc;
145 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
146 sr_err("Device context malloc failed.");
147 return devices;
148 }
149
150 if (mso_parse_serial(iSerial, iProduct, devc) != SR_OK) {
151 sr_err("Invalid iSerial: %s.", iSerial);
152 g_free(devc);
153 return devices;
154 }
155
156 char hwrev[32];
157 sprintf(hwrev, "r%d", devc->hwrev);
158 devc->ctlbase1 = 0;
159 devc->protocol_trigger.spimode = 0;
160 for (i = 0; i < 4; i++) {
161 devc->protocol_trigger.word[i] = 0;
162 devc->protocol_trigger.mask[i] = 0xff;
163 }
164
165 if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm))) {
166 g_free(devc);
167 return devices;
168 }
169
170 struct sr_dev_inst *sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
171 manufacturer, product, hwrev);
172
173 if (!sdi) {
174 sr_err("Unable to create device instance for %s",
175 sysname);
176 sr_dev_inst_free(sdi);
177 g_free(devc);
178 return devices;
179 }
180
181 sdi->driver = di;
182 sdi->priv = devc;
183
184 for (i = 0; i < NUM_PROBES; i++) {
185 struct sr_probe *probe;
186 if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
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
201static GSList *hw_dev_list(void)
202{
0e94d524 203 return ((struct drv_context *)(di->priv))->instances;
df92e5cf 204}
205
206static int hw_dev_open(struct sr_dev_inst *sdi)
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
237static int hw_dev_close(struct sr_dev_inst *sdi)
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
251static int hw_cleanup(void)
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 }
276 hw_dev_close(sdi);
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
035a1078 286static int config_get(int id, const void **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;
294 *data = &devc->cur_rate;
295 } else
296 return SR_ERR;
297 break;
298 default:
299 return SR_ERR_ARG;
300 }
301
302 return SR_OK;
303}
304
035a1078 305static int config_set(int id, const void *value, 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;
311 float pos;
312
313 devc = sdi->priv;
087a9161 314
df92e5cf 315 if (sdi->status != SR_ST_ACTIVE)
316 return SR_ERR;
317
035a1078 318 switch (id) {
1953564a 319 case SR_CONF_SAMPLERATE:
00b44ccb
UH
320 // FIXME
321 return mso_configure_rate(sdi, *(const uint64_t *)value);
df92e5cf 322 ret = SR_OK;
323 break;
1953564a 324 case SR_CONF_LIMIT_SAMPLES:
00b44ccb 325 num_samples = *(uint64_t *)value;
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:
00b44ccb
UH
340 slope = *(uint64_t *)value;
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:
00b44ccb
UH
350 pos = *(float *)value;
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:
364 ret = SR_ERR;
00b44ccb 365 break;
df92e5cf 366 }
367
368 return ret;
369}
370
a1c743fc
BV
371static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
372{
373
374 (void)sdi;
375
376 switch (key) {
9a6517d1
BV
377 case SR_CONF_DEVICE_OPTIONS:
378 *data = hwcaps;
379 break;
a1c743fc
BV
380 case SR_CONF_SAMPLERATE:
381 *data = &samplerates;
382 break;
c50277a6
BV
383 case SR_CONF_TRIGGER_TYPE:
384 *data = (char *)TRIGGER_TYPE;
385 break;
a1c743fc
BV
386 default:
387 return SR_ERR_ARG;
388 }
389
390 return SR_OK;
391}
392
df92e5cf 393static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
00b44ccb 394 void *cb_data)
df92e5cf 395{
df92e5cf 396 struct dev_context *devc;
df92e5cf 397 int ret = SR_ERR;
00b44ccb 398
df92e5cf 399 devc = sdi->priv;
400
401 if (sdi->status != SR_ST_ACTIVE)
402 return SR_ERR;
403
5a24e89c 404 if (mso_configure_probes(sdi) != SR_OK) {
405 sr_err("Failed to configure probes.");
406 return SR_ERR;
407 }
df92e5cf 408
df92e5cf 409 /* FIXME: No need to do full reconfigure every time */
00b44ccb
UH
410// ret = mso_reset_fsm(sdi);
411// if (ret != SR_OK)
412// return ret;
df92e5cf 413
414 /* FIXME: ACDC Mode */
415 devc->ctlbase1 &= 0x7f;
00b44ccb 416// devc->ctlbase1 |= devc->acdcmode;
df92e5cf 417
418 ret = mso_configure_rate(sdi, devc->cur_rate);
419 if (ret != SR_OK)
420 return ret;
421
422 /* set dac offset */
423 ret = mso_dac_out(sdi, devc->dac_offset);
424 if (ret != SR_OK)
425 return ret;
426
427 ret = mso_configure_threshold_level(sdi);
428 if (ret != SR_OK)
429 return ret;
430
431 ret = mso_configure_trigger(sdi);
432 if (ret != SR_OK)
433 return ret;
434
df92e5cf 435 /* END of config hardware part */
00b44ccb
UH
436 ret = mso_arm(sdi);
437 if (ret != SR_OK)
438 return ret;
df92e5cf 439
440 /* Start acquisition on the device. */
4db2aaff 441 mso_check_trigger(devc->serial, &devc->trigger_state);
442 ret = mso_check_trigger(devc->serial, NULL);
df92e5cf 443 if (ret != SR_OK)
444 return ret;
445
4afdfd46
UH
446 /* Send header packet to the session bus. */
447 std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
df92e5cf 448
4afdfd46 449 sr_source_add(devc->serial->fd, G_IO_IN, -1, mso_receive_data, cb_data);
df92e5cf 450
451 return SR_OK;
452}
453
087a9161 454/* This stops acquisition on ALL devices, ignoring dev_index. */
df92e5cf 455static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
456{
df92e5cf 457 (void)cb_data;
458
459 stop_acquisition(sdi);
460
461 return SR_OK;
462}
463
464SR_PRIV struct sr_dev_driver link_mso19_driver_info = {
465 .name = "link-mso19",
466 .longname = "Link Instruments MSO-19",
467 .api_version = 1,
468 .init = hw_init,
469 .cleanup = hw_cleanup,
470 .scan = hw_scan,
471 .dev_list = hw_dev_list,
472 .dev_clear = hw_cleanup,
035a1078
BV
473 .config_get = config_get,
474 .config_set = config_set,
a1c743fc 475 .config_list = config_list,
df92e5cf 476 .dev_open = hw_dev_open,
477 .dev_close = hw_dev_close,
df92e5cf 478 .dev_acquisition_start = hw_dev_acquisition_start,
479 .dev_acquisition_stop = hw_dev_acquisition_stop,
480 .priv = NULL,
481};