]> sigrok.org Git - libsigrok.git/blob - src/hardware/kecheng-kc-330b/api.c
d264b56acf21462ec343715cb8778d52dacfd0a3
[libsigrok.git] / src / hardware / kecheng-kc-330b / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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 #include <config.h>
21 #include <string.h>
22 #include "protocol.h"
23
24 #define USB_CONN "1041.8101"
25 #define USB_INTERFACE 0
26
27 static const uint32_t drvopts[] = {
28         SR_CONF_SOUNDLEVELMETER,
29 };
30
31 static const uint32_t devopts[] = {
32         SR_CONF_CONTINUOUS,
33         SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
34         SR_CONF_SAMPLE_INTERVAL | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
35         SR_CONF_DATALOG | SR_CONF_GET,
36         SR_CONF_SPL_WEIGHT_FREQ | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
37         SR_CONF_SPL_WEIGHT_TIME | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
38         SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
39 };
40
41 SR_PRIV const uint64_t kecheng_kc_330b_sample_intervals[][2] = {
42         { 1, 8 },
43         { 1, 2 },
44         { 1, 1 },
45         { 2, 1 },
46         { 5, 1 },
47         { 10, 1 },
48         { 60, 1 },
49 };
50
51 static const char *weight_freq[] = {
52         "A", "C",
53 };
54
55 static const char *weight_time[] = {
56         "F", "S",
57 };
58
59 static const char *data_sources[] = {
60         "Live", "Memory",
61 };
62
63 static int scan_kecheng(struct sr_dev_driver *di,
64                 struct sr_usb_dev_inst *usb, char **model)
65 {
66         struct drv_context *drvc;
67         int len, ret;
68         unsigned char cmd, buf[32];
69
70         drvc = di->context;
71         if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
72                 return SR_ERR;
73
74         cmd = CMD_IDENTIFY;
75         ret = libusb_bulk_transfer(usb->devhdl, EP_OUT, &cmd, 1, &len, 5);
76         if (ret != 0) {
77                 libusb_close(usb->devhdl);
78                 sr_dbg("Failed to send Identify command: %s", libusb_error_name(ret));
79                 return SR_ERR;
80         }
81
82         ret = libusb_bulk_transfer(usb->devhdl, EP_IN, buf, 32, &len, 10);
83         if (ret != 0) {
84                 libusb_close(usb->devhdl);
85                 sr_dbg("Failed to receive response: %s", libusb_error_name(ret));
86                 return SR_ERR;
87         }
88
89         libusb_close(usb->devhdl);
90         usb->devhdl = NULL;
91
92         if (len < 2 || buf[0] != (CMD_IDENTIFY | 0x80) || buf[1] > 30) {
93                 sr_dbg("Invalid response to Identify command");
94                 return SR_ERR;
95         }
96
97         buf[buf[1] + 2] = '\x0';
98         *model = g_strndup((const gchar *)buf + 2, 30);
99
100         return SR_OK;
101 }
102
103 static GSList *scan(struct sr_dev_driver *di, GSList *options)
104 {
105         struct drv_context *drvc;
106         struct dev_context *devc;
107         struct sr_dev_inst *sdi;
108         GSList *usb_devices, *devices, *l;
109         char *model;
110
111         (void)options;
112
113         drvc = di->context;
114
115         devices = NULL;
116         if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, USB_CONN))) {
117                 /* We have a list of sr_usb_dev_inst matching the connection
118                  * string. Wrap them in sr_dev_inst and we're done. */
119                 for (l = usb_devices; l; l = l->next) {
120                         if (scan_kecheng(di, l->data, &model) != SR_OK)
121                                 continue;
122                         sdi = g_malloc0(sizeof(struct sr_dev_inst));
123                         sdi->status = SR_ST_INACTIVE;
124                         sdi->vendor = g_strdup("Kecheng");
125                         sdi->model = model; /* Already g_strndup()'d. */
126                         sdi->inst_type = SR_INST_USB;
127                         sdi->conn = l->data;
128                         sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "SPL");
129                         devc = g_malloc0(sizeof(struct dev_context));
130                         sdi->priv = devc;
131                         devc->limit_samples = 0;
132                         /* The protocol provides no way to read the current
133                          * settings, so we'll enforce these. */
134                         devc->sample_interval = DEFAULT_SAMPLE_INTERVAL;
135                         devc->alarm_low = DEFAULT_ALARM_LOW;
136                         devc->alarm_high = DEFAULT_ALARM_HIGH;
137                         devc->mqflags = DEFAULT_WEIGHT_TIME | DEFAULT_WEIGHT_FREQ;
138                         devc->data_source = DEFAULT_DATA_SOURCE;
139                         devc->config_dirty = FALSE;
140
141                         /* TODO: Set date/time? */
142
143                         devices = g_slist_append(devices, sdi);
144                 }
145                 g_slist_free(usb_devices);
146         } else
147                 g_slist_free_full(usb_devices, g_free);
148
149         return std_scan_complete(di, devices);
150 }
151
152 static int dev_open(struct sr_dev_inst *sdi)
153 {
154         struct sr_dev_driver *di = sdi->driver;
155         struct drv_context *drvc = di->context;
156         struct sr_usb_dev_inst *usb;
157         int ret;
158
159         usb = sdi->conn;
160
161         if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
162                 return SR_ERR;
163
164         if ((ret = libusb_set_configuration(usb->devhdl, 1))) {
165                 sr_err("Failed to set configuration: %s.", libusb_error_name(ret));
166                 return SR_ERR;
167         }
168
169         if ((ret = libusb_claim_interface(usb->devhdl, USB_INTERFACE))) {
170                 sr_err("Failed to claim interface: %s.", libusb_error_name(ret));
171                 return SR_ERR;
172         }
173
174         return SR_OK;
175 }
176
177 static int dev_close(struct sr_dev_inst *sdi)
178 {
179         struct dev_context *devc;
180         struct sr_usb_dev_inst *usb;
181
182         usb = sdi->conn;
183
184         if (!usb->devhdl)
185                 return SR_ERR_BUG;
186
187         /* This allows a frontend to configure the device without ever
188          * doing an acquisition step. */
189         devc = sdi->priv;
190         if (!devc->config_dirty)
191                 kecheng_kc_330b_configure(sdi);
192
193         libusb_release_interface(usb->devhdl, USB_INTERFACE);
194         libusb_close(usb->devhdl);
195         usb->devhdl = NULL;
196
197         return SR_OK;
198 }
199
200 static int config_get(uint32_t key, GVariant **data,
201         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
202 {
203         struct dev_context *devc;
204         const uint64_t *si;
205
206         (void)cg;
207
208         devc = sdi->priv;
209         switch (key) {
210         case SR_CONF_LIMIT_SAMPLES:
211                 *data = g_variant_new_uint64(devc->limit_samples);
212                 break;
213         case SR_CONF_SAMPLE_INTERVAL:
214                 si = kecheng_kc_330b_sample_intervals[devc->sample_interval];
215                 *data = std_gvar_tuple_u64(si[0], si[1]);
216                 break;
217         case SR_CONF_DATALOG:
218                 /* There really isn't a way to be sure the device is logging. */
219                 return SR_ERR_NA;
220                 break;
221         case SR_CONF_SPL_WEIGHT_FREQ:
222                 if (devc->mqflags & SR_MQFLAG_SPL_FREQ_WEIGHT_A)
223                         *data = g_variant_new_string("A");
224                 else
225                         *data = g_variant_new_string("C");
226                 break;
227         case SR_CONF_SPL_WEIGHT_TIME:
228                 if (devc->mqflags & SR_MQFLAG_SPL_TIME_WEIGHT_F)
229                         *data = g_variant_new_string("F");
230                 else
231                         *data = g_variant_new_string("S");
232                 break;
233         case SR_CONF_DATA_SOURCE:
234                 if (devc->data_source == DATA_SOURCE_LIVE)
235                         *data = g_variant_new_string("Live");
236                 else
237                         *data = g_variant_new_string("Memory");
238                 break;
239         default:
240                 return SR_ERR_NA;
241         }
242
243         return SR_OK;
244 }
245
246 static int config_set(uint32_t key, GVariant *data,
247         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
248 {
249         struct dev_context *devc;
250         uint64_t p, q;
251         unsigned int i;
252         int tmp;
253         const char *tmp_str;
254
255         (void)cg;
256
257         devc = sdi->priv;
258         switch (key) {
259         case SR_CONF_LIMIT_SAMPLES:
260                 devc->limit_samples = g_variant_get_uint64(data);
261                 sr_dbg("Setting sample limit to %" PRIu64 ".",
262                        devc->limit_samples);
263                 break;
264         case SR_CONF_SAMPLE_INTERVAL:
265                 g_variant_get(data, "(tt)", &p, &q);
266                 for (i = 0; i < ARRAY_SIZE(kecheng_kc_330b_sample_intervals); i++) {
267                         if (kecheng_kc_330b_sample_intervals[i][0] != p || kecheng_kc_330b_sample_intervals[i][1] != q)
268                                 continue;
269                         devc->sample_interval = i;
270                         devc->config_dirty = TRUE;
271                         break;
272                 }
273                 if (i == ARRAY_SIZE(kecheng_kc_330b_sample_intervals))
274                         return SR_ERR_ARG;
275                 break;
276         case SR_CONF_SPL_WEIGHT_FREQ:
277                 tmp_str = g_variant_get_string(data, NULL);
278                 if (!strcmp(tmp_str, "A"))
279                         tmp = SR_MQFLAG_SPL_FREQ_WEIGHT_A;
280                 else if (!strcmp(tmp_str, "C"))
281                         tmp = SR_MQFLAG_SPL_FREQ_WEIGHT_C;
282                 else
283                         return SR_ERR_ARG;
284                 devc->mqflags &= ~(SR_MQFLAG_SPL_FREQ_WEIGHT_A | SR_MQFLAG_SPL_FREQ_WEIGHT_C);
285                 devc->mqflags |= tmp;
286                 devc->config_dirty = TRUE;
287                 break;
288         case SR_CONF_SPL_WEIGHT_TIME:
289                 tmp_str = g_variant_get_string(data, NULL);
290                 if (!strcmp(tmp_str, "F"))
291                         tmp = SR_MQFLAG_SPL_TIME_WEIGHT_F;
292                 else if (!strcmp(tmp_str, "S"))
293                         tmp = SR_MQFLAG_SPL_TIME_WEIGHT_S;
294                 else
295                         return SR_ERR_ARG;
296                 devc->mqflags &= ~(SR_MQFLAG_SPL_TIME_WEIGHT_F | SR_MQFLAG_SPL_TIME_WEIGHT_S);
297                 devc->mqflags |= tmp;
298                 devc->config_dirty = TRUE;
299                 break;
300         case SR_CONF_DATA_SOURCE:
301                 tmp_str = g_variant_get_string(data, NULL);
302                 if (!strcmp(tmp_str, "Live"))
303                         devc->data_source = DATA_SOURCE_LIVE;
304                 else if (!strcmp(tmp_str, "Memory"))
305                         devc->data_source = DATA_SOURCE_MEMORY;
306                 else
307                         return SR_ERR;
308                 devc->config_dirty = TRUE;
309                 break;
310         default:
311                 return SR_ERR_NA;
312         }
313
314         return SR_OK;
315 }
316
317 static int config_list(uint32_t key, GVariant **data,
318         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
319 {
320         switch (key) {
321         case SR_CONF_DEVICE_OPTIONS:
322                 return STD_CONFIG_LIST(key, data, sdi, cg, NULL, drvopts, devopts);
323         case SR_CONF_SAMPLE_INTERVAL:
324                 *data = std_gvar_tuple_array(ARRAY_AND_SIZE(kecheng_kc_330b_sample_intervals));
325                 break;
326         case SR_CONF_SPL_WEIGHT_FREQ:
327                 *data = g_variant_new_strv(ARRAY_AND_SIZE(weight_freq));
328                 break;
329         case SR_CONF_SPL_WEIGHT_TIME:
330                 *data = g_variant_new_strv(ARRAY_AND_SIZE(weight_time));
331                 break;
332         case SR_CONF_DATA_SOURCE:
333                 *data = g_variant_new_strv(ARRAY_AND_SIZE(data_sources));
334                 break;
335         default:
336                 return SR_ERR_NA;
337         }
338
339         return SR_OK;
340 }
341
342 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
343 {
344         struct sr_dev_driver *di = sdi->driver;
345         struct drv_context *drvc;
346         struct dev_context *devc;
347         struct sr_datafeed_packet packet;
348         struct sr_datafeed_meta meta;
349         struct sr_config *src;
350         struct sr_usb_dev_inst *usb;
351         GVariant *gvar;
352         const uint64_t *si;
353         int req_len, buf_len, len, ret;
354         unsigned char buf[9];
355
356         drvc = di->context;
357         devc = sdi->priv;
358         usb = sdi->conn;
359
360         devc->num_samples = 0;
361
362         std_session_send_df_header(sdi);
363
364         if (devc->data_source == DATA_SOURCE_LIVE) {
365                 /* Force configuration. */
366                 kecheng_kc_330b_configure(sdi);
367
368                 if (kecheng_kc_330b_status_get(sdi, &ret) != SR_OK)
369                         return SR_ERR;
370                 if (ret != DEVICE_ACTIVE) {
371                         sr_err("Device is inactive");
372                         /* Still continue though, since the device will
373                          * just return 30.0 until the user hits the button
374                          * on the device -- and then start feeding good
375                          * samples back. */
376                 }
377         } else {
378                 if (kecheng_kc_330b_log_info_get(sdi, buf) != SR_OK)
379                         return SR_ERR;
380                 devc->mqflags = buf[4] ? SR_MQFLAG_SPL_TIME_WEIGHT_S : SR_MQFLAG_SPL_TIME_WEIGHT_F;
381                 devc->mqflags |= buf[5] ? SR_MQFLAG_SPL_FREQ_WEIGHT_C : SR_MQFLAG_SPL_FREQ_WEIGHT_A;
382                 devc->stored_samples = (buf[7] << 8) | buf[8];
383                 if (devc->stored_samples == 0) {
384                         /* Notify frontend of empty log by sending start/end packets. */
385                         std_session_send_df_end(sdi);
386                         return SR_OK;
387                 }
388
389                 if (devc->limit_samples && devc->limit_samples < devc->stored_samples)
390                         devc->stored_samples = devc->limit_samples;
391
392                 si = kecheng_kc_330b_sample_intervals[buf[1]];
393                 gvar = std_gvar_tuple_u64(si[0], si[1]);
394
395                 src = sr_config_new(SR_CONF_SAMPLE_INTERVAL, gvar);
396                 packet.type = SR_DF_META;
397                 packet.payload = &meta;
398                 meta.config = g_slist_append(NULL, src);
399                 sr_session_send(sdi, &packet);
400                 g_free(src);
401         }
402
403         if (!(devc->xfer = libusb_alloc_transfer(0)))
404                 return SR_ERR;
405
406         usb_source_add(sdi->session, drvc->sr_ctx, 10,
407                 kecheng_kc_330b_handle_events, (void *)sdi);
408
409         if (devc->data_source == DATA_SOURCE_LIVE) {
410                 buf[0] = CMD_GET_LIVE_SPL;
411                 buf_len = 1;
412                 devc->state = LIVE_SPL_WAIT;
413                 devc->last_live_request = g_get_monotonic_time() / 1000;
414                 req_len = 3;
415         } else {
416                 buf[0] = CMD_GET_LOG_DATA;
417                 buf[1] = 0;
418                 buf[2] = 0;
419                 buf_len = 4;
420                 devc->state = LOG_DATA_WAIT;
421                 if (devc->stored_samples < 63)
422                         buf[3] = devc->stored_samples;
423                 else
424                         buf[3] = 63;
425                 /* Command ack byte + 2 bytes per sample. */
426                 req_len = 1 + buf[3] * 2;
427         }
428
429         ret = libusb_bulk_transfer(usb->devhdl, EP_OUT, buf, buf_len, &len, 5);
430         if (ret != 0 || len != 1) {
431                 sr_dbg("Failed to start acquisition: %s", libusb_error_name(ret));
432                 libusb_free_transfer(devc->xfer);
433                 return SR_ERR;
434         }
435
436         libusb_fill_bulk_transfer(devc->xfer, usb->devhdl, EP_IN, devc->buf,
437                         req_len, kecheng_kc_330b_receive_transfer, (void *)sdi, 15);
438         if (libusb_submit_transfer(devc->xfer) != 0) {
439                 libusb_free_transfer(devc->xfer);
440                 return SR_ERR;
441         }
442
443         return SR_OK;
444 }
445
446 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
447 {
448         struct dev_context *devc;
449
450         /* Signal USB transfer handler to clean up and stop. */
451         sdi->status = SR_ST_STOPPING;
452
453         devc = sdi->priv;
454         if (devc->data_source == DATA_SOURCE_MEMORY && devc->config_dirty) {
455                 /* The protocol doesn't have a command to clear stored data;
456                  * it clears it whenever new configuration is set. That means
457                  * we can't just configure the device any time we want when
458                  * it's in DATA_SOURCE_MEMORY mode. The only safe time to do
459                  * it is now, when we're sure we've pulled in all the stored
460                  * data. */
461                 kecheng_kc_330b_configure(sdi);
462         }
463
464         return SR_OK;
465 }
466
467 static struct sr_dev_driver kecheng_kc_330b_driver_info = {
468         .name = "kecheng-kc-330b",
469         .longname = "Kecheng KC-330B",
470         .api_version = 1,
471         .init = std_init,
472         .cleanup = std_cleanup,
473         .scan = scan,
474         .dev_list = std_dev_list,
475         .dev_clear = std_dev_clear,
476         .config_get = config_get,
477         .config_set = config_set,
478         .config_list = config_list,
479         .dev_open = dev_open,
480         .dev_close = dev_close,
481         .dev_acquisition_start = dev_acquisition_start,
482         .dev_acquisition_stop = dev_acquisition_stop,
483         .context = NULL,
484 };
485 SR_REGISTER_DEV_DRIVER(kecheng_kc_330b_driver_info);