]> sigrok.org Git - libsigrok.git/blame - hardware/fx2lafw/protocol.c
build: Portability fixes.
[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
102f1239 331static void finish_acquisition(struct sr_dev_inst *sdi)
2f937611
UH
332{
333 struct sr_datafeed_packet packet;
102f1239
BV
334 struct dev_context *devc;
335
336 devc = sdi->priv;
2f937611
UH
337
338 /* Terminate session. */
339 packet.type = SR_DF_END;
102f1239 340 sr_session_send(sdi, &packet);
2f937611
UH
341
342 /* Remove fds from polling. */
102f1239 343 usb_source_remove(sdi->session, devc->ctx);
2f937611
UH
344
345 devc->num_transfers = 0;
346 g_free(devc->transfers);
335122f0
BV
347
348 if (devc->stl) {
349 soft_trigger_logic_free(devc->stl);
350 devc->stl = NULL;
351 }
2f937611
UH
352}
353
354static void free_transfer(struct libusb_transfer *transfer)
355{
9615eeb5 356 struct sr_dev_inst *sdi;
2f937611
UH
357 struct dev_context *devc;
358 unsigned int i;
359
9615eeb5
BV
360 sdi = transfer->user_data;
361 devc = sdi->priv;
2f937611
UH
362
363 g_free(transfer->buffer);
364 transfer->buffer = NULL;
365 libusb_free_transfer(transfer);
366
367 for (i = 0; i < devc->num_transfers; i++) {
368 if (devc->transfers[i] == transfer) {
369 devc->transfers[i] = NULL;
370 break;
371 }
372 }
373
374 devc->submitted_transfers--;
375 if (devc->submitted_transfers == 0)
102f1239 376 finish_acquisition(sdi);
2f937611
UH
377}
378
379static void resubmit_transfer(struct libusb_transfer *transfer)
380{
381 int ret;
382
383 if ((ret = libusb_submit_transfer(transfer)) == LIBUSB_SUCCESS)
384 return;
385
9615eeb5 386 sr_err("%s: %s", __func__, libusb_error_name(ret));
2f937611 387 free_transfer(transfer);
2f937611 388
9615eeb5
BV
389}
390
2f937611
UH
391SR_PRIV void fx2lafw_receive_transfer(struct libusb_transfer *transfer)
392{
9615eeb5
BV
393 struct sr_dev_inst *sdi;
394 struct dev_context *devc;
2f937611
UH
395 gboolean packet_has_error = FALSE;
396 struct sr_datafeed_packet packet;
397 struct sr_datafeed_logic logic;
9615eeb5
BV
398 unsigned int num_samples;
399 int trigger_offset, cur_sample_count, unitsize;
2f937611 400
9615eeb5
BV
401 sdi = transfer->user_data;
402 devc = sdi->priv;
2f937611
UH
403
404 /*
405 * If acquisition has already ended, just free any queued up
406 * transfer that come in.
407 */
b0ccd64d 408 if (devc->acq_aborted) {
2f937611
UH
409 free_transfer(transfer);
410 return;
411 }
412
413 sr_info("receive_transfer(): status %d received %d bytes.",
414 transfer->status, transfer->actual_length);
415
416 /* Save incoming transfer before reusing the transfer struct. */
9615eeb5
BV
417 unitsize = devc->sample_wide ? 2 : 1;
418 cur_sample_count = transfer->actual_length / unitsize;
2f937611
UH
419
420 switch (transfer->status) {
421 case LIBUSB_TRANSFER_NO_DEVICE:
422 fx2lafw_abort_acquisition(devc);
423 free_transfer(transfer);
424 return;
425 case LIBUSB_TRANSFER_COMPLETED:
426 case LIBUSB_TRANSFER_TIMED_OUT: /* We may have received some data though. */
427 break;
428 default:
429 packet_has_error = TRUE;
430 break;
431 }
432
433 if (transfer->actual_length == 0 || packet_has_error) {
434 devc->empty_transfer_count++;
435 if (devc->empty_transfer_count > MAX_EMPTY_TRANSFERS) {
436 /*
437 * The FX2 gave up. End the acquisition, the frontend
438 * will work out that the samplecount is short.
439 */
440 fx2lafw_abort_acquisition(devc);
441 free_transfer(transfer);
442 } else {
443 resubmit_transfer(transfer);
444 }
445 return;
446 } else {
447 devc->empty_transfer_count = 0;
448 }
449
9615eeb5
BV
450 if (devc->trigger_fired) {
451 if (devc->sent_samples < devc->limit_samples) {
452 /* Send the incoming transfer to the session bus. */
453 packet.type = SR_DF_LOGIC;
454 packet.payload = &logic;
455 if (devc->sent_samples + cur_sample_count > devc->limit_samples)
456 num_samples = devc->limit_samples - devc->sent_samples;
457 else
458 num_samples = cur_sample_count;
459 logic.length = num_samples * unitsize;
460 logic.unitsize = unitsize;
461 logic.data = transfer->buffer;
462 sr_session_send(devc->cb_data, &packet);
649e9e16 463 devc->sent_samples += num_samples;
9615eeb5
BV
464 }
465 } else {
335122f0
BV
466 trigger_offset = soft_trigger_logic_check(devc->stl,
467 transfer->buffer, transfer->actual_length);
9615eeb5
BV
468 if (trigger_offset > -1) {
469 packet.type = SR_DF_LOGIC;
470 packet.payload = &logic;
471 num_samples = cur_sample_count - trigger_offset;
472 if (devc->limit_samples &&
473 num_samples > devc->limit_samples - devc->sent_samples)
474 num_samples = devc->limit_samples - devc->sent_samples;
475 logic.length = num_samples * unitsize;
476 logic.unitsize = unitsize;
477 logic.data = transfer->buffer + trigger_offset * unitsize;
478 sr_session_send(devc->cb_data, &packet);
479 devc->sent_samples += num_samples;
480
481 devc->trigger_fired = TRUE;
2f937611 482 }
06b5d7f7
BV
483 }
484
485 if (devc->limit_samples && devc->sent_samples >= devc->limit_samples) {
486 fx2lafw_abort_acquisition(devc);
487 free_transfer(transfer);
9615eeb5
BV
488 } else
489 resubmit_transfer(transfer);
2f937611
UH
490}
491
492static unsigned int to_bytes_per_ms(unsigned int samplerate)
493{
494 return samplerate / 1000;
495}
496
497SR_PRIV size_t fx2lafw_get_buffer_size(struct dev_context *devc)
498{
499 size_t s;
500
501 /*
502 * The buffer should be large enough to hold 10ms of data and
503 * a multiple of 512.
504 */
505 s = 10 * to_bytes_per_ms(devc->cur_samplerate);
506 return (s + 511) & ~511;
507}
508
509SR_PRIV unsigned int fx2lafw_get_number_of_transfers(struct dev_context *devc)
510{
511 unsigned int n;
512
513 /* Total buffer size should be able to hold about 500ms of data. */
514 n = (500 * to_bytes_per_ms(devc->cur_samplerate) /
515 fx2lafw_get_buffer_size(devc));
516
517 if (n > NUM_SIMUL_TRANSFERS)
518 return NUM_SIMUL_TRANSFERS;
519
520 return n;
521}
522
523SR_PRIV unsigned int fx2lafw_get_timeout(struct dev_context *devc)
524{
525 size_t total_size;
526 unsigned int timeout;
527
528 total_size = fx2lafw_get_buffer_size(devc) *
529 fx2lafw_get_number_of_transfers(devc);
530 timeout = total_size / to_bytes_per_ms(devc->cur_samplerate);
531 return timeout + timeout / 4; /* Leave a headroom of 25% percent. */
532}