]> sigrok.org Git - libsigrok.git/blob - input/chronovu_la8.c
d64899d3c040e15f24b1420116c861e9d8448494
[libsigrok.git] / input / chronovu_la8.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <stdlib.h>
22 #include <fcntl.h>
23 #include <unistd.h>
24 #include <sys/stat.h>
25 #include "libsigrok.h"
26 #include "libsigrok-internal.h"
27
28 /* Message logging helpers with driver-specific prefix string. */
29 #define DRIVER_LOG_DOMAIN "input/chronovu-la8: "
30 #define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
31 #define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
32 #define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
33 #define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
34 #define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
35 #define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
36
37 #define NUM_PACKETS             2048
38 #define PACKET_SIZE             4096
39 #define DEFAULT_NUM_PROBES      8
40
41 /**
42  * Convert the LA8 'divcount' value to the respective samplerate (in Hz).
43  *
44  * LA8 hardware: sample period = (divcount + 1) * 10ns.
45  * Min. value for divcount: 0x00 (10ns sample period, 100MHz samplerate).
46  * Max. value for divcount: 0xfe (2550ns sample period, 392.15kHz samplerate).
47  *
48  * @param divcount The divcount value as needed by the hardware.
49  *
50  * @return The samplerate in Hz, or 0xffffffffffffffff upon errors.
51  */
52 static uint64_t divcount_to_samplerate(uint8_t divcount)
53 {
54         if (divcount == 0xff)
55                 return 0xffffffffffffffffULL;
56
57         return SR_MHZ(100) / (divcount + 1);
58 }
59
60 static int format_match(const char *filename)
61 {
62         struct stat stat_buf;
63         int ret;
64
65         if (!filename) {
66                 sr_err("%s: filename was NULL", __func__);
67                 // return SR_ERR; /* FIXME */
68                 return FALSE;
69         }
70
71         if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
72                 sr_err("%s: input file '%s' does not exist",
73                        __func__, filename);
74                 // return SR_ERR; /* FIXME */
75                 return FALSE;
76         }
77
78         if (!g_file_test(filename, G_FILE_TEST_IS_REGULAR)) {
79                 sr_err("%s: input file '%s' not a regular file",
80                        __func__, filename);
81                 // return SR_ERR; /* FIXME */
82                 return FALSE;
83         }
84
85         /* Only accept files of length 8MB + 5 bytes. */
86         ret = stat(filename, &stat_buf);
87         if (ret != 0) {
88                 sr_err("%s: Error getting file size of '%s'",
89                        __func__, filename);
90                 return FALSE;
91         }
92         if (stat_buf.st_size != (8 * 1024 * 1024 + 5)) {
93                 sr_dbg("%s: File size must be exactly 8388613 bytes ("
94                        "it actually is %d bytes in size), so this is not a "
95                        "ChronoVu LA8 file.", __func__, stat_buf.st_size);
96                 return FALSE;
97         }
98
99         /* TODO: Check for divcount != 0xff. */
100
101         return TRUE;
102 }
103
104 static int init(struct sr_input *in)
105 {
106         struct sr_probe *probe;
107         int num_probes, i;
108         char name[SR_MAX_PROBENAME_LEN + 1];
109         char *param;
110
111         num_probes = DEFAULT_NUM_PROBES;
112
113         if (in->param) {
114                 param = g_hash_table_lookup(in->param, "numprobes");
115                 if (param) {
116                         num_probes = strtoul(param, NULL, 10);
117                         if (num_probes < 1) {
118                                 sr_err("%s: strtoul failed", __func__);
119                                 return SR_ERR;
120                         }
121                 }
122         }
123
124         /* Create a virtual device. */
125         in->sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, NULL, NULL, NULL);
126
127         for (i = 0; i < num_probes; i++) {
128                 snprintf(name, SR_MAX_PROBENAME_LEN, "%d", i);
129                 /* TODO: Check return value. */
130                 if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE, name)))
131                         return SR_ERR;
132                 in->sdi->probes = g_slist_append(in->sdi->probes, probe);
133         }
134
135         return SR_OK;
136 }
137
138 static int loadfile(struct sr_input *in, const char *filename)
139 {
140         struct sr_datafeed_header header;
141         struct sr_datafeed_packet packet;
142         struct sr_datafeed_meta meta;
143         struct sr_datafeed_logic logic;
144         struct sr_config *src;
145         uint8_t buf[PACKET_SIZE], divcount;
146         int i, fd, size, num_probes;
147         uint64_t samplerate;
148
149         /* TODO: Use glib functions! GIOChannel, g_fopen, etc. */
150         if ((fd = open(filename, O_RDONLY)) == -1) {
151                 sr_err("%s: file open failed", __func__);
152                 return SR_ERR;
153         }
154
155         num_probes = g_slist_length(in->sdi->probes);
156
157         /* Seek to the end of the file, and read the divcount byte. */
158         divcount = 0x00; /* TODO: Don't hardcode! */
159
160         /* Convert the divcount value to a samplerate. */
161         samplerate = divcount_to_samplerate(divcount);
162         if (samplerate == 0xffffffffffffffffULL) {
163                 close(fd); /* FIXME */
164                 return SR_ERR;
165         }
166         sr_dbg("%s: samplerate is %" PRIu64, __func__, samplerate);
167
168         /* Send header packet to the session bus. */
169         sr_dbg("%s: sending SR_DF_HEADER packet", __func__);
170         packet.type = SR_DF_HEADER;
171         packet.payload = &header;
172         header.feed_version = 1;
173         gettimeofday(&header.starttime, NULL);
174         sr_session_send(in->sdi, &packet);
175
176         /* Send metadata about the SR_DF_LOGIC packets to come. */
177         packet.type = SR_DF_META;
178         packet.payload = &meta;
179         src = sr_config_make(SR_CONF_SAMPLERATE, (const void *)&samplerate);
180         meta.config = g_slist_append(NULL, src);
181         sr_session_send(in->sdi, &packet);
182
183         /* TODO: Handle trigger point. */
184
185         /* Send data packets to the session bus. */
186         sr_dbg("%s: sending SR_DF_LOGIC data packets", __func__);
187         packet.type = SR_DF_LOGIC;
188         packet.payload = &logic;
189         logic.unitsize = (num_probes + 7) / 8;
190         logic.data = buf;
191
192         /* Send 8MB of total data to the session bus in small chunks. */
193         for (i = 0; i < NUM_PACKETS; i++) {
194                 /* TODO: Handle errors, handle incomplete reads. */
195                 size = read(fd, buf, PACKET_SIZE);
196                 logic.length = size;
197                 sr_session_send(in->sdi, &packet);
198         }
199         close(fd); /* FIXME */
200
201         /* Send end packet to the session bus. */
202         sr_dbg("%s: sending SR_DF_END", __func__);
203         packet.type = SR_DF_END;
204         packet.payload = NULL;
205         sr_session_send(in->sdi, &packet);
206
207         return SR_OK;
208 }
209
210 SR_PRIV struct sr_input_format input_chronovu_la8 = {
211         .id = "chronovu-la8",
212         .description = "ChronoVu LA8",
213         .format_match = format_match,
214         .init = init,
215         .loadfile = loadfile,
216 };