]> sigrok.org Git - libsigrok.git/blob - hardware/openbench-logic-sniffer/ols.c
sr/drivers: obsolete SR_HWCAP_PROBECONFIG
[libsigrok.git] / hardware / openbench-logic-sniffer / ols.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
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 3 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
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <stdio.h>
21 #include <stdint.h>
22 #include <stdlib.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #ifdef _WIN32
28 #include <windows.h>
29 #else
30 #include <termios.h>
31 #endif
32 #include <string.h>
33 #include <sys/time.h>
34 #include <inttypes.h>
35 #ifdef _WIN32
36 /* TODO */
37 #else
38 #include <arpa/inet.h>
39 #endif
40 #include <glib.h>
41 #include "libsigrok.h"
42 #include "libsigrok-internal.h"
43 #include "ols.h"
44
45 #ifdef _WIN32
46 #define O_NONBLOCK FIONBIO
47 #endif
48
49 static const int hwcaps[] = {
50         SR_HWCAP_LOGIC_ANALYZER,
51         SR_HWCAP_SAMPLERATE,
52         SR_HWCAP_CAPTURE_RATIO,
53         SR_HWCAP_LIMIT_SAMPLES,
54         SR_HWCAP_RLE,
55         0,
56 };
57
58 /* Probes are numbered 0-31 (on the PCB silkscreen). */
59 static const char *probe_names[NUM_PROBES + 1] = {
60         "0",
61         "1",
62         "2",
63         "3",
64         "4",
65         "5",
66         "6",
67         "7",
68         "8",
69         "9",
70         "10",
71         "11",
72         "12",
73         "13",
74         "14",
75         "15",
76         "16",
77         "17",
78         "18",
79         "19",
80         "20",
81         "21",
82         "22",
83         "23",
84         "24",
85         "25",
86         "26",
87         "27",
88         "28",
89         "29",
90         "30",
91         "31",
92         NULL,
93 };
94
95 /* default supported samplerates, can be overridden by device metadata */
96 static const struct sr_samplerates samplerates = {
97         SR_HZ(10),
98         SR_MHZ(200),
99         SR_HZ(1),
100         NULL,
101 };
102
103 SR_PRIV struct sr_dev_driver ols_driver_info;
104 static struct sr_dev_driver *odi = &ols_driver_info;
105
106 static int send_shortcommand(int fd, uint8_t command)
107 {
108         char buf[1];
109
110         sr_dbg("ols: sending cmd 0x%.2x", command);
111         buf[0] = command;
112         if (serial_write(fd, buf, 1) != 1)
113                 return SR_ERR;
114
115         return SR_OK;
116 }
117
118 static int send_longcommand(int fd, uint8_t command, uint32_t data)
119 {
120         char buf[5];
121
122         sr_dbg("ols: sending cmd 0x%.2x data 0x%.8x", command, data);
123         buf[0] = command;
124         buf[1] = (data & 0xff000000) >> 24;
125         buf[2] = (data & 0xff0000) >> 16;
126         buf[3] = (data & 0xff00) >> 8;
127         buf[4] = data & 0xff;
128         if (serial_write(fd, buf, 5) != 5)
129                 return SR_ERR;
130
131         return SR_OK;
132 }
133
134 static int configure_probes(const struct sr_dev_inst *sdi)
135 {
136         struct dev_context *devc;
137         const struct sr_probe *probe;
138         const GSList *l;
139         int probe_bit, stage, i;
140         char *tc;
141
142         devc = sdi->priv;
143
144         devc->probe_mask = 0;
145         for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
146                 devc->trigger_mask[i] = 0;
147                 devc->trigger_value[i] = 0;
148         }
149
150         devc->num_stages = 0;
151         for (l = sdi->probes; l; l = l->next) {
152                 probe = (const struct sr_probe *)l->data;
153                 if (!probe->enabled)
154                         continue;
155
156                 /*
157                  * Set up the probe mask for later configuration into the
158                  * flag register.
159                  */
160                 probe_bit = 1 << (probe->index);
161                 devc->probe_mask |= probe_bit;
162
163                 if (!probe->trigger)
164                         continue;
165
166                 /* Configure trigger mask and value. */
167                 stage = 0;
168                 for (tc = probe->trigger; tc && *tc; tc++) {
169                         devc->trigger_mask[stage] |= probe_bit;
170                         if (*tc == '1')
171                                 devc->trigger_value[stage] |= probe_bit;
172                         stage++;
173                         if (stage > 3)
174                                 /*
175                                  * TODO: Only supporting parallel mode, with
176                                  * up to 4 stages.
177                                  */
178                                 return SR_ERR;
179                 }
180                 if (stage > devc->num_stages)
181                         devc->num_stages = stage;
182         }
183
184         return SR_OK;
185 }
186
187 static uint32_t reverse16(uint32_t in)
188 {
189         uint32_t out;
190
191         out = (in & 0xff) << 8;
192         out |= (in & 0xff00) >> 8;
193         out |= (in & 0xff0000) << 8;
194         out |= (in & 0xff000000) >> 8;
195
196         return out;
197 }
198
199 static uint32_t reverse32(uint32_t in)
200 {
201         uint32_t out;
202
203         out = (in & 0xff) << 24;
204         out |= (in & 0xff00) << 8;
205         out |= (in & 0xff0000) >> 8;
206         out |= (in & 0xff000000) >> 24;
207
208         return out;
209 }
210
211 static struct dev_context *ols_dev_new(void)
212 {
213         struct dev_context *devc;
214
215         /* TODO: Is 'devc' ever g_free()'d? */
216         if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
217                 sr_err("ols: %s: devc malloc failed", __func__);
218                 return NULL;
219         }
220
221         devc->trigger_at = -1;
222         devc->probe_mask = 0xffffffff;
223         devc->cur_samplerate = SR_KHZ(200);
224         devc->serial = NULL;
225
226         return devc;
227 }
228
229 static struct sr_dev_inst *get_metadata(int fd)
230 {
231         struct sr_dev_inst *sdi;
232         struct dev_context *devc;
233         struct sr_probe *probe;
234         uint32_t tmp_int, ui;
235         uint8_t key, type, token;
236         GString *tmp_str, *devname, *version;
237         guchar tmp_c;
238
239         sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, NULL, NULL, NULL);
240         sdi->driver = odi;
241         devc = ols_dev_new();
242         sdi->priv = devc;
243
244         devname = g_string_new("");
245         version = g_string_new("");
246
247         key = 0xff;
248         while (key) {
249                 if (serial_read(fd, &key, 1) != 1 || key == 0x00)
250                         break;
251                 type = key >> 5;
252                 token = key & 0x1f;
253                 switch (type) {
254                 case 0:
255                         /* NULL-terminated string */
256                         tmp_str = g_string_new("");
257                         while (serial_read(fd, &tmp_c, 1) == 1 && tmp_c != '\0')
258                                 g_string_append_c(tmp_str, tmp_c);
259                         sr_dbg("ols: got metadata key 0x%.2x value '%s'",
260                                key, tmp_str->str);
261                         switch (token) {
262                         case 0x01:
263                                 /* Device name */
264                                 devname = g_string_append(devname, tmp_str->str);
265                                 break;
266                         case 0x02:
267                                 /* FPGA firmware version */
268                                 if (version->len)
269                                         g_string_append(version, ", ");
270                                 g_string_append(version, "FPGA version ");
271                                 g_string_append(version, tmp_str->str);
272                                 break;
273                         case 0x03:
274                                 /* Ancillary version */
275                                 if (version->len)
276                                         g_string_append(version, ", ");
277                                 g_string_append(version, "Ancillary version ");
278                                 g_string_append(version, tmp_str->str);
279                                 break;
280                         default:
281                                 sr_info("ols: unknown token 0x%.2x: '%s'",
282                                         token, tmp_str->str);
283                                 break;
284                         }
285                         g_string_free(tmp_str, TRUE);
286                         break;
287                 case 1:
288                         /* 32-bit unsigned integer */
289                         if (serial_read(fd, &tmp_int, 4) != 4)
290                                 break;
291                         tmp_int = reverse32(tmp_int);
292                         sr_dbg("ols: got metadata key 0x%.2x value 0x%.8x",
293                                key, tmp_int);
294                         switch (token) {
295                         case 0x00:
296                                 /* Number of usable probes */
297                                 for (ui = 0; ui < tmp_int; ui++) {
298                                         if (!(probe = sr_probe_new(ui, SR_PROBE_LOGIC, TRUE,
299                                                         probe_names[ui])))
300                                                 return 0;
301                                         sdi->probes = g_slist_append(sdi->probes, probe);
302                                 }
303                                 break;
304                         case 0x01:
305                                 /* Amount of sample memory available (bytes) */
306                                 devc->max_samples = tmp_int;
307                                 break;
308                         case 0x02:
309                                 /* Amount of dynamic memory available (bytes) */
310                                 /* what is this for? */
311                                 break;
312                         case 0x03:
313                                 /* Maximum sample rate (hz) */
314                                 devc->max_samplerate = tmp_int;
315                                 break;
316                         case 0x04:
317                                 /* protocol version */
318                                 devc->protocol_version = tmp_int;
319                                 break;
320                         default:
321                                 sr_info("ols: unknown token 0x%.2x: 0x%.8x",
322                                         token, tmp_int);
323                                 break;
324                         }
325                         break;
326                 case 2:
327                         /* 8-bit unsigned integer */
328                         if (serial_read(fd, &tmp_c, 1) != 1)
329                                 break;
330                         sr_dbg("ols: got metadata key 0x%.2x value 0x%.2x",
331                                key, tmp_c);
332                         switch (token) {
333                         case 0x00:
334                                 /* Number of usable probes */
335                                 for (ui = 0; ui < tmp_c; ui++) {
336                                         if (!(probe = sr_probe_new(ui, SR_PROBE_LOGIC, TRUE,
337                                                         probe_names[ui])))
338                                                 return 0;
339                                         sdi->probes = g_slist_append(sdi->probes, probe);
340                                 }
341                                 break;
342                         case 0x01:
343                                 /* protocol version */
344                                 devc->protocol_version = tmp_c;
345                                 break;
346                         default:
347                                 sr_info("ols: unknown token 0x%.2x: 0x%.2x",
348                                         token, tmp_c);
349                                 break;
350                         }
351                         break;
352                 default:
353                         /* unknown type */
354                         break;
355                 }
356         }
357
358         sdi->model = devname->str;
359         sdi->version = version->str;
360         g_string_free(devname, FALSE);
361         g_string_free(version, FALSE);
362
363         return sdi;
364 }
365
366 static int hw_init(void)
367 {
368         struct drv_context *drvc;
369
370         if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
371                 sr_err("ols: driver context malloc failed.");
372                 return SR_ERR;
373         }
374         odi->priv = drvc;
375
376         return SR_OK;
377 }
378
379 static GSList *hw_scan(GSList *options)
380 {
381         struct sr_dev_inst *sdi;
382         struct drv_context *drvc;
383         struct dev_context *devc;
384         struct sr_probe *probe;
385         GSList *devices, *ports, *l;
386         GPollFD *fds, probefd;
387         int devcnt, final_devcnt, num_ports, fd, ret, i, j;
388         char buf[8], **dev_names, **serial_params;
389
390         (void)options;
391         drvc = odi->priv;
392         final_devcnt = 0;
393         devices = NULL;
394
395         /* Scan all serial ports. */
396         ports = list_serial_ports();
397         num_ports = g_slist_length(ports);
398
399         if (!(fds = g_try_malloc0(num_ports * sizeof(GPollFD)))) {
400                 sr_err("ols: %s: fds malloc failed", __func__);
401                 goto hw_init_free_ports; /* TODO: SR_ERR_MALLOC. */
402         }
403
404         if (!(dev_names = g_try_malloc(num_ports * sizeof(char *)))) {
405                 sr_err("ols: %s: dev_names malloc failed", __func__);
406                 goto hw_init_free_fds; /* TODO: SR_ERR_MALLOC. */
407         }
408
409         if (!(serial_params = g_try_malloc(num_ports * sizeof(char *)))) {
410                 sr_err("ols: %s: serial_params malloc failed", __func__);
411                 goto hw_init_free_dev_names; /* TODO: SR_ERR_MALLOC. */
412         }
413
414         devcnt = 0;
415         for (l = ports; l; l = l->next) {
416                 /* The discovery procedure is like this: first send the Reset
417                  * command (0x00) 5 times, since the device could be anywhere
418                  * in a 5-byte command. Then send the ID command (0x02).
419                  * If the device responds with 4 bytes ("OLS1" or "SLA1"), we
420                  * have a match.
421                  *
422                  * Since it may take the device a while to respond at 115Kb/s,
423                  * we do all the sending first, then wait for all of them to
424                  * respond with g_poll().
425                  */
426                 sr_info("ols: probing %s...", (char *)l->data);
427                 fd = serial_open(l->data, O_RDWR | O_NONBLOCK);
428                 if (fd != -1) {
429                         serial_params[devcnt] = serial_backup_params(fd);
430                         serial_set_params(fd, 115200, 8, SERIAL_PARITY_NONE, 1, 2);
431                         ret = SR_OK;
432                         for (i = 0; i < 5; i++) {
433                                 if ((ret = send_shortcommand(fd,
434                                         CMD_RESET)) != SR_OK) {
435                                         /* Serial port is not writable. */
436                                         break;
437                                 }
438                         }
439                         if (ret != SR_OK) {
440                                 serial_restore_params(fd,
441                                         serial_params[devcnt]);
442                                 serial_close(fd);
443                                 continue;
444                         }
445                         send_shortcommand(fd, CMD_ID);
446                         fds[devcnt].fd = fd;
447                         fds[devcnt].events = G_IO_IN;
448                         dev_names[devcnt] = g_strdup(l->data);
449                         devcnt++;
450                 }
451                 g_free(l->data);
452         }
453
454         /* 2ms isn't enough for reliable transfer with pl2303, let's try 10 */
455         usleep(10000);
456
457         g_poll(fds, devcnt, 1);
458
459         for (i = 0; i < devcnt; i++) {
460                 if (fds[i].revents != G_IO_IN)
461                         continue;
462                 if (serial_read(fds[i].fd, buf, 4) != 4)
463                         continue;
464                 if (strncmp(buf, "1SLO", 4) && strncmp(buf, "1ALS", 4))
465                         continue;
466
467                 /* definitely using the OLS protocol, check if it supports
468                  * the metadata command
469                  */
470                 send_shortcommand(fds[i].fd, CMD_METADATA);
471                 probefd.fd = fds[i].fd;
472                 probefd.events = G_IO_IN;
473                 if (g_poll(&probefd, 1, 10) > 0) {
474                         /* got metadata */
475                         sdi = get_metadata(fds[i].fd);
476                         sdi->index = final_devcnt;
477                         devc = sdi->priv;
478                 } else {
479                         /* not an OLS -- some other board that uses the sump protocol */
480                         sdi = sr_dev_inst_new(final_devcnt, SR_ST_INACTIVE,
481                                         "Sump", "Logic Analyzer", "v1.0");
482                         sdi->driver = odi;
483                         devc = ols_dev_new();
484                         for (j = 0; j < 32; j++) {
485                                 if (!(probe = sr_probe_new(j, SR_PROBE_LOGIC, TRUE,
486                                                 probe_names[j])))
487                                         return 0;
488                                 sdi->probes = g_slist_append(sdi->probes, probe);
489                         }
490                         sdi->priv = devc;
491                 }
492                 devc->serial = sr_serial_dev_inst_new(dev_names[i], -1);
493                 drvc->instances = g_slist_append(drvc->instances, sdi);
494                 devices = g_slist_append(devices, sdi);
495
496                 final_devcnt++;
497                 serial_close(fds[i].fd);
498                 fds[i].fd = 0;
499         }
500
501         /* clean up after all the probing */
502         for (i = 0; i < devcnt; i++) {
503                 if (fds[i].fd != 0) {
504                         serial_restore_params(fds[i].fd, serial_params[i]);
505                         serial_close(fds[i].fd);
506                 }
507                 g_free(serial_params[i]);
508                 g_free(dev_names[i]);
509         }
510
511         g_free(serial_params);
512 hw_init_free_dev_names:
513         g_free(dev_names);
514 hw_init_free_fds:
515         g_free(fds);
516 hw_init_free_ports:
517         g_slist_free(ports);
518
519         return devices;
520 }
521
522 static int hw_dev_open(struct sr_dev_inst *sdi)
523 {
524         struct dev_context *devc;
525
526         devc = sdi->priv;
527
528         devc->serial->fd = serial_open(devc->serial->port, O_RDWR);
529         if (devc->serial->fd == -1)
530                 return SR_ERR;
531
532         sdi->status = SR_ST_ACTIVE;
533
534         return SR_OK;
535 }
536
537 static int hw_dev_close(struct sr_dev_inst *sdi)
538 {
539         struct dev_context *devc;
540
541         devc = sdi->priv;
542
543         if (devc->serial->fd != -1) {
544                 serial_close(devc->serial->fd);
545                 devc->serial->fd = -1;
546                 sdi->status = SR_ST_INACTIVE;
547         }
548
549         return SR_OK;
550 }
551
552 static int hw_cleanup(void)
553 {
554         GSList *l;
555         struct sr_dev_inst *sdi;
556         struct drv_context *drvc;
557         struct dev_context *devc;
558         int ret = SR_OK;
559
560         if (!(drvc = odi->priv))
561                 return SR_OK;
562
563         /* Properly close and free all devices. */
564         for (l = drvc->instances; l; l = l->next) {
565                 if (!(sdi = l->data)) {
566                         /* Log error, but continue cleaning up the rest. */
567                         sr_err("ols: %s: sdi was NULL, continuing", __func__);
568                         ret = SR_ERR_BUG;
569                         continue;
570                 }
571                 if (!(devc = sdi->priv)) {
572                         /* Log error, but continue cleaning up the rest. */
573                         sr_err("ols: %s: sdi->priv was NULL, continuing",
574                                __func__);
575                         ret = SR_ERR_BUG;
576                         continue;
577                 }
578                 /* TODO: Check for serial != NULL. */
579                 if (devc->serial->fd != -1)
580                         serial_close(devc->serial->fd);
581                 sr_serial_dev_inst_free(devc->serial);
582                 sr_dev_inst_free(sdi);
583         }
584         g_slist_free(drvc->instances);
585         drvc->instances = NULL;
586
587         return ret;
588 }
589
590 static int hw_info_get(int info_id, const void **data,
591        const struct sr_dev_inst *sdi)
592 {
593         struct dev_context *devc;
594
595         switch (info_id) {
596         case SR_DI_HWCAPS:
597                 *data = hwcaps;
598                 break;
599         case SR_DI_NUM_PROBES:
600                 *data = GINT_TO_POINTER(1);
601                 break;
602         case SR_DI_PROBE_NAMES:
603                 *data = probe_names;
604                 break;
605         case SR_DI_SAMPLERATES:
606                 *data = &samplerates;
607                 break;
608         case SR_DI_TRIGGER_TYPES:
609                 *data = (char *)TRIGGER_TYPES;
610                 break;
611         case SR_DI_CUR_SAMPLERATE:
612                 if (sdi) {
613                         devc = sdi->priv;
614                         *data = &devc->cur_samplerate;
615                 } else
616                         return SR_ERR;
617                 break;
618         default:
619                 return SR_ERR_ARG;
620         }
621
622         return SR_OK;
623 }
624
625 static int set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate)
626 {
627         struct dev_context *devc;
628
629         devc = sdi->priv;
630         if (devc->max_samplerate) {
631                 if (samplerate > devc->max_samplerate)
632                         return SR_ERR_SAMPLERATE;
633         } else if (samplerate < samplerates.low || samplerate > samplerates.high)
634                 return SR_ERR_SAMPLERATE;
635
636         if (samplerate > CLOCK_RATE) {
637                 devc->flag_reg |= FLAG_DEMUX;
638                 devc->cur_samplerate_divider = (CLOCK_RATE * 2 / samplerate) - 1;
639         } else {
640                 devc->flag_reg &= ~FLAG_DEMUX;
641                 devc->cur_samplerate_divider = (CLOCK_RATE / samplerate) - 1;
642         }
643
644         /* Calculate actual samplerate used and complain if it is different
645          * from the requested.
646          */
647         devc->cur_samplerate = CLOCK_RATE / (devc->cur_samplerate_divider + 1);
648         if (devc->flag_reg & FLAG_DEMUX)
649                 devc->cur_samplerate *= 2;
650         if (devc->cur_samplerate != samplerate)
651                 sr_err("ols: can't match samplerate %" PRIu64 ", using %"
652                        PRIu64, samplerate, devc->cur_samplerate);
653
654         return SR_OK;
655 }
656
657 static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
658                 const void *value)
659 {
660         struct dev_context *devc;
661         int ret;
662         const uint64_t *tmp_u64;
663
664         devc = sdi->priv;
665
666         if (sdi->status != SR_ST_ACTIVE)
667                 return SR_ERR;
668
669         switch (hwcap) {
670         case SR_HWCAP_SAMPLERATE:
671                 ret = set_samplerate(sdi, *(const uint64_t *)value);
672                 break;
673         case SR_HWCAP_LIMIT_SAMPLES:
674                 tmp_u64 = value;
675                 if (*tmp_u64 < MIN_NUM_SAMPLES)
676                         return SR_ERR;
677                 if (*tmp_u64 > devc->max_samples)
678                         sr_err("ols: sample limit exceeds hw max");
679                 devc->limit_samples = *tmp_u64;
680                 sr_info("ols: sample limit %" PRIu64, devc->limit_samples);
681                 ret = SR_OK;
682                 break;
683         case SR_HWCAP_CAPTURE_RATIO:
684                 devc->capture_ratio = *(const uint64_t *)value;
685                 if (devc->capture_ratio < 0 || devc->capture_ratio > 100) {
686                         devc->capture_ratio = 0;
687                         ret = SR_ERR;
688                 } else
689                         ret = SR_OK;
690                 break;
691         case SR_HWCAP_RLE:
692                 if (GPOINTER_TO_INT(value)) {
693                         sr_info("ols: enabling RLE");
694                         devc->flag_reg |= FLAG_RLE;
695                 }
696                 ret = SR_OK;
697                 break;
698         default:
699                 ret = SR_ERR;
700         }
701
702         return ret;
703 }
704
705 static void abort_acquisition(const struct sr_dev_inst *sdi)
706 {
707         struct sr_datafeed_packet packet;
708         struct dev_context *devc;
709
710         devc = sdi->priv;
711         sr_source_remove(devc->serial->fd);
712
713         /* Terminate session */
714         packet.type = SR_DF_END;
715         sr_session_send(sdi, &packet);
716
717 }
718
719
720
721 static int receive_data(int fd, int revents, void *cb_data)
722 {
723         struct sr_datafeed_packet packet;
724         struct sr_datafeed_logic logic;
725         struct sr_dev_inst *sdi;
726         struct drv_context *drvc;
727         struct dev_context *devc;
728         GSList *l;
729         int num_channels, offset, i, j;
730         unsigned char byte;
731
732         drvc = odi->priv;
733
734         /* Find this device's devc struct by its fd. */
735         devc = NULL;
736         for (l = drvc->instances; l; l = l->next) {
737                 sdi = l->data;
738                 devc = sdi->priv;
739                 if (devc->serial->fd == fd) {
740                         break;
741                 }
742                 devc = NULL;
743         }
744         if (!devc)
745                 /* Shouldn't happen. */
746                 return TRUE;
747
748         if (devc->num_transfers++ == 0) {
749                 /*
750                  * First time round, means the device started sending data,
751                  * and will not stop until done. If it stops sending for
752                  * longer than it takes to send a byte, that means it's
753                  * finished. We'll double that to 30ms to be sure...
754                  */
755                 sr_source_remove(fd);
756                 sr_source_add(fd, G_IO_IN, 30, receive_data, cb_data);
757                 devc->raw_sample_buf = g_try_malloc(devc->limit_samples * 4);
758                 if (!devc->raw_sample_buf) {
759                         sr_err("ols: %s: devc->raw_sample_buf malloc failed",
760                                __func__);
761                         return FALSE;
762                 }
763                 /* fill with 1010... for debugging */
764                 memset(devc->raw_sample_buf, 0x82, devc->limit_samples * 4);
765         }
766
767         num_channels = 0;
768         for (i = 0x20; i > 0x02; i /= 2) {
769                 if ((devc->flag_reg & i) == 0)
770                         num_channels++;
771         }
772
773         if (revents == G_IO_IN) {
774                 if (serial_read(fd, &byte, 1) != 1)
775                         return FALSE;
776
777                 /* Ignore it if we've read enough. */
778                 if (devc->num_samples >= devc->limit_samples)
779                         return TRUE;
780
781                 devc->sample[devc->num_bytes++] = byte;
782                 sr_dbg("ols: received byte 0x%.2x", byte);
783                 if (devc->num_bytes == num_channels) {
784                         /* Got a full sample. */
785                         sr_dbg("ols: received sample 0x%.*x",
786                                devc->num_bytes * 2, *(int *)devc->sample);
787                         if (devc->flag_reg & FLAG_RLE) {
788                                 /*
789                                  * In RLE mode -1 should never come in as a
790                                  * sample, because bit 31 is the "count" flag.
791                                  */
792                                 if (devc->sample[devc->num_bytes - 1] & 0x80) {
793                                         devc->sample[devc->num_bytes - 1] &= 0x7f;
794                                         /*
795                                          * FIXME: This will only work on
796                                          * little-endian systems.
797                                          */
798                                         devc->rle_count = *(int *)(devc->sample);
799                                         sr_dbg("ols: RLE count = %d", devc->rle_count);
800                                         devc->num_bytes = 0;
801                                         return TRUE;
802                                 }
803                         }
804                         devc->num_samples += devc->rle_count + 1;
805                         if (devc->num_samples > devc->limit_samples) {
806                                 /* Save us from overrunning the buffer. */
807                                 devc->rle_count -= devc->num_samples - devc->limit_samples;
808                                 devc->num_samples = devc->limit_samples;
809                         }
810
811                         if (num_channels < 4) {
812                                 /*
813                                  * Some channel groups may have been turned
814                                  * off, to speed up transfer between the
815                                  * hardware and the PC. Expand that here before
816                                  * submitting it over the session bus --
817                                  * whatever is listening on the bus will be
818                                  * expecting a full 32-bit sample, based on
819                                  * the number of probes.
820                                  */
821                                 j = 0;
822                                 memset(devc->tmp_sample, 0, 4);
823                                 for (i = 0; i < 4; i++) {
824                                         if (((devc->flag_reg >> 2) & (1 << i)) == 0) {
825                                                 /*
826                                                  * This channel group was
827                                                  * enabled, copy from received
828                                                  * sample.
829                                                  */
830                                                 devc->tmp_sample[i] = devc->sample[j++];
831                                         }
832                                 }
833                                 memcpy(devc->sample, devc->tmp_sample, 4);
834                                 sr_dbg("ols: full sample 0x%.8x", *(int *)devc->sample);
835                         }
836
837                         /* the OLS sends its sample buffer backwards.
838                          * store it in reverse order here, so we can dump
839                          * this on the session bus later.
840                          */
841                         offset = (devc->limit_samples - devc->num_samples) * 4;
842                         for (i = 0; i <= devc->rle_count; i++) {
843                                 memcpy(devc->raw_sample_buf + offset + (i * 4),
844                                        devc->sample, 4);
845                         }
846                         memset(devc->sample, 0, 4);
847                         devc->num_bytes = 0;
848                         devc->rle_count = 0;
849                 }
850         } else {
851                 /*
852                  * This is the main loop telling us a timeout was reached, or
853                  * we've acquired all the samples we asked for -- we're done.
854                  * Send the (properly-ordered) buffer to the frontend.
855                  */
856                 if (devc->trigger_at != -1) {
857                         /* a trigger was set up, so we need to tell the frontend
858                          * about it.
859                          */
860                         if (devc->trigger_at > 0) {
861                                 /* there are pre-trigger samples, send those first */
862                                 packet.type = SR_DF_LOGIC;
863                                 packet.payload = &logic;
864                                 logic.length = devc->trigger_at * 4;
865                                 logic.unitsize = 4;
866                                 logic.data = devc->raw_sample_buf +
867                                         (devc->limit_samples - devc->num_samples) * 4;
868                                 sr_session_send(cb_data, &packet);
869                         }
870
871                         /* send the trigger */
872                         packet.type = SR_DF_TRIGGER;
873                         sr_session_send(cb_data, &packet);
874
875                         /* send post-trigger samples */
876                         packet.type = SR_DF_LOGIC;
877                         packet.payload = &logic;
878                         logic.length = (devc->num_samples * 4) - (devc->trigger_at * 4);
879                         logic.unitsize = 4;
880                         logic.data = devc->raw_sample_buf + devc->trigger_at * 4 +
881                                 (devc->limit_samples - devc->num_samples) * 4;
882                         sr_session_send(cb_data, &packet);
883                 } else {
884                         /* no trigger was used */
885                         packet.type = SR_DF_LOGIC;
886                         packet.payload = &logic;
887                         logic.length = devc->num_samples * 4;
888                         logic.unitsize = 4;
889                         logic.data = devc->raw_sample_buf +
890                                 (devc->limit_samples - devc->num_samples) * 4;
891                         sr_session_send(cb_data, &packet);
892                 }
893                 g_free(devc->raw_sample_buf);
894
895                 serial_flush(fd);
896                 serial_close(fd);
897
898                 abort_acquisition(sdi);
899         }
900
901         return TRUE;
902 }
903
904 static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
905                 void *cb_data)
906 {
907         struct sr_datafeed_packet *packet;
908         struct sr_datafeed_header *header;
909         struct sr_datafeed_meta_logic meta;
910         struct dev_context *devc;
911         uint32_t trigger_config[4];
912         uint32_t data;
913         uint16_t readcount, delaycount;
914         uint8_t changrp_mask;
915         int num_channels;
916         int i;
917
918         devc = sdi->priv;
919
920         if (sdi->status != SR_ST_ACTIVE)
921                 return SR_ERR;
922
923         if (configure_probes(sdi) != SR_OK) {
924                 sr_err("ols: failed to configured probes");
925                 return SR_ERR;
926         }
927
928         /*
929          * Enable/disable channel groups in the flag register according to the
930          * probe mask. Calculate this here, because num_channels is needed
931          * to limit readcount.
932          */
933         changrp_mask = 0;
934         num_channels = 0;
935         for (i = 0; i < 4; i++) {
936                 if (devc->probe_mask & (0xff << (i * 8))) {
937                         changrp_mask |= (1 << i);
938                         num_channels++;
939                 }
940         }
941
942         /*
943          * Limit readcount to prevent reading past the end of the hardware
944          * buffer.
945          */
946         readcount = MIN(devc->max_samples / num_channels, devc->limit_samples) / 4;
947
948         memset(trigger_config, 0, 16);
949         trigger_config[devc->num_stages - 1] |= 0x08;
950         if (devc->trigger_mask[0]) {
951                 delaycount = readcount * (1 - devc->capture_ratio / 100.0);
952                 devc->trigger_at = (readcount - delaycount) * 4 - devc->num_stages;
953
954                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_0,
955                         reverse32(devc->trigger_mask[0])) != SR_OK)
956                         return SR_ERR;
957                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_0,
958                         reverse32(devc->trigger_value[0])) != SR_OK)
959                         return SR_ERR;
960                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_0,
961                         trigger_config[0]) != SR_OK)
962                         return SR_ERR;
963
964                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_1,
965                         reverse32(devc->trigger_mask[1])) != SR_OK)
966                         return SR_ERR;
967                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_1,
968                         reverse32(devc->trigger_value[1])) != SR_OK)
969                         return SR_ERR;
970                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_1,
971                         trigger_config[1]) != SR_OK)
972                         return SR_ERR;
973
974                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_2,
975                         reverse32(devc->trigger_mask[2])) != SR_OK)
976                         return SR_ERR;
977                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_2,
978                         reverse32(devc->trigger_value[2])) != SR_OK)
979                         return SR_ERR;
980                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_2,
981                         trigger_config[2]) != SR_OK)
982                         return SR_ERR;
983
984                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_3,
985                         reverse32(devc->trigger_mask[3])) != SR_OK)
986                         return SR_ERR;
987                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_3,
988                         reverse32(devc->trigger_value[3])) != SR_OK)
989                         return SR_ERR;
990                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_3,
991                         trigger_config[3]) != SR_OK)
992                         return SR_ERR;
993         } else {
994                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_MASK_0,
995                                 devc->trigger_mask[0]) != SR_OK)
996                         return SR_ERR;
997                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_VALUE_0,
998                                 devc->trigger_value[0]) != SR_OK)
999                         return SR_ERR;
1000                 if (send_longcommand(devc->serial->fd, CMD_SET_TRIGGER_CONFIG_0,
1001                      0x00000008) != SR_OK)
1002                         return SR_ERR;
1003                 delaycount = readcount;
1004         }
1005
1006         sr_info("ols: setting samplerate to %" PRIu64 " Hz (divider %u, "
1007                 "demux %s)", devc->cur_samplerate, devc->cur_samplerate_divider,
1008                 devc->flag_reg & FLAG_DEMUX ? "on" : "off");
1009         if (send_longcommand(devc->serial->fd, CMD_SET_DIVIDER,
1010                         reverse32(devc->cur_samplerate_divider)) != SR_OK)
1011                 return SR_ERR;
1012
1013         /* Send sample limit and pre/post-trigger capture ratio. */
1014         data = ((readcount - 1) & 0xffff) << 16;
1015         data |= (delaycount - 1) & 0xffff;
1016         if (send_longcommand(devc->serial->fd, CMD_CAPTURE_SIZE, reverse16(data)) != SR_OK)
1017                 return SR_ERR;
1018
1019         /* The flag register wants them here, and 1 means "disable channel". */
1020         devc->flag_reg |= ~(changrp_mask << 2) & 0x3c;
1021         devc->flag_reg |= FLAG_FILTER;
1022         devc->rle_count = 0;
1023         data = (devc->flag_reg << 24) | ((devc->flag_reg << 8) & 0xff0000);
1024         if (send_longcommand(devc->serial->fd, CMD_SET_FLAGS, data) != SR_OK)
1025                 return SR_ERR;
1026
1027         /* Start acquisition on the device. */
1028         if (send_shortcommand(devc->serial->fd, CMD_RUN) != SR_OK)
1029                 return SR_ERR;
1030
1031         sr_source_add(devc->serial->fd, G_IO_IN, -1, receive_data,
1032                       cb_data);
1033
1034         if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
1035                 sr_err("ols: %s: packet malloc failed", __func__);
1036                 return SR_ERR_MALLOC;
1037         }
1038
1039         if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
1040                 sr_err("ols: %s: header malloc failed", __func__);
1041                 g_free(packet);
1042                 return SR_ERR_MALLOC;
1043         }
1044
1045         /* Send header packet to the session bus. */
1046         packet->type = SR_DF_HEADER;
1047         packet->payload = (unsigned char *)header;
1048         header->feed_version = 1;
1049         gettimeofday(&header->starttime, NULL);
1050         sr_session_send(cb_data, packet);
1051
1052         /* Send metadata about the SR_DF_LOGIC packets to come. */
1053         packet->type = SR_DF_META_LOGIC;
1054         packet->payload = &meta;
1055         meta.samplerate = devc->cur_samplerate;
1056         meta.num_probes = NUM_PROBES;
1057         sr_session_send(cb_data, packet);
1058
1059         g_free(header);
1060         g_free(packet);
1061
1062         return SR_OK;
1063 }
1064
1065 /* TODO: This stops acquisition on ALL devices, ignoring dev_index. */
1066 static int hw_dev_acquisition_stop(const struct sr_dev_inst *sdi,
1067                 void *cb_data)
1068 {
1069
1070         /* Avoid compiler warnings. */
1071         (void)cb_data;
1072
1073         abort_acquisition(sdi);
1074
1075         return SR_OK;
1076 }
1077
1078 SR_PRIV struct sr_dev_driver ols_driver_info = {
1079         .name = "ols",
1080         .longname = "Openbench Logic Sniffer",
1081         .api_version = 1,
1082         .init = hw_init,
1083         .cleanup = hw_cleanup,
1084         .scan = hw_scan,
1085         .dev_open = hw_dev_open,
1086         .dev_close = hw_dev_close,
1087         .info_get = hw_info_get,
1088         .dev_config_set = hw_dev_config_set,
1089         .dev_acquisition_start = hw_dev_acquisition_start,
1090         .dev_acquisition_stop = hw_dev_acquisition_stop,
1091         .priv = NULL,
1092 };