]> sigrok.org Git - libsigrok.git/blob - src/hardware/ft2232h/protocol.c
ft2232h: Add support for FTDI FT2232H/FT232R chip as LA.
[libsigrok.git] / src / hardware / ft2232h / protocol.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2015 Sergey Alirzaev <zl29ah@gmail.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 <ftdi.h>
21 #include "protocol.h"
22
23 static void send_samples(struct dev_context *devc, uint64_t samples_to_send)
24 {
25         struct sr_datafeed_packet packet;
26         struct sr_datafeed_logic logic;
27
28         sr_spew("Sending %" PRIu64 " samples.", samples_to_send);
29
30         packet.type = SR_DF_LOGIC;
31         packet.payload = &logic;
32         logic.length = samples_to_send;
33         logic.unitsize = 1;
34         logic.data = devc->data_buf;
35         sr_session_send(devc->cb_data, &packet);
36
37         devc->samples_sent += samples_to_send;
38         devc->bytes_received -= samples_to_send;
39 }
40
41 SR_PRIV int ft2232h_receive_data(int fd, int revents, void *cb_data)
42 {
43         struct sr_dev_inst *sdi;
44         struct dev_context *devc;
45         int bytes_read;
46         uint64_t n;
47
48         (void)fd;
49         (void)revents;
50
51         if (!(sdi = cb_data))
52                 return TRUE;
53         if (!(devc = sdi->priv))
54                 return TRUE;
55         if (!(revents == G_IO_IN || revents == 0))
56                 return TRUE;
57         if (!devc->ftdic)
58                 return TRUE;
59
60         /* Get a block of data. */
61         bytes_read = ftdi_read_data(devc->ftdic, devc->data_buf, DATA_BUF_SIZE);
62         if (bytes_read < 0) {
63                 sr_err("Failed to read FTDI data (%d): %s.",
64                        bytes_read, ftdi_get_error_string(devc->ftdic));
65                 sdi->driver->dev_acquisition_stop(sdi, sdi);
66                 return FALSE;
67         }
68         if (bytes_read == 0) {
69                 sr_spew("Received 0 bytes, nothing to do.");
70                 return TRUE;
71         }
72         sr_spew("Got some data.");
73         devc->bytes_received += bytes_read;
74
75         n = devc->samples_sent + devc->bytes_received;
76
77         if (devc->limit_samples && (n >= devc->limit_samples)) {
78                 send_samples(devc, devc->limit_samples - devc->samples_sent);
79                 sr_info("Requested number of samples reached.");
80                 sdi->driver->dev_acquisition_stop(sdi, cb_data);
81                 return TRUE;
82         } else {
83                 send_samples(devc, devc->bytes_received);
84         }
85
86         return TRUE;
87 }