]> sigrok.org Git - libsigrok.git/blame - output/vcd.c
teleinfo: Minor cleanups.
[libsigrok.git] / output / vcd.c
CommitLineData
4c9ffa83 1/*
50985c20 2 * This file is part of the libsigrok project.
4c9ffa83
UH
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
13d8e03c 5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
4c9ffa83
UH
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, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdlib.h>
23#include <string.h>
24#include <glib.h>
545f9786 25#include "config.h" /* Needed for PACKAGE and others. */
45c59c8b
BV
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
4c9ffa83 28
29a27196
UH
29/* Message logging helpers with subsystem-specific prefix string. */
30#define LOG_PREFIX "output/vcd: "
31#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
32#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
33#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
34#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
35#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
36#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
a944a84b 37
4c9ffa83
UH
38struct context {
39 int num_enabled_probes;
a1be7b6c 40 GArray *probeindices;
fbf1ff5d 41 GString *header;
b050fc48 42 uint8_t *prevsample;
b33e7d70
HE
43 int period;
44 uint64_t samplerate;
b050fc48 45 unsigned int unitsize;
4c9ffa83
UH
46};
47
d078d2e5 48static const char *vcd_header_comment = "\
7aae7462
BV
49$comment\n Acquisition with %d/%d probes at %s\n$end\n";
50
f50f3f40 51static int init(struct sr_output *o)
4c9ffa83 52{
4c9ffa83 53 struct context *ctx;
1afe8989 54 struct sr_probe *probe;
4c9ffa83 55 GSList *l;
ec4063b8 56 GVariant *gvar;
b33e7d70 57 int num_probes, i;
fbf1ff5d 58 char *samplerate_s, *frequency_s, *timestamp;
5cca9adb 59 time_t t;
4c9ffa83 60
133a37bf 61 if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
a944a84b 62 sr_err("%s: ctx malloc failed", __func__);
e46b8fb1 63 return SR_ERR_MALLOC;
133a37bf 64 }
757b8c62 65
4c9ffa83
UH
66 o->internal = ctx;
67 ctx->num_enabled_probes = 0;
a1be7b6c 68 ctx->probeindices = g_array_new(FALSE, FALSE, sizeof(int));
757b8c62 69
5c3c1241 70 for (l = o->sdi->probes; l; l = l->next) {
4c9ffa83 71 probe = l->data;
757b8c62
UH
72 if (!probe->enabled)
73 continue;
a1be7b6c
ML
74 ctx->probeindices = g_array_append_val(
75 ctx->probeindices, probe->index);
ba6568c5 76 ctx->num_enabled_probes++;
4c9ffa83 77 }
fbf1ff5d 78 if (ctx->num_enabled_probes > 94) {
a944a84b 79 sr_err("VCD only supports 94 probes.");
e46b8fb1 80 return SR_ERR;
fbf1ff5d 81 }
4c9ffa83 82
b050fc48 83 ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
fbf1ff5d 84 ctx->header = g_string_sized_new(512);
5c3c1241 85 num_probes = g_slist_length(o->sdi->probes);
4c9ffa83 86
fbf1ff5d
BV
87 /* timestamp */
88 t = time(NULL);
133a37bf 89 timestamp = g_strdup(ctime(&t));
fbf1ff5d
BV
90 timestamp[strlen(timestamp)-1] = 0;
91 g_string_printf(ctx->header, "$date %s $end\n", timestamp);
133a37bf 92 g_free(timestamp);
4c9ffa83 93
fbf1ff5d
BV
94 /* generator */
95 g_string_append_printf(ctx->header, "$version %s %s $end\n",
96 PACKAGE, PACKAGE_VERSION);
4c9ffa83 97
d3c74a6f
BV
98 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
99 &gvar) == SR_OK) {
ec4063b8 100 ctx->samplerate = g_variant_get_uint64(gvar);
af51a771 101 g_variant_unref(gvar);
a00ba012 102 if (!((samplerate_s = sr_samplerate_string(ctx->samplerate)))) {
fbf1ff5d 103 g_string_free(ctx->header, TRUE);
133a37bf 104 g_free(ctx);
e46b8fb1 105 return SR_ERR;
6b5e3cee 106 }
fbf1ff5d
BV
107 g_string_append_printf(ctx->header, vcd_header_comment,
108 ctx->num_enabled_probes, num_probes, samplerate_s);
133a37bf 109 g_free(samplerate_s);
7aae7462 110 }
4c9ffa83 111
fbf1ff5d
BV
112 /* timescale */
113 /* VCD can only handle 1/10/100 (s - fs), so scale up first */
59df0c77
UH
114 if (ctx->samplerate > SR_MHZ(1))
115 ctx->period = SR_GHZ(1);
116 else if (ctx->samplerate > SR_KHZ(1))
117 ctx->period = SR_MHZ(1);
fbf1ff5d 118 else
59df0c77 119 ctx->period = SR_KHZ(1);
a00ba012 120 if (!(frequency_s = sr_period_string(ctx->period))) {
fbf1ff5d 121 g_string_free(ctx->header, TRUE);
133a37bf 122 g_free(ctx);
e46b8fb1 123 return SR_ERR;
fbf1ff5d
BV
124 }
125 g_string_append_printf(ctx->header, "$timescale %s $end\n", frequency_s);
133a37bf 126 g_free(frequency_s);
fbf1ff5d
BV
127
128 /* scope */
129 g_string_append_printf(ctx->header, "$scope module %s $end\n", PACKAGE);
130
4c9ffa83 131 /* Wires / channels */
d601c0e9
ML
132 for (i = 0, l = o->sdi->probes; l; l = l->next, i++) {
133 probe = l->data;
134 if (!probe->enabled)
135 continue;
fbf1ff5d 136 g_string_append_printf(ctx->header, "$var wire 1 %c %s $end\n",
d601c0e9 137 (char)('!' + i), probe->name);
4c9ffa83
UH
138 }
139
fbf1ff5d
BV
140 g_string_append(ctx->header, "$upscope $end\n"
141 "$enddefinitions $end\n$dumpvars\n");
4c9ffa83 142
b050fc48 143 if (!(ctx->prevsample = g_try_malloc0(ctx->unitsize))) {
fbf1ff5d 144 g_string_free(ctx->header, TRUE);
133a37bf 145 g_free(ctx);
b050fc48 146 sr_err("%s: ctx->prevsample malloc failed", __func__);
e46b8fb1 147 return SR_ERR_MALLOC;
6b5e3cee 148 }
5a8fda15 149
e46b8fb1 150 return SR_OK;
4c9ffa83
UH
151}
152
17f63de6
BV
153static int receive(struct sr_output *o, const struct sr_dev_inst *sdi,
154 const struct sr_datafeed_packet *packet, GString **out)
4c9ffa83 155{
d5585e32 156 const struct sr_datafeed_logic *logic;
4c9ffa83 157 struct context *ctx;
fbf1ff5d 158 unsigned int i;
ba6568c5 159 int p, curbit, prevbit, index;
b050fc48 160 uint8_t *sample;
086eac7c 161 static uint64_t samplecount = 0;
4c9ffa83 162
d5585e32
BV
163 (void)sdi;
164
17f63de6 165 *out = NULL;
d5585e32 166 if (!o || !o->internal)
17f63de6 167 return SR_ERR_ARG;
4c9ffa83 168 ctx = o->internal;
d5585e32
BV
169
170 if (packet->type == SR_DF_END) {
17f63de6
BV
171 *out = g_string_new("$dumpoff\n$end\n");
172 return SR_OK;
d5585e32 173 } else if (packet->type != SR_DF_LOGIC)
17f63de6 174 return SR_OK;
6b5e3cee 175
4c9ffa83
UH
176 if (ctx->header) {
177 /* The header is still here, this must be the first packet. */
17f63de6 178 *out = ctx->header;
4c9ffa83 179 ctx->header = NULL;
d5585e32 180 } else {
17f63de6 181 *out = g_string_sized_new(512);
4c9ffa83
UH
182 }
183
d5585e32
BV
184 logic = packet->payload;
185 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
086eac7c 186 samplecount++;
08b488b8 187
b050fc48 188 sample = logic->data + i;
08b488b8 189
4c9ffa83 190 for (p = 0; p < ctx->num_enabled_probes; p++) {
a1be7b6c 191 index = g_array_index(ctx->probeindices, int, p);
b050fc48 192 curbit = (sample[p / 8] & (((uint8_t) 1) << index)) >> index;
34539700 193 prevbit = (ctx->prevsample[p / 8] & (((uint8_t) 1) << index)) >> index;
fbe2f794
UH
194
195 /* VCD only contains deltas/changes of signals. */
607b58de
UH
196 if (prevbit == curbit)
197 continue;
4c9ffa83 198
fbe2f794 199 /* Output which signal changed to which value. */
17f63de6 200 g_string_append_printf(*out, "#%" PRIu64 "\n%i%c\n",
32c0551b 201 (uint64_t)(((float)samplecount / ctx->samplerate)
b33e7d70 202 * ctx->period), curbit, (char)('!' + p));
4c9ffa83 203 }
08b488b8 204
b050fc48 205 memcpy(ctx->prevsample, sample, ctx->unitsize);
4c9ffa83
UH
206 }
207
17f63de6 208 return SR_OK;
d5585e32
BV
209}
210
211static int cleanup(struct sr_output *o)
212{
213 struct context *ctx;
214
215 if (!o || !o->internal)
216 return SR_ERR_ARG;
217
218 ctx = o->internal;
219 g_free(ctx);
4c9ffa83 220
e46b8fb1 221 return SR_OK;
4c9ffa83
UH
222}
223
f50f3f40 224struct sr_output_format output_vcd = {
cdb3573c 225 .id = "vcd",
d494a4aa
UH
226 .description = "Value Change Dump (VCD)",
227 .df_type = SR_DF_LOGIC,
228 .init = init,
17f63de6 229 .receive = receive,
bbe6e336 230 .cleanup = cleanup,
4c9ffa83 231};