]> sigrok.org Git - libsigrok.git/blame - hardware/fx2lafw/protocol.c
fx2lafw: Fix sample count.
[libsigrok.git] / hardware / fx2lafw / protocol.c
CommitLineData
2f937611
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
5 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "protocol.h"
22
23/* Protocol commands */
24#define CMD_GET_FW_VERSION 0xb0
25#define CMD_START 0xb1
26#define CMD_GET_REVID_VERSION 0xb2
27
28#define CMD_START_FLAGS_WIDE_POS 5
29#define CMD_START_FLAGS_CLK_SRC_POS 6
30
31#define CMD_START_FLAGS_SAMPLE_8BIT (0 << CMD_START_FLAGS_WIDE_POS)
32#define CMD_START_FLAGS_SAMPLE_16BIT (1 << CMD_START_FLAGS_WIDE_POS)
33
34#define CMD_START_FLAGS_CLK_30MHZ (0 << CMD_START_FLAGS_CLK_SRC_POS)
35#define CMD_START_FLAGS_CLK_48MHZ (1 << CMD_START_FLAGS_CLK_SRC_POS)
36
37#pragma pack(push, 1)
38
39struct version_info {
40 uint8_t major;
41 uint8_t minor;
42};
43
44struct cmd_start_acquisition {
45 uint8_t flags;
46 uint8_t sample_delay_h;
47 uint8_t sample_delay_l;
48};
49
50#pragma pack(pop)
51
52static int command_get_fw_version(libusb_device_handle *devhdl,
53 struct version_info *vi)
54{
55 int ret;
56
57 ret = libusb_control_transfer(devhdl, LIBUSB_REQUEST_TYPE_VENDOR |
58 LIBUSB_ENDPOINT_IN, CMD_GET_FW_VERSION, 0x0000, 0x0000,
59 (unsigned char *)vi, sizeof(struct version_info), 100);
60
61 if (ret < 0) {
62 sr_err("Unable to get version info: %s.",
63 libusb_error_name(ret));
64 return SR_ERR;
65 }
66
67 return SR_OK;
68}
69
a54edb1d 70static int command_get_revid_version(struct sr_dev_inst *sdi, uint8_t *revid)
2f937611 71{
a54edb1d
ML
72 struct sr_usb_dev_inst *usb = sdi->conn;
73 libusb_device_handle *devhdl = usb->devhdl;
2f937611
UH
74 int ret;
75
76 ret = libusb_control_transfer(devhdl, LIBUSB_REQUEST_TYPE_VENDOR |
77 LIBUSB_ENDPOINT_IN, CMD_GET_REVID_VERSION, 0x0000, 0x0000,
78 revid, 1, 100);
79
80 if (ret < 0) {
81 sr_err("Unable to get REVID: %s.", libusb_error_name(ret));
82 return SR_ERR;
83 }
84
85 return SR_OK;
86}
87
a54edb1d 88SR_PRIV int fx2lafw_command_start_acquisition(const struct sr_dev_inst *sdi)
2f937611 89{
a54edb1d
ML
90 struct dev_context *devc = sdi->priv;
91 struct sr_usb_dev_inst *usb = sdi->conn;
92 libusb_device_handle *devhdl = usb->devhdl;
93 uint64_t samplerate = devc->cur_samplerate;
94 gboolean samplewide = devc->sample_wide;
eb28f1b7 95 struct cmd_start_acquisition cmd = { 0 };
2f937611
UH
96 int delay = 0, ret;
97
98 /* Compute the sample rate. */
99 if (samplewide && samplerate > MAX_16BIT_SAMPLE_RATE) {
100 sr_err("Unable to sample at %" PRIu64 "Hz "
101 "when collecting 16-bit samples.", samplerate);
102 return SR_ERR;
103 }
104
105 if ((SR_MHZ(48) % samplerate) == 0) {
106 cmd.flags = CMD_START_FLAGS_CLK_48MHZ;
107 delay = SR_MHZ(48) / samplerate - 1;
108 if (delay > MAX_SAMPLE_DELAY)
109 delay = 0;
110 }
111
112 if (delay == 0 && (SR_MHZ(30) % samplerate) == 0) {
113 cmd.flags = CMD_START_FLAGS_CLK_30MHZ;
114 delay = SR_MHZ(30) / samplerate - 1;
115 }
116
117 sr_info("GPIF delay = %d, clocksource = %sMHz.", delay,
118 (cmd.flags & CMD_START_FLAGS_CLK_48MHZ) ? "48" : "30");
119
120 if (delay <= 0 || delay > MAX_SAMPLE_DELAY) {
121 sr_err("Unable to sample at %" PRIu64 "Hz.", samplerate);
122 return SR_ERR;
123 }
124
125 cmd.sample_delay_h = (delay >> 8) & 0xff;
126 cmd.sample_delay_l = delay & 0xff;
127
128 /* Select the sampling width. */
129 cmd.flags |= samplewide ? CMD_START_FLAGS_SAMPLE_16BIT :
130 CMD_START_FLAGS_SAMPLE_8BIT;
131
132 /* Send the control message. */
133 ret = libusb_control_transfer(devhdl, LIBUSB_REQUEST_TYPE_VENDOR |
134 LIBUSB_ENDPOINT_OUT, CMD_START, 0x0000, 0x0000,
135 (unsigned char *)&cmd, sizeof(cmd), 100);
136 if (ret < 0) {
137 sr_err("Unable to send start command: %s.",
138 libusb_error_name(ret));
139 return SR_ERR;
140 }
141
142 return SR_OK;
143}
144
145/**
146 * Check the USB configuration to determine if this is an fx2lafw device.
147 *
148 * @return TRUE if the device's configuration profile match fx2lafw
149 * configuration, FALSE otherwise.
150 */
151SR_PRIV gboolean fx2lafw_check_conf_profile(libusb_device *dev)
152{
153 struct libusb_device_descriptor des;
154 struct libusb_device_handle *hdl;
155 gboolean ret;
156 unsigned char strdesc[64];
157
158 hdl = NULL;
159 ret = FALSE;
160 while (!ret) {
161 /* Assume the FW has not been loaded, unless proven wrong. */
162 if (libusb_get_device_descriptor(dev, &des) != 0)
163 break;
164
165 if (libusb_open(dev, &hdl) != 0)
166 break;
167
168 if (libusb_get_string_descriptor_ascii(hdl,
169 des.iManufacturer, strdesc, sizeof(strdesc)) < 0)
170 break;
171 if (strncmp((const char *)strdesc, "sigrok", 6))
172 break;
173
174 if (libusb_get_string_descriptor_ascii(hdl,
175 des.iProduct, strdesc, sizeof(strdesc)) < 0)
176 break;
177 if (strncmp((const char *)strdesc, "fx2lafw", 7))
178 break;
179
180 /* If we made it here, it must be an fx2lafw. */
181 ret = TRUE;
182 }
183 if (hdl)
184 libusb_close(hdl);
185
186 return ret;
187}
188
189SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di)
190{
191 libusb_device **devlist;
192 struct sr_usb_dev_inst *usb;
193 struct libusb_device_descriptor des;
194 struct dev_context *devc;
195 struct drv_context *drvc;
196 struct version_info vi;
197 int ret, skip, i, device_count;
198 uint8_t revid;
199
200 drvc = di->priv;
201 devc = sdi->priv;
202 usb = sdi->conn;
203
204 if (sdi->status == SR_ST_ACTIVE)
205 /* Device is already in use. */
206 return SR_ERR;
207
208 skip = 0;
209 device_count = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
210 if (device_count < 0) {
211 sr_err("Failed to get device list: %s.",
212 libusb_error_name(device_count));
213 return SR_ERR;
214 }
215
216 for (i = 0; i < device_count; i++) {
217 if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
218 sr_err("Failed to get device descriptor: %s.",
219 libusb_error_name(ret));
220 continue;
221 }
222
223 if (des.idVendor != devc->profile->vid
224 || des.idProduct != devc->profile->pid)
225 continue;
226
227 if (sdi->status == SR_ST_INITIALIZING) {
228 if (skip != sdi->index) {
229 /* Skip devices of this type that aren't the one we want. */
230 skip += 1;
231 continue;
232 }
233 } else if (sdi->status == SR_ST_INACTIVE) {
234 /*
235 * This device is fully enumerated, so we need to find
236 * this device by vendor, product, bus and address.
237 */
238 if (libusb_get_bus_number(devlist[i]) != usb->bus
239 || libusb_get_device_address(devlist[i]) != usb->address)
240 /* This is not the one. */
241 continue;
242 }
243
244 if (!(ret = libusb_open(devlist[i], &usb->devhdl))) {
245 if (usb->address == 0xff)
246 /*
247 * First time we touch this device after FW
248 * upload, so we don't know the address yet.
249 */
250 usb->address = libusb_get_device_address(devlist[i]);
251 } else {
252 sr_err("Failed to open device: %s.",
253 libusb_error_name(ret));
254 break;
255 }
256
257 ret = command_get_fw_version(usb->devhdl, &vi);
258 if (ret != SR_OK) {
259 sr_err("Failed to get firmware version.");
260 break;
261 }
262
a54edb1d 263 ret = command_get_revid_version(sdi, &revid);
2f937611
UH
264 if (ret != SR_OK) {
265 sr_err("Failed to get REVID.");
266 break;
267 }
268
269 /*
270 * Changes in major version mean incompatible/API changes, so
271 * bail out if we encounter an incompatible version.
272 * Different minor versions are OK, they should be compatible.
273 */
274 if (vi.major != FX2LAFW_REQUIRED_VERSION_MAJOR) {
275 sr_err("Expected firmware version %d.x, "
276 "got %d.%d.", FX2LAFW_REQUIRED_VERSION_MAJOR,
277 vi.major, vi.minor);
278 break;
279 }
280
281 sdi->status = SR_ST_ACTIVE;
282 sr_info("Opened device %d on %d.%d, "
283 "interface %d, firmware %d.%d.",
284 sdi->index, usb->bus, usb->address,
285 USB_INTERFACE, vi.major, vi.minor);
286
287 sr_info("Detected REVID=%d, it's a Cypress CY7C68013%s.",
288 revid, (revid != 1) ? " (FX2)" : "A (FX2LP)");
289
290 break;
291 }
292 libusb_free_device_list(devlist, 1);
293
294 if (sdi->status != SR_ST_ACTIVE)
295 return SR_ERR;
296
297 return SR_OK;
298}
299
2f937611
UH
300SR_PRIV struct dev_context *fx2lafw_dev_new(void)
301{
302 struct dev_context *devc;
303
304 if (!(devc = g_try_malloc(sizeof(struct dev_context)))) {
305 sr_err("Device context malloc failed.");
306 return NULL;
307 }
308
309 devc->profile = NULL;
310 devc->fw_updated = 0;
311 devc->cur_samplerate = 0;
312 devc->limit_samples = 0;
87b545fb 313 devc->sample_wide = FALSE;
335122f0 314 devc->stl = NULL;
2f937611
UH
315
316 return devc;
317}
318
319SR_PRIV void fx2lafw_abort_acquisition(struct dev_context *devc)
320{
321 int i;
322
b0ccd64d 323 devc->acq_aborted = TRUE;
2f937611
UH
324
325 for (i = devc->num_transfers - 1; i >= 0; i--) {
326 if (devc->transfers[i])
327 libusb_cancel_transfer(devc->transfers[i]);
328 }
329}
330
331static void finish_acquisition(struct dev_context *devc)
332{
333 struct sr_datafeed_packet packet;
2f937611
UH
334
335 /* Terminate session. */
336 packet.type = SR_DF_END;
337 sr_session_send(devc->cb_data, &packet);
338
339 /* Remove fds from polling. */
6c60facc 340 usb_source_remove(devc->ctx);
2f937611
UH
341
342 devc->num_transfers = 0;
343 g_free(devc->transfers);
335122f0
BV
344
345 if (devc->stl) {
346 soft_trigger_logic_free(devc->stl);
347 devc->stl = NULL;
348 }
2f937611
UH
349}
350
351static void free_transfer(struct libusb_transfer *transfer)
352{
9615eeb5 353 struct sr_dev_inst *sdi;
2f937611
UH
354 struct dev_context *devc;
355 unsigned int i;
356
9615eeb5
BV
357 sdi = transfer->user_data;
358 devc = sdi->priv;
2f937611
UH
359
360 g_free(transfer->buffer);
361 transfer->buffer = NULL;
362 libusb_free_transfer(transfer);
363
364 for (i = 0; i < devc->num_transfers; i++) {
365 if (devc->transfers[i] == transfer) {
366 devc->transfers[i] = NULL;
367 break;
368 }
369 }
370
371 devc->submitted_transfers--;
372 if (devc->submitted_transfers == 0)
373 finish_acquisition(devc);
374}
375
376static void resubmit_transfer(struct libusb_transfer *transfer)
377{
378 int ret;
379
380 if ((ret = libusb_submit_transfer(transfer)) == LIBUSB_SUCCESS)
381 return;
382
9615eeb5 383 sr_err("%s: %s", __func__, libusb_error_name(ret));
2f937611 384 free_transfer(transfer);
2f937611 385
9615eeb5
BV
386}
387
2f937611
UH
388SR_PRIV void fx2lafw_receive_transfer(struct libusb_transfer *transfer)
389{
9615eeb5
BV
390 struct sr_dev_inst *sdi;
391 struct dev_context *devc;
2f937611
UH
392 gboolean packet_has_error = FALSE;
393 struct sr_datafeed_packet packet;
394 struct sr_datafeed_logic logic;
9615eeb5
BV
395 unsigned int num_samples;
396 int trigger_offset, cur_sample_count, unitsize;
2f937611 397
9615eeb5
BV
398 sdi = transfer->user_data;
399 devc = sdi->priv;
2f937611
UH
400
401 /*
402 * If acquisition has already ended, just free any queued up
403 * transfer that come in.
404 */
b0ccd64d 405 if (devc->acq_aborted) {
2f937611
UH
406 free_transfer(transfer);
407 return;
408 }
409
410 sr_info("receive_transfer(): status %d received %d bytes.",
411 transfer->status, transfer->actual_length);
412
413 /* Save incoming transfer before reusing the transfer struct. */
9615eeb5
BV
414 unitsize = devc->sample_wide ? 2 : 1;
415 cur_sample_count = transfer->actual_length / unitsize;
2f937611
UH
416
417 switch (transfer->status) {
418 case LIBUSB_TRANSFER_NO_DEVICE:
419 fx2lafw_abort_acquisition(devc);
420 free_transfer(transfer);
421 return;
422 case LIBUSB_TRANSFER_COMPLETED:
423 case LIBUSB_TRANSFER_TIMED_OUT: /* We may have received some data though. */
424 break;
425 default:
426 packet_has_error = TRUE;
427 break;
428 }
429
430 if (transfer->actual_length == 0 || packet_has_error) {
431 devc->empty_transfer_count++;
432 if (devc->empty_transfer_count > MAX_EMPTY_TRANSFERS) {
433 /*
434 * The FX2 gave up. End the acquisition, the frontend
435 * will work out that the samplecount is short.
436 */
437 fx2lafw_abort_acquisition(devc);
438 free_transfer(transfer);
439 } else {
440 resubmit_transfer(transfer);
441 }
442 return;
443 } else {
444 devc->empty_transfer_count = 0;
445 }
446
9615eeb5
BV
447 if (devc->trigger_fired) {
448 if (devc->sent_samples < devc->limit_samples) {
449 /* Send the incoming transfer to the session bus. */
450 packet.type = SR_DF_LOGIC;
451 packet.payload = &logic;
452 if (devc->sent_samples + cur_sample_count > devc->limit_samples)
453 num_samples = devc->limit_samples - devc->sent_samples;
454 else
455 num_samples = cur_sample_count;
456 logic.length = num_samples * unitsize;
457 logic.unitsize = unitsize;
458 logic.data = transfer->buffer;
459 sr_session_send(devc->cb_data, &packet);
649e9e16 460 devc->sent_samples += num_samples;
9615eeb5
BV
461 }
462 } else {
335122f0
BV
463 trigger_offset = soft_trigger_logic_check(devc->stl,
464 transfer->buffer, transfer->actual_length);
9615eeb5
BV
465 if (trigger_offset > -1) {
466 packet.type = SR_DF_LOGIC;
467 packet.payload = &logic;
468 num_samples = cur_sample_count - trigger_offset;
469 if (devc->limit_samples &&
470 num_samples > devc->limit_samples - devc->sent_samples)
471 num_samples = devc->limit_samples - devc->sent_samples;
472 logic.length = num_samples * unitsize;
473 logic.unitsize = unitsize;
474 logic.data = transfer->buffer + trigger_offset * unitsize;
475 sr_session_send(devc->cb_data, &packet);
476 devc->sent_samples += num_samples;
477
478 devc->trigger_fired = TRUE;
2f937611 479 }
06b5d7f7
BV
480 }
481
482 if (devc->limit_samples && devc->sent_samples >= devc->limit_samples) {
483 fx2lafw_abort_acquisition(devc);
484 free_transfer(transfer);
9615eeb5
BV
485 } else
486 resubmit_transfer(transfer);
2f937611
UH
487}
488
489static unsigned int to_bytes_per_ms(unsigned int samplerate)
490{
491 return samplerate / 1000;
492}
493
494SR_PRIV size_t fx2lafw_get_buffer_size(struct dev_context *devc)
495{
496 size_t s;
497
498 /*
499 * The buffer should be large enough to hold 10ms of data and
500 * a multiple of 512.
501 */
502 s = 10 * to_bytes_per_ms(devc->cur_samplerate);
503 return (s + 511) & ~511;
504}
505
506SR_PRIV unsigned int fx2lafw_get_number_of_transfers(struct dev_context *devc)
507{
508 unsigned int n;
509
510 /* Total buffer size should be able to hold about 500ms of data. */
511 n = (500 * to_bytes_per_ms(devc->cur_samplerate) /
512 fx2lafw_get_buffer_size(devc));
513
514 if (n > NUM_SIMUL_TRANSFERS)
515 return NUM_SIMUL_TRANSFERS;
516
517 return n;
518}
519
520SR_PRIV unsigned int fx2lafw_get_timeout(struct dev_context *devc)
521{
522 size_t total_size;
523 unsigned int timeout;
524
525 total_size = fx2lafw_get_buffer_size(devc) *
526 fx2lafw_get_number_of_transfers(devc);
527 timeout = total_size / to_bytes_per_ms(devc->cur_samplerate);
528 return timeout + timeout / 4; /* Leave a headroom of 25% percent. */
529}