]> sigrok.org Git - libsigrok.git/blame - src/hardware/mic-985xx/api.c
Put driver pointers into special section
[libsigrok.git] / src / hardware / mic-985xx / api.c
CommitLineData
7ec5b549
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
6ec6c43b 21#include <config.h>
7ec5b549
UH
22#include "protocol.h"
23
a0e0bb41 24static const uint32_t scanopts[] = {
0cd8e231
UH
25 SR_CONF_CONN,
26 SR_CONF_SERIALCOMM,
0cd8e231
UH
27};
28
e07edc83
UH
29static const uint32_t drvopts_temp[] = {
30 SR_CONF_THERMOMETER,
31};
32
33static const uint32_t drvopts_temp_hum[] = {
0cd8e231
UH
34 SR_CONF_THERMOMETER,
35 SR_CONF_HYGROMETER,
d6e1e6c4
UH
36};
37
38static const uint32_t devopts[] = {
e91bb0a6 39 SR_CONF_CONTINUOUS,
5827f61b
BV
40 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
41 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
0cd8e231 42};
7ec5b549 43
dd5c48a6
LPC
44static struct sr_dev_driver mic_98581_driver_info;
45static struct sr_dev_driver mic_98583_driver_info;
0cd8e231
UH
46
47SR_PRIV const struct mic_dev_info mic_devs[] = {
48 {
6f3e5335
UH
49 "MIC", "98581", "38400/8n2", 32000, TRUE, FALSE, 6,
50 packet_valid_temp,
51 &mic_98581_driver_info, receive_data_MIC_98581,
52 },
53 {
54 "MIC", "98583", "38400/8n2", 32000, TRUE, TRUE, 10,
55 packet_valid_temp_hum,
0cd8e231
UH
56 &mic_98583_driver_info, receive_data_MIC_98583,
57 },
58};
59
6078d2c9 60static GSList *mic_scan(const char *conn, const char *serialcomm, int idx)
7ec5b549 61{
0cd8e231 62 struct sr_dev_inst *sdi;
7ec5b549 63 struct drv_context *drvc;
0cd8e231 64 struct dev_context *devc;
0cd8e231 65 struct sr_serial_dev_inst *serial;
7ec5b549
UH
66 GSList *devices;
67
91219afc 68 serial = sr_serial_dev_inst_new(conn, serialcomm);
7ec5b549 69
51056d61 70 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
0cd8e231
UH
71 return NULL;
72
41812aca 73 drvc = mic_devs[idx].di->context;
7ec5b549 74 devices = NULL;
0cd8e231 75 serial_flush(serial);
7ec5b549 76
0cd8e231
UH
77 /* TODO: Query device type. */
78 // ret = mic_cmd_get_device_info(serial);
79
80 sr_info("Found device on port %s.", conn);
81
82 /* TODO: Fill in version from protocol response. */
aac29cc1 83 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
84 sdi->status = SR_ST_INACTIVE;
85 sdi->vendor = g_strdup(mic_devs[idx].vendor);
86 sdi->model = g_strdup(mic_devs[idx].device);
f57d8ffe 87 devc = g_malloc0(sizeof(struct dev_context));
301090aa 88 sr_sw_limits_init(&devc->limits);
886bd5e0
UH
89 sdi->inst_type = SR_INST_SERIAL;
90 sdi->conn = serial;
0cd8e231
UH
91 sdi->priv = devc;
92 sdi->driver = mic_devs[idx].di;
93
5e23fcab 94 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "Temperature");
0cd8e231 95
5e23fcab
ML
96 if (mic_devs[idx].has_humidity)
97 sr_channel_new(sdi, 1, SR_CHANNEL_ANALOG, TRUE, "Humidity");
0cd8e231
UH
98
99 drvc->instances = g_slist_append(drvc->instances, sdi);
100 devices = g_slist_append(devices, sdi);
101
0cd8e231 102 serial_close(serial);
7ec5b549
UH
103
104 return devices;
105}
106
6078d2c9 107static GSList *scan(GSList *options, int idx)
0cd8e231
UH
108{
109 struct sr_config *src;
110 GSList *l, *devices;
111 const char *conn, *serialcomm;
112
113 conn = serialcomm = NULL;
114 for (l = options; l; l = l->next) {
115 src = l->data;
116 switch (src->key) {
117 case SR_CONF_CONN:
2c2be401 118 conn = g_variant_get_string(src->data, NULL);
0cd8e231
UH
119 break;
120 case SR_CONF_SERIALCOMM:
06c45a66 121 serialcomm = g_variant_get_string(src->data, NULL);
0cd8e231
UH
122 break;
123 }
124 }
125 if (!conn)
126 return NULL;
127
128 if (serialcomm) {
129 /* Use the provided comm specs. */
6078d2c9 130 devices = mic_scan(conn, serialcomm, idx);
0cd8e231
UH
131 } else {
132 /* Try the default. */
6078d2c9 133 devices = mic_scan(conn, mic_devs[idx].conn, idx);
0cd8e231
UH
134 }
135
136 return devices;
137}
138
584560f1 139static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 140 const struct sr_channel_group *cg)
7ec5b549 141{
0cd8e231 142 struct dev_context *devc;
7ec5b549 143
53b4680f 144 (void)cg;
8f996b89 145
0cd8e231 146 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 147 return SR_ERR_DEV_CLOSED;
7ec5b549 148
0cd8e231
UH
149 devc = sdi->priv;
150
301090aa 151 return sr_sw_limits_config_set(&devc->limits, key, data);
7ec5b549
UH
152}
153
584560f1 154static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
e07edc83 155 const struct sr_channel_group *cg, int idx)
7ec5b549 156{
53b4680f 157 (void)cg;
7ec5b549
UH
158
159 switch (key) {
0cd8e231 160 case SR_CONF_SCAN_OPTIONS:
584560f1 161 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 162 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0cd8e231
UH
163 break;
164 case SR_CONF_DEVICE_OPTIONS:
e07edc83
UH
165 if (!sdi && !mic_devs[idx].has_humidity) {
166 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
167 drvopts_temp, ARRAY_SIZE(drvopts_temp),
168 sizeof(uint32_t));
169 } else if (!sdi && mic_devs[idx].has_humidity) {
d6e1e6c4 170 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
e07edc83
UH
171 drvopts_temp_hum, ARRAY_SIZE(drvopts_temp_hum),
172 sizeof(uint32_t));
173 } else {
d6e1e6c4 174 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 175 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
e07edc83 176 }
0cd8e231 177 break;
7ec5b549 178 default:
bd6fbf62 179 return SR_ERR_NA;
7ec5b549
UH
180 }
181
182 return SR_OK;
183}
184
695dc859 185static int dev_acquisition_start(const struct sr_dev_inst *sdi, int idx)
7ec5b549 186{
0cd8e231 187 struct dev_context *devc;
886bd5e0 188 struct sr_serial_dev_inst *serial;
0cd8e231 189
e73ffd42
BV
190 if (sdi->status != SR_ST_ACTIVE)
191 return SR_ERR_DEV_CLOSED;
0cd8e231 192
e73ffd42 193 devc = sdi->priv;
0cd8e231 194
301090aa 195 sr_sw_limits_acquisition_start(&devc->limits);
695dc859 196 std_session_send_df_header(sdi, LOG_PREFIX);
0cd8e231
UH
197
198 /* Poll every 100ms, or whenever some data comes in. */
886bd5e0 199 serial = sdi->conn;
102f1239 200 serial_source_add(sdi->session, serial, G_IO_IN, 100,
0cd8e231 201 mic_devs[idx].receive_data, (void *)sdi);
7ec5b549
UH
202
203 return SR_OK;
204}
205
695dc859 206static int dev_acquisition_stop(struct sr_dev_inst *sdi)
7ec5b549 207{
6525d819 208 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
d43b0908 209 sdi->conn, LOG_PREFIX);
7ec5b549
UH
210}
211
0cd8e231 212/* Driver-specific API function wrappers */
0cd8e231 213#define HW_SCAN(X) \
4f840ce9 214static GSList *scan_##X(struct sr_dev_driver *di, GSList *options) { \
1a863916 215 (void)di; return scan(options, X); }
e07edc83
UH
216#define HW_CONFIG_LIST(X) \
217static int config_list_##X(uint32_t key, GVariant **data, \
218const struct sr_dev_inst *sdi, const struct sr_channel_group *cg) { \
219return config_list(key, data, sdi, cg, X); }
0cd8e231 220#define HW_DEV_ACQUISITION_START(X) \
695dc859
UH
221static int dev_acquisition_start_##X(const struct sr_dev_inst *sdi \
222) { return dev_acquisition_start(sdi, X); }
0cd8e231
UH
223
224/* Driver structs and API function wrappers */
225#define DRV(ID, ID_UPPER, NAME, LONGNAME) \
0cd8e231 226HW_SCAN(ID_UPPER) \
e07edc83 227HW_CONFIG_LIST(ID_UPPER) \
0cd8e231 228HW_DEV_ACQUISITION_START(ID_UPPER) \
dd5c48a6 229static struct sr_dev_driver ID##_driver_info = { \
0cd8e231
UH
230 .name = NAME, \
231 .longname = LONGNAME, \
232 .api_version = 1, \
c2fdcc25 233 .init = std_init, \
700d6b64 234 .cleanup = std_cleanup, \
6078d2c9 235 .scan = scan_##ID_UPPER, \
c01bf34c 236 .dev_list = std_dev_list, \
0cd8e231
UH
237 .config_get = NULL, \
238 .config_set = config_set, \
e07edc83 239 .config_list = config_list_##ID_UPPER, \
854434de 240 .dev_open = std_serial_dev_open, \
bf2c987f 241 .dev_close = std_serial_dev_close, \
6078d2c9
UH
242 .dev_acquisition_start = dev_acquisition_start_##ID_UPPER, \
243 .dev_acquisition_stop = dev_acquisition_stop, \
41812aca 244 .context = NULL, \
dd5c48a6
LPC
245}; \
246SR_REGISTER_DEV_DRIVER(ID##_driver_info)
0cd8e231 247
6f3e5335 248DRV(mic_98581, MIC_98581, "mic-98581", "MIC 98581")
0cd8e231 249DRV(mic_98583, MIC_98583, "mic-98583", "MIC 98583")