-
Notifications
You must be signed in to change notification settings - Fork 316
/
serial.c
622 lines (514 loc) · 14.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
// 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 "iio-config.h"
#include <iio/iio-backend.h>
#include <iio/iio-debug.h>
#include <iio/iio-lock.h>
#include <iio/iiod-client.h>
#include <ctype.h>
#include <errno.h>
#include <libserialport.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <Windows.h>
#else
#include <time.h>
#endif
struct iio_context_pdata {
struct sp_port *port;
struct iiod_client *iiod_client;
struct iio_context_params params;
bool shutdown;
};
struct iio_buffer_pdata {
struct iiod_client_buffer_pdata *pdata;
};
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 struct iio_context *
serial_create_context_from_args(const struct iio_context_params *params,
const char *args);
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 ssize_t
serial_read_attr(const struct iio_attr *attr, char *dst, size_t len)
{
const struct iio_device *dev = iio_attr_get_device(attr);
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_attr_read(pdata->iiod_client, attr, dst, len);
}
static ssize_t
serial_write_attr(const struct iio_attr *attr, const char *src, size_t len)
{
const struct iio_device *dev = iio_attr_get_device(attr);
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_attr_write(pdata->iiod_client, attr, src, len);
}
static ssize_t serial_write_data(struct iiod_client_pdata *io_data,
const char *data, size_t len,
unsigned int timeout_ms)
{
struct iio_context_pdata *pdata = (struct iio_context_pdata *) io_data;
enum sp_return sp_ret;
ssize_t ret;
sp_ret = sp_blocking_write(pdata->port, data, len, timeout_ms);
ret = (ssize_t) libserialport_to_errno(sp_ret);
prm_dbg(&pdata->params, "Write returned %li: %s\n", (long) ret, data);
if (ret < 0) {
prm_err(&pdata->params, "sp_blocking_write returned %i\n",
(int) ret);
return ret;
} else if ((size_t) ret < len) {
prm_err(&pdata->params, "sp_blocking_write has timed out\n");
return -ETIMEDOUT;
}
return ret;
}
void sleep_one_ms(void)
{
#ifdef _WIN32
Sleep(1);
#else
const struct timespec ts = {
/* One millisecond */
.tv_nsec = 1 * 1000 * 1000,
};
nanosleep(&ts, NULL);
#endif
}
static ssize_t serial_read_data(struct iiod_client_pdata *io_data,
char *buf, size_t len, unsigned int timeout_ms)
{
struct iio_context_pdata *pdata = (struct iio_context_pdata *) io_data;
long long time_left_ms = (long long)timeout_ms;
enum sp_return sp_ret;
ssize_t ret = 0;
while (true) {
if (timeout_ms && time_left_ms <= 0)
break;
sp_ret = sp_nonblocking_read(pdata->port, buf, len);
ret = (ssize_t) libserialport_to_errno(sp_ret);
if (ret || pdata->shutdown)
break;
sleep_one_ms();
time_left_ms--;
}
if (ret == 0) {
if (!pdata->shutdown)
prm_err(&pdata->params, "serial_read_data has timed out\n");
return -ETIMEDOUT;
}
return ret;
}
static void serial_shutdown(struct iio_context *ctx)
{
struct iio_context_pdata *ctx_pdata = iio_context_get_pdata(ctx);
ctx_pdata->shutdown = true;
iiod_client_destroy(ctx_pdata->iiod_client);
sp_close(ctx_pdata->port);
sp_free_port(ctx_pdata->port);
}
static const struct iio_device *
serial_get_trigger(const struct iio_device *dev)
{
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, dev);
}
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, dev, trigger);
}
static struct iio_buffer_pdata *
serial_create_buffer(const struct iio_device *dev, unsigned int idx,
struct iio_channels_mask *mask)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
struct iio_buffer_pdata *buf;
int ret;
buf = zalloc(sizeof(*buf));
if (!buf)
return iio_ptr(-ENOMEM);
buf->pdata = iiod_client_create_buffer(pdata->iiod_client,
pdata->iiod_client,
dev, idx, mask);
ret = iio_err(buf->pdata);
if (ret) {
dev_perror(dev, ret, "Unable to create buffer");
free(buf);
return iio_ptr(ret);
}
return buf;
}
static void serial_free_buffer(struct iio_buffer_pdata *buf)
{
iiod_client_free_buffer(buf->pdata);
free(buf);
}
static int serial_enable_buffer(struct iio_buffer_pdata *buf,
size_t nb_samples, bool enable, bool cyclic)
{
return iiod_client_enable_buffer(buf->pdata, nb_samples, enable, cyclic);
}
static ssize_t
serial_readbuf(struct iio_buffer_pdata *buf, void *dst, size_t len)
{
return iiod_client_readbuf(buf->pdata, dst, len);
}
static ssize_t
serial_writebuf(struct iio_buffer_pdata *buf, const void *src, size_t len)
{
return iiod_client_writebuf(buf->pdata, src, len);
}
static struct iio_block_pdata *
serial_create_block(struct iio_buffer_pdata *buf, size_t size, void **data)
{
return iiod_client_create_block(buf->pdata, size, data);
}
static struct iio_event_stream_pdata *
serial_open_events_fd(const struct iio_device *dev)
{
const struct iio_context *ctx = iio_device_get_context(dev);
struct iio_context_pdata *pdata = iio_context_get_pdata(ctx);
return iiod_client_open_event_stream(pdata->iiod_client, dev);
}
static const struct iio_backend_ops serial_ops = {
.create = serial_create_context_from_args,
.read_attr = serial_read_attr,
.write_attr = serial_write_attr,
.shutdown = serial_shutdown,
.get_trigger = serial_get_trigger,
.set_trigger = serial_set_trigger,
.create_buffer = serial_create_buffer,
.free_buffer = serial_free_buffer,
.enable_buffer = serial_enable_buffer,
.readbuf = serial_readbuf,
.writebuf = serial_writebuf,
.create_block = serial_create_block,
.free_block = iiod_client_free_block,
.enqueue_block = iiod_client_enqueue_block,
.dequeue_block = iiod_client_dequeue_block,
.open_ev = serial_open_events_fd,
.close_ev = iiod_client_close_event_stream,
.read_ev = iiod_client_read_event,
};
__api_export_if(WITH_SERIAL_BACKEND_DYNAMIC)
const struct iio_backend iio_serial_backend = {
.api_version = IIO_BACKEND_API_V1,
.name = "serial",
.uri_prefix = "serial:",
.ops = &serial_ops,
.default_timeout_ms = 1000,
};
static const struct iiod_client_ops serial_iiod_client_ops = {
.write = serial_write_data,
.read = serial_read_data,
};
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;
#ifdef _WIN32
ret = libserialport_to_errno(sp_set_dtr(port, SP_DTR_ON));
if (ret)
return ret;
#endif
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 struct iio_context_params *params, 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;
const char *ctx_params[] = {
"uri", "serial,port", "serial,description",
};
const char *ctx_params_values[ARRAY_SIZE(ctx_params)];
char *uri, buf[16];
size_t uri_len;
int ret;
uri_len = sizeof("serial:,1000000,8n1n") + strnlen(port_name, PATH_MAX);
uri = malloc(uri_len);
if (!uri)
return iio_ptr(-ENOMEM);
ret = libserialport_to_errno(sp_get_port_by_name(port_name, &port));
if (ret)
goto err_free_uri;
ret = libserialport_to_errno(sp_open(port, SP_MODE_READ_WRITE));
if (ret)
goto err_free_port;
ret = apply_settings(port, baud_rate, bits, stop, parity, flow);
if (ret)
goto err_close_port;
/* Empty the output buffer */
ret = libserialport_to_errno(sp_flush(port, SP_BUF_OUTPUT));
if (ret)
prm_warn(params, "Unable to flush output buffer\n");
/* Drain the input buffer */
do {
ret = libserialport_to_errno(sp_blocking_read(port, buf,
sizeof(buf), 1));
if (ret < 0) {
prm_warn(params, "Unable to drain input buffer\n");
break;
}
} while (ret);
pdata = zalloc(sizeof(*pdata));
if (!pdata) {
ret = -ENOMEM;
goto err_close_port;
}
pdata->port = port;
pdata->params = *params;
pdata->iiod_client = iiod_client_new(params,
(struct iiod_client_pdata *) pdata,
&serial_iiod_client_ops);
ret = iio_err(pdata->iiod_client);
if (ret)
goto err_free_pdata;
iio_snprintf(uri, uri_len, "serial:%s,%u,%u%c%u%c",
port_name, baud_rate, bits,
parity_char(parity), stop, flow_char(flow));
ctx_params_values[0] = uri;
ctx_params_values[1] = sp_get_port_name(port);
ctx_params_values[2] = sp_get_port_description(port);
ctx = iiod_client_create_context(pdata->iiod_client,
&iio_serial_backend, NULL,
ctx_params, ctx_params_values,
ARRAY_SIZE(ctx_params));
ret = iio_err(ctx);
if (ret)
goto err_destroy_iiod_client;
iio_context_set_pdata(ctx, pdata);
free(uri);
return ctx;
err_destroy_iiod_client:
iiod_client_destroy(pdata->iiod_client);
err_free_pdata:
free(pdata);
err_close_port:
sp_close(port);
err_free_port:
sp_free_port(port);
err_free_uri:
free(uri);
return iio_ptr(ret);
}
/* 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_options(const struct iio_context_params *params,
const char *options, 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 (!options || !options[0])
return 0;
errno = 0;
*baud_rate = strtoul(options, &end, 10);
if (options == end || errno == ERANGE)
return -EINVAL;
/* 110 baud to 1,000,000 baud */
if (options == end || *baud_rate < 110 || *baud_rate > 4000000) {
prm_err(params, "Invalid baud rate\n");
return -EINVAL;
}
if (*end == ',')
end++;
if (!*end)
return 0;
options = (const char *)(end);
errno = 0;
*bits = strtoul(options, &end, 10);
if (options == end || *bits > 9 || *bits < 5 || errno == ERANGE) {
prm_err(params, "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') {
prm_err(params, "Invalid parity character\n");
return -EINVAL;
}
end++;
if (*end == ',')
end++;
options = (const char *)(end);
if (!*options)
return 0;
options = (const char *)(end);
if (!*options)
return 0;
errno = 0;
*stop = strtoul(options, &end, 10);
if (options == end || !*stop || *stop > 2 || errno == ERANGE) {
prm_err(params, "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') {
prm_err(params, "Invalid flow control character\n");
return -EINVAL;
}
/* We should have a '\0' after the flow character */
if (end[1]) {
prm_err(params, "Invalid characters after flow control flag\n");
return -EINVAL;
}
return 0;
}
static struct iio_context *
serial_create_context_from_args(const struct iio_context_params *params,
const char *args)
{
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;
uri_dup = iio_strdup(args);
if (!uri_dup)
return iio_ptr(-ENOMEM);
comma = strchr(uri_dup, ',');
if (comma) {
*comma = '\0';
ret = serial_parse_options(params, (char *)((uintptr_t) comma + 1),
&baud_rate, &bits, &stop,
&parity, &flow);
} else {
ret = serial_parse_options(params, NULL, &baud_rate, &bits,
&stop, &parity, &flow);
}
if (ret)
goto err_free_dup;
ctx = serial_create_context(params, uri_dup, baud_rate,
bits, stop, parity, flow);
free(uri_dup);
return ctx;
err_free_dup:
free(uri_dup);
prm_err(params, "Bad URI: \'serial:%s\'\n", args);
return iio_ptr(-EINVAL);
}