]> sigrok.org Git - libsigrok.git/blob - hardware/openbench-logic-sniffer/api.c
ols: add external clock support
[libsigrok.git] / hardware / openbench-logic-sniffer / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 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 "protocol.h"
21
22 #define SERIALCOMM "115200/8n1"
23
24 static const int32_t hwopts[] = {
25         SR_CONF_CONN,
26         SR_CONF_SERIALCOMM,
27 };
28
29 static const int32_t hwcaps[] = {
30         SR_CONF_LOGIC_ANALYZER,
31         SR_CONF_SAMPLERATE,
32         SR_CONF_TRIGGER_TYPE,
33         SR_CONF_CAPTURE_RATIO,
34         SR_CONF_LIMIT_SAMPLES,
35         SR_CONF_EXTERNAL_CLOCK,
36         SR_CONF_PATTERN_MODE,
37         SR_CONF_RLE,
38 };
39
40 #define STR_PATTERN_EXTERNAL "external"
41 #define STR_PATTERN_INTERNAL "internal"
42
43 /* Supported methods of test pattern outputs */
44 enum {
45         /**
46          * Capture pins 31:16 (unbuffered wing) output a test pattern
47          * that can captured on pins 0:15.
48          */
49         PATTERN_EXTERNAL,
50
51         /** Route test pattern internally to capture buffer. */
52         PATTERN_INTERNAL,
53 };
54
55 /* Probes are numbered 0-31 (on the PCB silkscreen). */
56 SR_PRIV const char *ols_probe_names[NUM_PROBES + 1] = {
57         "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12",
58         "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23",
59         "24", "25", "26", "27", "28", "29", "30", "31",
60         NULL,
61 };
62
63 /* Default supported samplerates, can be overridden by device metadata. */
64 static const uint64_t samplerates[] = {
65         SR_HZ(10),
66         SR_MHZ(200),
67         SR_HZ(1),
68 };
69
70 SR_PRIV struct sr_dev_driver ols_driver_info;
71 static struct sr_dev_driver *di = &ols_driver_info;
72
73 static int dev_clear(void)
74 {
75         return std_dev_clear(di, NULL);
76 }
77
78 static int init(struct sr_context *sr_ctx)
79 {
80         return std_init(sr_ctx, di, LOG_PREFIX);
81 }
82
83 static GSList *scan(GSList *options)
84 {
85         struct sr_config *src;
86         struct sr_dev_inst *sdi;
87         struct drv_context *drvc;
88         struct dev_context *devc;
89         struct sr_probe *probe;
90         struct sr_serial_dev_inst *serial;
91         GPollFD probefd;
92         GSList *l, *devices;
93         int ret, i;
94         const char *conn, *serialcomm;
95         char buf[8];
96
97         drvc = di->priv;
98
99         devices = NULL;
100
101         conn = serialcomm = NULL;
102         for (l = options; l; l = l->next) {
103                 src = l->data;
104                 switch (src->key) {
105                 case SR_CONF_CONN:
106                         conn = g_variant_get_string(src->data, NULL);
107                         break;
108                 case SR_CONF_SERIALCOMM:
109                         serialcomm = g_variant_get_string(src->data, NULL);
110                         break;
111                 }
112         }
113         if (!conn)
114                 return NULL;
115
116         if (serialcomm == NULL)
117                 serialcomm = SERIALCOMM;
118
119         if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
120                 return NULL;
121
122         /* The discovery procedure is like this: first send the Reset
123          * command (0x00) 5 times, since the device could be anywhere
124          * in a 5-byte command. Then send the ID command (0x02).
125          * If the device responds with 4 bytes ("OLS1" or "SLA1"), we
126          * have a match.
127          */
128         sr_info("Probing %s.", conn);
129         if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
130                 return NULL;
131
132         ret = SR_OK;
133         for (i = 0; i < 5; i++) {
134                 if ((ret = send_shortcommand(serial, CMD_RESET)) != SR_OK) {
135                         sr_err("Port %s is not writable.", conn);
136                         break;
137                 }
138         }
139         if (ret != SR_OK) {
140                 serial_close(serial);
141                 sr_err("Could not use port %s. Quitting.", conn);
142                 return NULL;
143         }
144         send_shortcommand(serial, CMD_ID);
145
146         /* Wait 10ms for a response. */
147         g_usleep(10000);
148
149         probefd.fd = serial->fd;
150         probefd.events = G_IO_IN;
151         g_poll(&probefd, 1, 1);
152
153         if (probefd.revents != G_IO_IN)
154                 return NULL;
155         if (serial_read(serial, buf, 4) != 4)
156                 return NULL;
157         if (strncmp(buf, "1SLO", 4) && strncmp(buf, "1ALS", 4))
158                 return NULL;
159
160         /* Definitely using the OLS protocol, check if it supports
161          * the metadata command.
162          */
163         send_shortcommand(serial, CMD_METADATA);
164         if (g_poll(&probefd, 1, 10) > 0) {
165                 /* Got metadata. */
166                 sdi = get_metadata(serial);
167                 sdi->index = 0;
168                 devc = sdi->priv;
169         } else {
170                 /* Not an OLS -- some other board that uses the sump protocol. */
171                 sr_info("Device does not support metadata.");
172                 sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
173                                 "Sump", "Logic Analyzer", "v1.0");
174                 sdi->driver = di;
175                 for (i = 0; i < 32; i++) {
176                         if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
177                                         ols_probe_names[i])))
178                                 return 0;
179                         sdi->probes = g_slist_append(sdi->probes, probe);
180                 }
181                 devc = ols_dev_new();
182                 sdi->priv = devc;
183         }
184         /* Configure samplerate and divider. */
185         if (ols_set_samplerate(sdi, DEFAULT_SAMPLERATE) != SR_OK)
186                 sr_dbg("Failed to set default samplerate (%"PRIu64").",
187                                 DEFAULT_SAMPLERATE);
188         /* Clear trigger masks, values and stages. */
189         ols_configure_probes(sdi);
190         sdi->inst_type = SR_INST_SERIAL;
191         sdi->conn = serial;
192
193         drvc->instances = g_slist_append(drvc->instances, sdi);
194         devices = g_slist_append(devices, sdi);
195
196         serial_close(serial);
197
198         return devices;
199 }
200
201 static GSList *dev_list(void)
202 {
203         return ((struct drv_context *)(di->priv))->instances;
204 }
205
206 static int dev_open(struct sr_dev_inst *sdi)
207 {
208         struct sr_serial_dev_inst *serial;
209
210         serial = sdi->conn;
211         if (serial_open(serial, SERIAL_RDWR) != SR_OK)
212                 return SR_ERR;
213
214         sdi->status = SR_ST_ACTIVE;
215
216         return SR_OK;
217 }
218
219 static int dev_close(struct sr_dev_inst *sdi)
220 {
221         struct sr_serial_dev_inst *serial;
222
223         serial = sdi->conn;
224         if (serial && serial->fd != -1) {
225                 serial_close(serial);
226                 sdi->status = SR_ST_INACTIVE;
227         }
228
229         return SR_OK;
230 }
231
232 static int cleanup(void)
233 {
234         return dev_clear();
235 }
236
237 static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
238 {
239         struct dev_context *devc;
240
241         if (!sdi)
242                 return SR_ERR_ARG;
243
244         devc = sdi->priv;
245         switch (id) {
246         case SR_CONF_SAMPLERATE:
247                 *data = g_variant_new_uint64(devc->cur_samplerate);
248                 break;
249         case SR_CONF_CAPTURE_RATIO:
250                 *data = g_variant_new_uint64(devc->capture_ratio);
251                 break;
252         case SR_CONF_LIMIT_SAMPLES:
253                 *data = g_variant_new_uint64(devc->limit_samples);
254                 break;
255         case SR_CONF_PATTERN_MODE:
256                 if (devc->flag_reg & FLAG_EXTERNAL_TEST_MODE)
257                         *data = g_variant_new_string(STR_PATTERN_EXTERNAL);
258                 else if (devc->flag_reg & FLAG_INTERNAL_TEST_MODE)
259                         *data = g_variant_new_string(STR_PATTERN_INTERNAL);
260                 break;
261         case SR_CONF_RLE:
262                 *data = g_variant_new_boolean(devc->flag_reg & FLAG_RLE ? TRUE : FALSE);
263                 break;
264         default:
265                 return SR_ERR_NA;
266         }
267
268         return SR_OK;
269 }
270
271 static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
272 {
273         struct dev_context *devc;
274         int ret;
275         uint64_t tmp_u64;
276         const char *stropt;
277
278         if (sdi->status != SR_ST_ACTIVE)
279                 return SR_ERR_DEV_CLOSED;
280
281         devc = sdi->priv;
282
283         switch (id) {
284         case SR_CONF_SAMPLERATE:
285                 tmp_u64 = g_variant_get_uint64(data);
286                 if (tmp_u64 < samplerates[0] || tmp_u64 > samplerates[1])
287                         return SR_ERR_SAMPLERATE;
288                 ret = ols_set_samplerate(sdi, g_variant_get_uint64(data));
289                 break;
290         case SR_CONF_LIMIT_SAMPLES:
291                 tmp_u64 = g_variant_get_uint64(data);
292                 if (tmp_u64 < MIN_NUM_SAMPLES)
293                         return SR_ERR;
294                 devc->limit_samples = tmp_u64;
295                 ret = SR_OK;
296                 break;
297         case SR_CONF_CAPTURE_RATIO:
298                 devc->capture_ratio = g_variant_get_uint64(data);
299                 if (devc->capture_ratio < 0 || devc->capture_ratio > 100) {
300                         devc->capture_ratio = 0;
301                         ret = SR_ERR;
302                 } else
303                         ret = SR_OK;
304                 break;
305         case SR_CONF_EXTERNAL_CLOCK:
306                 if (g_variant_get_boolean(data)) {
307                         sr_info("Enabling external clock.");
308                         devc->flag_reg |= FLAG_CLOCK_EXTERNAL;
309                 } else {
310                         sr_info("Disabled external clock.");
311                         devc->flag_reg &= ~FLAG_CLOCK_EXTERNAL;
312                 }
313                 ret = SR_OK;
314                 break;
315         case SR_CONF_PATTERN_MODE:
316                 stropt = g_variant_get_string(data, NULL);
317                 ret = SR_OK;
318                 if (!strcmp(stropt, STR_PATTERN_INTERNAL)) {
319                         sr_info("Enabling internal test mode.");
320                         devc->flag_reg |= FLAG_INTERNAL_TEST_MODE;
321                 } else if (!strcmp(stropt, STR_PATTERN_EXTERNAL)) {
322                         sr_info("Enabling external test mode.");
323                         devc->flag_reg |= FLAG_EXTERNAL_TEST_MODE;
324                 } else {
325                         ret = SR_ERR;
326                 }
327                 break;
328         case SR_CONF_RLE:
329                 if (g_variant_get_boolean(data)) {
330                         sr_info("Enabling RLE.");
331                         devc->flag_reg |= FLAG_RLE;
332                 } else {
333                         sr_info("Disabling RLE.");
334                         devc->flag_reg &= ~FLAG_RLE;
335                 }
336                 ret = SR_OK;
337                 break;
338         default:
339                 ret = SR_ERR_NA;
340         }
341
342         return ret;
343 }
344
345 static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
346 {
347         GVariant *gvar;
348         GVariantBuilder gvb;
349
350         (void)sdi;
351
352         switch (key) {
353         case SR_CONF_SCAN_OPTIONS:
354                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
355                                 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
356                 break;
357         case SR_CONF_DEVICE_OPTIONS:
358                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
359                                 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
360                 break;
361         case SR_CONF_SAMPLERATE:
362                 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
363                 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
364                                 ARRAY_SIZE(samplerates), sizeof(uint64_t));
365                 g_variant_builder_add(&gvb, "{sv}", "samplerate-steps", gvar);
366                 *data = g_variant_builder_end(&gvb);
367                 break;
368         case SR_CONF_TRIGGER_TYPE:
369                 *data = g_variant_new_string(TRIGGER_TYPE);
370                 break;
371         default:
372                 return SR_ERR_NA;
373         }
374
375         return SR_OK;
376 }
377
378 static int dev_acquisition_start(const struct sr_dev_inst *sdi,
379                 void *cb_data)
380 {
381         struct dev_context *devc;
382         struct sr_serial_dev_inst *serial;
383         uint32_t trigger_config[4];
384         uint32_t data;
385         uint16_t readcount, delaycount;
386         uint8_t changrp_mask;
387         int num_channels;
388         int i;
389
390         if (sdi->status != SR_ST_ACTIVE)
391                 return SR_ERR_DEV_CLOSED;
392
393         devc = sdi->priv;
394         serial = sdi->conn;
395
396         if (ols_configure_probes(sdi) != SR_OK) {
397                 sr_err("Failed to configure probes.");
398                 return SR_ERR;
399         }
400
401         /*
402          * Enable/disable channel groups in the flag register according to the
403          * probe mask. Calculate this here, because num_channels is needed
404          * to limit readcount.
405          */
406         changrp_mask = 0;
407         num_channels = 0;
408         for (i = 0; i < 4; i++) {
409                 if (devc->probe_mask & (0xff << (i * 8))) {
410                         changrp_mask |= (1 << i);
411                         num_channels++;
412                 }
413         }
414
415         /*
416          * Limit readcount to prevent reading past the end of the hardware
417          * buffer.
418          */
419         readcount = MIN(devc->max_samples / num_channels, devc->limit_samples) / 4;
420
421         memset(trigger_config, 0, 16);
422         trigger_config[devc->num_stages] |= 0x08;
423         if (devc->trigger_mask[0]) {
424                 delaycount = readcount * (1 - devc->capture_ratio / 100.0);
425                 devc->trigger_at = (readcount - delaycount) * 4 - devc->num_stages;
426
427                 if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_0,
428                         reverse32(devc->trigger_mask[0])) != SR_OK)
429                         return SR_ERR;
430                 if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_0,
431                         reverse32(devc->trigger_value[0])) != SR_OK)
432                         return SR_ERR;
433                 if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_0,
434                         trigger_config[0]) != SR_OK)
435                         return SR_ERR;
436
437                 if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_1,
438                         reverse32(devc->trigger_mask[1])) != SR_OK)
439                         return SR_ERR;
440                 if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_1,
441                         reverse32(devc->trigger_value[1])) != SR_OK)
442                         return SR_ERR;
443                 if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_1,
444                         trigger_config[1]) != SR_OK)
445                         return SR_ERR;
446
447                 if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_2,
448                         reverse32(devc->trigger_mask[2])) != SR_OK)
449                         return SR_ERR;
450                 if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_2,
451                         reverse32(devc->trigger_value[2])) != SR_OK)
452                         return SR_ERR;
453                 if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_2,
454                         trigger_config[2]) != SR_OK)
455                         return SR_ERR;
456
457                 if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_3,
458                         reverse32(devc->trigger_mask[3])) != SR_OK)
459                         return SR_ERR;
460                 if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_3,
461                         reverse32(devc->trigger_value[3])) != SR_OK)
462                         return SR_ERR;
463                 if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_3,
464                         trigger_config[3]) != SR_OK)
465                         return SR_ERR;
466         } else {
467                 if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_0,
468                                 devc->trigger_mask[0]) != SR_OK)
469                         return SR_ERR;
470                 if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_0,
471                                 devc->trigger_value[0]) != SR_OK)
472                         return SR_ERR;
473                 if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_0,
474                      0x00000008) != SR_OK)
475                         return SR_ERR;
476                 delaycount = readcount;
477         }
478
479         sr_info("Setting samplerate to %" PRIu64 "Hz (divider %u, "
480                 "demux %s)", devc->cur_samplerate, devc->cur_samplerate_divider,
481                 devc->flag_reg & FLAG_DEMUX ? "on" : "off");
482         if (send_longcommand(serial, CMD_SET_DIVIDER,
483                         reverse32(devc->cur_samplerate_divider)) != SR_OK)
484                 return SR_ERR;
485
486         /* Send sample limit and pre/post-trigger capture ratio. */
487         data = ((readcount - 1) & 0xffff) << 16;
488         data |= (delaycount - 1) & 0xffff;
489         if (send_longcommand(serial, CMD_CAPTURE_SIZE, reverse16(data)) != SR_OK)
490                 return SR_ERR;
491
492         /* The flag register wants them here, and 1 means "disable channel". */
493         devc->flag_reg |= ~(changrp_mask << 2) & 0x3c;
494         devc->flag_reg |= FLAG_FILTER;
495         devc->rle_count = 0;
496         data = (devc->flag_reg << 24) | ((devc->flag_reg << 8) & 0xff0000);
497         if (send_longcommand(serial, CMD_SET_FLAGS, data) != SR_OK)
498                 return SR_ERR;
499
500         /* Start acquisition on the device. */
501         if (send_shortcommand(serial, CMD_RUN) != SR_OK)
502                 return SR_ERR;
503
504         /* Reset all operational states. */
505         devc->num_transfers = devc->num_samples = devc->num_bytes = 0;
506
507         /* Send header packet to the session bus. */
508         std_session_send_df_header(cb_data, LOG_PREFIX);
509
510         sr_source_add(serial->fd, G_IO_IN, -1, ols_receive_data, cb_data);
511
512         return SR_OK;
513 }
514
515 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
516 {
517         (void)cb_data;
518
519         abort_acquisition(sdi);
520
521         return SR_OK;
522 }
523
524 SR_PRIV struct sr_dev_driver ols_driver_info = {
525         .name = "ols",
526         .longname = "Openbench Logic Sniffer",
527         .api_version = 1,
528         .init = init,
529         .cleanup = cleanup,
530         .scan = scan,
531         .dev_list = dev_list,
532         .dev_clear = dev_clear,
533         .config_get = config_get,
534         .config_set = config_set,
535         .config_list = config_list,
536         .dev_open = dev_open,
537         .dev_close = dev_close,
538         .dev_acquisition_start = dev_acquisition_start,
539         .dev_acquisition_stop = dev_acquisition_stop,
540         .priv = NULL,
541 };