]> sigrok.org Git - libsigrok.git/blame - output/chronovu_la8.c
build: Portability fixes.
[libsigrok.git] / 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>
45c59c8b
BV
24#include "libsigrok.h"
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
78static int init(struct sr_output *o)
79{
80 struct context *ctx;
ba7dd8bb 81 struct sr_channel *ch;
8c48f179 82 GSList *l;
8c48f179 83
d42eb9d8 84 if (!o || !o->sdi)
8c48f179 85 return SR_ERR_ARG;
8c48f179 86
d42eb9d8 87 ctx = g_malloc0(sizeof(struct context));
8c48f179
UH
88 o->internal = ctx;
89
ba7dd8bb
UH
90 for (l = o->sdi->channels; l; l = l->next) {
91 ch = l->data;
3f239f08 92 if (ch->type != SR_CHANNEL_LOGIC)
3699a8a1 93 continue;
ba7dd8bb 94 if (!ch->enabled)
8c48f179 95 continue;
ba7dd8bb 96 ctx->num_enabled_channels++;
8c48f179 97 }
d42eb9d8
BV
98 ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
99 ctx->pretrig_buf = g_string_sized_new(1024);
8c48f179 100
5c3c1241 101 return SR_OK;
8c48f179
UH
102}
103
dba3e682
BV
104static int receive(struct sr_output *o, const struct sr_datafeed_packet *packet,
105 GString **out)
8c48f179 106{
d42eb9d8 107 const struct sr_datafeed_logic *logic;
8c48f179 108 struct context *ctx;
d42eb9d8
BV
109 GVariant *gvar;
110 uint64_t samplerate;
111 gchar c[4];
8c48f179 112
d42eb9d8
BV
113 *out = NULL;
114 if (!o || !o->sdi)
8c48f179 115 return SR_ERR_ARG;
d42eb9d8 116 if (!(ctx = o->internal))
8c48f179 117 return SR_ERR_ARG;
8c48f179 118
d42eb9d8
BV
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;
8c48f179 132 case SR_DF_TRIGGER:
d42eb9d8
BV
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;
8c48f179
UH
152 break;
153 case SR_DF_END:
d42eb9d8
BV
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);
8c48f179 159 }
8c48f179
UH
160 break;
161 }
162
163 return SR_OK;
164}
165
d42eb9d8 166static int cleanup(struct sr_output *o)
8c48f179
UH
167{
168 struct context *ctx;
8c48f179 169
d42eb9d8 170 if (!o || !o->sdi)
8c48f179 171 return SR_ERR_ARG;
8c48f179 172
d42eb9d8
BV
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;
8c48f179
UH
179 }
180
8c48f179
UH
181 return SR_OK;
182}
183
7c1d391c 184SR_PRIV struct sr_output_format output_chronovu_la8 = {
8c48f179
UH
185 .id = "chronovu-la8",
186 .description = "ChronoVu LA8",
8c48f179 187 .init = init,
d42eb9d8
BV
188 .receive = receive,
189 .cleanup = cleanup,
8c48f179 190};