]> sigrok.org Git - libsigrok.git/blame_incremental - output/vcd.c
configure.ac: Print $host and $build.
[libsigrok.git] / output / vcd.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2010-2012 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, 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>
25#include "config.h" /* Needed for PACKAGE and others. */
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
28
29/* Message logging helpers with driver-specific prefix string. */
30#define DRIVER_LOG_DOMAIN "output/vcd: "
31#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
32#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
33#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
35#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
36#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
37
38struct context {
39 int num_enabled_probes;
40 char *probelist[SR_MAX_NUM_PROBES + 1];
41 int *prevbits;
42 GString *header;
43 uint64_t prevsample;
44 int period;
45 uint64_t samplerate;
46};
47
48static const char *vcd_header_comment = "\
49$comment\n Acquisition with %d/%d probes at %s\n$end\n";
50
51static int init(struct sr_output *o)
52{
53 struct context *ctx;
54 struct sr_probe *probe;
55 GSList *l;
56 uint64_t *samplerate;
57 int num_probes, i;
58 char *samplerate_s, *frequency_s, *timestamp;
59 time_t t;
60
61 if (!(ctx = g_try_malloc0(sizeof(struct context)))) {
62 sr_err("%s: ctx malloc failed", __func__);
63 return SR_ERR_MALLOC;
64 }
65
66 o->internal = ctx;
67 ctx->num_enabled_probes = 0;
68
69 for (l = o->sdi->probes; l; l = l->next) {
70 probe = l->data;
71 if (!probe->enabled)
72 continue;
73 ctx->probelist[ctx->num_enabled_probes++] = probe->name;
74 }
75 if (ctx->num_enabled_probes > 94) {
76 sr_err("VCD only supports 94 probes.");
77 return SR_ERR;
78 }
79
80 ctx->probelist[ctx->num_enabled_probes] = 0;
81 ctx->header = g_string_sized_new(512);
82 num_probes = g_slist_length(o->sdi->probes);
83
84 /* timestamp */
85 t = time(NULL);
86 timestamp = g_strdup(ctime(&t));
87 timestamp[strlen(timestamp)-1] = 0;
88 g_string_printf(ctx->header, "$date %s $end\n", timestamp);
89 g_free(timestamp);
90
91 /* generator */
92 g_string_append_printf(ctx->header, "$version %s %s $end\n",
93 PACKAGE, PACKAGE_VERSION);
94
95 if (o->sdi->driver && sr_dev_has_option(o->sdi, SR_CONF_SAMPLERATE)) {
96 o->sdi->driver->config_get(SR_CONF_SAMPLERATE,
97 (const void **)&samplerate, o->sdi);
98 ctx->samplerate = *samplerate;
99 if (!((samplerate_s = sr_samplerate_string(ctx->samplerate)))) {
100 g_string_free(ctx->header, TRUE);
101 g_free(ctx);
102 return SR_ERR;
103 }
104 g_string_append_printf(ctx->header, vcd_header_comment,
105 ctx->num_enabled_probes, num_probes, samplerate_s);
106 g_free(samplerate_s);
107 }
108
109 /* timescale */
110 /* VCD can only handle 1/10/100 (s - fs), so scale up first */
111 if (ctx->samplerate > SR_MHZ(1))
112 ctx->period = SR_GHZ(1);
113 else if (ctx->samplerate > SR_KHZ(1))
114 ctx->period = SR_MHZ(1);
115 else
116 ctx->period = SR_KHZ(1);
117 if (!(frequency_s = sr_period_string(ctx->period))) {
118 g_string_free(ctx->header, TRUE);
119 g_free(ctx);
120 return SR_ERR;
121 }
122 g_string_append_printf(ctx->header, "$timescale %s $end\n", frequency_s);
123 g_free(frequency_s);
124
125 /* scope */
126 g_string_append_printf(ctx->header, "$scope module %s $end\n", PACKAGE);
127
128 /* Wires / channels */
129 for (i = 0; i < ctx->num_enabled_probes; i++) {
130 g_string_append_printf(ctx->header, "$var wire 1 %c %s $end\n",
131 (char)('!' + i), ctx->probelist[i]);
132 }
133
134 g_string_append(ctx->header, "$upscope $end\n"
135 "$enddefinitions $end\n$dumpvars\n");
136
137 if (!(ctx->prevbits = g_try_malloc0(sizeof(int) * num_probes))) {
138 g_string_free(ctx->header, TRUE);
139 g_free(ctx);
140 sr_err("%s: ctx->prevbits malloc failed", __func__);
141 return SR_ERR_MALLOC;
142 }
143
144 return SR_OK;
145}
146
147static GString *recv(struct sr_output *o, const struct sr_dev_inst *sdi,
148 const struct sr_datafeed_packet *packet)
149{
150 const struct sr_datafeed_logic *logic;
151 struct context *ctx;
152 GString *text;
153 unsigned int i;
154 int p, curbit, prevbit;
155 uint64_t sample;
156 static uint64_t samplecount = 0;
157 gboolean first_sample;
158
159 (void)sdi;
160
161 if (!o || !o->internal)
162 return NULL;
163 ctx = o->internal;
164
165 if (packet->type == SR_DF_END) {
166 text = g_string_sized_new(16);
167 g_string_printf(text, "$dumpoff\n$end\n");
168 return text;
169 } else if (packet->type != SR_DF_LOGIC)
170 return NULL;
171
172 if (ctx->header) {
173 /* The header is still here, this must be the first packet. */
174 text = ctx->header;
175 ctx->header = NULL;
176 first_sample = TRUE;
177 } else {
178 text = g_string_sized_new(512);
179 first_sample = FALSE;
180 }
181
182 logic = packet->payload;
183 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
184 samplecount++;
185
186 memcpy(&sample, logic->data + i, logic->unitsize);
187
188 if (first_sample) {
189 /* First packet. We neg to make sure sample is stored. */
190 ctx->prevsample = ~sample;
191 first_sample = FALSE;
192 }
193
194 for (p = 0; p < ctx->num_enabled_probes; p++) {
195 curbit = (sample & ((uint64_t) (1 << p))) >> p;
196 prevbit = (ctx->prevsample & ((uint64_t) (1 << p))) >> p;
197
198 /* VCD only contains deltas/changes of signals. */
199 if (prevbit == curbit)
200 continue;
201
202 /* Output which signal changed to which value. */
203 g_string_append_printf(text, "#%" PRIu64 "\n%i%c\n",
204 (uint64_t)(((float)samplecount / ctx->samplerate)
205 * ctx->period), curbit, (char)('!' + p));
206 }
207
208 ctx->prevsample = sample;
209 }
210
211 return text;
212}
213
214static int cleanup(struct sr_output *o)
215{
216 struct context *ctx;
217
218 if (!o || !o->internal)
219 return SR_ERR_ARG;
220
221 ctx = o->internal;
222 g_free(ctx);
223
224 return SR_OK;
225}
226
227struct sr_output_format output_vcd = {
228 .id = "vcd",
229 .description = "Value Change Dump (VCD)",
230 .df_type = SR_DF_LOGIC,
231 .init = init,
232 .recv = recv,
233 .cleanup = cleanup
234};