forked from sigrokproject/libsigrok
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchronovu_la8.c
197 lines (174 loc) · 4.98 KB
/
chronovu_la8.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
* This file is part of the libsigrok project.
*
* Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
* Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h"
#define LOG_PREFIX "output/chronovu-la8"
struct context {
unsigned int num_enabled_channels;
gboolean triggered;
uint64_t samplerate;
uint64_t samplecount;
int *channel_index;
GString *pretrig_buf;
};
/**
* Check if the given samplerate is supported by the LA8 hardware.
*
* @param samplerate The samplerate (in Hz) to check.
*
* @return 1 if the samplerate is supported/valid, 0 otherwise.
*/
static gboolean is_valid_samplerate(uint64_t samplerate)
{
unsigned int i;
for (i = 0; i < 255; i++) {
if (samplerate == (SR_MHZ(100) / (i + 1)))
return TRUE;
}
return FALSE;
}
/**
* Convert a samplerate (in Hz) to the 'divcount' value the LA8 wants.
*
* LA8 hardware: sample period = (divcount + 1) * 10ns.
* Min. value for divcount: 0x00 (10ns sample period, 100MHz samplerate).
* Max. value for divcount: 0xfe (2550ns sample period, 392.15kHz samplerate).
*
* @param samplerate The samplerate in Hz.
*
* @return The divcount value as needed by the hardware, or 0xff upon errors.
*/
static uint8_t samplerate_to_divcount(uint64_t samplerate)
{
if (samplerate == 0 || !is_valid_samplerate(samplerate)) {
sr_warn("Invalid samplerate (%" PRIu64 "Hz)", samplerate);
return 0xff;
}
return (SR_MHZ(100) / samplerate) - 1;
}
static int init(struct sr_output *o, GHashTable *options)
{
struct context *ctx;
struct sr_channel *ch;
GSList *l;
(void)options;
if (!o || !o->sdi)
return SR_ERR_ARG;
ctx = g_malloc0(sizeof(struct context));
o->priv = ctx;
for (l = o->sdi->channels; l; l = l->next) {
ch = l->data;
if (ch->type != SR_CHANNEL_LOGIC)
continue;
if (!ch->enabled)
continue;
ctx->num_enabled_channels++;
}
ctx->channel_index = g_malloc(sizeof(int) * ctx->num_enabled_channels);
ctx->pretrig_buf = g_string_sized_new(1024);
return SR_OK;
}
static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
GString **out)
{
const struct sr_datafeed_logic *logic;
struct context *ctx;
GVariant *gvar;
uint64_t samplerate;
gchar c[4];
*out = NULL;
if (!o || !o->sdi)
return SR_ERR_ARG;
if (!(ctx = o->priv))
return SR_ERR_ARG;
switch (packet->type) {
case SR_DF_HEADER:
/* One byte for the 'divcount' value. */
if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE,
&gvar) == SR_OK) {
samplerate = g_variant_get_uint64(gvar);
g_variant_unref(gvar);
} else
samplerate = 0;
c[0] = samplerate_to_divcount(samplerate);
*out = g_string_new_len(c, 1);
ctx->triggered = FALSE;
break;
case SR_DF_TRIGGER:
/* Four bytes (little endian) for the trigger point. */
c[0] = ctx->samplecount & 0xff;
c[1] = (ctx->samplecount >> 8) & 0xff;
c[2] = (ctx->samplecount >> 16) & 0xff;
c[3] = (ctx->samplecount >> 24) & 0xff;
*out = g_string_new_len(c, 4);
/* Flush the pre-trigger buffer. */
if (ctx->pretrig_buf->len)
g_string_append_len(*out, ctx->pretrig_buf->str,
ctx->pretrig_buf->len);
ctx->triggered = TRUE;
break;
case SR_DF_LOGIC:
logic = packet->payload;
if (!ctx->triggered)
g_string_append_len(ctx->pretrig_buf, logic->data, logic->length);
else
*out = g_string_new_len(logic->data, logic->length);
ctx->samplecount += logic->length / logic->unitsize;
break;
case SR_DF_END:
if (!ctx->triggered && ctx->pretrig_buf->len) {
/* We never got a trigger, submit an empty one. */
*out = g_string_sized_new(ctx->pretrig_buf->len + 4);
g_string_append_len(*out, "\x00\x00\x00\x00", 4);
g_string_append_len(*out, ctx->pretrig_buf->str, ctx->pretrig_buf->len);
}
break;
}
return SR_OK;
}
static int cleanup(struct sr_output *o)
{
struct context *ctx;
if (!o || !o->sdi)
return SR_ERR_ARG;
if (o->priv) {
ctx = o->priv;
g_string_free(ctx->pretrig_buf, TRUE);
g_free(ctx->channel_index);
g_free(o->priv);
o->priv = NULL;
}
return SR_OK;
}
SR_PRIV struct sr_output_module output_chronovu_la8 = {
.id = "chronovu-la8",
.name = "ChronoVu LA8",
.desc = "ChronoVu LA8 native file format data",
.exts = (const char*[]){"kdt", NULL},
.flags = 0,
.options = NULL,
.init = init,
.receive = receive,
.cleanup = cleanup,
};