]> sigrok.org Git - libsigrok.git/blame - hardware/tondaj-sl-814/api.c
Add and use std_session_send_df_header().
[libsigrok.git] / hardware / tondaj-sl-814 / api.c
CommitLineData
aa2af324
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
c073af80 21#include <fcntl.h>
aa2af324
UH
22#include <glib.h>
23#include "libsigrok.h"
24#include "libsigrok-internal.h"
25#include "protocol.h"
26
19ee7dff
BV
27#define SERIALCOMM "9600/8e1"
28
c073af80 29static const int hwopts[] = {
1953564a
BV
30 SR_CONF_CONN,
31 SR_CONF_SERIALCOMM,
c073af80
UH
32 0,
33};
34
35static const int hwcaps[] = {
1953564a
BV
36 SR_CONF_SOUNDLEVELMETER,
37 SR_CONF_LIMIT_SAMPLES,
38 SR_CONF_CONTINUOUS,
c073af80
UH
39 0,
40};
41
aa2af324
UH
42SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info;
43static struct sr_dev_driver *di = &tondaj_sl_814_driver_info;
44
45/* Properly close and free all devices. */
46static int clear_instances(void)
47{
48 struct sr_dev_inst *sdi;
49 struct drv_context *drvc;
50 struct dev_context *devc;
51 GSList *l;
52
53 if (!(drvc = di->priv))
54 return SR_OK;
55
56 for (l = drvc->instances; l; l = l->next) {
57 if (!(sdi = l->data))
58 continue;
59 if (!(devc = sdi->priv))
60 continue;
c073af80 61 sr_serial_dev_inst_free(devc->serial);
aa2af324
UH
62 sr_dev_inst_free(sdi);
63 }
64
65 g_slist_free(drvc->instances);
66 drvc->instances = NULL;
67
68 return SR_OK;
69}
70
34f06b90 71static int hw_init(struct sr_context *sr_ctx)
aa2af324 72{
063e7aef 73 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
aa2af324
UH
74}
75
76static GSList *hw_scan(GSList *options)
77{
78 struct drv_context *drvc;
c073af80
UH
79 struct dev_context *devc;
80 struct sr_dev_inst *sdi;
1987b8d6 81 struct sr_config *src;
c073af80
UH
82 struct sr_probe *probe;
83 GSList *devices, *l;
84 const char *conn, *serialcomm;
aa2af324 85
aa2af324
UH
86 drvc = di->priv;
87 drvc->instances = NULL;
88
4b97c74e
UH
89 devices = NULL;
90
c073af80
UH
91 conn = serialcomm = NULL;
92 for (l = options; l; l = l->next) {
1987b8d6 93 if (!(src = l->data)) {
c073af80
UH
94 sr_err("Invalid option data, skipping.");
95 continue;
96 }
1987b8d6 97 switch (src->key) {
1953564a 98 case SR_CONF_CONN:
1987b8d6 99 conn = src->value;
c073af80 100 break;
1953564a 101 case SR_CONF_SERIALCOMM:
1987b8d6 102 serialcomm = src->value;
c073af80
UH
103 break;
104 default:
1987b8d6 105 sr_err("Unknown option %d, skipping.", src->key);
c073af80
UH
106 break;
107 }
108 }
80bc6632 109 if (!conn)
c073af80 110 return NULL;
19ee7dff
BV
111 if (!serialcomm)
112 serialcomm = SERIALCOMM;
c073af80
UH
113
114 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Tondaj",
115 "SL-814", NULL))) {
116 sr_err("Failed to create device instance.");
117 return NULL;
118 }
119
120 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
121 sr_err("Device context malloc failed.");
122 return NULL;
123 }
124
19ee7dff
BV
125 if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm)))
126 return NULL;
c073af80 127
a54dd31e 128 if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 129 return NULL;
19ee7dff 130
c073af80
UH
131 sdi->priv = devc;
132 sdi->driver = di;
6b8d6f93 133 probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1");
c073af80
UH
134 if (!probe) {
135 sr_err("Failed to create probe.");
136 return NULL;
137 }
138 sdi->probes = g_slist_append(sdi->probes, probe);
139 drvc->instances = g_slist_append(drvc->instances, sdi);
140 devices = g_slist_append(devices, sdi);
aa2af324
UH
141
142 return devices;
143}
144
145static GSList *hw_dev_list(void)
146{
0e94d524 147 return ((struct drv_context *)(di->priv))->instances;
aa2af324
UH
148}
149
150static int hw_dev_open(struct sr_dev_inst *sdi)
151{
c073af80
UH
152 struct dev_context *devc;
153
154 devc = sdi->priv;
155
a54dd31e 156 if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 157 return SR_ERR;
c073af80
UH
158
159 sdi->status = SR_ST_ACTIVE;
aa2af324
UH
160
161 return SR_OK;
162}
163
164static int hw_dev_close(struct sr_dev_inst *sdi)
165{
c073af80
UH
166 struct dev_context *devc;
167
168 devc = sdi->priv;
169
19ee7dff
BV
170 if (devc->serial && devc->serial->fd != -1) {
171 serial_close(devc->serial);
172 sdi->status = SR_ST_INACTIVE;
c073af80
UH
173 }
174
aa2af324
UH
175 return SR_OK;
176}
177
178static int hw_cleanup(void)
179{
180 clear_instances();
181
aa2af324
UH
182 return SR_OK;
183}
184
035a1078 185static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
aa2af324 186{
c073af80 187 struct dev_context *devc;
aa2af324
UH
188
189 if (sdi->status != SR_ST_ACTIVE) {
190 sr_err("Device inactive, can't set config options.");
191 return SR_ERR;
192 }
193
c073af80
UH
194 devc = sdi->priv;
195
035a1078 196 switch (id) {
1953564a 197 case SR_CONF_LIMIT_SAMPLES:
c073af80
UH
198 devc->limit_samples = *(const uint64_t *)value;
199 sr_dbg("Setting sample limit to %" PRIu64 ".",
200 devc->limit_samples);
201 break;
aa2af324 202 default:
035a1078 203 sr_err("Unknown hardware capability: %d.", id);
c073af80 204 return SR_ERR_ARG;
aa2af324
UH
205 }
206
c073af80 207 return SR_OK;
aa2af324
UH
208}
209
a1c743fc
BV
210static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
211{
212
213 (void)sdi;
214
215 switch (key) {
0d485e30
BV
216 case SR_CONF_SCAN_OPTIONS:
217 *data = hwopts;
218 break;
9a6517d1
BV
219 case SR_CONF_DEVICE_OPTIONS:
220 *data = hwcaps;
221 break;
a1c743fc
BV
222 default:
223 return SR_ERR_ARG;
224 }
225
226 return SR_OK;
227}
228
aa2af324
UH
229static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
230 void *cb_data)
231{
c073af80
UH
232 struct dev_context *devc;
233
234 devc = sdi->priv;
235 devc->cb_data = cb_data;
236
237 /* Send header packet to the session bus. */
4afdfd46 238 std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
c073af80 239
c073af80
UH
240 /* Poll every 500ms, or whenever some data comes in. */
241 sr_source_add(devc->serial->fd, G_IO_IN, 500,
242 tondaj_sl_814_receive_data, (void *)sdi);
aa2af324
UH
243
244 return SR_OK;
245}
246
c073af80 247static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
aa2af324 248{
c073af80
UH
249 int ret, final_ret;
250 struct sr_datafeed_packet packet;
251 struct dev_context *devc;
252
253 final_ret = SR_OK;
aa2af324
UH
254
255 if (sdi->status != SR_ST_ACTIVE) {
256 sr_err("Device inactive, can't stop acquisition.");
257 return SR_ERR;
258 }
259
c073af80 260 devc = sdi->priv;
aa2af324 261
c073af80
UH
262 if ((ret = sr_source_remove(devc->serial->fd)) < 0) {
263 sr_err("Error removing source: %d.", ret);
264 final_ret = SR_ERR;
265 }
266
267 if ((ret = hw_dev_close(sdi)) < 0) {
268 sr_err("Error closing device: %d.", ret);
269 final_ret = SR_ERR;
270 }
271
272 /* Send end packet to the session bus. */
273 sr_dbg("Sending SR_DF_END.");
274 packet.type = SR_DF_END;
275 sr_session_send(cb_data, &packet);
276
277 return final_ret;
aa2af324
UH
278}
279
280SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info = {
281 .name = "tondaj-sl-814",
282 .longname = "Tondaj SL-814",
283 .api_version = 1,
284 .init = hw_init,
285 .cleanup = hw_cleanup,
286 .scan = hw_scan,
287 .dev_list = hw_dev_list,
288 .dev_clear = clear_instances,
035a1078 289 .config_set = config_set,
a1c743fc 290 .config_list = config_list,
aa2af324
UH
291 .dev_open = hw_dev_open,
292 .dev_close = hw_dev_close,
aa2af324
UH
293 .dev_acquisition_start = hw_dev_acquisition_start,
294 .dev_acquisition_stop = hw_dev_acquisition_stop,
295 .priv = NULL,
296};