]> sigrok.org Git - libsigrok.git/blame - src/hardware/tondaj-sl-814/api.c
Change sr_dev_inst_new() to take no parameters.
[libsigrok.git] / src / 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
a0e0bb41 29static const uint32_t scanopts[] = {
1953564a
BV
30 SR_CONF_CONN,
31 SR_CONF_SERIALCOMM,
c073af80
UH
32};
33
f254bc4b 34static const uint32_t devopts[] = {
1953564a 35 SR_CONF_SOUNDLEVELMETER,
1953564a 36 SR_CONF_CONTINUOUS,
5827f61b 37 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
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
6078d2c9 43static int init(struct sr_context *sr_ctx)
aa2af324 44{
f6beaac5 45 return std_init(sr_ctx, di, LOG_PREFIX);
aa2af324
UH
46}
47
6078d2c9 48static GSList *scan(GSList *options)
aa2af324
UH
49{
50 struct drv_context *drvc;
c073af80
UH
51 struct dev_context *devc;
52 struct sr_dev_inst *sdi;
1987b8d6 53 struct sr_config *src;
ba7dd8bb 54 struct sr_channel *ch;
c073af80
UH
55 GSList *devices, *l;
56 const char *conn, *serialcomm;
a5e44c32 57 struct sr_serial_dev_inst *serial;
aa2af324 58
aa2af324
UH
59 drvc = di->priv;
60 drvc->instances = NULL;
61
4b97c74e
UH
62 devices = NULL;
63
c073af80
UH
64 conn = serialcomm = NULL;
65 for (l = options; l; l = l->next) {
1987b8d6 66 if (!(src = l->data)) {
c073af80
UH
67 sr_err("Invalid option data, skipping.");
68 continue;
69 }
1987b8d6 70 switch (src->key) {
1953564a 71 case SR_CONF_CONN:
afdf6d6a 72 conn = g_variant_get_string(src->data, NULL);
c073af80 73 break;
1953564a 74 case SR_CONF_SERIALCOMM:
06c45a66 75 serialcomm = g_variant_get_string(src->data, NULL);
c073af80
UH
76 break;
77 default:
1987b8d6 78 sr_err("Unknown option %d, skipping.", src->key);
c073af80
UH
79 break;
80 }
81 }
80bc6632 82 if (!conn)
c073af80 83 return NULL;
19ee7dff
BV
84 if (!serialcomm)
85 serialcomm = SERIALCOMM;
c073af80 86
0af636be
UH
87 sdi = sr_dev_inst_new();
88 sdi->status = SR_ST_INACTIVE;
89 sdi->vendor = g_strdup("Tondaj");
90 sdi->model = g_strdup("SL-814");
c073af80
UH
91
92 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
93 sr_err("Device context malloc failed.");
94 return NULL;
95 }
96
a5e44c32 97 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
19ee7dff 98 return NULL;
c073af80 99
7ef93fb0 100 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
c073af80 101 return NULL;
19ee7dff 102
a5e44c32
UH
103 sdi->inst_type = SR_INST_SERIAL;
104 sdi->conn = serial;
105
c073af80
UH
106 sdi->priv = devc;
107 sdi->driver = di;
3f239f08 108 ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1");
ba7dd8bb
UH
109 if (!ch) {
110 sr_err("Failed to create channel.");
c073af80
UH
111 return NULL;
112 }
ba7dd8bb 113 sdi->channels = g_slist_append(sdi->channels, ch);
c073af80
UH
114 drvc->instances = g_slist_append(drvc->instances, sdi);
115 devices = g_slist_append(devices, sdi);
aa2af324
UH
116
117 return devices;
118}
119
6078d2c9 120static GSList *dev_list(void)
aa2af324 121{
0e94d524 122 return ((struct drv_context *)(di->priv))->instances;
aa2af324
UH
123}
124
6078d2c9 125static int cleanup(void)
aa2af324 126{
a6630742 127 return std_dev_clear(di, NULL);
aa2af324
UH
128}
129
584560f1 130static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 131 const struct sr_channel_group *cg)
aa2af324 132{
c073af80 133 struct dev_context *devc;
aa2af324 134
53b4680f 135 (void)cg;
8f996b89 136
e73ffd42
BV
137 if (sdi->status != SR_ST_ACTIVE)
138 return SR_ERR_DEV_CLOSED;
aa2af324 139
c073af80
UH
140 devc = sdi->priv;
141
584560f1 142 switch (key) {
1953564a 143 case SR_CONF_LIMIT_SAMPLES:
afdf6d6a 144 devc->limit_samples = g_variant_get_uint64(data);
c073af80
UH
145 sr_dbg("Setting sample limit to %" PRIu64 ".",
146 devc->limit_samples);
147 break;
aa2af324 148 default:
bd6fbf62 149 return SR_ERR_NA;
aa2af324
UH
150 }
151
c073af80 152 return SR_OK;
aa2af324
UH
153}
154
584560f1 155static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 156 const struct sr_channel_group *cg)
a1c743fc 157{
a1c743fc 158 (void)sdi;
53b4680f 159 (void)cg;
a1c743fc
BV
160
161 switch (key) {
0d485e30 162 case SR_CONF_SCAN_OPTIONS:
584560f1 163 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 164 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 165 break;
9a6517d1 166 case SR_CONF_DEVICE_OPTIONS:
584560f1 167 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 168 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 169 break;
a1c743fc 170 default:
bd6fbf62 171 return SR_ERR_NA;
a1c743fc
BV
172 }
173
174 return SR_OK;
175}
176
6078d2c9 177static int dev_acquisition_start(const struct sr_dev_inst *sdi,
aa2af324
UH
178 void *cb_data)
179{
c073af80 180 struct dev_context *devc;
a5e44c32 181 struct sr_serial_dev_inst *serial;
c073af80 182
e73ffd42
BV
183 if (sdi->status != SR_ST_ACTIVE)
184 return SR_ERR_DEV_CLOSED;
185
c073af80
UH
186 devc = sdi->priv;
187 devc->cb_data = cb_data;
188
189 /* Send header packet to the session bus. */
29a27196 190 std_session_send_df_header(cb_data, LOG_PREFIX);
c073af80 191
c073af80 192 /* Poll every 500ms, or whenever some data comes in. */
a5e44c32 193 serial = sdi->conn;
102f1239 194 serial_source_add(sdi->session, serial, G_IO_IN, 500,
c073af80 195 tondaj_sl_814_receive_data, (void *)sdi);
aa2af324
UH
196
197 return SR_OK;
198}
199
6078d2c9 200static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
aa2af324 201{
d43b0908
BV
202 return std_serial_dev_acquisition_stop(sdi, cb_data, std_serial_dev_close,
203 sdi->conn, LOG_PREFIX);
aa2af324
UH
204}
205
206SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info = {
207 .name = "tondaj-sl-814",
208 .longname = "Tondaj SL-814",
209 .api_version = 1,
6078d2c9
UH
210 .init = init,
211 .cleanup = cleanup,
212 .scan = scan,
213 .dev_list = dev_list,
a6630742 214 .dev_clear = NULL,
6fab7b8f 215 .config_get = NULL,
035a1078 216 .config_set = config_set,
a1c743fc 217 .config_list = config_list,
854434de 218 .dev_open = std_serial_dev_open,
bf2c987f 219 .dev_close = std_serial_dev_close,
6078d2c9
UH
220 .dev_acquisition_start = dev_acquisition_start,
221 .dev_acquisition_stop = dev_acquisition_stop,
aa2af324
UH
222 .priv = NULL,
223};