]> sigrok.org Git - libsigrok.git/blob - src/hardware/beaglelogic/api.c
25ac0a6e871ec04be9368498d516bfcbb759989e
[libsigrok.git] / src / hardware / beaglelogic / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Kumar Abhishek <abhishek@theembeddedkitchen.net>
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 <config.h>
21 #include "protocol.h"
22 #include "beaglelogic.h"
23
24 static const uint32_t scanopts[] = {
25         SR_CONF_CONN,
26         SR_CONF_NUM_LOGIC_CHANNELS,
27 };
28
29 static const uint32_t drvopts[] = {
30         SR_CONF_LOGIC_ANALYZER,
31 };
32
33 static const uint32_t devopts[] = {
34         SR_CONF_CONTINUOUS,
35         SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
36         SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
37         SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
38         SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
39         SR_CONF_NUM_LOGIC_CHANNELS | SR_CONF_GET,
40 };
41
42 static const int32_t trigger_matches[] = {
43         SR_TRIGGER_ZERO,
44         SR_TRIGGER_ONE,
45         SR_TRIGGER_RISING,
46         SR_TRIGGER_FALLING,
47         SR_TRIGGER_EDGE,
48 };
49
50 SR_PRIV const char *channel_names[] = {
51         "P8_45", "P8_46", "P8_43", "P8_44", "P8_41", "P8_42", "P8_39",
52         "P8_40", "P8_27", "P8_29", "P8_28", "P8_30", "P8_21", "P8_20",
53 };
54
55 /* Possible sample rates : 10 Hz to 100 MHz = (100 / x) MHz */
56 static const uint64_t samplerates[] = {
57         SR_HZ(10),
58         SR_MHZ(100),
59         SR_HZ(1),
60 };
61
62 static struct dev_context *beaglelogic_devc_alloc(void)
63 {
64         struct dev_context *devc;
65
66         devc = g_malloc0(sizeof(struct dev_context));
67
68         /* Default non-zero values (if any) */
69         devc->fd = -1;
70         devc->limit_samples = (uint64_t)10000000;
71         devc->tcp_buffer = 0;
72
73         return devc;
74 }
75
76 static GSList *scan(struct sr_dev_driver *di, GSList *options)
77 {
78         GSList *l;
79         struct sr_config *src;
80         struct sr_dev_inst *sdi;
81         struct dev_context *devc;
82         const char *conn = NULL;
83         gchar **params;
84         int i, maxch;
85
86         maxch = NUM_CHANNELS;
87         for (l = options; l; l = l->next) {
88                 src = l->data;
89                 if (src->key == SR_CONF_NUM_LOGIC_CHANNELS)
90                         maxch = g_variant_get_int32(src->data);
91                 if (src->key == SR_CONF_CONN)
92                         conn = g_variant_get_string(src->data, NULL);
93         }
94
95         /* Probe for /dev/beaglelogic if not connecting via TCP */
96         if (conn == NULL) {
97                 if (!g_file_test(BEAGLELOGIC_DEV_NODE, G_FILE_TEST_EXISTS))
98                         return NULL;
99         } else {
100                 params = g_strsplit(conn, "/", 0);
101                 if (!params || !params[1] || !params[2]) {
102                         sr_err("Invalid Parameters.");
103                         g_strfreev(params);
104                         return NULL;
105                 }
106                 if (g_ascii_strncasecmp(params[0], "tcp", 3)) {
107                         sr_err("Only TCP (tcp-raw) protocol is currently supported.");
108                         g_strfreev(params);
109                         return NULL;
110                 }
111         }
112
113         if (maxch > 8)
114                 maxch = NUM_CHANNELS;
115         else
116                 maxch = 8;
117
118         sdi = g_new0(struct sr_dev_inst, 1);
119         sdi->status = SR_ST_INACTIVE;
120         sdi->model = g_strdup("BeagleLogic");
121         sdi->version = g_strdup("1.0");
122
123         devc = beaglelogic_devc_alloc();
124
125         if (conn == NULL) {
126                 devc->beaglelogic = &beaglelogic_native_ops;
127                 sr_info("BeagleLogic device found at "BEAGLELOGIC_DEV_NODE);
128         } else {
129                 devc->read_timeout = 1000 * 1000;
130                 devc->beaglelogic = &beaglelogic_tcp_ops;
131                 devc->address = g_strdup(params[1]);
132                 devc->port = g_strdup(params[2]);
133                 g_strfreev(params);
134
135                 if (devc->beaglelogic->open(devc) != SR_OK)
136                         goto err_free;
137                 if (beaglelogic_tcp_detect(devc) != SR_OK)
138                         goto err_free;
139                 sr_info("BeagleLogic device found at %s : %s",
140                         devc->address, devc->port);
141         }
142         /* Fill the channels */
143         for (i = 0; i < maxch; i++)
144                 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE,
145                                 channel_names[i]);
146
147         sdi->priv = devc;
148
149         return std_scan_complete(di, g_slist_append(NULL, sdi));
150 err_free:
151         g_free(sdi->model);
152         g_free(sdi->version);
153         g_free(devc->address);
154         g_free(devc->port);
155         g_free(devc);
156         g_free(sdi);
157
158         return NULL;
159 }
160
161 static int dev_open(struct sr_dev_inst *sdi)
162 {
163         struct dev_context *devc = sdi->priv;
164
165         /* Open BeagleLogic */
166         if (devc->beaglelogic == &beaglelogic_native_ops)
167                 if (devc->beaglelogic->open(devc))
168                         return SR_ERR;
169
170         /* Set fd and local attributes */
171         if (devc->beaglelogic == &beaglelogic_tcp_ops)
172                 devc->pollfd.fd = devc->socket;
173         else
174                 devc->pollfd.fd = devc->fd;
175         devc->pollfd.events = G_IO_IN;
176         devc->pollfd.revents = 0;
177
178         /* Get the default attributes */
179         devc->beaglelogic->get_samplerate(devc);
180         devc->beaglelogic->get_sampleunit(devc);
181         devc->beaglelogic->get_buffersize(devc);
182         devc->beaglelogic->get_bufunitsize(devc);
183
184         /* Set the triggerflags to default for continuous capture unless we
185          * explicitly limit samples using SR_CONF_LIMIT_SAMPLES */
186         devc->triggerflags = BL_TRIGGERFLAGS_CONTINUOUS;
187         devc->beaglelogic->set_triggerflags(devc);
188
189         /* Map the kernel capture FIFO for reads, saves 1 level of memcpy */
190         if (devc->beaglelogic == &beaglelogic_native_ops) {
191                 if (devc->beaglelogic->mmap(devc) != SR_OK) {
192                         sr_err("Unable to map capture buffer");
193                         devc->beaglelogic->close(devc);
194                         return SR_ERR;
195                 }
196         } else {
197                 devc->tcp_buffer = g_malloc(TCP_BUFFER_SIZE);
198         }
199
200         return SR_OK;
201 }
202
203 static int dev_close(struct sr_dev_inst *sdi)
204 {
205         struct dev_context *devc = sdi->priv;
206
207         /* Close the memory mapping and the file */
208         if (devc->beaglelogic == &beaglelogic_native_ops)
209                 devc->beaglelogic->munmap(devc);
210         devc->beaglelogic->close(devc);
211
212         return SR_OK;
213 }
214
215 static void clear_helper(struct dev_context *devc)
216 {
217         if (devc->tcp_buffer)
218                 g_free(devc->tcp_buffer);
219
220         if (devc->address)
221                 g_free(devc->address);
222
223         if (devc->port)
224                 g_free(devc->port);
225 }
226
227 static int dev_clear(const struct sr_dev_driver *di)
228 {
229         return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
230 }
231
232 static int config_get(uint32_t key, GVariant **data,
233         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
234 {
235         struct dev_context *devc = sdi->priv;
236
237         (void)cg;
238
239         switch (key) {
240         case SR_CONF_LIMIT_SAMPLES:
241                 *data = g_variant_new_uint64(devc->limit_samples);
242                 break;
243         case SR_CONF_SAMPLERATE:
244                 *data = g_variant_new_uint64(devc->cur_samplerate);
245                 break;
246         case SR_CONF_CAPTURE_RATIO:
247                 *data = g_variant_new_uint64(devc->capture_ratio);
248                 break;
249         case SR_CONF_NUM_LOGIC_CHANNELS:
250                 *data = g_variant_new_uint32(g_slist_length(sdi->channels));
251                 break;
252         default:
253                 return SR_ERR_NA;
254         }
255
256         return SR_OK;
257 }
258
259 static int config_set(uint32_t key, GVariant *data,
260         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
261 {
262         struct dev_context *devc = sdi->priv;
263         uint64_t tmp_u64;
264
265         (void)cg;
266
267         switch (key) {
268         case SR_CONF_SAMPLERATE:
269                 devc->cur_samplerate = g_variant_get_uint64(data);
270                 return devc->beaglelogic->set_samplerate(devc);
271         case SR_CONF_LIMIT_SAMPLES:
272                 tmp_u64 = g_variant_get_uint64(data);
273                 devc->limit_samples = tmp_u64;
274                 devc->triggerflags = BL_TRIGGERFLAGS_ONESHOT;
275
276                 /* Check if we have sufficient buffer size */
277                 tmp_u64 *= SAMPLEUNIT_TO_BYTES(devc->sampleunit);
278                 if (tmp_u64 > devc->buffersize) {
279                         sr_warn("Insufficient buffer space has been allocated.");
280                         sr_warn("Please use \'echo <size in bytes> > "\
281                                 BEAGLELOGIC_SYSFS_ATTR(memalloc) \
282                                 "\' to increase the buffer size, this"\
283                                 " capture is now truncated to %d Msamples",
284                                 devc->buffersize /
285                                 (SAMPLEUNIT_TO_BYTES(devc->sampleunit) * 1000000));
286                 }
287                 return devc->beaglelogic->set_triggerflags(devc);
288         case SR_CONF_CAPTURE_RATIO:
289                 devc->capture_ratio = g_variant_get_uint64(data);
290                 break;
291         default:
292                 return SR_ERR_NA;
293         }
294
295         return SR_OK;
296 }
297
298 static int config_list(uint32_t key, GVariant **data,
299         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
300 {
301         switch (key) {
302         case SR_CONF_SCAN_OPTIONS:
303         case SR_CONF_DEVICE_OPTIONS:
304                 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
305         case SR_CONF_SAMPLERATE:
306                 *data = std_gvar_samplerates_steps(ARRAY_AND_SIZE(samplerates));
307                 break;
308         case SR_CONF_TRIGGER_MATCH:
309                 *data = std_gvar_array_i32(ARRAY_AND_SIZE(trigger_matches));
310                 break;
311         default:
312                 return SR_ERR_NA;
313         }
314
315         return SR_OK;
316 }
317
318 /* get a sane timeout for poll() */
319 #define BUFUNIT_TIMEOUT_MS(devc)        (100 + ((devc->bufunitsize * 1000) / \
320                                 (uint32_t)(devc->cur_samplerate)))
321
322 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
323 {
324         struct dev_context *devc = sdi->priv;
325         GSList *l;
326         struct sr_trigger *trigger;
327         struct sr_channel *channel;
328
329         /* Clear capture state */
330         devc->bytes_read = 0;
331         devc->offset = 0;
332
333         /* Configure channels */
334         devc->sampleunit = BL_SAMPLEUNIT_8_BITS;
335
336         for (l = sdi->channels; l; l = l->next) {
337                 channel = l->data;
338                 if (channel->index >= 8 && channel->enabled)
339                         devc->sampleunit = BL_SAMPLEUNIT_16_BITS;
340         }
341         devc->beaglelogic->set_sampleunit(devc);
342
343         /* Configure triggers & send header packet */
344         if ((trigger = sr_session_trigger_get(sdi->session))) {
345                 int pre_trigger_samples = 0;
346                 if (devc->limit_samples > 0)
347                         pre_trigger_samples = (devc->capture_ratio * devc->limit_samples) / 100;
348                 devc->stl = soft_trigger_logic_new(sdi, trigger, pre_trigger_samples);
349                 if (!devc->stl)
350                         return SR_ERR_MALLOC;
351                 devc->trigger_fired = FALSE;
352         } else
353                 devc->trigger_fired = TRUE;
354         std_session_send_df_header(sdi);
355
356         /* Trigger and add poll on file */
357         devc->beaglelogic->start(devc);
358         if (devc->beaglelogic == &beaglelogic_native_ops)
359                 sr_session_source_add_pollfd(sdi->session, &devc->pollfd,
360                         BUFUNIT_TIMEOUT_MS(devc), beaglelogic_native_receive_data,
361                         (void *)sdi);
362         else
363                 sr_session_source_add_pollfd(sdi->session, &devc->pollfd,
364                         BUFUNIT_TIMEOUT_MS(devc), beaglelogic_tcp_receive_data,
365                         (void *)sdi);
366
367         return SR_OK;
368 }
369
370 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
371 {
372         struct dev_context *devc = sdi->priv;
373
374         /* Execute a stop on BeagleLogic */
375         devc->beaglelogic->stop(devc);
376
377         /* Flush the cache */
378         if (devc->beaglelogic == &beaglelogic_native_ops)
379                 lseek(devc->fd, 0, SEEK_SET);
380         else
381                 beaglelogic_tcp_drain(devc);
382
383         /* Remove session source and send EOT packet */
384         sr_session_source_remove_pollfd(sdi->session, &devc->pollfd);
385         std_session_send_df_end(sdi);
386
387         return SR_OK;
388 }
389
390 static struct sr_dev_driver beaglelogic_driver_info = {
391         .name = "beaglelogic",
392         .longname = "BeagleLogic",
393         .api_version = 1,
394         .init = std_init,
395         .cleanup = std_cleanup,
396         .scan = scan,
397         .dev_list = std_dev_list,
398         .dev_clear = dev_clear,
399         .config_get = config_get,
400         .config_set = config_set,
401         .config_list = config_list,
402         .dev_open = dev_open,
403         .dev_close = dev_close,
404         .dev_acquisition_start = dev_acquisition_start,
405         .dev_acquisition_stop = dev_acquisition_stop,
406         .context = NULL,
407 };
408 SR_REGISTER_DEV_DRIVER(beaglelogic_driver_info);