ftdi_stream: fix timeout setting: tv_usec field of timeval is in microseconds, not ms
[libftdi] / src / ftdi_stream.c
CommitLineData
40da63b1
UB
1/***************************************************************************
2 ftdi_stream.c - description
3 -------------------
4 copyright : (C) 2009 Micah Dowty 2010 Uwe Bonnes
5 email : opensource@intra2net.com
6 ***************************************************************************/
74387f27 7
40da63b1
UB
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU Lesser General Public License *
12 * version 2.1 as published by the Free Software Foundation; *
13 * *
14 ***************************************************************************/
15
74387f27 16/* Adapted from
40da63b1
UB
17 * fastftdi.c - A minimal FTDI FT232H interface for which supports bit-bang
18 * mode, but focuses on very high-performance support for
19 * synchronous FIFO mode. Requires libusb-1.0
20 *
21 * Copyright (C) 2009 Micah Dowty
22 *
23 * Permission is hereby granted, free of charge, to any person obtaining a copy
24 * of this software and associated documentation files (the "Software"), to deal
25 * in the Software without restriction, including without limitation the rights
26 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27 * copies of the Software, and to permit persons to whom the Software is
28 * furnished to do so, subject to the following conditions:
29 *
30 * The above copyright notice and this permission notice shall be included in
31 * all copies or substantial portions of the Software.
32 *
33 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
37 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
39 * THE SOFTWARE.
40 */
41
42#include <stdlib.h>
43#include <stdio.h>
fec55667 44#include <libusb.h>
40da63b1
UB
45
46#include "ftdi.h"
47
48typedef struct
49{
50 FTDIStreamCallback *callback;
51 void *userdata;
52 int packetsize;
705f012d 53 int activity;
40da63b1
UB
54 int result;
55 FTDIProgressInfo progress;
56} FTDIStreamState;
57
705f012d 58/* Handle callbacks
74387f27 59 *
705f012d
UB
60 * With Exit request, free memory and release the transfer
61 *
74387f27 62 * state->result is only set when some error happens
705f012d 63 */
32e2d8b0 64static void LIBUSB_CALL
40da63b1
UB
65ftdi_readstream_cb(struct libusb_transfer *transfer)
66{
74387f27
TJ
67 FTDIStreamState *state = transfer->user_data;
68 int packet_size = state->packetsize;
69
70 state->activity++;
71 if (transfer->status == LIBUSB_TRANSFER_COMPLETED)
72 {
73 int i;
74 uint8_t *ptr = transfer->buffer;
75 int length = transfer->actual_length;
76 int numPackets = (length + packet_size - 1) / packet_size;
77 int res = 0;
78
79 for (i = 0; i < numPackets; i++)
80 {
81 int payloadLen;
82 int packetLen = length;
83
84 if (packetLen > packet_size)
85 packetLen = packet_size;
86
87 payloadLen = packetLen - 2;
88 state->progress.current.totalBytes += payloadLen;
89
90 res = state->callback(ptr + 2, payloadLen,
91 NULL, state->userdata);
92
93 ptr += packetLen;
94 length -= packetLen;
95 }
96 if (res)
97 {
98 free(transfer->buffer);
99 libusb_free_transfer(transfer);
100 }
101 else
102 {
103 transfer->status = -1;
104 state->result = libusb_submit_transfer(transfer);
105 }
106 }
107 else
108 {
109 fprintf(stderr, "unknown status %d\n",transfer->status);
110 state->result = LIBUSB_ERROR_IO;
111 }
40da63b1
UB
112}
113
114/**
115 Helper function to calculate (unix) time differences
116
117 \param a timeval
118 \param b timeval
119*/
120static double
121TimevalDiff(const struct timeval *a, const struct timeval *b)
122{
74387f27 123 return (a->tv_sec - b->tv_sec) + 1e-6 * (a->tv_usec - b->tv_usec);
40da63b1
UB
124}
125
126/**
127 Streaming reading of data from the device
74387f27 128
40da63b1
UB
129 Use asynchronous transfers in libusb-1.0 for high-performance
130 streaming of data from a device interface back to the PC. This
131 function continuously transfers data until either an error occurs
132 or the callback returns a nonzero value. This function returns
133 a libusb error code or the callback's return value.
134
135 For every contiguous block of received data, the callback will
136 be invoked.
137
138 \param ftdi pointer to ftdi_context
139 \param callback to user supplied function for one block of data
140 \param userdata
141 \param packetsPerTransfer number of packets per transfer
142 \param numTransfers Number of transfers per callback
143
144*/
145
146int
147ftdi_readstream(struct ftdi_context *ftdi,
74387f27
TJ
148 FTDIStreamCallback *callback, void *userdata,
149 int packetsPerTransfer, int numTransfers)
40da63b1
UB
150{
151 struct libusb_transfer **transfers;
705f012d 152 FTDIStreamState state = { callback, userdata, ftdi->max_packet_size, 1 };
40da63b1
UB
153 int bufferSize = packetsPerTransfer * ftdi->max_packet_size;
154 int xferIndex;
155 int err = 0;
71ac8745
UB
156
157 /* Only FT2232H and FT232H know about the synchronous FIFO Mode*/
158 if ((ftdi->type != TYPE_2232H) && (ftdi->type != TYPE_232H))
159 {
160 fprintf(stderr,"Device doesn't support synchronous FIFO mode\n");
161 return 1;
162 }
74387f27 163
a3886df3
UB
164 /* We don't know in what state we are, switch to reset*/
165 if (ftdi_set_bitmode(ftdi, 0xff, BITMODE_RESET) < 0)
166 {
167 fprintf(stderr,"Can't reset mode\n");
168 return 1;
169 }
74387f27 170
a3886df3
UB
171 /* Purge anything remaining in the buffers*/
172 if (ftdi_usb_purge_buffers(ftdi) < 0)
173 {
174 fprintf(stderr,"Can't Purge\n");
175 return 1;
176 }
177
40da63b1
UB
178 /*
179 * Set up all transfers
180 */
74387f27 181
40da63b1 182 transfers = calloc(numTransfers, sizeof *transfers);
74387f27
TJ
183 if (!transfers)
184 {
40da63b1
UB
185 err = LIBUSB_ERROR_NO_MEM;
186 goto cleanup;
187 }
74387f27 188
40da63b1
UB
189 for (xferIndex = 0; xferIndex < numTransfers; xferIndex++)
190 {
191 struct libusb_transfer *transfer;
74387f27 192
40da63b1
UB
193 transfer = libusb_alloc_transfer(0);
194 transfers[xferIndex] = transfer;
74387f27
TJ
195 if (!transfer)
196 {
40da63b1
UB
197 err = LIBUSB_ERROR_NO_MEM;
198 goto cleanup;
199 }
74387f27 200
40da63b1 201 libusb_fill_bulk_transfer(transfer, ftdi->usb_dev, ftdi->out_ep,
74387f27
TJ
202 malloc(bufferSize), bufferSize,
203 ftdi_readstream_cb,
40da63b1 204 &state, 0);
74387f27
TJ
205
206 if (!transfer->buffer)
207 {
40da63b1
UB
208 err = LIBUSB_ERROR_NO_MEM;
209 goto cleanup;
210 }
74387f27 211
40da63b1
UB
212 transfer->status = -1;
213 err = libusb_submit_transfer(transfer);
214 if (err)
215 goto cleanup;
216 }
217
218 /* Start the transfers only when everything has been set up.
74387f27
TJ
219 * Otherwise the transfers start stuttering and the PC not
220 * fetching data for several to several ten milliseconds
40da63b1
UB
221 * and we skip blocks
222 */
223 if (ftdi_set_bitmode(ftdi, 0xff, BITMODE_SYNCFF) < 0)
224 {
97c6b5f6 225 fprintf(stderr,"Can't set synchronous fifo mode: %s\n",
40da63b1
UB
226 ftdi_get_error_string(ftdi));
227 goto cleanup;
228 }
229
230 /*
231 * Run the transfers, and periodically assess progress.
232 */
74387f27 233
40da63b1 234 gettimeofday(&state.progress.first.time, NULL);
74387f27 235
40da63b1
UB
236 do
237 {
238 FTDIProgressInfo *progress = &state.progress;
239 const double progressInterval = 1.0;
f838a4e3 240 struct timeval timeout = { 0, ftdi->usb_read_timeout * 1000};
40da63b1 241 struct timeval now;
74387f27 242
02212d8e 243 int err = libusb_handle_events_timeout(ftdi->usb_ctx, &timeout);
705f012d
UB
244 if (err == LIBUSB_ERROR_INTERRUPTED)
245 /* restart interrupted events */
74387f27 246 err = libusb_handle_events_timeout(ftdi->usb_ctx, &timeout);
40da63b1
UB
247 if (!state.result)
248 {
249 state.result = err;
250 }
705f012d
UB
251 if (state.activity == 0)
252 state.result = 1;
253 else
254 state.activity = 0;
74387f27 255
40da63b1
UB
256 // If enough time has elapsed, update the progress
257 gettimeofday(&now, NULL);
258 if (TimevalDiff(&now, &progress->current.time) >= progressInterval)
259 {
260 progress->current.time = now;
261 progress->totalTime = TimevalDiff(&progress->current.time,
262 &progress->first.time);
74387f27 263
40da63b1
UB
264 if (progress->prev.totalBytes)
265 {
266 // We have enough information to calculate rates
74387f27 267
40da63b1 268 double currentTime;
74387f27 269
40da63b1
UB
270 currentTime = TimevalDiff(&progress->current.time,
271 &progress->prev.time);
74387f27
TJ
272
273 progress->totalRate =
274 progress->current.totalBytes /progress->totalTime;
275 progress->currentRate =
276 (progress->current.totalBytes -
277 progress->prev.totalBytes) / currentTime;
40da63b1 278 }
74387f27 279
705f012d 280 state.callback(NULL, 0, progress, state.userdata);
40da63b1 281 progress->prev = progress->current;
74387f27 282
40da63b1
UB
283 }
284 } while (!state.result);
74387f27 285
40da63b1
UB
286 /*
287 * Cancel any outstanding transfers, and free memory.
288 */
74387f27
TJ
289
290cleanup:
40da63b1 291 fprintf(stderr, "cleanup\n");
705f012d 292 if (transfers)
74387f27 293 free(transfers);
40da63b1
UB
294 if (err)
295 return err;
296 else
297 return state.result;
298}
299