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