forked from analogdevicesinc/libiio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serial.c
698 lines (569 loc) · 16.5 KB
/
serial.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2014-2016 Analog Devices, Inc.
* Author: Paul Cercueil <[email protected]>
*/
#include "debug.h"
#include "iio-private.h"
#include "iio-lock.h"
#include "iiod-client.h"
#include <errno.h>
#include <libserialport.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define DEFAULT_TIMEOUT_MS 1000
struct iio_context_pdata {
struct sp_port *port;
struct iiod_client *iiod_client;
unsigned int timeout_ms;
};
struct iio_device_pdata {
bool opened;
};
struct p_options {
char flag;
enum sp_parity parity;
};
struct f_options {
char flag;
enum sp_flowcontrol flowcontrol;
};
static const struct p_options parity_options[] = {
{'n', SP_PARITY_NONE},
{'o', SP_PARITY_ODD},
{'e', SP_PARITY_EVEN},
{'m', SP_PARITY_MARK},
{'s', SP_PARITY_SPACE},
{'\0', SP_PARITY_INVALID},
};
static const struct f_options flow_options[] = {
{'n', SP_FLOWCONTROL_NONE},
{'x', SP_FLOWCONTROL_XONXOFF},
{'r', SP_FLOWCONTROL_RTSCTS},
{'d', SP_FLOWCONTROL_DTRDSR},
{'\0', SP_FLOWCONTROL_NONE},
};
static char flow_char(enum sp_flowcontrol fc)
{
unsigned int i;
for (i = 0; flow_options[i].flag != '\0'; i++) {
if (fc == flow_options[i].flowcontrol)
return flow_options[i].flag;
}
return '\0';
}
static char parity_char(enum sp_parity pc)
{
unsigned int i;
for (i = 0; parity_options[i].flag != '\0'; i++) {
if (pc == parity_options[i].parity)
return parity_options[i].flag;
}
return '\0';
}
static inline int libserialport_to_errno(enum sp_return ret)
{
switch (ret) {
case SP_ERR_ARG:
return -EINVAL;
case SP_ERR_FAIL:
return -sp_last_error_code();
case SP_ERR_MEM:
return -ENOMEM;
case SP_ERR_SUPP:
return -ENOSYS;
default:
return (int) ret;
}
}
static int serial_get_version(const struct iio_context *ctx,
unsigned int *major, unsigned int *minor, char git_tag[8])
{
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_get_version(pdata->iiod_client, NULL,
major, minor, git_tag);
}
static char * __serial_get_description(struct sp_port *port)
{
char *description, *name, *desc;
size_t desc_len;
name = sp_get_port_name(port);
desc = sp_get_port_description(port);
desc_len = sizeof(": \0") + strlen(name) + strlen(desc);
description = malloc(desc_len);
if (!description) {
errno = ENOMEM;
return NULL;
}
iio_snprintf(description, desc_len, "%s: %s", name, desc);
return description;
}
static char * serial_get_description(const struct iio_context *ctx)
{
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return __serial_get_description(pdata->port);
}
static int serial_open(const struct iio_device *dev,
size_t samples_count, bool cyclic)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *ctx_pdata = iio_context_get_pdata(ctx);
struct iio_device_pdata *pdata = dev->pdata;
int ret = -EBUSY;
iiod_client_mutex_lock(ctx_pdata->iiod_client);
if (pdata->opened)
goto out_unlock;
ret = iiod_client_open_unlocked(ctx_pdata->iiod_client, NULL,
dev, samples_count, cyclic);
pdata->opened = !ret;
out_unlock:
iiod_client_mutex_unlock(ctx_pdata->iiod_client);
return ret;
}
static int serial_close(const struct iio_device *dev)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *ctx_pdata = iio_context_get_pdata(ctx);
struct iio_device_pdata *pdata = dev->pdata;
int ret = -EBADF;
iiod_client_mutex_lock(ctx_pdata->iiod_client);
if (!pdata->opened)
goto out_unlock;
ret = iiod_client_close_unlocked(ctx_pdata->iiod_client, NULL, dev);
pdata->opened = false;
out_unlock:
iiod_client_mutex_unlock(ctx_pdata->iiod_client);
return ret;
}
static ssize_t serial_read(const struct iio_device *dev, void *dst, size_t len,
uint32_t *mask, size_t words)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
ssize_t ret;
iiod_client_mutex_lock(pdata->iiod_client);
ret = iiod_client_read_unlocked(pdata->iiod_client, NULL,
dev, dst, len, mask, words);
iiod_client_mutex_unlock(pdata->iiod_client);
return ret;
}
static ssize_t serial_write(const struct iio_device *dev,
const void *src, size_t len)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
ssize_t ret;
iiod_client_mutex_lock(pdata->iiod_client);
ret = iiod_client_write_unlocked(pdata->iiod_client, NULL, dev, src, len);
iiod_client_mutex_unlock(pdata->iiod_client);
return ret;
}
static ssize_t serial_read_dev_attr(const struct iio_device *dev,
const char *attr, char *dst, size_t len, enum iio_attr_type type)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_read_attr(pdata->iiod_client, NULL,
dev, NULL, attr, dst, len, type);
}
static ssize_t serial_write_dev_attr(const struct iio_device *dev,
const char *attr, const char *src, size_t len, enum iio_attr_type type)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_write_attr(pdata->iiod_client, NULL,
dev, NULL, attr, src, len, type);
}
static ssize_t serial_read_chn_attr(const struct iio_channel *chn,
const char *attr, char *dst, size_t len)
{
const struct iio_device *dev = iio_channel_get_device(chn);
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_read_attr(pdata->iiod_client, NULL,
chn->dev, chn, attr, dst, len, false);
}
static ssize_t serial_write_chn_attr(const struct iio_channel *chn,
const char *attr, const char *src, size_t len)
{
const struct iio_device *dev = iio_channel_get_device(chn);
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_write_attr(pdata->iiod_client, NULL,
dev, chn, attr, src, len, false);
}
static int serial_set_kernel_buffers_count(const struct iio_device *dev,
unsigned int nb_blocks)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_set_kernel_buffers_count(pdata->iiod_client, NULL,
dev, nb_blocks);
}
static ssize_t serial_write_data(struct iio_context_pdata *pdata,
struct iiod_client_pdata *io_data,
const char *data, size_t len)
{
ssize_t ret = (ssize_t) libserialport_to_errno(sp_blocking_write(
pdata->port, data, len, pdata->timeout_ms));
IIO_DEBUG("Write returned %li: %s\n", (long) ret, data);
if (ret < 0) {
IIO_ERROR("sp_blocking_write returned %i\n", (int) ret);
return ret;
} else if ((size_t) ret < len) {
IIO_ERROR("sp_blocking_write has timedout\n");
return -ETIMEDOUT;
}
return ret;
}
static ssize_t serial_read_data(struct iio_context_pdata *pdata,
struct iiod_client_pdata *io_data,
char *buf, size_t len)
{
ssize_t ret = (ssize_t) libserialport_to_errno(sp_blocking_read_next(
pdata->port, buf, len, pdata->timeout_ms));
IIO_DEBUG("Read returned %li: %.*s\n", (long) ret, (int) ret, buf);
if (ret == 0) {
IIO_ERROR("sp_blocking_read_next has timedout\n");
return -ETIMEDOUT;
}
return ret;
}
static ssize_t serial_read_line(struct iio_context_pdata *pdata,
struct iiod_client_pdata *io_data,
char *buf, size_t len)
{
size_t i;
bool found = false;
int ret;
IIO_DEBUG("Readline size 0x%lx\n", (unsigned long) len);
for (i = 0; i < len - 1; i++) {
ret = libserialport_to_errno(sp_blocking_read_next(
pdata->port, &buf[i], 1,
pdata->timeout_ms));
if (ret == 0) {
IIO_ERROR("sp_blocking_read_next has timedout\n");
return -ETIMEDOUT;
}
if (ret < 0) {
IIO_ERROR("sp_blocking_read_next returned %i\n", ret);
return (ssize_t) ret;
}
IIO_DEBUG("Character: %c\n", buf[i]);
if (buf[i] != '\n')
found = true;
else if (found)
break;
}
/* No \n found? Just garbage data */
if (!found || i == len - 1)
return -EIO;
return (ssize_t) i + 1;
}
static void serial_shutdown(struct iio_context *ctx)
{
struct iio_context_pdata *ctx_pdata = iio_context_get_pdata(ctx);
unsigned int i;
iiod_client_destroy(ctx_pdata->iiod_client);
sp_close(ctx_pdata->port);
sp_free_port(ctx_pdata->port);
for (i = 0; i < iio_context_get_devices_count(ctx); i++) {
const struct iio_device *dev = iio_context_get_device(ctx, i);
struct iio_device_pdata *pdata = dev->pdata;
free(pdata);
}
}
static int serial_set_timeout(struct iio_context *ctx, unsigned int timeout)
{
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
pdata->timeout_ms = timeout;
return 0;
}
static int serial_get_trigger(const struct iio_device *dev,
const struct iio_device **trigger)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_get_trigger(pdata->iiod_client, NULL, dev, trigger);
}
static int serial_set_trigger(const struct iio_device *dev,
const struct iio_device *trigger)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_set_trigger(pdata->iiod_client, NULL, dev, trigger);
}
static const struct iio_backend_ops serial_ops = {
.get_version = serial_get_version,
.open = serial_open,
.close = serial_close,
.read = serial_read,
.write = serial_write,
.read_device_attr = serial_read_dev_attr,
.write_device_attr = serial_write_dev_attr,
.read_channel_attr = serial_read_chn_attr,
.write_channel_attr = serial_write_chn_attr,
.set_kernel_buffers_count = serial_set_kernel_buffers_count,
.shutdown = serial_shutdown,
.get_description = serial_get_description,
.set_timeout = serial_set_timeout,
.get_trigger = serial_get_trigger,
.set_trigger = serial_set_trigger,
};
static const struct iiod_client_ops serial_iiod_client_ops = {
.write = serial_write_data,
.read = serial_read_data,
.read_line = serial_read_line,
};
static int apply_settings(struct sp_port *port, unsigned int baud_rate,
unsigned int bits, unsigned int stop_bits,
enum sp_parity parity, enum sp_flowcontrol flow)
{
int ret;
ret = libserialport_to_errno(sp_set_baudrate(port, (int) baud_rate));
if (ret)
return ret;
ret = libserialport_to_errno(sp_set_bits(port, (int) bits));
if (ret)
return ret;
ret = libserialport_to_errno(sp_set_stopbits(port, (int) stop_bits));
if (ret)
return ret;
ret = libserialport_to_errno(sp_set_parity(port, parity));
if (ret)
return ret;
return libserialport_to_errno(sp_set_flowcontrol(port, flow));
}
static struct iio_context * serial_create_context(const char *port_name,
unsigned int baud_rate, unsigned int bits, unsigned int stop,
enum sp_parity parity, enum sp_flowcontrol flow)
{
struct sp_port *port;
struct iio_context_pdata *pdata;
struct iio_context *ctx;
char *description;
size_t uri_len;
unsigned int i;
int ret;
char *uri;
uri_len = sizeof("serial:,1000000,8n1n") + strnlen(port_name, PATH_MAX);
uri = malloc(uri_len);
if (!uri) {
errno = ENOMEM;
return NULL;
}
ret = libserialport_to_errno(sp_get_port_by_name(port_name, &port));
if (ret) {
errno = -ret;
goto err_free_uri;
}
ret = libserialport_to_errno(sp_open(port, SP_MODE_READ_WRITE));
if (ret) {
errno = -ret;
goto err_free_port;
}
ret = apply_settings(port, baud_rate, bits, stop, parity, flow);
if (ret) {
errno = -ret;
goto err_close_port;
}
/* Empty the buffers */
sp_flush(port, SP_BUF_BOTH);
description = __serial_get_description(port);
if (!description)
goto err_close_port;
pdata = zalloc(sizeof(*pdata));
if (!pdata) {
errno = ENOMEM;
goto err_free_description;
}
pdata->port = port;
pdata->timeout_ms = DEFAULT_TIMEOUT_MS;
pdata->iiod_client = iiod_client_new(pdata, &serial_iiod_client_ops);
if (!pdata->iiod_client)
goto err_free_pdata;
ctx = iiod_client_create_context(pdata->iiod_client, NULL);
if (!ctx)
goto err_destroy_iiod_client;
ctx->name = "serial";
ctx->ops = &serial_ops;
ctx->pdata = pdata;
ctx->description = description;
for (i = 0; i < iio_context_get_devices_count(ctx); i++) {
struct iio_device *dev = iio_context_get_device(ctx, i);
dev->pdata = zalloc(sizeof(*dev->pdata));
if (!dev->pdata) {
ret = -ENOMEM;
goto err_context_destroy;
}
}
iio_snprintf(uri, uri_len, "serial:%s,%u,%u%c%u%c",
port_name, baud_rate, bits,
parity_char(parity), stop, flow_char(flow));
ret = iio_context_add_attr(ctx, "uri", uri);
if (ret < 0)
goto err_context_destroy;
free(uri);
return ctx;
err_context_destroy:
free(uri);
iio_context_destroy(ctx);
errno = -ret;
return NULL;
err_destroy_iiod_client:
iiod_client_destroy(pdata->iiod_client);
err_free_pdata:
free(pdata);
err_free_description:
free(description);
err_close_port:
sp_close(port);
err_free_port:
sp_free_port(port);
err_free_uri:
free(uri);
return NULL;
}
/* Take string, in "[baud rate],[data bits][parity][stop bits][flow control]"
* notation, where:
* - baud_rate = between 110 - 1,000,000 (default 115200)
* - data bits = between 5 and 9 (default 8)
* - parity = one of 'n' none, 'o' odd, 'e' even, 'm' mark, 's' space
* (default 'n' none)
* - stop bits = 1 or 2 (default 1)
* - flow control = one of '\0' none, 'x' Xon Xoff, 'r' RTSCTS, 'd' DTRDSR
* (default '\0' none)
*
* eg: "115200,8n1x"
* "115200,8n1"
* "115200,8"
* "115200"
* ""
*/
static int serial_parse_params(const char *params,
unsigned int *baud_rate, unsigned int *bits, unsigned int *stop,
enum sp_parity *parity, enum sp_flowcontrol *flow)
{
char *end, ch;
unsigned int i;
/* Default settings */
*baud_rate = 115200;
*parity = SP_PARITY_NONE;
*bits = 8;
*stop = 1;
*flow = SP_FLOWCONTROL_NONE;
if (!params || !params[0])
return 0;
errno = 0;
*baud_rate = strtoul(params, &end, 10);
if (params == end || errno == ERANGE)
return -EINVAL;
/* 110 baud to 1,000,000 baud */
if (params == end || *baud_rate < 110 || *baud_rate > 4000000) {
IIO_ERROR("Invalid baud rate\n");
return -EINVAL;
}
if (*end == ',')
end++;
if (!*end)
return 0;
params = (const char *)(end);
errno = 0;
*bits = strtoul(params, &end, 10);
if (params == end || *bits > 9 || *bits < 5 || errno == ERANGE) {
IIO_ERROR("Invalid number of bits\n");
return -EINVAL;
}
if (*end == ',')
end++;
if (*end == '\0')
return 0;
ch = (char)(tolower(*end) & 0xFF);
for(i = 0; parity_options[i].flag != '\0'; i++) {
if (ch == parity_options[i].flag) {
*parity = parity_options[i].parity;
break;
}
}
if (parity_options[i].flag == '\0') {
IIO_ERROR("Invalid Parity character\n");
return -EINVAL;
}
end++;
if (*end == ',')
end++;
params = (const char *)(end);
if (!*params)
return 0;
params = (const char *)(end);
if (!*params)
return 0;
errno = 0;
*stop = strtoul(params, &end, 10);
if (params == end || !*stop || *stop > 2 || errno == ERANGE) {
IIO_ERROR("Invalid number of stop bits\n");
return -EINVAL;
}
if (*end == ',')
end++;
if (*end == '\0')
return 0;
ch = (char)(tolower(*end) & 0xFF);
for(i = 0; flow_options[i].flag != '\0'; i++) {
if (ch == flow_options[i].flag) {
*flow = flow_options[i].flowcontrol;
break;
}
}
if (flow_options[i].flag == '\0') {
IIO_ERROR("Invalid Flow Control character\n");
return -EINVAL;
}
/* We should have a '\0' after the flow character */
if (end[1]) {
IIO_ERROR("Invalid characters after Flow Control flag\n");
return -EINVAL;
}
return 0;
}
struct iio_context * serial_create_context_from_uri(const char *uri)
{
struct iio_context *ctx = NULL;
char *comma, *uri_dup;
unsigned int baud_rate, bits, stop;
enum sp_parity parity;
enum sp_flowcontrol flow;
int ret;
if (strncmp(uri, "serial:", sizeof("serial:") - 1) != 0)
goto err_bad_uri;
uri_dup = iio_strdup((const char *)
((uintptr_t) uri + sizeof("serial:") - 1));
if (!uri_dup) {
errno = ENOMEM;
return NULL;
}
comma = strchr(uri_dup, ',');
if (comma) {
*comma = '\0';
ret = serial_parse_params((char *)((uintptr_t) comma + 1),
&baud_rate, &bits, &stop, &parity, &flow);
} else {
ret = serial_parse_params(NULL,
&baud_rate, &bits, &stop, &parity, &flow);
}
if (ret)
goto err_free_dup;
ctx = serial_create_context(uri_dup, baud_rate, bits, stop, parity, flow);
free(uri_dup);
return ctx;
err_free_dup:
free(uri_dup);
err_bad_uri:
IIO_ERROR("Bad URI: \'%s\'\n", uri);
errno = EINVAL;
return NULL;
}