]> sigrok.org Git - libsigrok.git/blame - hardware/link-mso19/link-mso19.c
sr: Mark API functions with SR_API/SR_PRIV.
[libsigrok.git] / hardware / link-mso19 / link-mso19.c
CommitLineData
01cf8814
DR
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2011 Daniel Ribeiro <drwyrm@gmail.com>
a2936073 5 * Copyright (C) 2012 Renato Caldas <rmsc@fe.up.pt>
01cf8814
DR
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
8a839354
UH
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
01cf8814
DR
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <unistd.h>
25#include <fcntl.h>
26#include <sys/time.h>
27#include <inttypes.h>
28#include <glib.h>
29#include <libudev.h>
01cf8814 30#include <arpa/inet.h>
b7f09cf8
UH
31#include "sigrok.h"
32#include "sigrok-internal.h"
01cf8814
DR
33#include "link-mso19.h"
34
35#define USB_VENDOR "3195"
36#define USB_PRODUCT "f190"
37
464d12c7
KS
38#define NUM_PROBES 8
39
01cf8814 40static int capabilities[] = {
5a2326a7
UH
41 SR_HWCAP_LOGIC_ANALYZER,
42// SR_HWCAP_OSCILLOSCOPE,
43// SR_HWCAP_PAT_GENERATOR,
01cf8814 44
5a2326a7
UH
45 SR_HWCAP_SAMPLERATE,
46// SR_HWCAP_CAPTURE_RATIO,
47 SR_HWCAP_LIMIT_SAMPLES,
01cf8814
DR
48 0,
49};
50
464d12c7
KS
51static const char *probe_names[NUM_PROBES + 1] = {
52 "0",
53 "1",
54 "2",
55 "3",
56 "4",
57 "5",
58 "6",
59 "7",
60 NULL,
61};
62
01cf8814 63static uint64_t supported_samplerates[] = {
c9140419
UH
64 SR_HZ(100),
65 SR_HZ(200),
66 SR_HZ(500),
59df0c77
UH
67 SR_KHZ(1),
68 SR_KHZ(2),
69 SR_KHZ(5),
70 SR_KHZ(10),
71 SR_KHZ(20),
72 SR_KHZ(50),
73 SR_KHZ(100),
74 SR_KHZ(200),
75 SR_KHZ(500),
76 SR_MHZ(1),
77 SR_MHZ(2),
78 SR_MHZ(5),
79 SR_MHZ(10),
80 SR_MHZ(20),
81 SR_MHZ(50),
82 SR_MHZ(100),
83 SR_MHZ(200),
84 0,
01cf8814
DR
85};
86
60679b18 87static struct sr_samplerates samplerates = {
c9140419 88 SR_HZ(100),
59df0c77 89 SR_MHZ(200),
c9140419 90 SR_HZ(0),
59df0c77 91 supported_samplerates,
01cf8814
DR
92};
93
94static GSList *device_instances = NULL;
95
a00ba012 96static int mso_send_control_message(struct sr_device_instance *sdi,
01cf8814
DR
97 uint16_t payload[], int n)
98{
99 int fd = sdi->serial->fd;
100 int i, w, ret, s = n * 2 + sizeof(mso_head) + sizeof(mso_foot);
101 char *p, *buf;
102
ecad043f
UH
103 ret = SR_ERR;
104
01cf8814
DR
105 if (fd < 0)
106 goto ret;
107
ecad043f
UH
108 if (!(buf = g_try_malloc(s))) {
109 sr_err("mso19: %s: buf malloc failed", __func__);
110 ret = SR_ERR_MALLOC;
01cf8814 111 goto ret;
ecad043f 112 }
01cf8814
DR
113
114 p = buf;
115 memcpy(p, mso_head, sizeof(mso_head));
116 p += sizeof(mso_head);
117
118 for (i = 0; i < n; i++) {
119 *(uint16_t *) p = htons(payload[i]);
120 p += 2;
121 }
122 memcpy(p, mso_foot, sizeof(mso_foot));
123
124 w = 0;
125 while (w < s) {
2119ab03 126 ret = serial_write(fd, buf + w, s - w);
01cf8814 127 if (ret < 0) {
e46b8fb1 128 ret = SR_ERR;
01cf8814
DR
129 goto free;
130 }
131 w += ret;
132 }
e46b8fb1 133 ret = SR_OK;
01cf8814 134free:
ecad043f 135 g_free(buf);
01cf8814
DR
136ret:
137 return ret;
138}
139
a00ba012 140static int mso_reset_adc(struct sr_device_instance *sdi)
01cf8814
DR
141{
142 struct mso *mso = sdi->priv;
143 uint16_t ops[2];
144
a8467191
RC
145 ops[0] = mso_trans(REG_CTL1, (mso->ctlbase1 | BIT_CTL1_RESETADC));
146 ops[1] = mso_trans(REG_CTL1, mso->ctlbase1);
147 mso->ctlbase1 |= BIT_CTL1_ADC_UNKNOWN4;
01cf8814 148
357285a9 149 sr_dbg("Requesting ADC reset");
01cf8814
DR
150 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
151}
152
a00ba012 153static int mso_reset_fsm(struct sr_device_instance *sdi)
01cf8814
DR
154{
155 struct mso *mso = sdi->priv;
156 uint16_t ops[1];
157
a8467191
RC
158 mso->ctlbase1 |= BIT_CTL1_RESETFSM;
159 ops[0] = mso_trans(REG_CTL1, mso->ctlbase1);
01cf8814 160
357285a9 161 sr_dbg("Requesting ADC reset");
01cf8814
DR
162 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
163}
164
a00ba012 165static int mso_toggle_led(struct sr_device_instance *sdi, int state)
01cf8814
DR
166{
167 struct mso *mso = sdi->priv;
168 uint16_t ops[1];
169
f020a997 170 mso->ctlbase1 &= ~BIT_CTL1_LED;
01cf8814 171 if (state)
a8467191
RC
172 mso->ctlbase1 |= BIT_CTL1_LED;
173 ops[0] = mso_trans(REG_CTL1, mso->ctlbase1);
01cf8814 174
357285a9 175 sr_dbg("Requesting LED toggle");
01cf8814
DR
176 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
177}
178
a00ba012 179static int mso_check_trigger(struct sr_device_instance *sdi,
01cf8814
DR
180 uint8_t *info)
181{
182 uint16_t ops[] = { mso_trans(REG_TRIGGER, 0) };
183 char buf[1];
184 int ret;
185
357285a9 186 sr_dbg("Requesting trigger state");
01cf8814 187 ret = mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
e46b8fb1 188 if (info == NULL || ret != SR_OK)
01cf8814
DR
189 return ret;
190
191 buf[0] = 0;
2119ab03 192 if (serial_read(sdi->serial->fd, buf, 1) != 1) /* FIXME: Need timeout */
e46b8fb1 193 ret = SR_ERR;
01cf8814
DR
194 *info = buf[0];
195
357285a9 196 sr_dbg("Trigger state is: 0x%x", *info);
01cf8814
DR
197 return ret;
198}
199
a00ba012 200static int mso_read_buffer(struct sr_device_instance *sdi)
01cf8814
DR
201{
202 uint16_t ops[] = { mso_trans(REG_BUFFER, 0) };
203
357285a9 204 sr_dbg("Requesting buffer dump");
01cf8814
DR
205 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
206}
207
a00ba012 208static int mso_arm(struct sr_device_instance *sdi)
01cf8814
DR
209{
210 struct mso *mso = sdi->priv;
211 uint16_t ops[] = {
a8467191
RC
212 mso_trans(REG_CTL1, mso->ctlbase1 | BIT_CTL1_RESETFSM),
213 mso_trans(REG_CTL1, mso->ctlbase1 | BIT_CTL1_ARM),
214 mso_trans(REG_CTL1, mso->ctlbase1),
01cf8814
DR
215 };
216
357285a9 217 sr_dbg("Requesting trigger arm");
01cf8814
DR
218 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
219}
220
a00ba012 221static int mso_force_capture(struct sr_device_instance *sdi)
01cf8814
DR
222{
223 struct mso *mso = sdi->priv;
224 uint16_t ops[] = {
a8467191
RC
225 mso_trans(REG_CTL1, mso->ctlbase1 | 8),
226 mso_trans(REG_CTL1, mso->ctlbase1),
01cf8814
DR
227 };
228
357285a9 229 sr_dbg("Requesting forced capture");
01cf8814
DR
230 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
231}
232
a00ba012 233static int mso_dac_out(struct sr_device_instance *sdi, uint16_t val)
01cf8814
DR
234{
235 struct mso *mso = sdi->priv;
236 uint16_t ops[] = {
237 mso_trans(REG_DAC1, (val >> 8) & 0xff),
238 mso_trans(REG_DAC2, val & 0xff),
a8467191 239 mso_trans(REG_CTL1, mso->ctlbase1 | BIT_CTL1_RESETADC),
01cf8814
DR
240 };
241
357285a9 242 sr_dbg("Setting dac word to 0x%x", val);
01cf8814
DR
243 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
244}
245
a00ba012 246static int mso_clkrate_out(struct sr_device_instance *sdi, uint16_t val)
01cf8814
DR
247{
248 uint16_t ops[] = {
249 mso_trans(REG_CLKRATE1, (val >> 8) & 0xff),
250 mso_trans(REG_CLKRATE2, val & 0xff),
251 };
252
357285a9 253 sr_dbg("Setting clkrate word to 0x%x", val);
01cf8814
DR
254 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
255}
256
a00ba012 257static int mso_configure_rate(struct sr_device_instance *sdi,
01cf8814
DR
258 uint32_t rate)
259{
260 struct mso *mso = sdi->priv;
261 unsigned int i;
e46b8fb1 262 int ret = SR_ERR;
01cf8814
DR
263
264 for (i = 0; i < ARRAY_SIZE(rate_map); i++) {
265 if (rate_map[i].rate == rate) {
a8467191 266 mso->ctlbase2 = rate_map[i].slowmode;
01cf8814 267 ret = mso_clkrate_out(sdi, rate_map[i].val);
e46b8fb1 268 if (ret == SR_OK)
01cf8814
DR
269 mso->cur_rate = rate;
270 return ret;
271 }
272 }
273 return ret;
274}
275
01cf8814
DR
276static inline uint16_t mso_calc_raw_from_mv(struct mso *mso)
277{
278 return (uint16_t) (0x200 -
279 ((mso->dso_trigger_voltage / mso->dso_probe_attn) /
280 mso->vbit));
281}
282
a00ba012 283static int mso_configure_trigger(struct sr_device_instance *sdi)
01cf8814
DR
284{
285 struct mso *mso = sdi->priv;
286 uint16_t ops[16];
287 uint16_t dso_trigger = mso_calc_raw_from_mv(mso);
288
289 dso_trigger &= 0x3ff;
290 if ((!mso->trigger_slope && mso->trigger_chan == 1) ||
291 (mso->trigger_slope &&
292 (mso->trigger_chan == 0 ||
293 mso->trigger_chan == 2 ||
294 mso->trigger_chan == 3)))
295 dso_trigger |= 0x400;
296
297 switch (mso->trigger_chan) {
298 case 1:
299 dso_trigger |= 0xe000;
300 case 2:
301 dso_trigger |= 0x4000;
302 break;
303 case 3:
304 dso_trigger |= 0x2000;
305 break;
306 case 4:
307 dso_trigger |= 0xa000;
308 break;
309 case 5:
310 dso_trigger |= 0x8000;
311 break;
312 default:
313 case 0:
314 break;
315 }
316
317 switch (mso->trigger_outsrc) {
318 case 1:
319 dso_trigger |= 0x800;
320 break;
321 case 2:
322 dso_trigger |= 0x1000;
323 break;
324 case 3:
325 dso_trigger |= 0x1800;
326 break;
327
328 }
329
330 ops[0] = mso_trans(5, mso->la_trigger);
331 ops[1] = mso_trans(6, mso->la_trigger_mask);
332 ops[2] = mso_trans(3, dso_trigger & 0xff);
333 ops[3] = mso_trans(4, (dso_trigger >> 8) & 0xff);
334 ops[4] = mso_trans(11,
59df0c77 335 mso->dso_trigger_width / SR_HZ_TO_NS(mso->cur_rate));
01cf8814 336
a2936073
RC
337 /* Select the SPI/I2C trigger config bank */
338 ops[5] = mso_trans(REG_CTL2, (mso->ctlbase2 | BITS_CTL2_BANK(2)));
339 /* Configure the SPI/I2C protocol trigger */
340 ops[6] = mso_trans(REG_PT_WORD(0), mso->protocol_trigger.word[0]);
341 ops[7] = mso_trans(REG_PT_WORD(1), mso->protocol_trigger.word[1]);
342 ops[8] = mso_trans(REG_PT_WORD(2), mso->protocol_trigger.word[2]);
343 ops[9] = mso_trans(REG_PT_WORD(3), mso->protocol_trigger.word[3]);
344 ops[10] = mso_trans(REG_PT_MASK(0), mso->protocol_trigger.mask[0]);
345 ops[11] = mso_trans(REG_PT_MASK(1), mso->protocol_trigger.mask[1]);
346 ops[12] = mso_trans(REG_PT_MASK(2), mso->protocol_trigger.mask[2]);
347 ops[13] = mso_trans(REG_PT_MASK(3), mso->protocol_trigger.mask[3]);
348 ops[14] = mso_trans(REG_PT_SPIMODE, mso->protocol_trigger.spimode);
349 /* Select the default config bank */
a8467191 350 ops[15] = mso_trans(REG_CTL2, mso->ctlbase2);
01cf8814
DR
351
352 return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
353}
354
a00ba012 355static int mso_configure_threshold_level(struct sr_device_instance *sdi)
01cf8814
DR
356{
357 struct mso *mso = sdi->priv;
358
359 return mso_dac_out(sdi, la_threshold_map[mso->la_threshold]);
360}
361
362static int mso_parse_serial(const char *iSerial, const char *iProduct,
363 struct mso *mso)
364{
365 unsigned int u1, u2, u3, u4, u5, u6;
366
367 iProduct = iProduct;
368 /* FIXME: This code is in the original app, but I think its
369 * used only for the GUI */
370/* if (strstr(iProduct, "REV_02") || strstr(iProduct, "REV_03"))
371 mso->num_sample_rates = 0x16;
372 else
373 mso->num_sample_rates = 0x10; */
374
375 /* parse iSerial */
376 if (iSerial[0] != '4' || sscanf(iSerial, "%5u%3u%3u%1u%1u%6u",
377 &u1, &u2, &u3, &u4, &u5, &u6) != 6)
e46b8fb1 378 return SR_ERR;
01cf8814
DR
379 mso->hwmodel = u4;
380 mso->hwrev = u5;
381 mso->serial = u6;
382 mso->vbit = u1 / 10000;
383 if (mso->vbit == 0)
384 mso->vbit = 4.19195;
385 mso->dac_offset = u2;
386 if (mso->dac_offset == 0)
387 mso->dac_offset = 0x1ff;
388 mso->offset_range = u3;
389 if (mso->offset_range == 0)
390 mso->offset_range = 0x17d;
391
392 /*
393 * FIXME: There is more code on the original software to handle
394 * bigger iSerial strings, but as I can't test on my device
395 * I will not implement it yet
396 */
397
e46b8fb1 398 return SR_OK;
01cf8814
DR
399}
400
54ac5277 401static int hw_init(const char *deviceinfo)
01cf8814 402{
a00ba012 403 struct sr_device_instance *sdi;
01cf8814
DR
404 int devcnt = 0;
405 struct udev *udev;
406 struct udev_enumerate *enumerate;
407 struct udev_list_entry *devices, *dev_list_entry;
408 struct mso *mso;
409
410 deviceinfo = deviceinfo;
411
412 /* It's easier to map usb<->serial using udev */
413 /*
414 * FIXME: On windows we can get the same information from the
415 * registry, add an #ifdef here later
416 */
417 udev = udev_new();
418 if (!udev) {
b08024a8 419 sr_warn("Failed to initialize udev.");
01cf8814
DR
420 goto ret;
421 }
422 enumerate = udev_enumerate_new(udev);
423 udev_enumerate_add_match_subsystem(enumerate, "usb-serial");
424 udev_enumerate_scan_devices(enumerate);
425 devices = udev_enumerate_get_list_entry(enumerate);
426 udev_list_entry_foreach(dev_list_entry, devices) {
427 const char *syspath, *sysname, *idVendor, *idProduct,
428 *iSerial, *iProduct;
429 char path[32], manufacturer[32], product[32], hwrev[32];
430 struct udev_device *dev, *parent;
431 size_t s;
432
433 syspath = udev_list_entry_get_name(dev_list_entry);
434 dev = udev_device_new_from_syspath(udev, syspath);
435 sysname = udev_device_get_sysname(dev);
436 parent = udev_device_get_parent_with_subsystem_devtype(
437 dev, "usb", "usb_device");
438 if (!parent) {
b08024a8
UH
439 sr_warn("Unable to find parent usb device for %s",
440 sysname);
01cf8814
DR
441 continue;
442 }
443
444 idVendor = udev_device_get_sysattr_value(parent, "idVendor");
445 idProduct = udev_device_get_sysattr_value(parent, "idProduct");
446 if (strcmp(USB_VENDOR, idVendor)
447 || strcmp(USB_PRODUCT, idProduct))
448 continue;
449
450 iSerial = udev_device_get_sysattr_value(parent, "serial");
451 iProduct = udev_device_get_sysattr_value(parent, "product");
452
453 snprintf(path, sizeof(path), "/dev/%s", sysname);
454
455 s = strcspn(iProduct, " ");
456 if (s > sizeof(product) ||
457 strlen(iProduct) - s > sizeof(manufacturer)) {
b08024a8 458 sr_warn("Could not parse iProduct: %s", iProduct);
01cf8814
DR
459 continue;
460 }
461 strncpy(product, iProduct, s);
462 product[s] = 0;
463 strcpy(manufacturer, iProduct + s);
01cf8814 464
ecad043f
UH
465 if (!(mso = g_try_malloc0(sizeof(struct mso)))) {
466 sr_err("mso19: %s: mso malloc failed", __func__);
467 continue; /* TODO: Errors handled correctly? */
468 }
01cf8814 469
e46b8fb1 470 if (mso_parse_serial(iSerial, iProduct, mso) != SR_OK) {
b08024a8 471 sr_warn("Invalid iSerial: %s", iSerial);
01cf8814
DR
472 goto err_free_mso;
473 }
d88b9393 474 sprintf(hwrev, "r%d", mso->hwrev);
a2936073 475
01cf8814 476 /* hardware initial state */
a8467191 477 mso->ctlbase1 = 0;
a2936073
RC
478 {
479 /* Initialize the protocol trigger configuration */
480 int i;
481 for (i = 0; i < 4; i++)
482 {
483 mso->protocol_trigger.word[i] = 0;
484 mso->protocol_trigger.mask[i] = 0xff;
485 }
486 mso->protocol_trigger.spimode = 0;
487 }
01cf8814 488
5a2326a7 489 sdi = sr_device_instance_new(devcnt, SR_ST_INITIALIZING,
01cf8814
DR
490 manufacturer, product, hwrev);
491 if (!sdi) {
b08024a8
UH
492 sr_warn("Unable to create device instance for %s",
493 sysname);
01cf8814
DR
494 goto err_free_mso;
495 }
496
497 /* save a pointer to our private instance data */
498 sdi->priv = mso;
499
6c290072 500 sdi->serial = sr_serial_device_instance_new(path, -1);
01cf8814
DR
501 if (!sdi->serial)
502 goto err_device_instance_free;
503
504 device_instances = g_slist_append(device_instances, sdi);
505 devcnt++;
506 continue;
507
508err_device_instance_free:
a00ba012 509 sr_device_instance_free(sdi);
01cf8814
DR
510err_free_mso:
511 free(mso);
512 }
513
514 udev_enumerate_unref(enumerate);
515 udev_unref(udev);
516
517ret:
518 return devcnt;
519}
520
521static void hw_cleanup(void)
522{
523 GSList *l;
a00ba012 524 struct sr_device_instance *sdi;
01cf8814
DR
525
526 /* Properly close all devices. */
527 for (l = device_instances; l; l = l->next) {
528 sdi = l->data;
529 if (sdi->serial->fd != -1)
530 serial_close(sdi->serial->fd);
531 if (sdi->priv != NULL)
e084a804 532 {
01cf8814 533 free(sdi->priv);
e084a804
RC
534 sdi->priv = NULL;
535 }
a00ba012 536 sr_device_instance_free(sdi);
01cf8814
DR
537 }
538 g_slist_free(device_instances);
539 device_instances = NULL;
540}
541
542static int hw_opendev(int device_index)
543{
a00ba012 544 struct sr_device_instance *sdi;
01cf8814 545 struct mso *mso;
e46b8fb1 546 int ret = SR_ERR;
01cf8814 547
d32d961d 548 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
01cf8814
DR
549 return ret;
550
551 mso = sdi->priv;
552 sdi->serial->fd = serial_open(sdi->serial->port, O_RDWR);
553 if (sdi->serial->fd == -1)
554 return ret;
555
556 ret = serial_set_params(sdi->serial->fd, 460800, 8, 0, 1, 2);
e46b8fb1 557 if (ret != SR_OK)
01cf8814
DR
558 return ret;
559
5a2326a7 560 sdi->status = SR_ST_ACTIVE;
01cf8814
DR
561
562 /* FIXME: discard serial buffer */
563
564 mso_check_trigger(sdi, &mso->trigger_state);
357285a9 565 sr_dbg("trigger state: 0x%x", mso->trigger_state);
01cf8814
DR
566
567 ret = mso_reset_adc(sdi);
e46b8fb1 568 if (ret != SR_OK)
01cf8814
DR
569 return ret;
570
571 mso_check_trigger(sdi, &mso->trigger_state);
357285a9 572 sr_dbg("trigger state: 0x%x", mso->trigger_state);
01cf8814
DR
573
574// ret = mso_reset_fsm(sdi);
e46b8fb1 575// if (ret != SR_OK)
01cf8814
DR
576// return ret;
577
357285a9
RC
578 sr_dbg("Finished %s", __func__);
579
e46b8fb1
UH
580// return SR_ERR;
581 return SR_OK;
01cf8814
DR
582}
583
697785d1 584static int hw_closedev(int device_index)
01cf8814 585{
a00ba012 586 struct sr_device_instance *sdi;
01cf8814 587
697785d1
UH
588 if (!(sdi = sr_get_device_instance(device_instances, device_index))) {
589 sr_err("mso19: %s: sdi was NULL", __func__);
590 return SR_ERR; /* TODO: SR_ERR_ARG? */
591 }
01cf8814 592
697785d1 593 /* TODO */
01cf8814
DR
594 if (sdi->serial->fd != -1) {
595 serial_close(sdi->serial->fd);
596 sdi->serial->fd = -1;
5a2326a7 597 sdi->status = SR_ST_INACTIVE;
01cf8814 598 }
697785d1 599
357285a9 600 sr_dbg("finished %s", __func__);
697785d1 601 return SR_OK;
01cf8814
DR
602}
603
604static void *hw_get_device_info(int device_index, int device_info_id)
605{
a00ba012 606 struct sr_device_instance *sdi;
01cf8814
DR
607 struct mso *mso;
608 void *info = NULL;
609
d32d961d 610 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
01cf8814
DR
611 return NULL;
612 mso = sdi->priv;
613
614 switch (device_info_id) {
5a2326a7 615 case SR_DI_INSTANCE:
01cf8814
DR
616 info = sdi;
617 break;
5a2326a7 618 case SR_DI_NUM_PROBES: /* FIXME: How to report analog probe? */
464d12c7
KS
619 info = GINT_TO_POINTER(NUM_PROBES);
620 break;
621 case SR_DI_PROBE_NAMES:
622 info = probe_names;
01cf8814 623 break;
5a2326a7 624 case SR_DI_SAMPLERATES:
01cf8814
DR
625 info = &samplerates;
626 break;
5a2326a7 627 case SR_DI_TRIGGER_TYPES:
01cf8814
DR
628 info = "01"; /* FIXME */
629 break;
5a2326a7 630 case SR_DI_CUR_SAMPLERATE:
01cf8814
DR
631 info = &mso->cur_rate;
632 break;
633 }
634 return info;
635}
636
637static int hw_get_status(int device_index)
638{
a00ba012 639 struct sr_device_instance *sdi;
01cf8814 640
d32d961d 641 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
5a2326a7 642 return SR_ST_NOT_FOUND;
01cf8814
DR
643
644 return sdi->status;
645}
646
647static int *hw_get_capabilities(void)
648{
649 return capabilities;
650}
651
652static int hw_set_configuration(int device_index, int capability, void *value)
653{
a00ba012 654 struct sr_device_instance *sdi;
01cf8814 655
d32d961d 656 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
e46b8fb1 657 return SR_ERR;
01cf8814
DR
658
659 switch (capability) {
5a2326a7 660 case SR_HWCAP_SAMPLERATE:
01cf8814 661 return mso_configure_rate(sdi, *(uint64_t *) value);
5a2326a7
UH
662 case SR_HWCAP_PROBECONFIG:
663 case SR_HWCAP_LIMIT_SAMPLES:
01cf8814 664 default:
e46b8fb1 665 return SR_OK; /* FIXME */
01cf8814 666 }
01cf8814
DR
667}
668
669#define MSO_TRIGGER_UNKNOWN '!'
670#define MSO_TRIGGER_UNKNOWN1 '1'
671#define MSO_TRIGGER_UNKNOWN2 '2'
672#define MSO_TRIGGER_UNKNOWN3 '3'
673#define MSO_TRIGGER_WAIT '4'
674#define MSO_TRIGGER_FIRED '5'
675#define MSO_TRIGGER_DATAREADY '6'
676
677/* FIXME: Pass errors? */
678static int receive_data(int fd, int revents, void *user_data)
679{
a00ba012 680 struct sr_device_instance *sdi = user_data;
01cf8814 681 struct mso *mso = sdi->priv;
b9c735a2 682 struct sr_datafeed_packet packet;
e42ef08d 683 struct sr_datafeed_logic logic;
01cf8814
DR
684 uint8_t in[1024], logic_out[1024];
685 double analog_out[1024];
686 size_t i, s;
687
688 revents = revents;
689
2119ab03 690 s = serial_read(fd, in, sizeof(in));
01cf8814
DR
691 if (s <= 0)
692 return FALSE;
693
694 /* No samples */
695 if (mso->trigger_state != MSO_TRIGGER_DATAREADY) {
696 mso->trigger_state = in[0];
697 if (mso->trigger_state == MSO_TRIGGER_DATAREADY) {
698 mso_read_buffer(sdi);
699 mso->buffer_n = 0;
700 } else {
701 mso_check_trigger(sdi, NULL);
702 }
703 return FALSE;
704 }
705
706 /* the hardware always dumps 1024 samples, 24bits each */
707 if (mso->buffer_n < 3072) {
708 memcpy(mso->buffer + mso->buffer_n, in, s);
709 mso->buffer_n += s;
710 }
711 if (mso->buffer_n < 3072)
712 return FALSE;
713
714 /* do the conversion */
715 for (i = 0; i < 1024; i++) {
716 /* FIXME: Need to do conversion to mV */
717 analog_out[i] = (mso->buffer[i * 3] & 0x3f) |
718 ((mso->buffer[i * 3 + 1] & 0xf) << 6);
719 logic_out[i] = ((mso->buffer[i * 3 + 1] & 0x30) >> 4) |
720 ((mso->buffer[i * 3 + 2] & 0x3f) << 2);
721 }
722
5a2326a7 723 packet.type = SR_DF_LOGIC;
42eb54fb 724 packet.payload = &logic;
e42ef08d
RC
725 logic.length = 1024;
726 logic.unitsize = 1;
727 logic.data = logic_out;
8a2efef2 728 sr_session_bus(mso->session_id, &packet);
01cf8814 729
42eb54fb
UH
730 // Dont bother fixing this yet, keep it "old style"
731 /*
5a2326a7 732 packet.type = SR_DF_ANALOG;
01cf8814
DR
733 packet.length = 1024;
734 packet.unitsize = sizeof(double);
735 packet.payload = analog_out;
42eb54fb
UH
736 sr_session_bus(mso->session_id, &packet);
737 */
01cf8814 738
5a2326a7 739 packet.type = SR_DF_END;
8a2efef2 740 sr_session_bus(mso->session_id, &packet);
01cf8814
DR
741
742 return TRUE;
743}
744
745static int hw_start_acquisition(int device_index, gpointer session_device_id)
746{
a00ba012 747 struct sr_device_instance *sdi;
01cf8814 748 struct mso *mso;
b9c735a2
UH
749 struct sr_datafeed_packet packet;
750 struct sr_datafeed_header header;
e46b8fb1 751 int ret = SR_ERR;
01cf8814 752
d32d961d 753 if (!(sdi = sr_get_device_instance(device_instances, device_index)))
01cf8814
DR
754 return ret;
755 mso = sdi->priv;
756
757 /* FIXME: No need to do full reconfigure every time */
758// ret = mso_reset_fsm(sdi);
e46b8fb1 759// if (ret != SR_OK)
01cf8814
DR
760// return ret;
761
762 /* FIXME: ACDC Mode */
a8467191
RC
763 mso->ctlbase1 &= 0x7f;
764// mso->ctlbase1 |= mso->acdcmode;
01cf8814
DR
765
766 ret = mso_configure_rate(sdi, mso->cur_rate);
e46b8fb1 767 if (ret != SR_OK)
01cf8814
DR
768 return ret;
769
770 /* set dac offset */
771 ret = mso_dac_out(sdi, mso->dac_offset);
e46b8fb1 772 if (ret != SR_OK)
01cf8814
DR
773 return ret;
774
775 ret = mso_configure_threshold_level(sdi);
e46b8fb1 776 if (ret != SR_OK)
01cf8814
DR
777 return ret;
778
779 ret = mso_configure_trigger(sdi);
e46b8fb1 780 if (ret != SR_OK)
01cf8814
DR
781 return ret;
782
783 /* FIXME: trigger_position */
784
785
786 /* END of config hardware part */
787
788 /* with trigger */
789 ret = mso_arm(sdi);
e46b8fb1 790 if (ret != SR_OK)
01cf8814
DR
791 return ret;
792
793 /* without trigger */
794// ret = mso_force_capture(sdi);
e46b8fb1 795// if (ret != SR_OK)
01cf8814
DR
796// return ret;
797
798 mso_check_trigger(sdi, &mso->trigger_state);
799 ret = mso_check_trigger(sdi, NULL);
e46b8fb1 800 if (ret != SR_OK)
01cf8814
DR
801 return ret;
802
803 mso->session_id = session_device_id;
6f1be0a2 804 sr_source_add(sdi->serial->fd, G_IO_IN, -1, receive_data, sdi);
01cf8814 805
5a2326a7 806 packet.type = SR_DF_HEADER;
01cf8814
DR
807 packet.payload = (unsigned char *) &header;
808 header.feed_version = 1;
809 gettimeofday(&header.starttime, NULL);
810 header.samplerate = mso->cur_rate;
811 header.num_analog_probes = 1;
812 header.num_logic_probes = 8;
8a2efef2 813 sr_session_bus(session_device_id, &packet);
01cf8814
DR
814
815 return ret;
816}
817
818/* FIXME */
819static void hw_stop_acquisition(int device_index, gpointer session_device_id)
820{
b9c735a2 821 struct sr_datafeed_packet packet;
01cf8814
DR
822
823 device_index = device_index;
824
5a2326a7 825 packet.type = SR_DF_END;
8a2efef2 826 sr_session_bus(session_device_id, &packet);
01cf8814
DR
827}
828
5c2d46d1 829struct sr_device_plugin link_mso19_plugin_info = {
01cf8814 830 .name = "link-mso19",
9f8274a5 831 .longname = "Link Instruments MSO-19",
01cf8814
DR
832 .api_version = 1,
833 .init = hw_init,
834 .cleanup = hw_cleanup,
86f5e3d8
UH
835 .opendev = hw_opendev,
836 .closedev = hw_closedev,
01cf8814
DR
837 .get_device_info = hw_get_device_info,
838 .get_status = hw_get_status,
839 .get_capabilities = hw_get_capabilities,
840 .set_configuration = hw_set_configuration,
841 .start_acquisition = hw_start_acquisition,
842 .stop_acquisition = hw_stop_acquisition,
843};