File: unixserial.c

package info (click to toggle)
pilot-link 0.12.5-dfsg-2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 6,868 kB
  • ctags: 5,811
  • sloc: ansic: 53,153; sh: 10,459; java: 2,584; perl: 2,247; python: 1,044; makefile: 991; yacc: 662; cpp: 551; xml: 39
file content (745 lines) | stat: -rw-r--r-- 17,427 bytes parent folder | download | duplicates (5)
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
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
/*
 * $Id: unixserial.c,v 1.53 2006/10/12 14:21:23 desrod Exp $
 *
 * unixserial.c: tty line interface code for Pilot serial comms under UNIX
 *
 * Copyright (c) 1996, 1997, D. Jeff Dionne & Kenneth Albanowski.
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 * 
 * This library 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 Library
 * General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>		/* Needed for Redhat 6.x machines */
#include <fcntl.h>
#include <string.h>

#include "pi-debug.h"
#include "pi-source.h"
#include "pi-serial.h"
#include "pi-error.h"

/* if this is running on a NeXT system... */
#ifdef NeXT
#include <sys/uio.h>
#include <sys/time.h>
#include <sys/file.h>
#endif

#ifdef HAVE_SYS_IOCTL_COMPAT_H
#include <sys/ioctl_compat.h>
#endif

#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif

#ifndef SGTTY

#ifndef HAVE_CFMAKERAW
#define cfmakeraw(ptr) (ptr)->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR\
					 |IGNCR|ICRNL|IXON);\
                       (ptr)->c_oflag &= ~OPOST;\
                       (ptr)->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);\
                       (ptr)->c_cflag &= ~(CSIZE|PARENB);\
                       (ptr)->c_cflag |= CS8
#endif

#ifndef HAVE_CFSETSPEED
#if defined(HAVE_CFSETISPEED) && defined(HAVE_CFSETOSPEED)
#define cfsetspeed(t,speed) \
  (cfsetispeed(t,speed) || cfsetospeed(t,speed))
#else
static int cfsetspeed(struct termios *t, int speed)
{
#ifdef HAVE_TERMIOS_CSPEED
	t->c_ispeed = speed;
	t->c_ospeed = speed;
#else
	t->c_cflag |= speed;
#endif
	return 0;
}
#endif
#endif

#endif /* SGTTY */

#ifndef O_NONBLOCK
# define O_NONBLOCK 0
#endif

/* Linux versions "before 2.1.8 or so" fail to flush hardware FIFO on port
   close */
#ifdef linux
# ifndef LINUX_VERSION_CODE
#  include <linux/version.h>
# endif
# ifndef LINUX_VERSION_CODE
#  define sleeping_beauty
# else
#  if (LINUX_VERSION_CODE < 0x020108)
#   define sleeping_beauty
#  endif
# endif
#endif

/* Unspecified NetBSD versions fail to flush hardware FIFO on port close */
#if defined(__NetBSD__) || defined (__OpenBSD__)
# define sleeping_beauty
#endif

/* Unspecified BSD/OS versions fail to flush hardware FIFO on port close */
#ifdef __bsdi__
# define sleeping_beauty
#endif

/* SGI IRIX fails to flush hardware FIFO on port close */
#ifdef __sgi
# define sleeping_beauty
#endif

/* Declare prototypes */
static int s_open(pi_socket_t *ps, struct pi_sockaddr *addr,
	size_t addrlen);
static int s_close(pi_socket_t *ps);
static int s_changebaud(pi_socket_t *ps);
static ssize_t s_write(pi_socket_t *ps, const unsigned char *buf,
	size_t len, int flags);
static ssize_t s_read(pi_socket_t *ps, pi_buffer_t *buf, size_t len,
	int flags);
static int s_poll(pi_socket_t *ps, int timeout);

static speed_t calcrate(int baudrate);
void pi_serial_impl_init (struct pi_serial_impl *impl);
static int s_flush(pi_socket_t *ps, int flags);

#ifdef sleeping_beauty
static void s_delay(time_t sec, suseconds_t usec);
#endif


/***********************************************************************
 *
 * Function:    s_open
 *
 * Summary:     Open the serial port and establish a connection for
 *		unix
 *
 * Parameters:	pi_socket_t*, pi_socket_taddr*, size_t
 *
 * Returns:     The file descriptor or negative on error
 *
 ***********************************************************************/
int
s_open(pi_socket_t *ps, struct pi_sockaddr *addr, size_t addrlen)
{
	int 	fd, 
		i;
	char 	*tty 	= addr->pi_device;

	struct pi_serial_data *data =
		(struct pi_serial_data *)ps->device->data;
	
#ifndef SGTTY
	struct termios tcn;
#else
	struct sgttyb tcn;
#endif
	if ((fd = open(tty, O_RDWR | O_NONBLOCK)) < 0) {
		ps->last_error = PI_ERR_GENERIC_SYSTEM;
		return PI_ERR_GENERIC_SYSTEM;	/* errno already set */
	}

	if (!isatty(fd)) {
		close(fd);
		errno = EINVAL;
		ps->last_error = PI_ERR_GENERIC_SYSTEM;
		return PI_ERR_GENERIC_SYSTEM;
	}

#ifndef SGTTY
	/* Set the tty to raw and to the correct speed */
	tcgetattr(fd, &tcn);

	data->tco 	= tcn;
	tcn.c_oflag 	= 0;
	tcn.c_iflag 	= IGNBRK | IGNPAR;
	tcn.c_cflag 	= CREAD | CLOCAL | CS8;

	cfsetspeed(&tcn, calcrate(data->rate));

	tcn.c_lflag = NOFLSH;

	cfmakeraw(&tcn);

	for (i = 0; i < 16; i++)
		tcn.c_cc[i] = 0;

	tcn.c_cc[VMIN] 	= 1;
	tcn.c_cc[VTIME] = 0;

	tcsetattr(fd, TCSANOW, &tcn);
#else
	/* Set the tty to raw and to the correct speed */
	ioctl(fd, TIOCGETP, &tcn);

	data->tco = tcn;

	tcn.sg_flags = RAW;
	tcn.sg_ispeed = calcrate(data->rate);
	tcn.sg_ospeed = calcrate(data->rate);

	ioctl(fd, TIOCSETN, &tcn);
#endif

	if ((i = fcntl(fd, F_GETFL, 0)) != -1) {
		i &= ~O_NONBLOCK;
		fcntl(fd, F_SETFL, i);
	}

	if ((i = pi_socket_setsd(ps, fd)) < 0)
		return i;

	return fd;
}


/***********************************************************************
 *
 * Function:    s_close
 *
 * Summary:     Close the open socket/file descriptor
 *
 * Parameters:	pi_socket_t*
 *
 * Returns:     0 for success, negative otherwise
 *
 ***********************************************************************/
static int
s_close(pi_socket_t *ps)
{
#ifdef sleeping_beauty
	s_delay(2, 0);
#endif

#if 0		/* previous test would never allow this code to execute */
 #ifndef SGTTY
	tcsetattr(ps->sd, TCSADRAIN, &data->tco);
 #else
	ioctl(ps->sd, TIOCSETP, &data->tco);
 #endif
#endif
	
	LOG((PI_DBG_DEV, PI_DBG_LVL_INFO,
		"DEV CLOSE unixserial fd: %d\n", ps->sd));

	return close(ps->sd);
}


/***********************************************************************
 *
 * Function:    s_poll
 *
 * Summary:     poll the open socket/file descriptor
 *
 * Parameters:	pi_socket_t*, timeout in milliseconds
 *
 * Returns:     0 for success, negative otherwise
 *
 ***********************************************************************/
static int
s_poll(pi_socket_t *ps, int timeout)
{
	struct 	pi_serial_data *data =
		 (struct pi_serial_data *)ps->device->data;
	struct 	timeval t;
	fd_set 	ready;

	FD_ZERO(&ready);
	FD_SET(ps->sd, &ready);

	/* If timeout == 0, wait forever for packet, otherwise wait till
	   timeout milliseconds */
	if (timeout == 0)
		select(ps->sd + 1, &ready, 0, 0, 0);
	else {
		t.tv_sec 	= timeout / 1000;
		t.tv_usec 	= (timeout % 1000) * 1000;
		if (select(ps->sd + 1, &ready, 0, 0, &t) == 0)
			return pi_set_error(ps->sd, PI_ERR_SOCK_TIMEOUT);
	}

	if (!FD_ISSET(ps->sd, &ready)) {
		/* otherwise throw out any current packet and return */
		LOG((PI_DBG_DEV, PI_DBG_LVL_WARN,
			"DEV POLL unixserial timeout\n"));
		data->rx_errors++;
		errno = ETIMEDOUT;
		return pi_set_error(ps->sd, PI_ERR_SOCK_TIMEOUT);
	}
	LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG,
		"DEV POLL unixserial found data on fd: %d\n", ps->sd));

	return 0;
}


/***********************************************************************
 *
 * Function:    s_write
 *
 * Summary:     Write to the open socket/file descriptor
 *
 * Parameters:	pi_socket_t*, unsigned char* to buf, buf length
 *
 * Returns:     number of bytes written or negative on error
 *
 ***********************************************************************/
static ssize_t
s_write(pi_socket_t *ps, const unsigned char *buf, size_t len,
	int flags)
{
	ssize_t	total,
		nwrote;
	struct 	pi_serial_data *data =
		(struct pi_serial_data *)ps->device->data;
	struct 	timeval t;
	fd_set 	ready;

	FD_ZERO(&ready);
	FD_SET(ps->sd, &ready);

	total = len;
	while (total > 0) {
		if (data->timeout == 0)
			select(ps->sd + 1, 0, &ready, 0, 0);
		else {
			t.tv_sec 	= data->timeout / 1000;
			t.tv_usec 	= (data->timeout % 1000) * 1000;
			if (select(ps->sd + 1, 0, &ready, 0, &t) == 0)
				return pi_set_error(ps->sd, PI_ERR_SOCK_TIMEOUT);
		}

		if (!FD_ISSET(ps->sd, &ready))
			return pi_set_error(ps->sd, PI_ERR_SOCK_TIMEOUT);

		nwrote = write(ps->sd, buf, len);
		if (nwrote < 0) {
			if (errno == EPIPE || errno == EBADF) {
				ps->state = PI_SOCK_CONN_BREAK;
				return pi_set_error(ps->sd, PI_ERR_SOCK_DISCONNECTED);
			}
			return pi_set_error(ps->sd, PI_ERR_SOCK_IO);
		}
		total -= nwrote;
	}
	data->tx_bytes += len;

	/* hack to slow things down so that the Visor will work */
	usleep(10 + len);

	LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG,
		"DEV TX unixserial wrote %d bytes\n", len));

	return len;
}


/***********************************************************************
 *
 * Function:    s_read_buf
 *
 * Summary:     read from data buffer
 *
 * Parameters:	pi_socket_t*, pi_buffer_t* to buf, length to get
 *
 * Returns:     number of bytes read
 *
 ***********************************************************************/
static size_t
s_read_buf (pi_socket_t *ps, pi_buffer_t *buf, size_t len, int flags) 
{
	struct 	pi_serial_data *data =
		(struct pi_serial_data *)ps->device->data;
	size_t	rbuf = data->buf_size;

	if (rbuf > len)
		rbuf = len;

	if (pi_buffer_append (buf, data->buf, rbuf) == NULL) {
		errno = ENOMEM;
		return pi_set_error(ps->sd, PI_ERR_GENERIC_MEMORY);
	}

	if (flags != PI_MSG_PEEK) {
		data->buf_size -= rbuf;
		if (data->buf_size > 0)
			memmove(data->buf, &data->buf[rbuf], data->buf_size);
	}

	LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG,
		"DEV RX unixserial read %d bytes from read-ahead buffer\n", rbuf));

	return rbuf;
}

/***********************************************************************
 *
 * Function:    s_read
 *
 * Summary:     Read incoming data from the socket/file descriptor
 *
 * Parameters:	pi_socket_t*, pi_buffer_t* to buf, expect length, flags
 *
 * Returns:     number of bytes read or negative on error
 *
 ***********************************************************************/
static ssize_t
s_read(pi_socket_t *ps, pi_buffer_t *buf, size_t len, int flags)
{
	ssize_t rbuf = 0,
		bytes;
	struct 	pi_serial_data *data =
		(struct pi_serial_data *)ps->device->data;
	struct 	timeval t;
	fd_set 	ready;

	/* check whether we have at least partial data in store */
	if (data->buf_size) {
		rbuf = s_read_buf(ps, buf, len, flags);
		if (rbuf < 0)
			return rbuf;
		len -= rbuf;
		if (len == 0)
			return rbuf;
	}

	/* If timeout == 0, wait forever for packet, otherwise wait till
	   timeout milliseconds */
	FD_ZERO(&ready);
	FD_SET(ps->sd, &ready);
	if (data->timeout == 0)
		select(ps->sd + 1, &ready, 0, 0, 0);
	else {
		t.tv_sec 	= data->timeout / 1000;
		t.tv_usec 	= (data->timeout % 1000) * 1000;
		if (select(ps->sd + 1, &ready, 0, 0, &t) == 0)
			return pi_set_error(ps->sd, PI_ERR_SOCK_TIMEOUT);
	}

	/* If data is available in time, read it */
	if (FD_ISSET(ps->sd, &ready)) {
		if (flags == PI_MSG_PEEK && len > 256)
			len = 256;

		if (pi_buffer_expect (buf, len) == NULL) {
			errno = ENOMEM;
			return pi_set_error(ps->sd, PI_ERR_GENERIC_MEMORY);
		}

		bytes = read(ps->sd, &buf->data[buf->used], len);

		if (bytes > 0) {
			if (flags == PI_MSG_PEEK) {
				memcpy(data->buf + data->buf_size, buf->data + buf->used, bytes);
				data->buf_size += bytes;
			}
			buf->used += bytes;
			data->rx_bytes += bytes;
			rbuf += bytes;

			LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG,
				"DEV RX unixserial read %d bytes\n", bytes));
		} else if (bytes < 0) {
			rbuf = bytes;
		}
	} else {
		LOG((PI_DBG_DEV, PI_DBG_LVL_WARN,
			"DEV RX unixserial timeout\n"));
		data->rx_errors++;
		errno = ETIMEDOUT;
		return pi_set_error(ps->sd, PI_ERR_SOCK_TIMEOUT);
	}

	return rbuf;
}

/***********************************************************************
 *
 * Function:    s_flush
 *
 * Summary:	Flush incoming and/or outgoing data from the socket/file
 *		descriptor
 *
 * Parameters:	ps is of type pi_socket that contains the sd member which is
 *              the file descriptor that the data in buf will be read. It
 *              also contains the read buffer.
 *
 *		flags is of type int and can be a combination of
 *		PI_FLUSH_INPUT and PI_FLUSH_OUTPUT
 *
 * Returns:	0
 *
 ***********************************************************************/
static int
s_flush(pi_socket_t *ps, int flags)
{
	int fl;
	char buf[256];
	struct pi_serial_data *data = (struct pi_serial_data *) ps->device->data;

	if (flags & PI_FLUSH_INPUT) {
		/* clear internal buffer */
		data->buf_size = 0;

		/* flush pending data (we assume the socket is in blocking mode) */
		if ((fl = fcntl(ps->sd, F_GETFL, 0)) != -1)
		{
			fcntl(ps->sd, F_SETFL, fl | O_NONBLOCK);
			while (recv(ps->sd, buf, sizeof(buf), 0) > 0)
				;
			fcntl(ps->sd, F_SETFL, fl);
		}

		LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG,
			"DEV FLUSH unixserial flushed input buffer\n"));
	}
	return 0;
}

#ifdef sleeping_beauty
/***********************************************************************
 *
 * Function:    s_delay
 *
 * Summary:     Delay for a given period of time
 *
 * Parameters:	seconds, microseconds
 *
 * Returns:     Nothing
 *
 ***********************************************************************/
static void
s_delay(time_t sec, suseconds_t usec)
{
	struct 	timeval tv;

	tv.tv_sec 	= sec;
	tv.tv_usec 	= usec;

	select(0, 0, 0, 0, &tv);
}
#endif


/***********************************************************************
 *
 * Function:    s_changebaud
 *
 * Summary:     Change the speed of the socket
 *
 * Parameters:	pi_socket_t*
 *
 * Returns:     0 on success, negative otherwise
 *
 ***********************************************************************/
static int
s_changebaud(pi_socket_t *ps)
{
	struct 	pi_serial_data *data =
		(struct pi_serial_data *)ps->device->data;
#ifndef SGTTY
	struct 	termios tcn;

	LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG,
		"DEV SPEED unixserial switch to %d bps\n", (int)data->rate));

#ifdef sleeping_beauty
	s_delay(0, 200000);
#endif
	/* Set the tty to the new speed */
	if (tcgetattr(ps->sd, &tcn))
		return pi_set_error(ps->sd, PI_ERR_GENERIC_SYSTEM);

	tcn.c_cflag 	= CREAD | CLOCAL | CS8;
	cfsetspeed(&tcn, calcrate(data->rate));

	if (tcsetattr(ps->sd, TCSADRAIN, &tcn))
		return pi_set_error(ps->sd, PI_ERR_GENERIC_SYSTEM);

#else
	struct sgttyb tcn;

	if (ioctl(ps->sd, TIOCGETP, &tcn))
		return pi_set_error(ps->sd, PI_ERR_GENERIC_SYSTEM);

	tcn.sg_ispeed 	= calcrate(data->rate);
	tcn.sg_ospeed 	= calcrate(data->rate);

	if (ioctl(ps->sd, TIOCSETN, &tcn))
		return pi_set_error(ps->sd, PI_ERR_GENERIC_SYSTEM);
#endif

#ifdef sleeping_beauty
	s_delay(0, 200000);
#endif
	return 0;
}


/***********************************************************************
 *
 * Function:    pi_serial_impl_init
 *
 * Summary:     initialize function pointers for serial I/O operations
 *
 * Parameters:	struct pi_serial_impl*
 *
 * Returns:     void
 *
 ***********************************************************************/
void
pi_serial_impl_init (struct pi_serial_impl *impl)
{
	impl->open 		= s_open;
	impl->close 		= s_close;
	impl->changebaud 	= s_changebaud;
	impl->write 		= s_write;
	impl->read 		= s_read;
	impl->flush		= s_flush;
	impl->poll 		= s_poll;
}


/***********************************************************************
 *
 * Function:    calcrate
 *
 * Summary:     validates the selected baudrate
 *
 * Paramters:	buadrate
 *
 * Returns:     POSIX defined baudrate constant or terminates the process
 *		if the requested baudrate is not supported.
 *
 ***********************************************************************/
static speed_t
calcrate(int baudrate)
{
#ifdef B50
	if (baudrate == 50)
		return B50;
#endif
#ifdef B75
	if (baudrate == 75)
		return B75;
#endif
#ifdef B110
	if (baudrate == 110)
		return B110;
#endif
#ifdef B134
	if (baudrate == 134)
		return B134;
#endif
#ifdef B150
	if (baudrate == 150)
		return B150;
#endif
#ifdef B200
	if (baudrate == 200)
		return B200;
#endif
#ifdef B300
	if (baudrate == 300)
		return B300;
#endif
#ifdef B600
	if (baudrate == 600)
		return B600;
#endif
#ifdef B1200
	if (baudrate == 1200)
		return B1200;
#endif
#ifdef B1800
	if (baudrate == 1800)
		return B1800;
#endif
#ifdef B2400
	if (baudrate == 2400)
		return B2400;
#endif
#ifdef B4800
	if (baudrate == 4800)
		return B4800;
#endif
#ifdef B9600
	if (baudrate == 9600)
		return B9600;
#endif
#ifdef B19200
	else if (baudrate == 19200)
		return B19200;
#endif
#ifdef B38400
	else if (baudrate == 38400)
		return B38400;
#endif
#ifdef B57600
	else if (baudrate == 57600)
		return B57600;
#endif
#ifdef B76800
	else if (baudrate == 76800)
		return B76800;
#endif
#ifdef B115200
	else if (baudrate == 115200)
		return B115200;
#endif
#ifdef B230400
	else if (baudrate == 230400)
		return B230400;
#endif
#ifdef B460800
	else if (baudrate == 460800)
		return B460800;
#endif

	LOG((PI_DBG_DEV, PI_DBG_LVL_ERR,
		"DEV Serial CHANGEBAUD Unable to set baud rate %d\n",
		baudrate));
	abort();	/* invalid baud rate */
	return 0;
}

/* vi: set ts=8 sw=4 sts=4 noexpandtab: cin */
/* ex: set tabstop=4 expandtab: */
/* Local Variables: */
/* indent-tabs-mode: t */
/* c-basic-offset: 8 */
/* End: */