]> sigrok.org Git - libsigrok.git/blame - hardware/tondaj-sl-814/api.c
zeroplus: Properly set inst_type to SR_INST_USB.
[libsigrok.git] / hardware / tondaj-sl-814 / api.c
CommitLineData
aa2af324 1/*
50985c20 2 * This file is part of the libsigrok project.
aa2af324
UH
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
aa2af324
UH
43static int clear_instances(void)
44{
0bdb4f2e 45 return std_dev_clear(di, NULL);
aa2af324
UH
46}
47
34f06b90 48static int hw_init(struct sr_context *sr_ctx)
aa2af324 49{
29a27196 50 return std_hw_init(sr_ctx, di, LOG_PREFIX);
aa2af324
UH
51}
52
53static GSList *hw_scan(GSList *options)
54{
55 struct drv_context *drvc;
c073af80
UH
56 struct dev_context *devc;
57 struct sr_dev_inst *sdi;
1987b8d6 58 struct sr_config *src;
c073af80
UH
59 struct sr_probe *probe;
60 GSList *devices, *l;
61 const char *conn, *serialcomm;
a5e44c32 62 struct sr_serial_dev_inst *serial;
aa2af324 63
aa2af324
UH
64 drvc = di->priv;
65 drvc->instances = NULL;
66
4b97c74e
UH
67 devices = NULL;
68
c073af80
UH
69 conn = serialcomm = NULL;
70 for (l = options; l; l = l->next) {
1987b8d6 71 if (!(src = l->data)) {
c073af80
UH
72 sr_err("Invalid option data, skipping.");
73 continue;
74 }
1987b8d6 75 switch (src->key) {
1953564a 76 case SR_CONF_CONN:
afdf6d6a 77 conn = g_variant_get_string(src->data, NULL);
c073af80 78 break;
1953564a 79 case SR_CONF_SERIALCOMM:
06c45a66 80 serialcomm = g_variant_get_string(src->data, NULL);
c073af80
UH
81 break;
82 default:
1987b8d6 83 sr_err("Unknown option %d, skipping.", src->key);
c073af80
UH
84 break;
85 }
86 }
80bc6632 87 if (!conn)
c073af80 88 return NULL;
19ee7dff
BV
89 if (!serialcomm)
90 serialcomm = SERIALCOMM;
c073af80
UH
91
92 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Tondaj",
93 "SL-814", NULL))) {
94 sr_err("Failed to create device instance.");
95 return NULL;
96 }
97
98 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
99 sr_err("Device context malloc failed.");
100 return NULL;
101 }
102
a5e44c32 103 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
19ee7dff 104 return NULL;
c073af80 105
a5e44c32 106 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 107 return NULL;
19ee7dff 108
a5e44c32
UH
109 sdi->inst_type = SR_INST_SERIAL;
110 sdi->conn = serial;
111
c073af80
UH
112 sdi->priv = devc;
113 sdi->driver = di;
6b8d6f93 114 probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1");
c073af80
UH
115 if (!probe) {
116 sr_err("Failed to create probe.");
117 return NULL;
118 }
119 sdi->probes = g_slist_append(sdi->probes, probe);
120 drvc->instances = g_slist_append(drvc->instances, sdi);
121 devices = g_slist_append(devices, sdi);
aa2af324
UH
122
123 return devices;
124}
125
126static GSList *hw_dev_list(void)
127{
0e94d524 128 return ((struct drv_context *)(di->priv))->instances;
aa2af324
UH
129}
130
131static int hw_dev_open(struct sr_dev_inst *sdi)
132{
a5e44c32 133 struct sr_serial_dev_inst *serial;
c073af80 134
a5e44c32
UH
135 serial = sdi->conn;
136 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 137 return SR_ERR;
c073af80
UH
138
139 sdi->status = SR_ST_ACTIVE;
aa2af324
UH
140
141 return SR_OK;
142}
143
144static int hw_dev_close(struct sr_dev_inst *sdi)
145{
a5e44c32 146 struct sr_serial_dev_inst *serial;
c073af80 147
a5e44c32
UH
148 serial = sdi->conn;
149 if (serial && serial->fd != -1) {
150 serial_close(serial);
19ee7dff 151 sdi->status = SR_ST_INACTIVE;
c073af80
UH
152 }
153
aa2af324
UH
154 return SR_OK;
155}
156
157static int hw_cleanup(void)
158{
0bdb4f2e 159 return clear_instances();
aa2af324
UH
160}
161
afdf6d6a 162static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
aa2af324 163{
c073af80 164 struct dev_context *devc;
aa2af324 165
e73ffd42
BV
166 if (sdi->status != SR_ST_ACTIVE)
167 return SR_ERR_DEV_CLOSED;
aa2af324 168
c073af80
UH
169 devc = sdi->priv;
170
035a1078 171 switch (id) {
1953564a 172 case SR_CONF_LIMIT_SAMPLES:
afdf6d6a 173 devc->limit_samples = g_variant_get_uint64(data);
c073af80
UH
174 sr_dbg("Setting sample limit to %" PRIu64 ".",
175 devc->limit_samples);
176 break;
aa2af324 177 default:
bd6fbf62 178 return SR_ERR_NA;
aa2af324
UH
179 }
180
c073af80 181 return SR_OK;
aa2af324
UH
182}
183
afdf6d6a 184static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc
BV
185{
186
187 (void)sdi;
188
189 switch (key) {
0d485e30 190 case SR_CONF_SCAN_OPTIONS:
afdf6d6a
BV
191 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
192 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
0d485e30 193 break;
9a6517d1 194 case SR_CONF_DEVICE_OPTIONS:
afdf6d6a
BV
195 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
196 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
9a6517d1 197 break;
a1c743fc 198 default:
bd6fbf62 199 return SR_ERR_NA;
a1c743fc
BV
200 }
201
202 return SR_OK;
203}
204
aa2af324
UH
205static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
206 void *cb_data)
207{
c073af80 208 struct dev_context *devc;
a5e44c32 209 struct sr_serial_dev_inst *serial;
c073af80 210
e73ffd42
BV
211 if (sdi->status != SR_ST_ACTIVE)
212 return SR_ERR_DEV_CLOSED;
213
c073af80
UH
214 devc = sdi->priv;
215 devc->cb_data = cb_data;
216
217 /* Send header packet to the session bus. */
29a27196 218 std_session_send_df_header(cb_data, LOG_PREFIX);
c073af80 219
c073af80 220 /* Poll every 500ms, or whenever some data comes in. */
a5e44c32
UH
221 serial = sdi->conn;
222 sr_source_add(serial->fd, G_IO_IN, 500,
c073af80 223 tondaj_sl_814_receive_data, (void *)sdi);
aa2af324
UH
224
225 return SR_OK;
226}
227
c073af80 228static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
aa2af324 229{
cd2f0fe2 230 return std_hw_dev_acquisition_stop_serial(sdi, cb_data, hw_dev_close,
29a27196 231 sdi->conn, LOG_PREFIX);
aa2af324
UH
232}
233
234SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info = {
235 .name = "tondaj-sl-814",
236 .longname = "Tondaj SL-814",
237 .api_version = 1,
238 .init = hw_init,
239 .cleanup = hw_cleanup,
240 .scan = hw_scan,
241 .dev_list = hw_dev_list,
242 .dev_clear = clear_instances,
6fab7b8f 243 .config_get = NULL,
035a1078 244 .config_set = config_set,
a1c743fc 245 .config_list = config_list,
aa2af324
UH
246 .dev_open = hw_dev_open,
247 .dev_close = hw_dev_close,
aa2af324
UH
248 .dev_acquisition_start = hw_dev_acquisition_start,
249 .dev_acquisition_stop = hw_dev_acquisition_stop,
250 .priv = NULL,
251};