]> sigrok.org Git - libsigrok.git/blame - src/hardware/teleinfo/api.c
Consistently use g_malloc0() for allocating devc.
[libsigrok.git] / src / hardware / teleinfo / api.c
CommitLineData
8e796cb4
AJ
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Aurelien Jacobs <aurel@gnuage.org>
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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
5542bee6
AJ
20#include <stdlib.h>
21#include <glib.h>
22#include "libsigrok.h"
23#include "libsigrok-internal.h"
8e796cb4
AJ
24#include "protocol.h"
25
a0e0bb41 26static const uint32_t scanopts[] = {
5542bee6
AJ
27 SR_CONF_CONN,
28 SR_CONF_SERIALCOMM,
29};
30
f254bc4b 31static const uint32_t devopts[] = {
5542bee6 32 SR_CONF_ENERGYMETER,
5542bee6 33 SR_CONF_CONTINUOUS,
5827f61b
BV
34 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
35 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
5542bee6
AJ
36};
37
8e796cb4
AJ
38SR_PRIV struct sr_dev_driver teleinfo_driver_info;
39static struct sr_dev_driver *di = &teleinfo_driver_info;
40
41static int init(struct sr_context *sr_ctx)
42{
43 return std_init(sr_ctx, di, LOG_PREFIX);
44}
45
46static GSList *scan(GSList *options)
47{
48 struct drv_context *drvc;
5542bee6
AJ
49 struct dev_context *devc;
50 struct sr_serial_dev_inst *serial;
51 struct sr_dev_inst *sdi;
ba7dd8bb 52 struct sr_channel *ch;
5542bee6
AJ
53 GSList *devices = NULL, *l;
54 const char *conn = NULL, *serialcomm = NULL;
55 uint8_t buf[292];
dafafb0e
UH
56 size_t len;
57 struct sr_config *src;
58
59 len = sizeof(buf);
5542bee6
AJ
60
61 for (l = options; l; l = l->next) {
dafafb0e 62 src = l->data;
5542bee6
AJ
63 switch (src->key) {
64 case SR_CONF_CONN:
65 conn = g_variant_get_string(src->data, NULL);
66 break;
67 case SR_CONF_SERIALCOMM:
68 serialcomm = g_variant_get_string(src->data, NULL);
69 break;
70 }
71 }
72 if (!conn)
73 return NULL;
74 if (!serialcomm)
75 serialcomm = "1200/7e1";
76
77 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
78 return NULL;
9333691a 79 if (serial_open(serial, SERIAL_RDONLY) != SR_OK)
5542bee6 80 return NULL;
8e796cb4 81
5542bee6 82 sr_info("Probing serial port %s.", conn);
8e796cb4 83
8e796cb4
AJ
84 drvc = di->priv;
85 drvc->instances = NULL;
5542bee6
AJ
86 serial_flush(serial);
87
88 /* Let's get a bit of data and see if we can find a packet. */
89 if (serial_stream_detect(serial, buf, &len, len,
90 teleinfo_packet_valid, 3000, 1200) != SR_OK)
91 goto scan_cleanup;
92
93 sr_info("Found device on port %s.", conn);
94
aac29cc1 95 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
96 sdi->status = SR_ST_INACTIVE;
97 sdi->vendor = g_strdup("EDF");
98 sdi->model = g_strdup("Teleinfo");
f57d8ffe 99 devc = g_malloc0(sizeof(struct dev_context));
5542bee6 100 devc->optarif = teleinfo_get_optarif(buf);
5542bee6
AJ
101 sdi->inst_type = SR_INST_SERIAL;
102 sdi->conn = serial;
103 sdi->priv = devc;
104 sdi->driver = di;
105
3f239f08 106 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P")))
5542bee6 107 goto scan_cleanup;
ba7dd8bb 108 sdi->channels = g_slist_append(sdi->channels, ch);
5542bee6
AJ
109
110 if (devc->optarif == OPTARIF_BASE) {
3f239f08 111 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "BASE")))
5542bee6 112 goto scan_cleanup;
ba7dd8bb 113 sdi->channels = g_slist_append(sdi->channels, ch);
5542bee6 114 } else if (devc->optarif == OPTARIF_HC) {
3f239f08 115 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HP")))
5542bee6 116 goto scan_cleanup;
ba7dd8bb 117 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 118 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HC")))
5542bee6 119 goto scan_cleanup;
ba7dd8bb 120 sdi->channels = g_slist_append(sdi->channels, ch);
5542bee6 121 } else if (devc->optarif == OPTARIF_EJP) {
3f239f08 122 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HN")))
5542bee6 123 goto scan_cleanup;
ba7dd8bb 124 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 125 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HPM")))
5542bee6 126 goto scan_cleanup;
ba7dd8bb 127 sdi->channels = g_slist_append(sdi->channels, ch);
5542bee6 128 } else if (devc->optarif == OPTARIF_BBR) {
3f239f08 129 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HPJB")))
5542bee6 130 goto scan_cleanup;
ba7dd8bb 131 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 132 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HPJW")))
5542bee6 133 goto scan_cleanup;
ba7dd8bb 134 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 135 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HPJR")))
5542bee6 136 goto scan_cleanup;
ba7dd8bb 137 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 138 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HCJB")))
5542bee6 139 goto scan_cleanup;
ba7dd8bb 140 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 141 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HCJW")))
5542bee6 142 goto scan_cleanup;
ba7dd8bb 143 sdi->channels = g_slist_append(sdi->channels, ch);
3f239f08 144 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "HCJR")))
5542bee6 145 goto scan_cleanup;
ba7dd8bb 146 sdi->channels = g_slist_append(sdi->channels, ch);
5542bee6
AJ
147 }
148
3f239f08 149 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "IINST")))
5542bee6 150 goto scan_cleanup;
ba7dd8bb 151 sdi->channels = g_slist_append(sdi->channels, ch);
8e796cb4 152
3f239f08 153 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "PAPP")))
5542bee6 154 goto scan_cleanup;
ba7dd8bb 155 sdi->channels = g_slist_append(sdi->channels, ch);
5542bee6
AJ
156
157 drvc->instances = g_slist_append(drvc->instances, sdi);
158 devices = g_slist_append(devices, sdi);
159
160scan_cleanup:
161 serial_close(serial);
8e796cb4
AJ
162
163 return devices;
164}
165
166static GSList *dev_list(void)
167{
168 return ((struct drv_context *)(di->priv))->instances;
169}
170
8e796cb4
AJ
171static int cleanup(void)
172{
a6630742 173 return std_dev_clear(di, NULL);
8e796cb4
AJ
174}
175
584560f1 176static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 177 const struct sr_channel_group *cg)
8e796cb4 178{
5542bee6 179 struct dev_context *devc;
8e796cb4 180
53b4680f 181 (void)cg;
d3c74a6f 182
8e796cb4
AJ
183 if (sdi->status != SR_ST_ACTIVE)
184 return SR_ERR_DEV_CLOSED;
185
5542bee6
AJ
186 if (!(devc = sdi->priv)) {
187 sr_err("sdi->priv was NULL.");
188 return SR_ERR_BUG;
189 }
190
8e796cb4 191 switch (key) {
5542bee6
AJ
192 case SR_CONF_LIMIT_SAMPLES:
193 devc->limit_samples = g_variant_get_uint64(data);
194 sr_dbg("Setting sample limit to %" PRIu64 ".", devc->limit_samples);
195 break;
196 case SR_CONF_LIMIT_MSEC:
197 devc->limit_msec = g_variant_get_uint64(data);
198 sr_dbg("Setting time limit to %" PRIu64 "ms.", devc->limit_msec);
199 break;
8e796cb4 200 default:
5542bee6 201 return SR_ERR_NA;
8e796cb4
AJ
202 }
203
5542bee6 204 return SR_OK;
8e796cb4
AJ
205}
206
584560f1 207static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 208 const struct sr_channel_group *cg)
8e796cb4 209{
8e796cb4 210 (void)sdi;
53b4680f 211 (void)cg;
8e796cb4 212
8e796cb4 213 switch (key) {
5542bee6 214 case SR_CONF_SCAN_OPTIONS:
584560f1 215 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 216 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
5542bee6
AJ
217 break;
218 case SR_CONF_DEVICE_OPTIONS:
584560f1 219 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 220 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
5542bee6 221 break;
8e796cb4
AJ
222 default:
223 return SR_ERR_NA;
224 }
225
5542bee6 226 return SR_OK;
8e796cb4
AJ
227}
228
5542bee6 229static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
8e796cb4 230{
5542bee6
AJ
231 struct sr_serial_dev_inst *serial = sdi->conn;
232 struct dev_context *devc;
8e796cb4
AJ
233
234 if (sdi->status != SR_ST_ACTIVE)
235 return SR_ERR_DEV_CLOSED;
236
5542bee6
AJ
237 if (!(devc = sdi->priv)) {
238 sr_err("sdi->priv was NULL.");
239 return SR_ERR_BUG;
240 }
8e796cb4 241
5542bee6 242 devc->session_cb_data = cb_data;
8e796cb4 243
5542bee6
AJ
244 /*
245 * Reset the number of samples to take. If we've already collected our
246 * quota, but we start a new session, and don't reset this, we'll just
247 * quit without acquiring any new samples.
248 */
249 devc->num_samples = 0;
250 devc->start_time = g_get_monotonic_time();
8e796cb4 251
5542bee6
AJ
252 /* Send header packet to the session bus. */
253 std_session_send_df_header(cb_data, LOG_PREFIX);
8e796cb4 254
5542bee6 255 /* Poll every 50ms, or whenever some data comes in. */
102f1239
BV
256 serial_source_add(sdi->session, serial, G_IO_IN, 50,
257 teleinfo_receive_data, (void *)sdi);
8e796cb4
AJ
258
259 return SR_OK;
260}
261
5542bee6
AJ
262static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
263{
dafafb0e
UH
264 return std_serial_dev_acquisition_stop(sdi, cb_data,
265 std_serial_dev_close, sdi->conn, LOG_PREFIX);
5542bee6
AJ
266}
267
8e796cb4
AJ
268SR_PRIV struct sr_dev_driver teleinfo_driver_info = {
269 .name = "teleinfo",
270 .longname = "Teleinfo",
271 .api_version = 1,
272 .init = init,
273 .cleanup = cleanup,
274 .scan = scan,
275 .dev_list = dev_list,
a6630742 276 .dev_clear = NULL,
dafafb0e 277 .config_get = NULL,
8e796cb4
AJ
278 .config_set = config_set,
279 .config_list = config_list,
854434de 280 .dev_open = std_serial_dev_open,
bf2c987f 281 .dev_close = std_serial_dev_close,
8e796cb4
AJ
282 .dev_acquisition_start = dev_acquisition_start,
283 .dev_acquisition_stop = dev_acquisition_stop,
dafafb0e 284 .priv = NULL,
8e796cb4 285};