]> sigrok.org Git - libsigrok.git/blame - src/hardware/openbench-logic-sniffer/protocol.c
libsigrok-internal.h: Remove unused prototypes
[libsigrok.git] / src / hardware / openbench-logic-sniffer / protocol.c
CommitLineData
0aba65da 1/*
50985c20 2 * This file is part of the libsigrok project.
0aba65da 3 *
13d8e03c 4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
0aba65da
UH
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
515ab088 20#include "protocol.h"
0aba65da 21
2239728c 22extern SR_PRIV struct sr_dev_driver ols_driver_info;
0aba65da
UH
23
24SR_PRIV int send_shortcommand(struct sr_serial_dev_inst *serial,
25 uint8_t command)
26{
27 char buf[1];
28
29 sr_dbg("Sending cmd 0x%.2x.", command);
30 buf[0] = command;
f4d3a4fb 31 if (serial_write_blocking(serial, buf, 1, serial_timeout(serial, 1)) != 1)
0aba65da
UH
32 return SR_ERR;
33
bce75f94
UJ
34 if (serial_drain(serial) != 0)
35 return SR_ERR;
36
0aba65da
UH
37 return SR_OK;
38}
39
40SR_PRIV int send_longcommand(struct sr_serial_dev_inst *serial,
016e72f3 41 uint8_t command, uint8_t *data)
0aba65da
UH
42{
43 char buf[5];
44
016e72f3
BV
45 sr_dbg("Sending cmd 0x%.2x data 0x%.2x%.2x%.2x%.2x.", command,
46 data[0], data[1], data[2], data[3]);
0aba65da 47 buf[0] = command;
016e72f3
BV
48 buf[1] = data[0];
49 buf[2] = data[1];
50 buf[3] = data[2];
51 buf[4] = data[3];
f4d3a4fb 52 if (serial_write_blocking(serial, buf, 5, serial_timeout(serial, 1)) != 5)
0aba65da
UH
53 return SR_ERR;
54
bce75f94
UJ
55 if (serial_drain(serial) != 0)
56 return SR_ERR;
57
0aba65da
UH
58 return SR_OK;
59}
60
91fd0f72
BV
61/* Configures the channel mask based on which channels are enabled. */
62SR_PRIV void ols_channel_mask(const struct sr_dev_inst *sdi)
0aba65da
UH
63{
64 struct dev_context *devc;
91fd0f72 65 struct sr_channel *channel;
0aba65da 66 const GSList *l;
0aba65da
UH
67
68 devc = sdi->priv;
69
ba7dd8bb 70 devc->channel_mask = 0;
91fd0f72
BV
71 for (l = sdi->channels; l; l = l->next) {
72 channel = l->data;
73 if (channel->enabled)
74 devc->channel_mask |= 1 << channel->index;
75 }
76}
77
78SR_PRIV int ols_convert_trigger(const struct sr_dev_inst *sdi)
79{
80 struct dev_context *devc;
81 struct sr_trigger *trigger;
82 struct sr_trigger_stage *stage;
83 struct sr_trigger_match *match;
84 const GSList *l, *m;
85 int i;
86
87 devc = sdi->priv;
88
89 devc->num_stages = 0;
0aba65da
UH
90 for (i = 0; i < NUM_TRIGGER_STAGES; i++) {
91 devc->trigger_mask[i] = 0;
92 devc->trigger_value[i] = 0;
93 }
94
0812c40e 95 if (!(trigger = sr_session_trigger_get(sdi->session)))
91fd0f72 96 return SR_OK;
0aba65da 97
91fd0f72
BV
98 devc->num_stages = g_slist_length(trigger->stages);
99 if (devc->num_stages > NUM_TRIGGER_STAGES) {
100 sr_err("This device only supports %d trigger stages.",
101 NUM_TRIGGER_STAGES);
102 return SR_ERR;
103 }
b1de0407 104
91fd0f72
BV
105 for (l = trigger->stages; l; l = l->next) {
106 stage = l->data;
107 for (m = stage->matches; m; m = m->next) {
108 match = m->data;
109 if (!match->channel->enabled)
110 /* Ignore disabled channels with a trigger. */
111 continue;
112 devc->trigger_mask[stage->stage] |= 1 << match->channel->index;
113 if (match->match == SR_TRIGGER_ONE)
114 devc->trigger_value[stage->stage] |= 1 << match->channel->index;
0aba65da 115 }
0aba65da
UH
116 }
117
118 return SR_OK;
119}
120
0aba65da
UH
121SR_PRIV struct dev_context *ols_dev_new(void)
122{
123 struct dev_context *devc;
124
f57d8ffe 125 devc = g_malloc0(sizeof(struct dev_context));
0aba65da 126
bf256783
BV
127 /* Device-specific settings */
128 devc->max_samples = devc->max_samplerate = devc->protocol_version = 0;
129
130 /* Acquisition settings */
131 devc->limit_samples = devc->capture_ratio = 0;
0aba65da 132 devc->trigger_at = -1;
ba7dd8bb 133 devc->channel_mask = 0xffffffff;
bf256783
BV
134 devc->flag_reg = 0;
135
0aba65da
UH
136 return devc;
137}
138
139SR_PRIV struct sr_dev_inst *get_metadata(struct sr_serial_dev_inst *serial)
140{
141 struct sr_dev_inst *sdi;
142 struct dev_context *devc;
0aba65da
UH
143 uint32_t tmp_int, ui;
144 uint8_t key, type, token;
f4d3a4fb 145 int delay_ms;
0aba65da
UH
146 GString *tmp_str, *devname, *version;
147 guchar tmp_c;
148
aac29cc1 149 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be 150 sdi->status = SR_ST_INACTIVE;
4f840ce9 151 sdi->driver = &ols_driver_info;
0aba65da
UH
152 devc = ols_dev_new();
153 sdi->priv = devc;
154
155 devname = g_string_new("");
156 version = g_string_new("");
157
158 key = 0xff;
159 while (key) {
f4d3a4fb
BV
160 delay_ms = serial_timeout(serial, 1);
161 if (serial_read_blocking(serial, &key, 1, delay_ms) != 1)
0aba65da 162 break;
625763e2
BV
163 if (key == 0x00) {
164 sr_dbg("Got metadata key 0x00, metadata ends.");
165 break;
166 }
0aba65da
UH
167 type = key >> 5;
168 token = key & 0x1f;
169 switch (type) {
170 case 0:
171 /* NULL-terminated string */
172 tmp_str = g_string_new("");
f4d3a4fb
BV
173 delay_ms = serial_timeout(serial, 1);
174 while (serial_read_blocking(serial, &tmp_c, 1, delay_ms) == 1 && tmp_c != '\0')
0aba65da
UH
175 g_string_append_c(tmp_str, tmp_c);
176 sr_dbg("Got metadata key 0x%.2x value '%s'.",
177 key, tmp_str->str);
178 switch (token) {
179 case 0x01:
180 /* Device name */
181 devname = g_string_append(devname, tmp_str->str);
182 break;
183 case 0x02:
184 /* FPGA firmware version */
185 if (version->len)
186 g_string_append(version, ", ");
187 g_string_append(version, "FPGA version ");
188 g_string_append(version, tmp_str->str);
189 break;
190 case 0x03:
191 /* Ancillary version */
192 if (version->len)
193 g_string_append(version, ", ");
194 g_string_append(version, "Ancillary version ");
195 g_string_append(version, tmp_str->str);
196 break;
197 default:
198 sr_info("ols: unknown token 0x%.2x: '%s'",
199 token, tmp_str->str);
200 break;
201 }
202 g_string_free(tmp_str, TRUE);
203 break;
204 case 1:
205 /* 32-bit unsigned integer */
f4d3a4fb
BV
206 delay_ms = serial_timeout(serial, 4);
207 if (serial_read_blocking(serial, &tmp_int, 4, delay_ms) != 4)
0aba65da 208 break;
016e72f3 209 tmp_int = RB32(&tmp_int);
0aba65da
UH
210 sr_dbg("Got metadata key 0x%.2x value 0x%.8x.",
211 key, tmp_int);
212 switch (token) {
213 case 0x00:
ba7dd8bb 214 /* Number of usable channels */
5e23fcab
ML
215 for (ui = 0; ui < tmp_int; ui++)
216 sr_channel_new(sdi, ui, SR_CHANNEL_LOGIC, TRUE,
c368e6f3 217 ols_channel_names[ui]);
0aba65da
UH
218 break;
219 case 0x01:
220 /* Amount of sample memory available (bytes) */
221 devc->max_samples = tmp_int;
222 break;
223 case 0x02:
224 /* Amount of dynamic memory available (bytes) */
225 /* what is this for? */
226 break;
227 case 0x03:
f3f19d11 228 /* Maximum sample rate (Hz) */
0aba65da
UH
229 devc->max_samplerate = tmp_int;
230 break;
231 case 0x04:
232 /* protocol version */
233 devc->protocol_version = tmp_int;
234 break;
235 default:
236 sr_info("Unknown token 0x%.2x: 0x%.8x.",
237 token, tmp_int);
238 break;
239 }
240 break;
241 case 2:
242 /* 8-bit unsigned integer */
f4d3a4fb
BV
243 delay_ms = serial_timeout(serial, 1);
244 if (serial_read_blocking(serial, &tmp_c, 1, delay_ms) != 1)
0aba65da
UH
245 break;
246 sr_dbg("Got metadata key 0x%.2x value 0x%.2x.",
247 key, tmp_c);
248 switch (token) {
249 case 0x00:
ba7dd8bb 250 /* Number of usable channels */
5e23fcab
ML
251 for (ui = 0; ui < tmp_c; ui++)
252 sr_channel_new(sdi, ui, SR_CHANNEL_LOGIC, TRUE,
c368e6f3 253 ols_channel_names[ui]);
0aba65da
UH
254 break;
255 case 0x01:
256 /* protocol version */
257 devc->protocol_version = tmp_c;
258 break;
259 default:
260 sr_info("Unknown token 0x%.2x: 0x%.2x.",
261 token, tmp_c);
262 break;
263 }
264 break;
265 default:
266 /* unknown type */
267 break;
268 }
269 }
270
271 sdi->model = devname->str;
272 sdi->version = version->str;
273 g_string_free(devname, FALSE);
274 g_string_free(version, FALSE);
275
276 return sdi;
277}
278
279SR_PRIV int ols_set_samplerate(const struct sr_dev_inst *sdi,
e46aa4f6 280 const uint64_t samplerate)
0aba65da
UH
281{
282 struct dev_context *devc;
283
284 devc = sdi->priv;
e46aa4f6 285 if (devc->max_samplerate && samplerate > devc->max_samplerate)
0aba65da
UH
286 return SR_ERR_SAMPLERATE;
287
288 if (samplerate > CLOCK_RATE) {
6ebe0039 289 sr_info("Enabling demux mode.");
0aba65da 290 devc->flag_reg |= FLAG_DEMUX;
6ebe0039 291 devc->flag_reg &= ~FLAG_FILTER;
3f239f08 292 devc->max_channels = NUM_CHANNELS / 2;
0aba65da
UH
293 devc->cur_samplerate_divider = (CLOCK_RATE * 2 / samplerate) - 1;
294 } else {
6ebe0039 295 sr_info("Disabling demux mode.");
0aba65da 296 devc->flag_reg &= ~FLAG_DEMUX;
6a53bde6 297 devc->flag_reg |= FLAG_FILTER;
3f239f08 298 devc->max_channels = NUM_CHANNELS;
0aba65da
UH
299 devc->cur_samplerate_divider = (CLOCK_RATE / samplerate) - 1;
300 }
301
302 /* Calculate actual samplerate used and complain if it is different
303 * from the requested.
304 */
305 devc->cur_samplerate = CLOCK_RATE / (devc->cur_samplerate_divider + 1);
306 if (devc->flag_reg & FLAG_DEMUX)
307 devc->cur_samplerate *= 2;
308 if (devc->cur_samplerate != samplerate)
e46aa4f6 309 sr_info("Can't match samplerate %" PRIu64 ", using %"
0aba65da
UH
310 PRIu64 ".", samplerate, devc->cur_samplerate);
311
312 return SR_OK;
313}
314
315SR_PRIV void abort_acquisition(const struct sr_dev_inst *sdi)
316{
317 struct sr_datafeed_packet packet;
459a0f26 318 struct sr_serial_dev_inst *serial;
0aba65da 319
459a0f26 320 serial = sdi->conn;
102f1239 321 serial_source_remove(sdi->session, serial);
0aba65da
UH
322
323 /* Terminate session */
324 packet.type = SR_DF_END;
325 sr_session_send(sdi, &packet);
326}
327
328SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data)
329{
459a0f26 330 struct dev_context *devc;
625763e2 331 struct sr_dev_inst *sdi;
459a0f26 332 struct sr_serial_dev_inst *serial;
0aba65da
UH
333 struct sr_datafeed_packet packet;
334 struct sr_datafeed_logic logic;
fe9ac252 335 uint32_t sample;
91fd0f72 336 int num_ols_changrp, offset, j;
b1de0407 337 unsigned int i;
0aba65da 338 unsigned char byte;
625763e2
BV
339
340 (void)fd;
341
342 sdi = cb_data;
343 serial = sdi->conn;
344 devc = sdi->priv;
0aba65da
UH
345
346 if (devc->num_transfers++ == 0) {
347 /*
348 * First time round, means the device started sending data,
349 * and will not stop until done. If it stops sending for
350 * longer than it takes to send a byte, that means it's
351 * finished. We'll double that to 30ms to be sure...
352 */
102f1239
BV
353 serial_source_remove(sdi->session, serial);
354 serial_source_add(sdi->session, serial, G_IO_IN, 30,
355 ols_receive_data, cb_data);
0aba65da
UH
356 devc->raw_sample_buf = g_try_malloc(devc->limit_samples * 4);
357 if (!devc->raw_sample_buf) {
358 sr_err("Sample buffer malloc failed.");
359 return FALSE;
360 }
361 /* fill with 1010... for debugging */
362 memset(devc->raw_sample_buf, 0x82, devc->limit_samples * 4);
363 }
364
91fd0f72 365 num_ols_changrp = 0;
3f239f08 366 for (i = NUM_CHANNELS; i > 0x02; i /= 2) {
f51acd69 367 if ((devc->flag_reg & i) == 0) {
91fd0f72 368 num_ols_changrp++;
f51acd69 369 }
0aba65da
UH
370 }
371
faf72024 372 if (revents == G_IO_IN && devc->num_samples < devc->limit_samples) {
9f5d4c3c 373 if (serial_read_nonblocking(serial, &byte, 1) != 1)
0aba65da 374 return FALSE;
625763e2 375 devc->cnt_bytes++;
0aba65da
UH
376
377 /* Ignore it if we've read enough. */
378 if (devc->num_samples >= devc->limit_samples)
379 return TRUE;
380
381 devc->sample[devc->num_bytes++] = byte;
6d16fdfb 382 sr_spew("Received byte 0x%.2x.", byte);
91fd0f72 383 if (devc->num_bytes == num_ols_changrp) {
625763e2
BV
384 devc->cnt_samples++;
385 devc->cnt_samples_rle++;
386 /*
387 * Got a full sample. Convert from the OLS's little-endian
388 * sample to the local format.
389 */
fe9ac252
BV
390 sample = devc->sample[0] | (devc->sample[1] << 8) \
391 | (devc->sample[2] << 16) | (devc->sample[3] << 24);
625763e2 392 sr_dbg("Received sample 0x%.*x.", devc->num_bytes * 2, sample);
0aba65da
UH
393 if (devc->flag_reg & FLAG_RLE) {
394 /*
00d04d3b
BV
395 * In RLE mode the high bit of the sample is the
396 * "count" flag, meaning this sample is the number
397 * of times the previous sample occurred.
0aba65da
UH
398 */
399 if (devc->sample[devc->num_bytes - 1] & 0x80) {
00d04d3b
BV
400 /* Clear the high bit. */
401 sample &= ~(0x80 << (devc->num_bytes - 1) * 8);
fe9ac252 402 devc->rle_count = sample;
625763e2 403 devc->cnt_samples_rle += devc->rle_count;
00d04d3b 404 sr_dbg("RLE count: %u.", devc->rle_count);
0aba65da
UH
405 devc->num_bytes = 0;
406 return TRUE;
407 }
408 }
409 devc->num_samples += devc->rle_count + 1;
410 if (devc->num_samples > devc->limit_samples) {
411 /* Save us from overrunning the buffer. */
412 devc->rle_count -= devc->num_samples - devc->limit_samples;
413 devc->num_samples = devc->limit_samples;
414 }
415
91fd0f72 416 if (num_ols_changrp < 4) {
0aba65da
UH
417 /*
418 * Some channel groups may have been turned
419 * off, to speed up transfer between the
420 * hardware and the PC. Expand that here before
421 * submitting it over the session bus --
422 * whatever is listening on the bus will be
423 * expecting a full 32-bit sample, based on
ba7dd8bb 424 * the number of channels.
0aba65da
UH
425 */
426 j = 0;
427 memset(devc->tmp_sample, 0, 4);
428 for (i = 0; i < 4; i++) {
429 if (((devc->flag_reg >> 2) & (1 << i)) == 0) {
430 /*
431 * This channel group was
432 * enabled, copy from received
433 * sample.
434 */
435 devc->tmp_sample[i] = devc->sample[j++];
f51acd69 436 } else if (devc->flag_reg & FLAG_DEMUX && (i > 2)) {
b1de0407 437 /* group 2 & 3 get added to 0 & 1 */
f51acd69 438 devc->tmp_sample[i - 2] = devc->sample[j++];
0aba65da
UH
439 }
440 }
441 memcpy(devc->sample, devc->tmp_sample, 4);
625763e2 442 sr_spew("Expanded sample: 0x%.8x.", sample);
0aba65da
UH
443 }
444
625763e2
BV
445 /*
446 * the OLS sends its sample buffer backwards.
0aba65da
UH
447 * store it in reverse order here, so we can dump
448 * this on the session bus later.
449 */
450 offset = (devc->limit_samples - devc->num_samples) * 4;
451 for (i = 0; i <= devc->rle_count; i++) {
452 memcpy(devc->raw_sample_buf + offset + (i * 4),
453 devc->sample, 4);
454 }
455 memset(devc->sample, 0, 4);
456 devc->num_bytes = 0;
457 devc->rle_count = 0;
458 }
459 } else {
460 /*
461 * This is the main loop telling us a timeout was reached, or
462 * we've acquired all the samples we asked for -- we're done.
463 * Send the (properly-ordered) buffer to the frontend.
464 */
625763e2
BV
465 sr_dbg("Received %d bytes, %d samples, %d decompressed samples.",
466 devc->cnt_bytes, devc->cnt_samples,
467 devc->cnt_samples_rle);
0aba65da 468 if (devc->trigger_at != -1) {
625763e2
BV
469 /*
470 * A trigger was set up, so we need to tell the frontend
0aba65da
UH
471 * about it.
472 */
473 if (devc->trigger_at > 0) {
625763e2 474 /* There are pre-trigger samples, send those first. */
0aba65da
UH
475 packet.type = SR_DF_LOGIC;
476 packet.payload = &logic;
477 logic.length = devc->trigger_at * 4;
478 logic.unitsize = 4;
479 logic.data = devc->raw_sample_buf +
480 (devc->limit_samples - devc->num_samples) * 4;
481 sr_session_send(cb_data, &packet);
482 }
483
625763e2 484 /* Send the trigger. */
0aba65da
UH
485 packet.type = SR_DF_TRIGGER;
486 sr_session_send(cb_data, &packet);
487
625763e2 488 /* Send post-trigger samples. */
0aba65da
UH
489 packet.type = SR_DF_LOGIC;
490 packet.payload = &logic;
491 logic.length = (devc->num_samples * 4) - (devc->trigger_at * 4);
492 logic.unitsize = 4;
493 logic.data = devc->raw_sample_buf + devc->trigger_at * 4 +
494 (devc->limit_samples - devc->num_samples) * 4;
495 sr_session_send(cb_data, &packet);
496 } else {
497 /* no trigger was used */
498 packet.type = SR_DF_LOGIC;
499 packet.payload = &logic;
500 logic.length = devc->num_samples * 4;
501 logic.unitsize = 4;
502 logic.data = devc->raw_sample_buf +
503 (devc->limit_samples - devc->num_samples) * 4;
504 sr_session_send(cb_data, &packet);
505 }
506 g_free(devc->raw_sample_buf);
507
459a0f26 508 serial_flush(serial);
0aba65da 509 abort_acquisition(sdi);
0aba65da
UH
510 }
511
512 return TRUE;
513}