]> sigrok.org Git - libsigrok.git/blame - src/output/chronovu_la8.c
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / output / chronovu_la8.c
CommitLineData
8c48f179 1/*
50985c20 2 * This file is part of the libsigrok project.
8c48f179
UH
3 *
4 * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
44559b2c 5 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
8c48f179
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
44559b2c 18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
8c48f179
UH
19 */
20
21#include <stdlib.h>
22#include <string.h>
23#include <glib.h>
c1aae900 24#include <libsigrok/libsigrok.h>
45c59c8b 25#include "libsigrok-internal.h"
8c48f179 26
3544f848 27#define LOG_PREFIX "output/chronovu-la8"
a944a84b 28
8c48f179 29struct context {
ba7dd8bb 30 unsigned int num_enabled_channels;
d42eb9d8 31 gboolean triggered;
8c48f179 32 uint64_t samplerate;
d42eb9d8
BV
33 uint64_t samplecount;
34 int *channel_index;
35 GString *pretrig_buf;
8c48f179
UH
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.
44dae539 42 *
8c48f179
UH
43 * @return 1 if the samplerate is supported/valid, 0 otherwise.
44 */
d42eb9d8 45static gboolean is_valid_samplerate(uint64_t samplerate)
8c48f179
UH
46{
47 unsigned int i;
48
49 for (i = 0; i < 255; i++) {
50 if (samplerate == (SR_MHZ(100) / (i + 1)))
d42eb9d8 51 return TRUE;
8c48f179
UH
52 }
53
d42eb9d8 54 return FALSE;
8c48f179
UH
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.
44dae539 65 *
8c48f179
UH
66 * @return The divcount value as needed by the hardware, or 0xff upon errors.
67 */
68static uint8_t samplerate_to_divcount(uint64_t samplerate)
69{
d42eb9d8
BV
70 if (samplerate == 0 || !is_valid_samplerate(samplerate)) {
71 sr_warn("Invalid samplerate (%" PRIu64 "Hz)", samplerate);
8c48f179
UH
72 return 0xff;
73 }
74
75 return (SR_MHZ(100) / samplerate) - 1;
76}
77
a755b0e1 78static int init(struct sr_output *o, GHashTable *options)
8c48f179
UH
79{
80 struct context *ctx;
ba7dd8bb 81 struct sr_channel *ch;
8c48f179 82 GSList *l;
8c48f179 83
a755b0e1
BV
84 (void)options;
85
d42eb9d8 86 if (!o || !o->sdi)
8c48f179 87 return SR_ERR_ARG;
8c48f179 88
d42eb9d8 89 ctx = g_malloc0(sizeof(struct context));
d686c5ec 90 o->priv = ctx;
8c48f179 91
ba7dd8bb
UH
92 for (l = o->sdi->channels; l; l = l->next) {
93 ch = l->data;
3f239f08 94 if (ch->type != SR_CHANNEL_LOGIC)
3699a8a1 95 continue;
ba7dd8bb 96 if (!ch->enabled)
8c48f179 97 continue;
ba7dd8bb 98 ctx->num_enabled_channels++;
8c48f179 99 }
d42eb9d8
BV
100 ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
101 ctx->pretrig_buf = g_string_sized_new(1024);
8c48f179 102
5c3c1241 103 return SR_OK;
8c48f179
UH
104}
105
a755b0e1 106static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
dba3e682 107 GString **out)
8c48f179 108{
d42eb9d8 109 const struct sr_datafeed_logic *logic;
8c48f179 110 struct context *ctx;
d42eb9d8
BV
111 GVariant *gvar;
112 uint64_t samplerate;
113 gchar c[4];
8c48f179 114
d42eb9d8
BV
115 *out = NULL;
116 if (!o || !o->sdi)
8c48f179 117 return SR_ERR_ARG;
d686c5ec 118 if (!(ctx = o->priv))
8c48f179 119 return SR_ERR_ARG;
8c48f179 120
d42eb9d8
BV
121 switch (packet->type) {
122 case SR_DF_HEADER:
123 /* One byte for the 'divcount' value. */
124 if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
125 &gvar) == SR_OK) {
126 samplerate = g_variant_get_uint64(gvar);
127 g_variant_unref(gvar);
128 } else
129 samplerate = 0;
130 c[0] = samplerate_to_divcount(samplerate);
131 *out = g_string_new_len(c, 1);
132 ctx->triggered = FALSE;
133 break;
8c48f179 134 case SR_DF_TRIGGER:
d42eb9d8
BV
135 /* Four bytes (little endian) for the trigger point. */
136 c[0] = ctx->samplecount & 0xff;
137 c[1] = (ctx->samplecount >> 8) & 0xff;
138 c[2] = (ctx->samplecount >> 16) & 0xff;
139 c[3] = (ctx->samplecount >> 24) & 0xff;
140 *out = g_string_new_len(c, 4);
141 /* Flush the pre-trigger buffer. */
142 if (ctx->pretrig_buf->len)
143 g_string_append_len(*out, ctx->pretrig_buf->str,
144 ctx->pretrig_buf->len);
145 ctx->triggered = TRUE;
146 break;
147 case SR_DF_LOGIC:
148 logic = packet->payload;
149 if (!ctx->triggered)
150 g_string_append_len(ctx->pretrig_buf, logic->data, logic->length);
151 else
152 *out = g_string_new_len(logic->data, logic->length);
153 ctx->samplecount += logic->length / logic->unitsize;
8c48f179
UH
154 break;
155 case SR_DF_END:
d42eb9d8
BV
156 if (!ctx->triggered && ctx->pretrig_buf->len) {
157 /* We never got a trigger, submit an empty one. */
158 *out = g_string_sized_new(ctx->pretrig_buf->len + 4);
159 g_string_append_len(*out, "\x00\x00\x00\x00", 4);
160 g_string_append_len(*out, ctx->pretrig_buf->str, ctx->pretrig_buf->len);
8c48f179 161 }
8c48f179
UH
162 break;
163 }
164
165 return SR_OK;
166}
167
d42eb9d8 168static int cleanup(struct sr_output *o)
8c48f179
UH
169{
170 struct context *ctx;
8c48f179 171
d42eb9d8 172 if (!o || !o->sdi)
8c48f179 173 return SR_ERR_ARG;
8c48f179 174
d686c5ec
BV
175 if (o->priv) {
176 ctx = o->priv;
d42eb9d8
BV
177 g_string_free(ctx->pretrig_buf, TRUE);
178 g_free(ctx->channel_index);
d686c5ec
BV
179 g_free(o->priv);
180 o->priv = NULL;
8c48f179
UH
181 }
182
8c48f179
UH
183 return SR_OK;
184}
185
a755b0e1 186SR_PRIV struct sr_output_module output_chronovu_la8 = {
8c48f179 187 .id = "chronovu-la8",
a755b0e1
BV
188 .name = "ChronoVu LA8",
189 .desc = "ChronoVu LA8 native file format",
8a174d23 190 .exts = (const char*[]){"kdt", NULL},
3cd4b381 191 .flags = 0,
a755b0e1 192 .options = NULL,
8c48f179 193 .init = init,
d42eb9d8
BV
194 .receive = receive,
195 .cleanup = cleanup,
8c48f179 196};