forked from stm32duino/stm32flash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserial_posix.c
465 lines (398 loc) · 11.1 KB
/
serial_posix.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
/*
stm32flash - Open Source ST STM32 flash program for *nix
Copyright (C) 2010 Geoffrey McRae <[email protected]>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
USA.
*/
#include <fcntl.h>
#include <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/file.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <unistd.h>
#include "port.h"
#include "serial.h"
#ifndef TERMIOS_TIMEOUT_MS
#define TERMIOS_TIMEOUT_MS 500
#endif
#define TERMIOS_TIMEOUT ((TERMIOS_TIMEOUT_MS) / 100)
static port_err_t serial_posix_write(struct port_interface *port, void *buf,
size_t nbyte);
struct serial {
int fd;
struct termios oldtio;
struct termios newtio;
char setup_str[11];
};
static serial_t *serial_open(const char *device) {
serial_t *h = calloc(sizeof(serial_t), 1);
h->fd = open(device, O_RDWR | O_NOCTTY | O_NDELAY);
if (h->fd < 0) {
free(h);
return NULL;
}
if (lockf(h->fd, F_TLOCK, 0) != 0) {
fprintf(stderr, "Error: %s is already open\n", device);
free(h);
return NULL;
}
fcntl(h->fd, F_SETFL, 0);
tcgetattr(h->fd, &h->oldtio);
tcgetattr(h->fd, &h->newtio);
return h;
}
static void serial_flush(const serial_t *h) { tcflush(h->fd, TCIFLUSH); }
static void serial_close(serial_t *h) {
serial_flush(h);
tcsetattr(h->fd, TCSANOW, &h->oldtio);
lockf(h->fd, F_ULOCK, 0);
close(h->fd);
free(h);
}
static port_err_t serial_setup(serial_t *h, const serial_baud_t baud,
const serial_bits_t bits,
const serial_parity_t parity,
const serial_stopbit_t stopbit) {
speed_t port_baud;
tcflag_t port_bits;
tcflag_t port_parity;
tcflag_t port_stop;
struct termios settings;
switch (baud) {
case SERIAL_BAUD_1200:
port_baud = B1200;
break;
case SERIAL_BAUD_1800:
port_baud = B1800;
break;
case SERIAL_BAUD_2400:
port_baud = B2400;
break;
case SERIAL_BAUD_4800:
port_baud = B4800;
break;
case SERIAL_BAUD_9600:
port_baud = B9600;
break;
case SERIAL_BAUD_19200:
port_baud = B19200;
break;
case SERIAL_BAUD_38400:
port_baud = B38400;
break;
case SERIAL_BAUD_57600:
port_baud = B57600;
break;
case SERIAL_BAUD_115200:
port_baud = B115200;
break;
case SERIAL_BAUD_230400:
port_baud = B230400;
break;
#ifdef B460800
case SERIAL_BAUD_460800:
port_baud = B460800;
break;
#endif /* B460800 */
#ifdef B921600
case SERIAL_BAUD_921600:
port_baud = B921600;
break;
#endif /* B921600 */
#ifdef B500000
case SERIAL_BAUD_500000:
port_baud = B500000;
break;
#endif /* B500000 */
#ifdef B576000
case SERIAL_BAUD_576000:
port_baud = B576000;
break;
#endif /* B576000 */
#ifdef B1000000
case SERIAL_BAUD_1000000:
port_baud = B1000000;
break;
#endif /* B1000000 */
#ifdef B1500000
case SERIAL_BAUD_1500000:
port_baud = B1500000;
break;
#endif /* B1500000 */
#ifdef B2000000
case SERIAL_BAUD_2000000:
port_baud = B2000000;
break;
#endif /* B2000000 */
case SERIAL_BAUD_INVALID:
default:
return PORT_ERR_UNKNOWN;
}
switch (bits) {
case SERIAL_BITS_5:
port_bits = CS5;
break;
case SERIAL_BITS_6:
port_bits = CS6;
break;
case SERIAL_BITS_7:
port_bits = CS7;
break;
case SERIAL_BITS_8:
port_bits = CS8;
break;
default:
return PORT_ERR_UNKNOWN;
}
switch (parity) {
case SERIAL_PARITY_NONE:
port_parity = 0;
break;
case SERIAL_PARITY_EVEN:
port_parity = PARENB;
break;
case SERIAL_PARITY_ODD:
port_parity = PARENB | PARODD;
break;
default:
return PORT_ERR_UNKNOWN;
}
switch (stopbit) {
case SERIAL_STOPBIT_1:
port_stop = 0;
break;
case SERIAL_STOPBIT_2:
port_stop = CSTOPB;
break;
default:
return PORT_ERR_UNKNOWN;
}
/* reset the settings */
#ifndef __sun /* Used by GNU and BSD. Ignore __SVR4 in test. */
cfmakeraw(&h->newtio);
#else /* __sun */
h->newtio.c_iflag &=
~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
h->newtio.c_oflag &= ~OPOST;
h->newtio.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
h->newtio.c_cflag &= ~(CSIZE | PARENB);
h->newtio.c_cflag |= CS8;
#endif /* __sun */
#ifdef __QNXNTO__
h->newtio.c_cflag &= ~(CSIZE | IHFLOW | OHFLOW);
#else
h->newtio.c_cflag &= ~(CSIZE | CRTSCTS);
#endif
h->newtio.c_cflag &= ~(CSIZE | CRTSCTS);
h->newtio.c_iflag &= ~(IXON | IXOFF | IXANY | IGNPAR);
h->newtio.c_lflag &= ~(ECHOK | ECHOCTL | ECHOKE);
h->newtio.c_oflag &= ~(OPOST | ONLCR);
/* setup the new settings */
cfsetispeed(&h->newtio, port_baud);
cfsetospeed(&h->newtio, port_baud);
h->newtio.c_cflag |= port_parity | port_bits | port_stop | CLOCAL | CREAD;
if (port_parity != 0)
h->newtio.c_iflag |= INPCK;
h->newtio.c_cc[VMIN] = 0;
h->newtio.c_cc[VTIME] = TERMIOS_TIMEOUT; /* in units of 0.1 s */
/* set the settings */
serial_flush(h);
if (tcsetattr(h->fd, TCSANOW, &h->newtio) != 0)
return PORT_ERR_UNKNOWN;
/* confirm they were set */
tcgetattr(h->fd, &settings);
if (settings.c_iflag != h->newtio.c_iflag ||
settings.c_oflag != h->newtio.c_oflag ||
settings.c_cflag != h->newtio.c_cflag ||
settings.c_lflag != h->newtio.c_lflag)
return PORT_ERR_UNKNOWN;
snprintf(h->setup_str, sizeof(h->setup_str), "%u %d%c%d",
serial_get_baud_int(baud), serial_get_bits_int(bits),
serial_get_parity_str(parity), serial_get_stopbit_int(stopbit));
return PORT_ERR_OK;
}
static port_err_t serial_posix_initialize(struct port_interface *port) {
// This needs to be handled by a secondary tool that opens the port correctly.
// This application doesn't open the port correctly.
// if (port->rs485switch != NULL)
// {
// printf("Putting LED into bootloader mode.\n");
// fflush(stdout);
// if (port->rs485switch != NULL)
// {
// // Send the enable bootloader command if this is an LED programmed
// through 485 uint8_t buf[] = {0x32, 0x47, 0x20, 0xc, 0x0, 0x6, 0xdf,
// 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc, 0x26, 0x44};
// serial_posix_write(port, buf, 17);
// }
// sleep(1);
// }
return PORT_ERR_OK;
}
static port_err_t serial_posix_open(struct port_interface *port,
struct port_options *ops) {
serial_t *h;
/* 1. check options */
if (ops->baudRate == SERIAL_BAUD_INVALID)
return PORT_ERR_UNKNOWN;
if (serial_get_bits(ops->serial_mode) == SERIAL_BITS_INVALID)
return PORT_ERR_UNKNOWN;
if (serial_get_parity(ops->serial_mode) == SERIAL_PARITY_INVALID)
return PORT_ERR_UNKNOWN;
if (serial_get_stopbit(ops->serial_mode) == SERIAL_STOPBIT_INVALID)
return PORT_ERR_UNKNOWN;
/* 2. open it */
h = serial_open(ops->device);
if (h == NULL)
return PORT_ERR_UNKNOWN;
/* 3. check for tty (but only warn) */
if (!isatty(h->fd))
fprintf(stderr, "Warning: Not a tty: %s\n", ops->device);
/* 4. set options */
if (serial_setup(h, ops->baudRate, serial_get_bits(ops->serial_mode),
serial_get_parity(ops->serial_mode),
serial_get_stopbit(ops->serial_mode)) != PORT_ERR_OK) {
serial_close(h);
return PORT_ERR_UNKNOWN;
}
port->private = h;
return PORT_ERR_OK;
}
static port_err_t serial_posix_close(struct port_interface *port) {
serial_t *h;
h = (serial_t *)port->private;
if (h == NULL)
return PORT_ERR_UNKNOWN;
serial_close(h);
port->private = NULL;
return PORT_ERR_OK;
}
static port_err_t serial_posix_read(struct port_interface *port, void *buf,
size_t nbyte) {
serial_t *h;
ssize_t r;
uint8_t *pos = (uint8_t *)buf;
h = (serial_t *)port->private;
if (h == NULL)
return PORT_ERR_UNKNOWN;
while (nbyte) {
r = read(h->fd, pos, nbyte);
if (r == 0)
return PORT_ERR_TIMEDOUT;
if (r < 0)
return PORT_ERR_UNKNOWN;
nbyte -= r;
pos += r;
}
return PORT_ERR_OK;
}
static port_err_t serial_posix_write(struct port_interface *port, void *buf,
size_t nbyte) {
serial_t *h;
ssize_t r;
const uint8_t *pos = (const uint8_t *)buf;
h = (serial_t *)port->private;
if (h == NULL)
return PORT_ERR_UNKNOWN;
FILE *fptr = NULL;
if (port->rs485switch != NULL) {
fptr = fopen(port->rs485switch, "w");
if (fptr != NULL) {
fprintf(fptr, "%d", 1);
fseek(fptr, 0, SEEK_SET);
// fclose(fptr);
} else {
printf("Failed to open gpio\n");
fflush(stdout);
}
// fptr = NULL;
}
size_t nbyte2 = nbyte;
while (nbyte) {
r = write(h->fd, pos, nbyte);
if (r < 1)
return PORT_ERR_UNKNOWN;
nbyte -= r;
pos += r;
}
if (port->rs485switch != NULL) {
usleep(11 * nbyte2 * 1000000 / 115200); // wait for data to transfer
// fptr = fopen(port->rs485switch, "w");
if (fptr != NULL) {
fprintf(fptr, "%d", 0);
fclose(fptr);
}
}
return PORT_ERR_OK;
}
static port_err_t serial_posix_gpio(struct port_interface *port,
serial_gpio_t n, int level) {
serial_t *h;
int bit, lines;
h = (serial_t *)port->private;
if (h == NULL)
return PORT_ERR_UNKNOWN;
switch (n) {
case GPIO_RTS:
bit = TIOCM_RTS;
break;
case GPIO_DTR:
bit = TIOCM_DTR;
break;
case GPIO_BRK:
if (level == 0)
return PORT_ERR_OK;
if (tcsendbreak(h->fd, 1))
return PORT_ERR_UNKNOWN;
return PORT_ERR_OK;
default:
return PORT_ERR_UNKNOWN;
}
/* handle RTS/DTR */
if (ioctl(h->fd, TIOCMGET, &lines))
return PORT_ERR_UNKNOWN;
lines = level ? lines | bit : lines & ~bit;
if (ioctl(h->fd, TIOCMSET, &lines))
return PORT_ERR_UNKNOWN;
return PORT_ERR_OK;
}
static const char *serial_posix_get_cfg_str(struct port_interface *port) {
serial_t *h;
h = (serial_t *)port->private;
return h ? h->setup_str : "INVALID";
}
static port_err_t serial_posix_flush(struct port_interface *port) {
serial_t *h;
h = (serial_t *)port->private;
if (h == NULL)
return PORT_ERR_UNKNOWN;
serial_flush(h);
return PORT_ERR_OK;
}
struct port_interface port_serial = {
.name = "serial_posix",
.flags = PORT_BYTE | PORT_GVR_ETX | PORT_CMD_INIT | PORT_RETRY,
.open = serial_posix_open,
.initialize = serial_posix_initialize,
.close = serial_posix_close,
.flush = serial_posix_flush,
.read = serial_posix_read,
.write = serial_posix_write,
.gpio = serial_posix_gpio,
.get_cfg_str = serial_posix_get_cfg_str,
.rs485switch = NULL,
};