]> sigrok.org Git - libsigrok.git/blame - src/hardware/testo/api.c
sr_dev_open(): Set status to SR_ST_ACTIVE upon success.
[libsigrok.git] / src / hardware / testo / api.c
CommitLineData
0acdd793
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 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>
6dcb9723 21#include <string.h>
0acdd793
BV
22#include "protocol.h"
23
6dcb9723 24#define SERIALCOMM "115200/8n1"
6dcb9723 25
584560f1 26static const uint32_t scanopts[] = {
6dcb9723
BV
27 SR_CONF_CONN,
28};
29
584560f1 30static const uint32_t devopts[] = {
6dcb9723 31 SR_CONF_MULTIMETER,
6dcb9723 32 SR_CONF_CONTINUOUS,
91b77e6b
LPC
33 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET | SR_CONF_GET,
34 SR_CONF_LIMIT_MSEC | SR_CONF_SET | SR_CONF_GET,
6dcb9723
BV
35};
36
329733d9
UH
37static const uint8_t TESTO_x35_REQUEST[] = { 0x12, 0, 0, 0, 1, 1, 0x55, 0xd1, 0xb7 };
38
39static const struct testo_model models[] = {
6dcb9723
BV
40 { "435", 9, TESTO_x35_REQUEST },
41};
0acdd793 42
4f840ce9 43static GSList *scan(struct sr_dev_driver *di, GSList *options)
0acdd793
BV
44{
45 struct drv_context *drvc;
6dcb9723
BV
46 struct dev_context *devc;
47 struct sr_config *src;
48 struct sr_dev_inst *sdi;
49 struct sr_usb_dev_inst *usb;
50 struct libusb_device_descriptor des;
51 libusb_device **devlist;
52 struct libusb_device_handle *hdl;
53 GSList *conn_devices, *devices, *l;
bde9fbd1 54 int ret, i;
6dcb9723 55 const char *str;
bde9fbd1 56 char manufacturer[64], product[64], connection_id[64];
0acdd793
BV
57
58 devices = NULL;
41812aca 59 drvc = di->context;
0acdd793 60
6dcb9723
BV
61 conn_devices = NULL;
62 for (l = options; l; l = l->next) {
63 src = l->data;
64 if (src->key != SR_CONF_CONN)
65 continue;
66 str = g_variant_get_string(src->data, NULL);
67 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, str);
68 }
69
70 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
71 for (i = 0; devlist[i]; i++) {
72 if (conn_devices) {
73 usb = NULL;
74 for (l = conn_devices; l; l = l->next) {
75 usb = l->data;
76 if (usb->bus == libusb_get_bus_number(devlist[i])
77 && usb->address == libusb_get_device_address(devlist[i]))
78 break;
79 }
80 if (!l)
81 /* This device matched none of the ones that
82 * matched the conn specification. */
83 continue;
84 }
85
2a8f2d41 86 libusb_get_device_descriptor(devlist[i], &des);
6dcb9723
BV
87
88 if ((ret = libusb_open(devlist[i], &hdl)) < 0)
89 continue;
90
91 manufacturer[0] = product[0] = '\0';
92 if (des.iManufacturer && (ret = libusb_get_string_descriptor_ascii(
93 hdl, des.iManufacturer, (unsigned char *) manufacturer,
94 sizeof(manufacturer))) < 0) {
95 sr_warn("Failed to get manufacturer string descriptor: %s.",
96 libusb_error_name(ret));
97 }
98 if (des.iProduct && (ret = libusb_get_string_descriptor_ascii(
99 hdl, des.iProduct, (unsigned char *) product,
100 sizeof(product))) < 0) {
101 sr_warn("Failed to get product string descriptor: %s.",
102 libusb_error_name(ret));
103 }
104 libusb_close(hdl);
105
106 if (strncmp(manufacturer, "testo", 5))
107 continue;
108
bde9fbd1
SA
109 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
110
6dcb9723
BV
111 /* Hardcode the 435 for now.*/
112 if (strcmp(product, "testo 435/635/735"))
113 continue;
114
aac29cc1 115 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
116 sdi->status = SR_ST_INACTIVE;
117 sdi->vendor = g_strdup("Testo");
118 sdi->model = g_strdup("435/635/735");
6dcb9723
BV
119 sdi->driver = di;
120 sdi->inst_type = SR_INST_USB;
121 sdi->conn = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
122 libusb_get_device_address(devlist[i]), NULL);
bde9fbd1 123 sdi->connection_id = g_strdup(connection_id);
6dcb9723
BV
124 devc = g_malloc(sizeof(struct dev_context));
125 devc->model = &models[0];
91b77e6b 126 sr_sw_limits_init(&devc->sw_limits);
6dcb9723
BV
127 sdi->priv = devc;
128 if (testo_probe_channels(sdi) != SR_OK)
129 continue;
6dcb9723
BV
130 devices = g_slist_append(devices, sdi);
131 }
132 libusb_free_device_list(devlist, 1);
133 g_slist_free_full(conn_devices, (GDestroyNotify)sr_usb_dev_inst_free);
0acdd793 134
15a5bfe4 135 return std_scan_complete(di, devices);
0acdd793
BV
136}
137
0acdd793
BV
138static int dev_open(struct sr_dev_inst *sdi)
139{
4f840ce9 140 struct sr_dev_driver *di = sdi->driver;
41812aca 141 struct drv_context *drvc = di->context;
6dcb9723 142 struct sr_usb_dev_inst *usb;
b75dc14a 143 int ret;
6dcb9723 144
6dcb9723 145 usb = sdi->conn;
b75dc14a
LPC
146
147 ret = sr_usb_open(drvc->sr_ctx->libusb_ctx, usb);
148 if (ret != SR_OK)
149 return ret;
0acdd793 150
88b1d4e5
BV
151 if (libusb_has_capability(LIBUSB_CAP_SUPPORTS_DETACH_KERNEL_DRIVER)) {
152 if (libusb_kernel_driver_active(usb->devhdl, 0) == 1) {
153 if ((ret = libusb_detach_kernel_driver(usb->devhdl, 0)) < 0) {
154 sr_err("Failed to detach kernel driver: %s.",
155 libusb_error_name(ret));
156 return SR_ERR;
157 }
158 }
159 }
160
6dcb9723
BV
161 if ((ret = libusb_claim_interface(usb->devhdl, 0))) {
162 sr_err("Failed to claim interface: %s.", libusb_error_name(ret));
163 return SR_ERR;
164 }
0acdd793
BV
165
166 return SR_OK;
167}
168
169static int dev_close(struct sr_dev_inst *sdi)
170{
6dcb9723
BV
171 struct sr_usb_dev_inst *usb;
172
6dcb9723
BV
173 usb = sdi->conn;
174 if (!usb->devhdl)
d9251a2c 175 /* Nothing to do. */
6dcb9723 176 return SR_OK;
0acdd793 177
6dcb9723
BV
178 libusb_release_interface(usb->devhdl, 0);
179 libusb_close(usb->devhdl);
180 usb->devhdl = NULL;
0acdd793
BV
181 sdi->status = SR_ST_INACTIVE;
182
183 return SR_OK;
184}
185
584560f1 186static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
0acdd793
BV
187 const struct sr_channel_group *cg)
188{
91b77e6b 189 struct dev_context *devc = sdi->priv;
6dcb9723
BV
190 struct sr_usb_dev_inst *usb;
191 char str[128];
0acdd793 192
0acdd793
BV
193 (void)cg;
194
0acdd793 195 switch (key) {
6dcb9723
BV
196 case SR_CONF_CONN:
197 if (!sdi || !sdi->conn)
198 return SR_ERR_ARG;
199 usb = sdi->conn;
200 snprintf(str, 128, "%d.%d", usb->bus, usb->address);
201 *data = g_variant_new_string(str);
202 break;
91b77e6b
LPC
203 case SR_CONF_LIMIT_MSEC:
204 case SR_CONF_LIMIT_SAMPLES:
205 return sr_sw_limits_config_get(&devc->sw_limits, key, data);
0acdd793
BV
206 default:
207 return SR_ERR_NA;
208 }
209
6dcb9723 210 return SR_OK;
0acdd793
BV
211}
212
584560f1 213static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
0acdd793
BV
214 const struct sr_channel_group *cg)
215{
91b77e6b 216 struct dev_context *devc = sdi->priv;
0acdd793 217
0acdd793
BV
218 (void)cg;
219
91b77e6b 220 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
0acdd793
BV
221}
222
584560f1 223static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
0acdd793
BV
224 const struct sr_channel_group *cg)
225{
0acdd793 226 (void)sdi;
0acdd793
BV
227 (void)cg;
228
0acdd793 229 switch (key) {
6dcb9723 230 case SR_CONF_SCAN_OPTIONS:
584560f1
BV
231 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
232 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
6dcb9723
BV
233 break;
234 case SR_CONF_DEVICE_OPTIONS:
584560f1
BV
235 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
236 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
6dcb9723 237 break;
0acdd793
BV
238 default:
239 return SR_ERR_NA;
240 }
241
6dcb9723 242 return SR_OK;
0acdd793
BV
243}
244
6dcb9723 245static void receive_data(struct sr_dev_inst *sdi, unsigned char *data, int len)
0acdd793 246{
6dcb9723
BV
247 struct dev_context *devc;
248 int packet_size;
87895640 249 uint16_t crc;
6dcb9723
BV
250
251 devc = sdi->priv;
252
253 if (devc->reply_size + len > MAX_REPLY_SIZE) {
254 /* Something went very wrong. */
255 sr_dbg("Receive buffer overrun.");
256 devc->reply_size = 0;
257 return;
258 }
259
260 memcpy(devc->reply + devc->reply_size, data, len);
261 devc->reply_size += len;
262 /* Sixth byte contains the length of the packet. */
87895640
BV
263 if (devc->reply_size < 7)
264 return;
265
266 packet_size = 7 + devc->reply[6] * 7 + 2;
267 if (devc->reply_size < packet_size)
268 return;
269
270 if (!testo_check_packet_prefix(devc->reply, devc->reply_size))
271 return;
272
273 crc = crc16_mcrf4xx(0xffff, devc->reply, devc->reply_size - 2);
88b1d4e5 274 if (crc == RL16(&devc->reply[devc->reply_size - 2])) {
87895640 275 testo_receive_packet(sdi);
91b77e6b 276 sr_sw_limits_update_samples_read(&devc->sw_limits, 1);
87895640
BV
277 } else {
278 sr_dbg("Packet has invalid CRC.");
6dcb9723
BV
279 }
280
87895640 281 devc->reply_size = 0;
91b77e6b 282 if (sr_sw_limits_check(&devc->sw_limits))
d2f7c417 283 sr_dev_acquisition_stop(sdi);
87895640
BV
284 else
285 testo_request_packet(sdi);
286
6dcb9723
BV
287}
288
55462b8b 289SR_PRIV void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
6dcb9723
BV
290{
291 struct dev_context *devc;
292 struct sr_dev_inst *sdi;
293 int ret;
294
295 sdi = transfer->user_data;
296 devc = sdi->priv;
297 if (transfer == devc->out_transfer)
298 /* Just the command acknowledgement. */
299 return;
300
301 if (transfer->status == LIBUSB_TRANSFER_NO_DEVICE) {
302 /* USB device was unplugged. */
d2f7c417 303 sr_dev_acquisition_stop(sdi);
6dcb9723
BV
304 } else if (transfer->status == LIBUSB_TRANSFER_COMPLETED) {
305 /* First two bytes in any transfer are FTDI status bytes. */
306 if (transfer->actual_length > 2)
307 receive_data(sdi, transfer->buffer + 2, transfer->actual_length - 2);
308 }
309 /* Anything else is either an error or a timeout, which is fine:
310 * we were just going to send another transfer request anyway. */
311
312 if (sdi->status == SR_ST_ACTIVE) {
313 if ((ret = libusb_submit_transfer(transfer) != 0)) {
314 sr_err("Unable to resubmit transfer: %s.",
315 libusb_error_name(ret));
316 g_free(transfer->buffer);
317 libusb_free_transfer(transfer);
d2f7c417 318 sr_dev_acquisition_stop(sdi);
6dcb9723
BV
319 }
320 } else {
321 /* This was the last transfer we're going to receive, so
322 * clean up now. */
323 g_free(transfer->buffer);
324 libusb_free_transfer(transfer);
325 }
326}
327
328static int handle_events(int fd, int revents, void *cb_data)
329{
4f840ce9 330 struct sr_dev_driver *di;
6dcb9723 331 struct dev_context *devc;
4f840ce9 332 struct drv_context *drvc;
6dcb9723
BV
333 struct sr_dev_inst *sdi;
334 struct timeval tv;
6dcb9723
BV
335
336 (void)fd;
337 (void)revents;
338
339 sdi = cb_data;
340 devc = sdi->priv;
4f840ce9 341 di = sdi->driver;
41812aca 342 drvc = di->context;
6dcb9723 343
91b77e6b 344 if (sr_sw_limits_check(&devc->sw_limits))
d2f7c417 345 sr_dev_acquisition_stop(sdi);
6dcb9723
BV
346
347 if (sdi->status == SR_ST_STOPPING) {
102f1239 348 usb_source_remove(sdi->session, drvc->sr_ctx);
6dcb9723 349 dev_close(sdi);
bee2b016 350 std_session_send_df_end(sdi);
6dcb9723
BV
351 }
352
353 memset(&tv, 0, sizeof(struct timeval));
354 libusb_handle_events_timeout_completed(drvc->sr_ctx->libusb_ctx, &tv,
355 NULL);
356
357 return TRUE;
358}
359
695dc859 360static int dev_acquisition_start(const struct sr_dev_inst *sdi)
6dcb9723 361{
4f840ce9 362 struct sr_dev_driver *di = sdi->driver;
6dcb9723
BV
363 struct drv_context *drvc;
364 struct dev_context *devc;
365 struct sr_usb_dev_inst *usb;
366 struct libusb_transfer *transfer;
367 int ret;
368 unsigned char *buf;
0acdd793 369
41812aca 370 drvc = di->context;
6dcb9723
BV
371 devc = sdi->priv;
372 usb = sdi->conn;
6dcb9723
BV
373 devc->reply_size = 0;
374
bee2b016 375 std_session_send_df_header(sdi);
6dcb9723 376
102f1239
BV
377 usb_source_add(sdi->session, drvc->sr_ctx, 100,
378 handle_events, (void *)sdi);
6dcb9723
BV
379
380 if (testo_set_serial_params(usb) != SR_OK)
381 return SR_ERR;
382
383 devc->out_transfer = libusb_alloc_transfer(0);
384 if (testo_request_packet(sdi) != SR_OK)
385 return SR_ERR;
386
a95f142e 387 buf = g_malloc(MAX_REPLY_SIZE);
6dcb9723
BV
388 transfer = libusb_alloc_transfer(0);
389 libusb_fill_bulk_transfer(transfer, usb->devhdl, EP_IN, buf,
390 MAX_REPLY_SIZE, receive_transfer, (void *)sdi, 100);
391 if ((ret = libusb_submit_transfer(transfer) != 0)) {
392 sr_err("Unable to submit transfer: %s.", libusb_error_name(ret));
393 libusb_free_transfer(transfer);
394 g_free(buf);
395 return SR_ERR;
396 }
397 devc->reply_size = 0;
0acdd793 398
91b77e6b
LPC
399 sr_sw_limits_acquisition_start(&devc->sw_limits);
400
0acdd793
BV
401 return SR_OK;
402}
403
695dc859 404static int dev_acquisition_stop(struct sr_dev_inst *sdi)
0acdd793 405{
6dcb9723 406 sdi->status = SR_ST_STOPPING;
0acdd793
BV
407
408 return SR_OK;
409}
410
dd5c48a6 411static struct sr_dev_driver testo_driver_info = {
0acdd793
BV
412 .name = "testo",
413 .longname = "Testo",
414 .api_version = 1,
c2fdcc25 415 .init = std_init,
700d6b64 416 .cleanup = std_cleanup,
0acdd793 417 .scan = scan,
c01bf34c 418 .dev_list = std_dev_list,
0acdd793
BV
419 .config_get = config_get,
420 .config_set = config_set,
421 .config_list = config_list,
422 .dev_open = dev_open,
423 .dev_close = dev_close,
424 .dev_acquisition_start = dev_acquisition_start,
425 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 426 .context = NULL,
0acdd793 427};
dd5c48a6 428SR_REGISTER_DEV_DRIVER(testo_driver_info);