]> sigrok.org Git - libsigrok.git/blame - hardware/tondaj-sl-814/api.c
Python bindings: Fix reported libsigrok version.
[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
afdf6d6a 29static const int32_t hwopts[] = {
1953564a
BV
30 SR_CONF_CONN,
31 SR_CONF_SERIALCOMM,
c073af80
UH
32};
33
afdf6d6a 34static const int32_t hwcaps[] = {
1953564a
BV
35 SR_CONF_SOUNDLEVELMETER,
36 SR_CONF_LIMIT_SAMPLES,
37 SR_CONF_CONTINUOUS,
c073af80
UH
38};
39
aa2af324
UH
40SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info;
41static struct sr_dev_driver *di = &tondaj_sl_814_driver_info;
42
43/* Properly close and free all devices. */
44static int clear_instances(void)
45{
46 struct sr_dev_inst *sdi;
47 struct drv_context *drvc;
48 struct dev_context *devc;
49 GSList *l;
50
51 if (!(drvc = di->priv))
52 return SR_OK;
53
54 for (l = drvc->instances; l; l = l->next) {
55 if (!(sdi = l->data))
56 continue;
57 if (!(devc = sdi->priv))
58 continue;
c073af80 59 sr_serial_dev_inst_free(devc->serial);
aa2af324
UH
60 sr_dev_inst_free(sdi);
61 }
62
63 g_slist_free(drvc->instances);
64 drvc->instances = NULL;
65
66 return SR_OK;
67}
68
34f06b90 69static int hw_init(struct sr_context *sr_ctx)
aa2af324 70{
063e7aef 71 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
aa2af324
UH
72}
73
74static GSList *hw_scan(GSList *options)
75{
76 struct drv_context *drvc;
c073af80
UH
77 struct dev_context *devc;
78 struct sr_dev_inst *sdi;
1987b8d6 79 struct sr_config *src;
c073af80
UH
80 struct sr_probe *probe;
81 GSList *devices, *l;
82 const char *conn, *serialcomm;
aa2af324 83
aa2af324
UH
84 drvc = di->priv;
85 drvc->instances = NULL;
86
4b97c74e
UH
87 devices = NULL;
88
c073af80
UH
89 conn = serialcomm = NULL;
90 for (l = options; l; l = l->next) {
1987b8d6 91 if (!(src = l->data)) {
c073af80
UH
92 sr_err("Invalid option data, skipping.");
93 continue;
94 }
1987b8d6 95 switch (src->key) {
1953564a 96 case SR_CONF_CONN:
afdf6d6a 97 conn = g_variant_get_string(src->data, NULL);
c073af80 98 break;
1953564a 99 case SR_CONF_SERIALCOMM:
afdf6d6a 100 serialcomm = g_variant_get_string(src->data, NULL);
c073af80
UH
101 break;
102 default:
1987b8d6 103 sr_err("Unknown option %d, skipping.", src->key);
c073af80
UH
104 break;
105 }
106 }
80bc6632 107 if (!conn)
c073af80 108 return NULL;
19ee7dff
BV
109 if (!serialcomm)
110 serialcomm = SERIALCOMM;
c073af80
UH
111
112 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Tondaj",
113 "SL-814", NULL))) {
114 sr_err("Failed to create device instance.");
115 return NULL;
116 }
117
118 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
119 sr_err("Device context malloc failed.");
120 return NULL;
121 }
122
19ee7dff
BV
123 if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm)))
124 return NULL;
c073af80 125
a54dd31e 126 if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 127 return NULL;
19ee7dff 128
c073af80
UH
129 sdi->priv = devc;
130 sdi->driver = di;
6b8d6f93 131 probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1");
c073af80
UH
132 if (!probe) {
133 sr_err("Failed to create probe.");
134 return NULL;
135 }
136 sdi->probes = g_slist_append(sdi->probes, probe);
137 drvc->instances = g_slist_append(drvc->instances, sdi);
138 devices = g_slist_append(devices, sdi);
aa2af324
UH
139
140 return devices;
141}
142
143static GSList *hw_dev_list(void)
144{
0e94d524 145 return ((struct drv_context *)(di->priv))->instances;
aa2af324
UH
146}
147
148static int hw_dev_open(struct sr_dev_inst *sdi)
149{
c073af80
UH
150 struct dev_context *devc;
151
152 devc = sdi->priv;
153
a54dd31e 154 if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 155 return SR_ERR;
c073af80
UH
156
157 sdi->status = SR_ST_ACTIVE;
aa2af324
UH
158
159 return SR_OK;
160}
161
162static int hw_dev_close(struct sr_dev_inst *sdi)
163{
c073af80
UH
164 struct dev_context *devc;
165
166 devc = sdi->priv;
167
19ee7dff
BV
168 if (devc->serial && devc->serial->fd != -1) {
169 serial_close(devc->serial);
170 sdi->status = SR_ST_INACTIVE;
c073af80
UH
171 }
172
aa2af324
UH
173 return SR_OK;
174}
175
176static int hw_cleanup(void)
177{
178 clear_instances();
179
aa2af324
UH
180 return SR_OK;
181}
182
afdf6d6a 183static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
aa2af324 184{
c073af80 185 struct dev_context *devc;
aa2af324
UH
186
187 if (sdi->status != SR_ST_ACTIVE) {
188 sr_err("Device inactive, can't set config options.");
189 return SR_ERR;
190 }
191
c073af80
UH
192 devc = sdi->priv;
193
035a1078 194 switch (id) {
1953564a 195 case SR_CONF_LIMIT_SAMPLES:
afdf6d6a 196 devc->limit_samples = g_variant_get_uint64(data);
c073af80
UH
197 sr_dbg("Setting sample limit to %" PRIu64 ".",
198 devc->limit_samples);
199 break;
aa2af324 200 default:
035a1078 201 sr_err("Unknown hardware capability: %d.", id);
c073af80 202 return SR_ERR_ARG;
aa2af324
UH
203 }
204
c073af80 205 return SR_OK;
aa2af324
UH
206}
207
afdf6d6a 208static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc
BV
209{
210
211 (void)sdi;
212
213 switch (key) {
0d485e30 214 case SR_CONF_SCAN_OPTIONS:
afdf6d6a
BV
215 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
216 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
0d485e30 217 break;
9a6517d1 218 case SR_CONF_DEVICE_OPTIONS:
afdf6d6a
BV
219 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
220 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
9a6517d1 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{
cd2f0fe2
UH
249 return std_hw_dev_acquisition_stop_serial(sdi, cb_data, hw_dev_close,
250 ((struct dev_context *)(sdi->priv))->serial, DRIVER_LOG_DOMAIN);
aa2af324
UH
251}
252
253SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info = {
254 .name = "tondaj-sl-814",
255 .longname = "Tondaj SL-814",
256 .api_version = 1,
257 .init = hw_init,
258 .cleanup = hw_cleanup,
259 .scan = hw_scan,
260 .dev_list = hw_dev_list,
261 .dev_clear = clear_instances,
6fab7b8f 262 .config_get = NULL,
035a1078 263 .config_set = config_set,
a1c743fc 264 .config_list = config_list,
aa2af324
UH
265 .dev_open = hw_dev_open,
266 .dev_close = hw_dev_close,
aa2af324
UH
267 .dev_acquisition_start = hw_dev_acquisition_start,
268 .dev_acquisition_stop = hw_dev_acquisition_stop,
269 .priv = NULL,
270};