]> sigrok.org Git - libsigrok.git/blob - src/hardware/serial-lcr/api.c
5bf5f1840fec14715bfcf21b1a4c2b7494315fe3
[libsigrok.git] / src / hardware / serial-lcr / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Janne Huttunen <jahuttun@gmail.com>
5  * Copyright (C) 2019 Gerhard Sittig <gerhard.sittig@gmx.net>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include <config.h>
22 #include <glib.h>
23 #include <libsigrok/libsigrok.h>
24 #include "libsigrok-internal.h"
25 #include <math.h>
26 #include "protocol.h"
27 #include <stdint.h>
28 #include <string.h>
29
30 static const uint32_t scanopts[] = {
31         SR_CONF_CONN,
32         SR_CONF_SERIALCOMM,
33 };
34
35 static const uint32_t drvopts[] = {
36         SR_CONF_LCRMETER,
37 };
38
39 static const uint32_t devopts[] = {
40         SR_CONF_CONTINUOUS,
41         SR_CONF_LIMIT_FRAMES | SR_CONF_SET,
42         SR_CONF_LIMIT_MSEC | SR_CONF_SET,
43         SR_CONF_OUTPUT_FREQUENCY | SR_CONF_GET | SR_CONF_LIST,
44         SR_CONF_EQUIV_CIRCUIT_MODEL | SR_CONF_GET | SR_CONF_LIST,
45 };
46
47 static struct sr_dev_inst *scan_packet_check_devinst;
48
49 static void scan_packet_check_setup(struct sr_dev_inst *sdi)
50 {
51         scan_packet_check_devinst = sdi;
52 }
53
54 static gboolean scan_packet_check_func(const uint8_t *buf)
55 {
56         struct sr_dev_inst *sdi;
57         struct dev_context *devc;
58         const struct lcr_info *lcr;
59         struct lcr_parse_info *info;
60
61         /* Get a reference to the LCR model that is getting checked. */
62         sdi = scan_packet_check_devinst;
63         if (!sdi)
64                 return FALSE;
65         devc = sdi->priv;
66         if (!devc)
67                 return FALSE;
68         lcr = devc->lcr_info;
69         if (!lcr)
70                 return FALSE;
71
72         /* Synchronize to the stream of LCR packets. */
73         if (!lcr->packet_valid(buf))
74                 return FALSE;
75
76         /* Have LCR packets _processed_, gather current configuration. */
77         info = &devc->parse_info;
78         memset(info, 0, sizeof(*info));
79         if (lcr->packet_parse(buf, NULL, NULL, info) == SR_OK) {
80                 devc->output_freq = info->output_freq;
81                 if (info->circuit_model)
82                         devc->circuit_model = info->circuit_model;
83         }
84
85         return TRUE;
86 }
87
88 static GSList *scan(struct sr_dev_driver *di, GSList *options)
89 {
90         struct lcr_info *lcr;
91         struct sr_config *src;
92         GSList *l, *devices;
93         const char *conn, *serialcomm;
94         struct sr_serial_dev_inst *serial;
95         uint8_t buf[128];
96         size_t len, dropped;
97         int ret;
98         struct sr_dev_inst *sdi;
99         struct dev_context *devc;
100         size_t ch_idx;
101         const char **ch_fmts;
102         const char *fmt;
103         char ch_name[8];
104
105         lcr = (struct lcr_info *)di;
106
107         /* Get serial port name and communication parameters. */
108         conn = NULL;
109         serialcomm = lcr->comm;
110         for (l = options; l; l = l->next) {
111                 src = l->data;
112                 switch (src->key) {
113                 case SR_CONF_CONN:
114                         conn = g_variant_get_string(src->data, NULL);
115                         break;
116                 case SR_CONF_SERIALCOMM:
117                         serialcomm = g_variant_get_string(src->data, NULL);
118                         break;
119                 }
120         }
121         if (!conn)
122                 return NULL;
123
124         /* Open the serial port. */
125         serial = sr_serial_dev_inst_new(conn, serialcomm);
126         if (serial_open(serial, SERIAL_RDWR) != SR_OK)
127                 return NULL;
128         sr_info("Probing serial port %s.", conn);
129
130         /*
131          * See if we can detect a device of specified type.
132          *
133          * No supported device provides a means to "identify" yet. No
134          * supported device requires "packet request" yet. They all just
135          * send data periodically. So we check if the packets match the
136          * probed device's expected format.
137          */
138         serial_flush(serial);
139         devices = NULL;
140         len = sizeof(buf);
141         ret = serial_stream_detect(serial, buf, &len,
142                 lcr->packet_size, lcr->packet_valid, 3000);
143         if (ret != SR_OK)
144                 goto scan_cleanup;
145
146         /*
147          * If the packets were found to match after more than two packets
148          * got dropped, something is wrong. This is worth warning about,
149          * but isn't fatal. The dropped bytes might be due to nonstandard
150          * cables that ship with some devices.
151          */
152         dropped = len - lcr->packet_size;
153         if (dropped > 2 * lcr->packet_size)
154                 sr_warn("Had to drop unexpected amounts of data.");
155
156         /* Create a device instance for the found device. */
157         sr_info("Found %s %s device on port %s.", lcr->vendor, lcr->model, conn);
158         sdi = g_malloc0(sizeof(*sdi));
159         sdi->status = SR_ST_INACTIVE;
160         sdi->vendor = g_strdup(lcr->vendor);
161         sdi->model = g_strdup(lcr->model);
162         sdi->inst_type = SR_INST_SERIAL;
163         sdi->conn = serial;
164         devc = g_malloc0(sizeof(*devc));
165         sdi->priv = devc;
166         devc->lcr_info = lcr;
167         sr_sw_limits_init(&devc->limits);
168         ch_fmts = lcr->channel_formats;
169         for (ch_idx = 0; ch_idx < lcr->channel_count; ch_idx++) {
170                 fmt = (ch_fmts && ch_fmts[ch_idx]) ? ch_fmts[ch_idx] : "P%zu";
171                 snprintf(ch_name, sizeof(ch_name), fmt, ch_idx + 1);
172                 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, ch_name);
173         }
174         devices = g_slist_append(devices, sdi);
175
176         /*
177          * Receive a few more packets (and process them!) to have the
178          * current output frequency and circuit model parameter values
179          * detected. The above "stream detect" phase only synchronized
180          * to the packets by checking their validity, but it cannot
181          * provide details. This phase here runs a modified "checker"
182          * routine which also extracts details from LCR packets after
183          * the device got detected and parameter storage was prepared.
184          */
185         sr_info("Retrieving current acquisition parameters.");
186         len = sizeof(buf);
187         scan_packet_check_setup(sdi);
188         ret = serial_stream_detect(serial, buf, &len,
189                 lcr->packet_size, scan_packet_check_func, 1000);
190         scan_packet_check_setup(NULL);
191
192 scan_cleanup:
193         serial_close(serial);
194
195         return std_scan_complete(di, devices);
196 }
197
198 static int config_get(uint32_t key, GVariant **data,
199         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
200 {
201         struct dev_context *devc;
202         const struct lcr_info *lcr;
203
204         if (!sdi)
205                 return SR_ERR_ARG;
206         devc = sdi->priv;
207
208         switch (key) {
209         case SR_CONF_LIMIT_FRAMES:
210         case SR_CONF_LIMIT_MSEC:
211                 return sr_sw_limits_config_get(&devc->limits, key, data);
212         case SR_CONF_OUTPUT_FREQUENCY:
213                 *data = g_variant_new_double(devc->output_freq);
214                 return SR_OK;
215         case SR_CONF_EQUIV_CIRCUIT_MODEL:
216                 if (!devc->circuit_model)
217                         return SR_ERR_NA;
218                 *data = g_variant_new_string(devc->circuit_model);
219                 return SR_OK;
220         default:
221                 lcr = devc->lcr_info;
222                 if (!lcr)
223                         return SR_ERR_NA;
224                 if (!lcr->config_get)
225                         return SR_ERR_NA;
226                 return lcr->config_get(key, data, sdi, cg);
227         }
228         /* UNREACH */
229 }
230
231 static int config_set(uint32_t key, GVariant *data,
232         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
233 {
234         struct dev_context *devc;
235         const struct lcr_info *lcr;
236
237         if (!sdi)
238                 return SR_ERR_ARG;
239         devc = sdi->priv;
240
241         switch (key) {
242         case SR_CONF_LIMIT_FRAMES:
243         case SR_CONF_LIMIT_MSEC:
244                 return sr_sw_limits_config_set(&devc->limits, key, data);
245         default:
246                 lcr = devc->lcr_info;
247                 if (!lcr)
248                         return SR_ERR_NA;
249                 if (!lcr->config_set)
250                         return SR_ERR_NA;
251                 return lcr->config_set(key, data, sdi, cg);
252         }
253         /* UNREACH */
254 }
255
256 static int config_list(uint32_t key, GVariant **data,
257         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
258 {
259         struct dev_context *devc;
260         const struct lcr_info *lcr;
261
262         switch (key) {
263         case SR_CONF_SCAN_OPTIONS:
264         case SR_CONF_DEVICE_OPTIONS:
265                 return STD_CONFIG_LIST(key, data, sdi, cg,
266                         scanopts, drvopts, devopts);
267         default:
268                 break;
269         }
270
271         if (!sdi)
272                 return SR_ERR_ARG;
273         devc = sdi->priv;
274         switch (key) {
275         default:
276                 lcr = devc->lcr_info;
277                 if (!lcr || !lcr->config_list)
278                         return SR_ERR_NA;
279                 return lcr->config_list(key, data, sdi, cg);
280         }
281         /* UNREACH */
282 }
283
284 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
285 {
286         struct dev_context *devc;
287         struct sr_serial_dev_inst *serial;
288
289         devc = sdi->priv;
290
291         /*
292          * Clear values that were gathered during scan or in a previous
293          * acquisition, so that this acquisition's data feed immediately
294          * starts with meta packets before first measurement values, and
295          * also communicates subsequent parameter changes.
296          */
297         devc->output_freq = 0;
298         devc->circuit_model = NULL;
299
300         sr_sw_limits_acquisition_start(&devc->limits);
301         std_session_send_df_header(sdi);
302
303         serial = sdi->conn;
304         serial_source_add(sdi->session, serial, G_IO_IN, 50,
305                 lcr_receive_data, (void *)sdi);
306
307         return SR_OK;
308 }
309
310 #define LCR_ES51919(id, vendor, model) \
311         &((struct lcr_info) { \
312                 { \
313                         .name = id, \
314                         .longname = vendor " " model, \
315                         .api_version = 1, \
316                         .init = std_init, \
317                         .cleanup = std_cleanup, \
318                         .scan = scan, \
319                         .dev_list = std_dev_list, \
320                         .dev_clear = std_dev_clear, \
321                         .config_get = config_get, \
322                         .config_set = config_set, \
323                         .config_list = config_list, \
324                         .dev_open = std_serial_dev_open, \
325                         .dev_close = std_serial_dev_close, \
326                         .dev_acquisition_start = dev_acquisition_start, \
327                         .dev_acquisition_stop = std_serial_dev_acquisition_stop, \
328                         .context = NULL, \
329                 }, \
330                 vendor, model, ES51919_CHANNEL_COUNT, NULL, \
331                 ES51919_COMM_PARAM, ES51919_PACKET_SIZE, \
332                 es51919_packet_valid, es51919_packet_parse, \
333                 NULL, NULL, es51919_config_list, \
334         }).di
335
336 SR_REGISTER_DEV_DRIVER_LIST(lcr_es51919_drivers,
337         LCR_ES51919("deree-de5000", "DER EE", "DE-5000"),
338         LCR_ES51919("mastech-ms5308", "MASTECH", "MS5308"),
339         LCR_ES51919("peaktech-2170", "PeakTech", "2170"),
340         LCR_ES51919("uni-t-ut612", "UNI-T", "UT612"),
341 );