]> sigrok.org Git - libsigrok.git/blob - hardware/tondaj-sl-814/api.c
hw_init(): Save struct sr_context * parameter in struct drv_context
[libsigrok.git] / hardware / tondaj-sl-814 / api.c
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
21 #include <fcntl.h>
22 #include <glib.h>
23 #include "libsigrok.h"
24 #include "libsigrok-internal.h"
25 #include "protocol.h"
26
27 #define SERIALCOMM "9600/8e1"
28
29 static const int hwopts[] = {
30         SR_HWOPT_CONN,
31         SR_HWOPT_SERIALCOMM,
32         0,
33 };
34
35 static const int hwcaps[] = {
36         SR_HWCAP_SOUNDLEVELMETER,
37         SR_HWCAP_LIMIT_SAMPLES,
38         SR_HWCAP_CONTINUOUS,
39         0,
40 };
41
42 static const char *probe_names[] = {
43         "P1",
44         NULL,
45 };
46
47 SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info;
48 static struct sr_dev_driver *di = &tondaj_sl_814_driver_info;
49
50 /* Properly close and free all devices. */
51 static int clear_instances(void)
52 {
53         struct sr_dev_inst *sdi;
54         struct drv_context *drvc;
55         struct dev_context *devc;
56         GSList *l;
57
58         if (!(drvc = di->priv))
59                 return SR_OK;
60
61         for (l = drvc->instances; l; l = l->next) {
62                 if (!(sdi = l->data))
63                         continue;
64                 if (!(devc = sdi->priv))
65                         continue;
66                 sr_serial_dev_inst_free(devc->serial);
67                 sr_dev_inst_free(sdi);
68         }
69
70         g_slist_free(drvc->instances);
71         drvc->instances = NULL;
72
73         return SR_OK;
74 }
75
76 static int hw_init(struct sr_context *sr_ctx)
77 {
78         struct drv_context *drvc;
79
80         if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
81                 sr_err("Driver context malloc failed.");
82                 return SR_ERR_MALLOC;
83         }
84
85         drvc->sr_ctx = sr_ctx;
86         di->priv = drvc;
87
88         return SR_OK;
89 }
90
91 static GSList *hw_scan(GSList *options)
92 {
93         struct drv_context *drvc;
94         struct dev_context *devc;
95         struct sr_dev_inst *sdi;
96         struct sr_hwopt *opt;
97         struct sr_probe *probe;
98         GSList *devices, *l;
99         const char *conn, *serialcomm;
100
101         devices = NULL;
102         drvc = di->priv;
103         drvc->instances = NULL;
104
105         conn = serialcomm = NULL;
106         for (l = options; l; l = l->next) {
107                 if (!(opt = l->data)) {
108                         sr_err("Invalid option data, skipping.");
109                         continue;
110                 }
111                 switch (opt->hwopt) {
112                 case SR_HWOPT_CONN:
113                         conn = opt->value;
114                         break;
115                 case SR_HWOPT_SERIALCOMM:
116                         serialcomm = opt->value;
117                         break;
118                 default:
119                         sr_err("Unknown option %d, skipping.", opt->hwopt);
120                         break;
121                 }
122         }
123         if (!conn) {
124                 sr_dbg("Couldn't determine connection options.");
125                 return NULL;
126         }
127         if (!serialcomm)
128                 serialcomm = SERIALCOMM;
129
130         if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Tondaj",
131                                     "SL-814", NULL))) {
132                 sr_err("Failed to create device instance.");
133                 return NULL;
134         }
135
136         if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
137                 sr_err("Device context malloc failed.");
138                 return NULL;
139         }
140
141         if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm)))
142                 return NULL;
143
144         if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
145                 return NULL;
146
147         sdi->priv = devc;
148         sdi->driver = di;
149         probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, probe_names[0]);
150         if (!probe) {
151                 sr_err("Failed to create probe.");
152                 return NULL;
153         }
154         sdi->probes = g_slist_append(sdi->probes, probe);
155         drvc->instances = g_slist_append(drvc->instances, sdi);
156         devices = g_slist_append(devices, sdi);
157
158         return devices;
159 }
160
161 static GSList *hw_dev_list(void)
162 {
163         struct drv_context *drvc;
164
165         drvc = di->priv;
166
167         return drvc->instances;
168 }
169
170 static int hw_dev_open(struct sr_dev_inst *sdi)
171 {
172         struct dev_context *devc;
173
174         devc = sdi->priv;
175
176         if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
177                 return SR_ERR;
178
179         sdi->status = SR_ST_ACTIVE;
180
181         return SR_OK;
182 }
183
184 static int hw_dev_close(struct sr_dev_inst *sdi)
185 {
186         struct dev_context *devc;
187
188         devc = sdi->priv;
189
190         if (devc->serial && devc->serial->fd != -1) {
191                 serial_close(devc->serial);
192                 sdi->status = SR_ST_INACTIVE;
193         }
194
195         return SR_OK;
196 }
197
198 static int hw_cleanup(void)
199 {
200         clear_instances();
201
202         return SR_OK;
203 }
204
205 static int hw_info_get(int info_id, const void **data,
206                        const struct sr_dev_inst *sdi)
207 {
208         (void)sdi;
209
210         switch (info_id) {
211         case SR_DI_HWOPTS:
212                 *data = hwopts;
213                 break;
214         case SR_DI_HWCAPS:
215                 *data = hwcaps;
216                 break;
217         case SR_DI_NUM_PROBES:
218                 *data = GINT_TO_POINTER(1);
219                 break;
220         case SR_DI_PROBE_NAMES:
221                 *data = probe_names;
222                 break;
223         default:
224                 sr_err("Unknown info_id: %d.", info_id);
225                 return SR_ERR_ARG;
226         }
227
228         return SR_OK;
229 }
230
231 static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
232                              const void *value)
233 {
234         struct dev_context *devc;
235
236         if (sdi->status != SR_ST_ACTIVE) {
237                 sr_err("Device inactive, can't set config options.");
238                 return SR_ERR;
239         }
240
241         devc = sdi->priv;
242
243         switch (hwcap) {
244         case SR_HWCAP_LIMIT_SAMPLES:
245                 devc->limit_samples = *(const uint64_t *)value;
246                 sr_dbg("Setting sample limit to %" PRIu64 ".",
247                        devc->limit_samples);
248                 break;
249         default:
250                 sr_err("Unknown hardware capability: %d.", hwcap);
251                 return SR_ERR_ARG;
252         }
253
254         return SR_OK;
255 }
256
257 static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
258                                     void *cb_data)
259 {
260         struct sr_datafeed_packet packet;
261         struct sr_datafeed_header header;
262         struct sr_datafeed_meta_analog meta;
263         struct dev_context *devc;
264
265         devc = sdi->priv;
266         devc->cb_data = cb_data;
267
268         /* Send header packet to the session bus. */
269         sr_dbg("Sending SR_DF_HEADER.");
270         packet.type = SR_DF_HEADER;
271         packet.payload = (uint8_t *)&header;
272         header.feed_version = 1;
273         gettimeofday(&header.starttime, NULL);
274         sr_session_send(devc->cb_data, &packet);
275
276         /* Send metadata about the SR_DF_ANALOG packets to come. */
277         sr_dbg("Sending SR_DF_META_ANALOG.");
278         packet.type = SR_DF_META_ANALOG;
279         packet.payload = &meta;
280         meta.num_probes = 1;
281         sr_session_send(devc->cb_data, &packet);
282
283         /* Poll every 500ms, or whenever some data comes in. */
284         sr_source_add(devc->serial->fd, G_IO_IN, 500,
285                       tondaj_sl_814_receive_data, (void *)sdi);
286
287         return SR_OK;
288 }
289
290 static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
291 {
292         int ret, final_ret;
293         struct sr_datafeed_packet packet;
294         struct dev_context *devc;
295
296         final_ret = SR_OK;
297
298         if (sdi->status != SR_ST_ACTIVE) {
299                 sr_err("Device inactive, can't stop acquisition.");
300                 return SR_ERR;
301         }
302
303         devc = sdi->priv;
304
305         if ((ret = sr_source_remove(devc->serial->fd)) < 0) {
306                 sr_err("Error removing source: %d.", ret);
307                 final_ret = SR_ERR;
308         }
309         
310         if ((ret = hw_dev_close(sdi)) < 0) {
311                 sr_err("Error closing device: %d.", ret);
312                 final_ret = SR_ERR;
313         }
314
315         /* Send end packet to the session bus. */
316         sr_dbg("Sending SR_DF_END.");
317         packet.type = SR_DF_END;
318         sr_session_send(cb_data, &packet);
319
320         return final_ret;
321 }
322
323 SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info = {
324         .name = "tondaj-sl-814",
325         .longname = "Tondaj SL-814",
326         .api_version = 1,
327         .init = hw_init,
328         .cleanup = hw_cleanup,
329         .scan = hw_scan,
330         .dev_list = hw_dev_list,
331         .dev_clear = clear_instances,
332         .dev_open = hw_dev_open,
333         .dev_close = hw_dev_close,
334         .info_get = hw_info_get,
335         .dev_config_set = hw_dev_config_set,
336         .dev_acquisition_start = hw_dev_acquisition_start,
337         .dev_acquisition_stop = hw_dev_acquisition_stop,
338         .priv = NULL,
339 };