]> sigrok.org Git - libsigrok.git/blob - hardware/link-mso19/link-mso19.c
sr/cli/gtk: Remove analog left-overs from API.
[libsigrok.git] / hardware / link-mso19 / link-mso19.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2011 Daniel Ribeiro <drwyrm@gmail.com>
5  * Copyright (C) 2012 Renato Caldas <rmsc@fe.up.pt>
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.
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/>.
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>
30 #include <arpa/inet.h>
31 #include "sigrok.h"
32 #include "sigrok-internal.h"
33 #include "link-mso19.h"
34
35 #define USB_VENDOR "3195"
36 #define USB_PRODUCT "f190"
37
38 #define NUM_PROBES 8
39
40 static int capabilities[] = {
41         SR_HWCAP_LOGIC_ANALYZER,
42 //      SR_HWCAP_OSCILLOSCOPE,
43 //      SR_HWCAP_PAT_GENERATOR,
44
45         SR_HWCAP_SAMPLERATE,
46 //      SR_HWCAP_CAPTURE_RATIO,
47         SR_HWCAP_LIMIT_SAMPLES,
48         0,
49 };
50
51 static 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
63 static uint64_t supported_samplerates[] = {
64         SR_HZ(100),
65         SR_HZ(200),
66         SR_HZ(500),
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,
85 };
86
87 static struct sr_samplerates samplerates = {
88         SR_HZ(100),
89         SR_MHZ(200),
90         SR_HZ(0),
91         supported_samplerates,
92 };
93
94 static GSList *device_instances = NULL;
95
96 static int mso_send_control_message(struct sr_device_instance *sdi,
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
103         ret = SR_ERR;
104
105         if (fd < 0)
106                 goto ret;
107
108         if (!(buf = g_try_malloc(s))) {
109                 sr_err("mso19: %s: buf malloc failed", __func__);
110                 ret = SR_ERR_MALLOC;
111                 goto ret;
112         }
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) {
126                 ret = serial_write(fd, buf + w, s - w);
127                 if (ret < 0) {
128                         ret = SR_ERR;
129                         goto free;
130                 }
131                 w += ret;
132         }
133         ret = SR_OK;
134 free:
135         g_free(buf);
136 ret:
137         return ret;
138 }
139
140 static int mso_reset_adc(struct sr_device_instance *sdi)
141 {
142         struct mso *mso = sdi->priv;
143         uint16_t ops[2];
144
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;
148
149         sr_dbg("Requesting ADC reset");
150         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
151 }
152
153 static int mso_reset_fsm(struct sr_device_instance *sdi)
154 {
155         struct mso *mso = sdi->priv;
156         uint16_t ops[1];
157
158         mso->ctlbase1 |= BIT_CTL1_RESETFSM;
159         ops[0] = mso_trans(REG_CTL1, mso->ctlbase1);
160
161         sr_dbg("Requesting ADC reset");
162         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
163 }
164
165 static int mso_toggle_led(struct sr_device_instance *sdi, int state)
166 {
167         struct mso *mso = sdi->priv;
168         uint16_t ops[1];
169
170         mso->ctlbase1 &= ~BIT_CTL1_LED;
171         if (state)
172                 mso->ctlbase1 |= BIT_CTL1_LED;
173         ops[0] = mso_trans(REG_CTL1, mso->ctlbase1);
174
175         sr_dbg("Requesting LED toggle");
176         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
177 }
178
179 static int mso_check_trigger(struct sr_device_instance *sdi,
180                 uint8_t *info)
181 {
182         uint16_t ops[] = { mso_trans(REG_TRIGGER, 0) };
183         char buf[1];
184         int ret;
185
186         sr_dbg("Requesting trigger state");
187         ret = mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
188         if (info == NULL || ret != SR_OK)
189                 return ret;
190
191         buf[0] = 0;
192         if (serial_read(sdi->serial->fd, buf, 1) != 1) /* FIXME: Need timeout */
193                 ret = SR_ERR;
194         *info = buf[0];
195
196         sr_dbg("Trigger state is: 0x%x", *info);
197         return ret;
198 }
199
200 static int mso_read_buffer(struct sr_device_instance *sdi)
201 {
202         uint16_t ops[] = { mso_trans(REG_BUFFER, 0) };
203
204         sr_dbg("Requesting buffer dump");
205         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
206 }
207
208 static int mso_arm(struct sr_device_instance *sdi)
209 {
210         struct mso *mso = sdi->priv;
211         uint16_t ops[] = {
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),
215         };
216
217         sr_dbg("Requesting trigger arm");
218         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
219 }
220
221 static int mso_force_capture(struct sr_device_instance *sdi)
222 {
223         struct mso *mso = sdi->priv;
224         uint16_t ops[] = {
225                 mso_trans(REG_CTL1, mso->ctlbase1 | 8),
226                 mso_trans(REG_CTL1, mso->ctlbase1),
227         };
228
229         sr_dbg("Requesting forced capture");
230         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
231 }
232
233 static int mso_dac_out(struct sr_device_instance *sdi, uint16_t val)
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),
239                 mso_trans(REG_CTL1, mso->ctlbase1 | BIT_CTL1_RESETADC),
240         };
241
242         sr_dbg("Setting dac word to 0x%x", val);
243         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
244 }
245
246 static int mso_clkrate_out(struct sr_device_instance *sdi, uint16_t val)
247 {
248         uint16_t ops[] = {
249                 mso_trans(REG_CLKRATE1, (val >> 8) & 0xff),
250                 mso_trans(REG_CLKRATE2, val & 0xff),
251         };
252
253         sr_dbg("Setting clkrate word to 0x%x", val);
254         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
255 }
256
257 static int mso_configure_rate(struct sr_device_instance *sdi,
258                 uint32_t rate)
259 {
260         struct mso *mso = sdi->priv;
261         unsigned int i;
262         int ret = SR_ERR;
263
264         for (i = 0; i < ARRAY_SIZE(rate_map); i++) {
265                 if (rate_map[i].rate == rate) {
266                         mso->ctlbase2 = rate_map[i].slowmode;
267                         ret = mso_clkrate_out(sdi, rate_map[i].val);
268                         if (ret == SR_OK)
269                                 mso->cur_rate = rate;
270                         return ret;
271                 }
272         }
273         return ret;
274 }
275
276 static 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
283 static int mso_configure_trigger(struct sr_device_instance *sdi)
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,
335                         mso->dso_trigger_width / SR_HZ_TO_NS(mso->cur_rate));
336
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 */
350         ops[15] = mso_trans(REG_CTL2, mso->ctlbase2);
351
352         return mso_send_control_message(sdi, ARRAY_AND_SIZE(ops));
353 }
354
355 static int mso_configure_threshold_level(struct sr_device_instance *sdi)
356 {
357         struct mso *mso = sdi->priv;
358
359         return mso_dac_out(sdi, la_threshold_map[mso->la_threshold]);
360 }
361
362 static 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)
378                 return SR_ERR;
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
398         return SR_OK;
399 }
400
401 static int hw_init(const char *deviceinfo)
402 {
403         struct sr_device_instance *sdi;
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) {
419                 sr_warn("Failed to initialize udev.");
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) {
439                         sr_warn("Unable to find parent usb device for %s",
440                                 sysname);
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)) {
458                         sr_warn("Could not parse iProduct: %s", iProduct);
459                         continue;
460                 }
461                 strncpy(product, iProduct, s);
462                 product[s] = 0;
463                 strcpy(manufacturer, iProduct + s);
464
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                 }
469
470                 if (mso_parse_serial(iSerial, iProduct, mso) != SR_OK) {
471                         sr_warn("Invalid iSerial: %s", iSerial);
472                         goto err_free_mso;
473                 }
474                 sprintf(hwrev, "r%d", mso->hwrev);
475
476                 /* hardware initial state */
477                 mso->ctlbase1 = 0;
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                 }
488
489                 sdi = sr_device_instance_new(devcnt, SR_ST_INITIALIZING,
490                         manufacturer, product, hwrev);
491                 if (!sdi) {
492                         sr_warn("Unable to create device instance for %s",
493                                 sysname);
494                         goto err_free_mso;
495                 }
496
497                 /* save a pointer to our private instance data */
498                 sdi->priv = mso;
499
500                 sdi->serial = sr_serial_device_instance_new(path, -1);
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
508 err_device_instance_free:
509                 sr_device_instance_free(sdi);
510 err_free_mso:
511                 free(mso);
512         }
513
514         udev_enumerate_unref(enumerate);
515         udev_unref(udev);
516
517 ret:
518         return devcnt;
519 }
520
521 static void hw_cleanup(void)
522 {
523         GSList *l;
524         struct sr_device_instance *sdi;
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)
532                 {
533                         free(sdi->priv);
534                         sdi->priv = NULL;
535                 }
536                 sr_device_instance_free(sdi);
537         }
538         g_slist_free(device_instances);
539         device_instances = NULL;
540 }
541
542 static int hw_opendev(int device_index)
543 {
544         struct sr_device_instance *sdi;
545         struct mso *mso;
546         int ret = SR_ERR;
547
548         if (!(sdi = sr_get_device_instance(device_instances, device_index)))
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);
557         if (ret != SR_OK)
558                 return ret;
559
560         sdi->status = SR_ST_ACTIVE;
561
562         /* FIXME: discard serial buffer */
563
564         mso_check_trigger(sdi, &mso->trigger_state);
565         sr_dbg("trigger state: 0x%x", mso->trigger_state);
566
567         ret = mso_reset_adc(sdi);
568         if (ret != SR_OK)
569                 return ret;
570
571         mso_check_trigger(sdi, &mso->trigger_state);
572         sr_dbg("trigger state: 0x%x", mso->trigger_state);
573
574 //      ret = mso_reset_fsm(sdi);
575 //      if (ret != SR_OK)
576 //              return ret;
577
578         sr_dbg("Finished %s", __func__);
579
580 //      return SR_ERR;
581         return SR_OK;
582 }
583
584 static int hw_closedev(int device_index)
585 {
586         struct sr_device_instance *sdi;
587
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         }
592
593         /* TODO */
594         if (sdi->serial->fd != -1) {
595                 serial_close(sdi->serial->fd);
596                 sdi->serial->fd = -1;
597                 sdi->status = SR_ST_INACTIVE;
598         }
599
600         sr_dbg("finished %s", __func__);
601         return SR_OK;
602 }
603
604 static void *hw_get_device_info(int device_index, int device_info_id)
605 {
606         struct sr_device_instance *sdi;
607         struct mso *mso;
608         void *info = NULL;
609
610         if (!(sdi = sr_get_device_instance(device_instances, device_index)))
611                 return NULL;
612         mso = sdi->priv;
613
614         switch (device_info_id) {
615         case SR_DI_INSTANCE:
616                 info = sdi;
617                 break;
618         case SR_DI_NUM_PROBES: /* FIXME: How to report analog probe? */
619                 info = GINT_TO_POINTER(NUM_PROBES);
620                 break;
621         case SR_DI_PROBE_NAMES: 
622                 info = probe_names;
623                 break;
624         case SR_DI_SAMPLERATES:
625                 info = &samplerates;
626                 break;
627         case SR_DI_TRIGGER_TYPES:
628                 info = "01"; /* FIXME */
629                 break;
630         case SR_DI_CUR_SAMPLERATE:
631                 info = &mso->cur_rate;
632                 break;
633         }
634         return info;
635 }
636
637 static int hw_get_status(int device_index)
638 {
639         struct sr_device_instance *sdi;
640
641         if (!(sdi = sr_get_device_instance(device_instances, device_index)))
642                 return SR_ST_NOT_FOUND;
643
644         return sdi->status;
645 }
646
647 static int *hw_get_capabilities(void)
648 {
649         return capabilities;
650 }
651
652 static int hw_set_configuration(int device_index, int capability, void *value)
653 {
654         struct sr_device_instance *sdi;
655
656         if (!(sdi = sr_get_device_instance(device_instances, device_index)))
657                 return SR_ERR;
658
659         switch (capability) {
660         case SR_HWCAP_SAMPLERATE:
661                 return mso_configure_rate(sdi, *(uint64_t *) value);
662         case SR_HWCAP_PROBECONFIG:
663         case SR_HWCAP_LIMIT_SAMPLES:
664         default:
665                 return SR_OK; /* FIXME */
666         }
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? */
678 static int receive_data(int fd, int revents, void *user_data)
679 {
680         struct sr_device_instance *sdi = user_data;
681         struct mso *mso = sdi->priv;
682         struct sr_datafeed_packet packet;
683         struct sr_datafeed_logic logic;
684         uint8_t in[1024], logic_out[1024];
685         double analog_out[1024];
686         size_t i, s;
687
688         revents = revents;
689
690         s = serial_read(fd, in, sizeof(in));
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
723         packet.type = SR_DF_LOGIC;
724         packet.payload = &logic;
725         logic.length = 1024;
726         logic.unitsize = 1;
727         logic.data = logic_out;
728         sr_session_bus(mso->session_id, &packet);
729
730         // Dont bother fixing this yet, keep it "old style"
731         /*
732         packet.type = SR_DF_ANALOG;
733         packet.length = 1024;
734         packet.unitsize = sizeof(double);
735         packet.payload = analog_out;
736         sr_session_bus(mso->session_id, &packet);
737         */
738
739         packet.type = SR_DF_END;
740         sr_session_bus(mso->session_id, &packet);
741
742         return TRUE;
743 }
744
745 static int hw_start_acquisition(int device_index, gpointer session_device_id)
746 {
747         struct sr_device_instance *sdi;
748         struct mso *mso;
749         struct sr_datafeed_packet packet;
750         struct sr_datafeed_header header;
751         int ret = SR_ERR;
752
753         if (!(sdi = sr_get_device_instance(device_instances, device_index)))
754                 return ret;
755         mso = sdi->priv;
756
757         /* FIXME: No need to do full reconfigure every time */
758 //      ret = mso_reset_fsm(sdi);
759 //      if (ret != SR_OK)
760 //              return ret;
761
762         /* FIXME: ACDC Mode */
763         mso->ctlbase1 &= 0x7f;
764 //      mso->ctlbase1 |= mso->acdcmode;
765
766         ret = mso_configure_rate(sdi, mso->cur_rate);
767         if (ret != SR_OK)
768                 return ret;
769
770         /* set dac offset */
771         ret = mso_dac_out(sdi, mso->dac_offset);
772         if (ret != SR_OK)
773                 return ret;
774
775         ret = mso_configure_threshold_level(sdi);
776         if (ret != SR_OK)
777                 return ret;
778
779         ret = mso_configure_trigger(sdi);
780         if (ret != SR_OK)
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);
790         if (ret != SR_OK)
791                 return ret;
792
793         /* without trigger */
794 //      ret = mso_force_capture(sdi);
795 //      if (ret != SR_OK)
796 //              return ret;
797
798         mso_check_trigger(sdi, &mso->trigger_state);
799         ret = mso_check_trigger(sdi, NULL);
800         if (ret != SR_OK)
801                 return ret;
802
803         mso->session_id = session_device_id;
804         sr_source_add(sdi->serial->fd, G_IO_IN, -1, receive_data, sdi);
805
806         packet.type = SR_DF_HEADER;
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;
813         sr_session_bus(session_device_id, &packet);
814
815         return ret;
816 }
817
818 /* FIXME */
819 static void hw_stop_acquisition(int device_index, gpointer session_device_id)
820 {
821         struct sr_datafeed_packet packet;
822
823         device_index = device_index;
824
825         packet.type = SR_DF_END;
826         sr_session_bus(session_device_id, &packet);
827 }
828
829 SR_PRIV struct sr_device_plugin link_mso19_plugin_info = {
830         .name = "link-mso19",
831         .longname = "Link Instruments MSO-19",
832         .api_version = 1,
833         .init = hw_init,
834         .cleanup = hw_cleanup,
835         .opendev = hw_opendev,
836         .closedev = hw_closedev,
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 };