]> sigrok.org Git - libsigrok.git/blob - src/output/chronovu_la8.c
Reorganize project tree.
[libsigrok.git] / src / output / chronovu_la8.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
5  * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
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 2 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 <stdlib.h>
22 #include <string.h>
23 #include <glib.h>
24 #include "libsigrok.h"
25 #include "libsigrok-internal.h"
26
27 #define LOG_PREFIX "output/chronovu-la8"
28
29 struct context {
30         unsigned int num_enabled_channels;
31         gboolean triggered;
32         uint64_t samplerate;
33         uint64_t samplecount;
34         int *channel_index;
35         GString *pretrig_buf;
36 };
37
38 /**
39  * Check if the given samplerate is supported by the LA8 hardware.
40  *
41  * @param samplerate The samplerate (in Hz) to check.
42  *
43  * @return 1 if the samplerate is supported/valid, 0 otherwise.
44  */
45 static gboolean is_valid_samplerate(uint64_t samplerate)
46 {
47         unsigned int i;
48
49         for (i = 0; i < 255; i++) {
50                 if (samplerate == (SR_MHZ(100) / (i + 1)))
51                         return TRUE;
52         }
53
54         return FALSE;
55 }
56
57 /**
58  * Convert a samplerate (in Hz) to the 'divcount' value the LA8 wants.
59  *
60  * LA8 hardware: sample period = (divcount + 1) * 10ns.
61  * Min. value for divcount: 0x00 (10ns sample period, 100MHz samplerate).
62  * Max. value for divcount: 0xfe (2550ns sample period, 392.15kHz samplerate).
63  *
64  * @param samplerate The samplerate in Hz.
65  *
66  * @return The divcount value as needed by the hardware, or 0xff upon errors.
67  */
68 static uint8_t samplerate_to_divcount(uint64_t samplerate)
69 {
70         if (samplerate == 0 || !is_valid_samplerate(samplerate)) {
71                 sr_warn("Invalid samplerate (%" PRIu64 "Hz)", samplerate);
72                 return 0xff;
73         }
74
75         return (SR_MHZ(100) / samplerate) - 1;
76 }
77
78 static int init(struct sr_output *o)
79 {
80         struct context *ctx;
81         struct sr_channel *ch;
82         GSList *l;
83
84         if (!o || !o->sdi)
85                 return SR_ERR_ARG;
86
87         ctx = g_malloc0(sizeof(struct context));
88         o->internal = ctx;
89
90         for (l = o->sdi->channels; l; l = l->next) {
91                 ch = l->data;
92                 if (ch->type != SR_CHANNEL_LOGIC)
93                         continue;
94                 if (!ch->enabled)
95                         continue;
96                 ctx->num_enabled_channels++;
97         }
98         ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
99         ctx->pretrig_buf = g_string_sized_new(1024);
100
101         return SR_OK;
102 }
103
104 static int receive(struct sr_output *o, const struct sr_datafeed_packet *packet,
105                 GString **out)
106 {
107         const struct sr_datafeed_logic *logic;
108         struct context *ctx;
109         GVariant *gvar;
110         uint64_t samplerate;
111         gchar c[4];
112
113         *out = NULL;
114         if (!o || !o->sdi)
115                 return SR_ERR_ARG;
116         if (!(ctx = o->internal))
117                 return SR_ERR_ARG;
118
119         switch (packet->type) {
120         case SR_DF_HEADER:
121                 /* One byte for the 'divcount' value. */
122                 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
123                                 &gvar) == SR_OK) {
124                         samplerate = g_variant_get_uint64(gvar);
125                         g_variant_unref(gvar);
126                 } else
127                         samplerate = 0;
128                 c[0] = samplerate_to_divcount(samplerate);
129                 *out = g_string_new_len(c, 1);
130                 ctx->triggered = FALSE;
131                 break;
132         case SR_DF_TRIGGER:
133                 /* Four bytes (little endian) for the trigger point. */
134                 c[0] = ctx->samplecount & 0xff;
135                 c[1] = (ctx->samplecount >> 8) & 0xff;
136                 c[2] = (ctx->samplecount >> 16) & 0xff;
137                 c[3] = (ctx->samplecount >> 24) & 0xff;
138                 *out = g_string_new_len(c, 4);
139                 /* Flush the pre-trigger buffer. */
140                 if (ctx->pretrig_buf->len)
141                         g_string_append_len(*out, ctx->pretrig_buf->str,
142                                         ctx->pretrig_buf->len);
143                 ctx->triggered = TRUE;
144                 break;
145         case SR_DF_LOGIC:
146                 logic = packet->payload;
147                 if (!ctx->triggered)
148                         g_string_append_len(ctx->pretrig_buf, logic->data, logic->length);
149                 else
150                         *out = g_string_new_len(logic->data, logic->length);
151                 ctx->samplecount += logic->length / logic->unitsize;
152                 break;
153         case SR_DF_END:
154                 if (!ctx->triggered && ctx->pretrig_buf->len) {
155                         /* We never got a trigger, submit an empty one. */
156                         *out = g_string_sized_new(ctx->pretrig_buf->len + 4);
157                         g_string_append_len(*out, "\x00\x00\x00\x00", 4);
158                         g_string_append_len(*out, ctx->pretrig_buf->str, ctx->pretrig_buf->len);
159                 }
160                 break;
161         }
162
163         return SR_OK;
164 }
165
166 static int cleanup(struct sr_output *o)
167 {
168         struct context *ctx;
169
170         if (!o || !o->sdi)
171                 return SR_ERR_ARG;
172
173         if (o->internal) {
174                 ctx = o->internal;
175                 g_string_free(ctx->pretrig_buf, TRUE);
176                 g_free(ctx->channel_index);
177                 g_free(o->internal);
178                 o->internal = NULL;
179         }
180
181         return SR_OK;
182 }
183
184 SR_PRIV struct sr_output_format output_chronovu_la8 = {
185         .id = "chronovu-la8",
186         .description = "ChronoVu LA8",
187         .init = init,
188         .receive = receive,
189         .cleanup = cleanup,
190 };