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