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