]> sigrok.org Git - libsigrok.git/blame - hardware/center-3xx/api.c
std: Add std_serial_dev_open().
[libsigrok.git] / hardware / center-3xx / api.c
CommitLineData
4433145f
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 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
21#include "protocol.h"
22
4a8bbed7
UH
23static const int32_t hwopts[] = {
24 SR_CONF_CONN,
25 SR_CONF_SERIALCOMM,
26};
27
28static const int32_t hwcaps[] = {
29 SR_CONF_THERMOMETER,
30 SR_CONF_LIMIT_SAMPLES,
31 SR_CONF_LIMIT_MSEC,
32 SR_CONF_CONTINUOUS,
33};
34
35static const char *probe_names[] = {
36 "T1", "T2", "T3", "T4",
37 NULL,
38};
39
40SR_PRIV struct sr_dev_driver center_309_driver_info;
41SR_PRIV struct sr_dev_driver voltcraft_k204_driver_info;
42
43SR_PRIV const struct center_dev_info center_devs[] = {
44 {
45 "Center", "309", "9600/8n1", 4, 32000, 45,
46 center_3xx_packet_valid,
47 &center_309_driver_info, receive_data_CENTER_309,
48 },
49 {
50 "Voltcraft", "K204", "9600/8n1", 4, 32000, 45,
51 center_3xx_packet_valid,
52 &voltcraft_k204_driver_info, receive_data_VOLTCRAFT_K204,
53 },
54};
4433145f 55
4a8bbed7 56static int dev_clear(int idx)
4433145f 57{
4a8bbed7 58 return std_dev_clear(center_devs[idx].di, NULL);
4433145f
UH
59}
60
4a8bbed7 61static int init(struct sr_context *sr_ctx, int idx)
4433145f 62{
4a8bbed7
UH
63 sr_dbg("Selected '%s' subdriver.", center_devs[idx].di->name);
64
65 return std_init(sr_ctx, center_devs[idx].di, LOG_PREFIX);
66}
67
68static GSList *center_scan(const char *conn, const char *serialcomm, int idx)
69{
70 int i;
71 struct sr_dev_inst *sdi;
4433145f 72 struct drv_context *drvc;
4a8bbed7
UH
73 struct dev_context *devc;
74 struct sr_probe *probe;
75 struct sr_serial_dev_inst *serial;
4433145f
UH
76 GSList *devices;
77
4a8bbed7
UH
78 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
79 return NULL;
80
81 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
82 return NULL;
4433145f 83
4a8bbed7 84 drvc = center_devs[idx].di->priv;
4433145f 85 devices = NULL;
4a8bbed7
UH
86 serial_flush(serial);
87
88 sr_info("Found device on port %s.", conn);
89
90 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, center_devs[idx].vendor,
91 center_devs[idx].device, NULL)))
92 goto scan_cleanup;
93
94 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
95 sr_err("Device context malloc failed.");
96 goto scan_cleanup;
97 }
98
99 sdi->inst_type = SR_INST_SERIAL;
100 sdi->conn = serial;
101
102 sdi->priv = devc;
103 sdi->driver = center_devs[idx].di;
104
105 for (i = 0; i < center_devs[idx].num_channels; i++) {
106 if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG,
107 TRUE, probe_names[i])))
108 goto scan_cleanup;
109 sdi->probes = g_slist_append(sdi->probes, probe);
110 }
111
112 drvc->instances = g_slist_append(drvc->instances, sdi);
113 devices = g_slist_append(devices, sdi);
114
115scan_cleanup:
116 serial_close(serial);
4433145f
UH
117
118 return devices;
119}
120
4a8bbed7 121static GSList *scan(GSList *options, int idx)
4433145f 122{
4a8bbed7
UH
123 struct sr_config *src;
124 GSList *l, *devices;
125 const char *conn, *serialcomm;
126
127 conn = serialcomm = NULL;
128 for (l = options; l; l = l->next) {
129 src = l->data;
130 switch (src->key) {
131 case SR_CONF_CONN:
132 conn = g_variant_get_string(src->data, NULL);
133 break;
134 case SR_CONF_SERIALCOMM:
135 serialcomm = g_variant_get_string(src->data, NULL);
136 break;
137 }
138 }
139 if (!conn)
140 return NULL;
141
142 if (serialcomm) {
143 /* Use the provided comm specs. */
144 devices = center_scan(conn, serialcomm, idx);
145 } else {
146 /* Try the default. */
147 devices = center_scan(conn, center_devs[idx].conn, idx);
148 }
149
150 return devices;
4433145f
UH
151}
152
4a8bbed7 153static GSList *dev_list(int idx)
4433145f 154{
4a8bbed7 155 return ((struct drv_context *)(center_devs[idx].di->priv))->instances;
4433145f
UH
156}
157
158static int dev_open(struct sr_dev_inst *sdi)
159{
4a8bbed7
UH
160 struct sr_serial_dev_inst *serial;
161
162 serial = sdi->conn;
163 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
164 return SR_ERR;
4433145f
UH
165
166 sdi->status = SR_ST_ACTIVE;
167
168 return SR_OK;
169}
170
4a8bbed7 171static int cleanup(int idx)
4433145f 172{
4a8bbed7 173 return dev_clear(idx);
4433145f
UH
174}
175
d3c74a6f
BV
176static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
177 const struct sr_probe_group *probe_group)
4433145f 178{
4a8bbed7 179 struct dev_context *devc;
4433145f 180
d3c74a6f
BV
181 (void)probe_group;
182
4433145f
UH
183 if (sdi->status != SR_ST_ACTIVE)
184 return SR_ERR_DEV_CLOSED;
185
4a8bbed7
UH
186 devc = sdi->priv;
187
188 switch (id) {
189 case SR_CONF_LIMIT_SAMPLES:
190 if (g_variant_get_uint64(data) == 0)
191 return SR_ERR_ARG;
192 devc->limit_samples = g_variant_get_uint64(data);
193 break;
194 case SR_CONF_LIMIT_MSEC:
195 if (g_variant_get_uint64(data) == 0)
196 return SR_ERR_ARG;
197 devc->limit_msec = g_variant_get_uint64(data);
198 break;
4433145f 199 default:
4a8bbed7 200 return SR_ERR_NA;
4433145f
UH
201 }
202
4a8bbed7 203 return SR_OK;
4433145f
UH
204}
205
d3c74a6f
BV
206static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
207 const struct sr_probe_group *probe_group)
4433145f 208{
4433145f 209 (void)sdi;
d3c74a6f 210 (void)probe_group;
4433145f 211
4433145f 212 switch (key) {
4a8bbed7
UH
213 case SR_CONF_SCAN_OPTIONS:
214 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
215 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
216 break;
217 case SR_CONF_DEVICE_OPTIONS:
218 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
219 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
220 break;
4433145f
UH
221 default:
222 return SR_ERR_NA;
223 }
224
4a8bbed7 225 return SR_OK;
4433145f
UH
226}
227
228static int dev_acquisition_start(const struct sr_dev_inst *sdi,
4a8bbed7 229 void *cb_data, int idx)
4433145f 230{
4a8bbed7
UH
231 struct dev_context *devc;
232 struct sr_serial_dev_inst *serial;
4433145f
UH
233
234 if (sdi->status != SR_ST_ACTIVE)
235 return SR_ERR_DEV_CLOSED;
236
4a8bbed7
UH
237 devc = sdi->priv;
238 devc->cb_data = cb_data;
239 devc->num_samples = 0;
240 devc->starttime = g_get_monotonic_time();
241
242 /* Send header packet to the session bus. */
243 std_session_send_df_header(cb_data, LOG_PREFIX);
244
245 /* Poll every 500ms, or whenever some data comes in. */
246 serial = sdi->conn;
abc4b335 247 serial_source_add(serial, G_IO_IN, 500,
4a8bbed7
UH
248 center_devs[idx].receive_data, (void *)sdi);
249
4433145f
UH
250 return SR_OK;
251}
252
253static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
254{
d43b0908
BV
255 return std_serial_dev_acquisition_stop(sdi, cb_data,
256 std_serial_dev_close, sdi->conn, LOG_PREFIX);
4433145f
UH
257}
258
4a8bbed7
UH
259/* Driver-specific API function wrappers */
260#define HW_INIT(X) \
261static int init_##X(struct sr_context *sr_ctx) { return init(sr_ctx, X); }
262#define HW_CLEANUP(X) \
263static int cleanup_##X(void) { return cleanup(X); }
264#define HW_SCAN(X) \
265static GSList *scan_##X(GSList *options) { return scan(options, X); }
266#define HW_DEV_LIST(X) \
267static GSList *dev_list_##X(void) { return dev_list(X); }
268#define HW_DEV_CLEAR(X) \
269static int dev_clear_##X(void) { return dev_clear(X); }
270#define HW_DEV_ACQUISITION_START(X) \
271static int dev_acquisition_start_##X(const struct sr_dev_inst *sdi, \
272void *cb_data) { return dev_acquisition_start(sdi, cb_data, X); }
273
274/* Driver structs and API function wrappers */
275#define DRV(ID, ID_UPPER, NAME, LONGNAME) \
276HW_INIT(ID_UPPER) \
277HW_CLEANUP(ID_UPPER) \
278HW_SCAN(ID_UPPER) \
279HW_DEV_LIST(ID_UPPER) \
280HW_DEV_CLEAR(ID_UPPER) \
281HW_DEV_ACQUISITION_START(ID_UPPER) \
282SR_PRIV struct sr_dev_driver ID##_driver_info = { \
283 .name = NAME, \
284 .longname = LONGNAME, \
285 .api_version = 1, \
286 .init = init_##ID_UPPER, \
287 .cleanup = cleanup_##ID_UPPER, \
288 .scan = scan_##ID_UPPER, \
289 .dev_list = dev_list_##ID_UPPER, \
290 .dev_clear = dev_clear_##ID_UPPER, \
291 .config_get = NULL, \
292 .config_set = config_set, \
293 .config_list = config_list, \
294 .dev_open = dev_open, \
bf2c987f 295 .dev_close = std_serial_dev_close, \
4a8bbed7
UH
296 .dev_acquisition_start = dev_acquisition_start_##ID_UPPER, \
297 .dev_acquisition_stop = dev_acquisition_stop, \
298 .priv = NULL, \
4433145f 299};
4a8bbed7
UH
300
301DRV(center_309, CENTER_309, "center-309", "Center 309")
302DRV(voltcraft_k204, VOLTCRAFT_K204, "voltcraft-k204", "Voltcraft K204")