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