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