]> sigrok.org Git - libsigrok.git/blob - src/hardware/norma-dmm/api.c
Removal of sdi->index, step 4: fix trivial sr_dev_inst_new() calls
[libsigrok.git] / src / hardware / norma-dmm / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
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
20 /** @file
21  *  Norma DM9x0/Siemens B102x DMMs driver.
22  *  @internal
23  */
24
25 #include "protocol.h"
26
27 static const uint32_t scanopts[] = {
28         SR_CONF_CONN,
29         SR_CONF_SERIALCOMM,
30 };
31
32 static const uint32_t devopts[] = {
33         SR_CONF_MULTIMETER,
34         SR_CONF_CONTINUOUS,
35         SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
36         SR_CONF_LIMIT_MSEC | SR_CONF_SET,
37 };
38
39 #define BUF_MAX 50
40
41 #define SERIALCOMM "4800/8n1/dtr=1/rts=0/flow=1"
42
43 SR_PRIV struct sr_dev_driver norma_dmm_driver_info;
44 SR_PRIV struct sr_dev_driver siemens_b102x_driver_info;
45
46 static const char* get_brandstr(struct sr_dev_driver* drv)
47 {
48         if (drv == &norma_dmm_driver_info)
49                 return "Norma";
50         else
51                 return "Siemens";
52 }
53
54 static const char* get_typestr(int type, struct sr_dev_driver* drv)
55 {
56         static const char* nameref[5][2] = {
57                 {"DM910", "B1024"},
58                 {"DM920", "B1025"},
59                 {"DM930", "B1026"},
60                 {"DM940", "B1027"},
61                 {"DM950", "B1028"}};
62
63         if ((type < 1) || (type > 5))
64                 return "Unknown type!";
65
66         return nameref[type-1][(drv == &siemens_b102x_driver_info)];
67 }
68
69 static int init_norma_dmm(struct sr_context *sr_ctx)
70 {
71         return std_init(sr_ctx, &norma_dmm_driver_info, LOG_PREFIX);
72 }
73
74 static int init_siemens_b102x(struct sr_context *sr_ctx)
75 {
76         return std_init(sr_ctx, &siemens_b102x_driver_info, LOG_PREFIX);
77 }
78
79 static GSList *do_scan(struct sr_dev_driver* drv, GSList *options)
80 {
81         struct sr_dev_inst *sdi;
82         struct drv_context *drvc;
83         struct dev_context *devc;
84         struct sr_config *src;
85         struct sr_channel *ch;
86         struct sr_serial_dev_inst *serial;
87         GSList *l, *devices;
88         int len, cnt;
89         const char *conn, *serialcomm;
90         char *buf;
91         char req[10];
92         int auxtype;
93
94         devices = NULL;
95         drvc = drv->priv;
96         drvc->instances = NULL;
97         conn = serialcomm = NULL;
98
99         for (l = options; l; l = l->next) {
100                 src = l->data;
101                 switch (src->key) {
102                 case SR_CONF_CONN:
103                         conn = g_variant_get_string(src->data, NULL);
104                         break;
105                 case SR_CONF_SERIALCOMM:
106                         serialcomm = g_variant_get_string(src->data, NULL);
107                         break;
108                 }
109         }
110         if (!conn)
111                 return NULL;
112         if (!serialcomm)
113                 serialcomm = SERIALCOMM;
114
115         if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
116                 return NULL;
117
118         if (serial_open(serial, SERIAL_RDWR) != SR_OK)
119                 return NULL;
120
121         serial_flush(serial);
122
123         if (!(buf = g_try_malloc(BUF_MAX))) {
124                 sr_err("Serial buffer malloc failed.");
125                 return NULL;
126         }
127
128         snprintf(req, sizeof(req), "%s\r\n",
129                  nmadmm_requests[NMADMM_REQ_IDN].req_str);
130         g_usleep(150 * 1000); /* Wait a little to allow serial port to settle. */
131         for (cnt = 0; cnt < 7; cnt++) {
132                 if (serial_write_blocking(serial, req, strlen(req)) < 0) {
133                         sr_err("Unable to send identification request.");
134                         return NULL;
135                 }
136                 len = BUF_MAX;
137                 serial_readline(serial, &buf, &len, NMADMM_TIMEOUT_MS);
138                 if (!len)
139                         continue;
140                 buf[BUF_MAX - 1] = '\0';
141
142                 /* Match ID string, e.g. "1834 065 V1.06,IF V1.02" (DM950) */
143                 if (g_regex_match_simple("^1834 [^,]*,IF V*", (char *)buf, 0, 0)) {
144                         auxtype = xgittoint(buf[7]);
145                         sr_spew("%s %s DMM %s detected!", get_brandstr(drv), get_typestr(auxtype, drv), buf + 9);
146
147                         if (!(sdi = sr_dev_inst_new(SR_ST_INACTIVE,
148                                                 get_brandstr(drv), get_typestr(auxtype, drv), buf + 9)))
149                                 return NULL;
150                         if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
151                                 sr_err("Device context malloc failed.");
152                                 return NULL;
153                         }
154                         devc->type = auxtype;
155                         devc->version = g_strdup(&buf[9]);
156                         devc->elapsed_msec = g_timer_new();
157
158                         sdi->conn = serial;
159                         sdi->priv = devc;
160                         sdi->driver = drv;
161                         if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE,
162                                 "P1")))
163                                 return NULL;
164                         sdi->channels = g_slist_append(sdi->channels, ch);
165                         drvc->instances = g_slist_append(drvc->instances, sdi);
166                         devices = g_slist_append(devices, sdi);
167                         break;
168                 }
169
170                 /*
171                  * The interface of the DM9x0 contains a cap that needs to
172                  * charge for up to 10s before the interface works, if not
173                  * powered externally. Therefore wait a little to improve
174                  * chances.
175                  */
176                 if (cnt == 3) {
177                         sr_info("Waiting 5s to allow interface to settle.");
178                         g_usleep(5 * 1000 * 1000);
179                 }
180         }
181
182         g_free(buf);
183
184         serial_close(serial);
185         if (!devices)
186                 sr_serial_dev_inst_free(serial);
187
188         return devices;
189 }
190
191 static GSList *scan_norma_dmm(GSList *options)
192 {
193         return do_scan(&norma_dmm_driver_info, options);
194 }
195
196 static GSList *scan_siemens_b102x(GSList *options)
197 {
198         return do_scan(&siemens_b102x_driver_info, options);
199 }
200
201 static GSList *dev_list_norma_dmm(void)
202 {
203         return ((struct drv_context *)(norma_dmm_driver_info.priv))->instances;
204 }
205
206 static GSList *dev_list_siemens_b102x(void)
207 {
208         return ((struct drv_context *)(siemens_b102x_driver_info.priv))->instances;
209 }
210
211 static int dev_close(struct sr_dev_inst *sdi)
212 {
213         struct dev_context *devc;
214
215         std_serial_dev_close(sdi);
216
217         /* Free dynamically allocated resources. */
218         if ((devc = sdi->priv) && devc->version) {
219                 g_free(devc->version);
220                 devc->version = NULL;
221                 g_timer_destroy(devc->elapsed_msec);
222         }
223
224         return SR_OK;
225 }
226
227 static int cleanup_norma_dmm(void)
228 {
229         return std_dev_clear(&norma_dmm_driver_info, NULL);
230 }
231
232 static int cleanup_siemens_b102x(void)
233 {
234         return std_dev_clear(&siemens_b102x_driver_info, NULL);
235 }
236
237 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
238                 const struct sr_channel_group *cg)
239 {
240         struct dev_context *devc;
241
242         (void)cg;
243
244         if (sdi->status != SR_ST_ACTIVE)
245                 return SR_ERR_DEV_CLOSED;
246
247         if (!(devc = sdi->priv)) {
248                 sr_err("sdi->priv was NULL.");
249                 return SR_ERR_BUG;
250         }
251
252         switch (key) {
253         case SR_CONF_LIMIT_MSEC:
254                 if (g_variant_get_uint64(data) == 0) {
255                         sr_err("LIMIT_MSEC can't be 0.");
256                         return SR_ERR;
257                 }
258                 devc->limit_msec = g_variant_get_uint64(data);
259                 sr_dbg("Setting time limit to %" PRIu64 "ms.",
260                        devc->limit_msec);
261                 break;
262         case SR_CONF_LIMIT_SAMPLES:
263                 devc->limit_samples = g_variant_get_uint64(data);
264                 sr_dbg("Setting sample limit to %" PRIu64 ".",
265                        devc->limit_samples);
266                 break;
267         default:
268                 return SR_ERR_NA;
269         }
270
271         return SR_OK;
272 }
273
274 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
275                 const struct sr_channel_group *cg)
276 {
277         (void)sdi;
278         (void)cg;
279
280         switch (key) {
281         case SR_CONF_SCAN_OPTIONS:
282                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
283                                 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
284                 break;
285         case SR_CONF_DEVICE_OPTIONS:
286                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
287                                 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
288                 break;
289         default:
290                 return SR_ERR_NA;
291         }
292
293         return SR_OK;
294 }
295
296 static int dev_acquisition_start(const struct sr_dev_inst *sdi,
297                                     void *cb_data)
298 {
299         struct dev_context *devc;
300         struct sr_serial_dev_inst *serial;
301
302         if (!sdi || !cb_data || !(devc = sdi->priv))
303                 return SR_ERR_BUG;
304
305         if (sdi->status != SR_ST_ACTIVE)
306                 return SR_ERR_DEV_CLOSED;
307
308         devc->cb_data = cb_data;
309
310         /* Send header packet to the session bus. */
311         std_session_send_df_header(cb_data, LOG_PREFIX);
312
313         /* Start timer, if required. */
314         if (devc->limit_msec)
315                 g_timer_start(devc->elapsed_msec);
316
317         /* Poll every 100ms, or whenever some data comes in. */
318         serial = sdi->conn;
319         serial_source_add(sdi->session, serial, G_IO_IN, 100,
320                         norma_dmm_receive_data, (void *)sdi);
321
322         return SR_OK;
323 }
324
325 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
326 {
327         struct dev_context *devc;
328
329         /* Stop timer, if required. */
330         if (sdi && (devc = sdi->priv) && devc->limit_msec)
331                 g_timer_stop(devc->elapsed_msec);
332
333         return std_serial_dev_acquisition_stop(sdi, cb_data, dev_close,
334                         sdi->conn, LOG_PREFIX);
335 }
336
337 SR_PRIV struct sr_dev_driver norma_dmm_driver_info = {
338         .name = "norma-dmm",
339         .longname = "Norma DM9x0 DMMs",
340         .api_version = 1,
341         .init = init_norma_dmm,
342         .cleanup = cleanup_norma_dmm,
343         .scan = scan_norma_dmm,
344         .dev_list = dev_list_norma_dmm,
345         .dev_clear = NULL,
346         .config_get = NULL,
347         .config_set = config_set,
348         .config_list = config_list,
349         .dev_open = std_serial_dev_open,
350         .dev_close = dev_close,
351         .dev_acquisition_start = dev_acquisition_start,
352         .dev_acquisition_stop = dev_acquisition_stop,
353         .priv = NULL,
354 };
355
356
357 SR_PRIV struct sr_dev_driver siemens_b102x_driver_info = {
358         .name = "siemens-b102x",
359         .longname = "Siemens B102x DMMs",
360         .api_version = 1,
361         .init = init_siemens_b102x,
362         .cleanup = cleanup_siemens_b102x,
363         .scan = scan_siemens_b102x,
364         .dev_list = dev_list_siemens_b102x,
365         .dev_clear = NULL,
366         .config_get = NULL,
367         .config_set = config_set,
368         .config_list = config_list,
369         .dev_open = std_serial_dev_open,
370         .dev_close = dev_close,
371         .dev_acquisition_start = dev_acquisition_start,
372         .dev_acquisition_stop = dev_acquisition_stop,
373         .priv = NULL,
374 };