blob: 11ced01d0ce00b2e8cfde62dd53e8c448d0d5f1c [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
3 * compact speed_t <-> speed functions for busybox
4 *
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010#include "libbb.h"
11
Rob Landley57c1f732006-06-20 16:17:24 +000012struct speed_map {
Denys Vlasenko76787a72016-09-01 11:44:13 +020013#if defined __FreeBSD__ \
14 || (defined B115200 && B115200 > 0xffff) \
15 || (defined B230400 && B230400 > 0xffff) \
16 || (defined B460800 && B460800 > 0xffff) \
17 || (defined B921600 && B921600 > 0xffff) \
18 || (defined B1152000 && B1152000 > 0xffff) \
19 || (defined B1000000 && B1000000 > 0xffff) \
20 || (defined B2000000 && B2000000 > 0xffff) \
21 || (defined B3000000 && B3000000 > 0xffff) \
22 || (defined B4000000 && B4000000 > 0xffff)
Denys Vlasenko96f92a12014-01-08 15:25:20 +010023 /* On FreeBSD, B<num> constants don't fit into a short */
24 unsigned speed;
25#else
Rob Landley57c1f732006-06-20 16:17:24 +000026 unsigned short speed;
Denys Vlasenko96f92a12014-01-08 15:25:20 +010027#endif
Rob Landley57c1f732006-06-20 16:17:24 +000028 unsigned short value;
Manuel Novoa III cad53642003-03-19 09:13:01 +000029};
30
Denys Vlasenko76787a72016-09-01 11:44:13 +020031/* On Linux, Bxx constants are 0..15 (up to B38400) and 0x1001..0x100f */
Rob Landley57c1f732006-06-20 16:17:24 +000032static const struct speed_map speeds[] = {
33 {B0, 0},
34 {B50, 50},
35 {B75, 75},
36 {B110, 110},
37 {B134, 134},
38 {B150, 150},
39 {B200, 200},
40 {B300, 300},
41 {B600, 600},
42 {B1200, 1200},
43 {B1800, 1800},
44 {B2400, 2400},
45 {B4800, 4800},
46 {B9600, 9600},
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020047#ifdef B19200
Rob Landley57c1f732006-06-20 16:17:24 +000048 {B19200, 19200},
49#elif defined(EXTA)
Denys Vlasenko76787a72016-09-01 11:44:13 +020050 {EXTA, 19200},
Rob Landley57c1f732006-06-20 16:17:24 +000051#endif
Denys Vlasenko76787a72016-09-01 11:44:13 +020052/* 19200 = 0x4b00 */
Denys Vlasenko4537f832016-09-26 08:52:52 +020053/* 38400 = 0x9600, this value would use bit#15 if not "/200" encoded: */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020054#ifdef B38400
Denys Vlasenko76787a72016-09-01 11:44:13 +020055 {B38400, 38400/200 + 0x8000u},
Rob Landley57c1f732006-06-20 16:17:24 +000056#elif defined(EXTB)
Denys Vlasenko76787a72016-09-01 11:44:13 +020057 {EXTB, 38400/200 + 0x8000u},
Rob Landley57c1f732006-06-20 16:17:24 +000058#endif
59#ifdef B57600
Denys Vlasenko76787a72016-09-01 11:44:13 +020060 {B57600, 57600/200 + 0x8000u},
Rob Landley57c1f732006-06-20 16:17:24 +000061#endif
62#ifdef B115200
Denys Vlasenko76787a72016-09-01 11:44:13 +020063 {B115200, 115200/200 + 0x8000u},
Rob Landley57c1f732006-06-20 16:17:24 +000064#endif
65#ifdef B230400
Denys Vlasenko76787a72016-09-01 11:44:13 +020066 {B230400, 230400/200 + 0x8000u},
Rob Landley57c1f732006-06-20 16:17:24 +000067#endif
68#ifdef B460800
Denys Vlasenko76787a72016-09-01 11:44:13 +020069 {B460800, 460800/200 + 0x8000u},
70#endif
71#ifdef B576000
72 {B576000, 576000/200 + 0x8000u},
Rob Landley57c1f732006-06-20 16:17:24 +000073#endif
Bernhard Reutner-Fischere707a302009-10-20 19:40:20 +020074#ifdef B921600
Denys Vlasenko76787a72016-09-01 11:44:13 +020075 {B921600, 921600/200 + 0x8000u},
Bernhard Reutner-Fischere707a302009-10-20 19:40:20 +020076#endif
Denys Vlasenko76787a72016-09-01 11:44:13 +020077#ifdef B1152000
78 {B1152000, 1152000/200 + 0x8000u},
79#endif
80
81#ifdef B500000
82 {B500000, 500000/200 + 0x8000u},
83#endif
84#ifdef B1000000
85 {B1000000, 1000000/200 + 0x8000u},
86#endif
87#ifdef B1500000
88 {B1500000, 1500000/200 + 0x8000u},
89#endif
90#ifdef B2000000
91 {B2000000, 2000000/200 + 0x8000u},
92#endif
93#ifdef B2500000
94 {B2500000, 2500000/200 + 0x8000u},
95#endif
96#ifdef B3000000
97 {B3000000, 3000000/200 + 0x8000u},
98#endif
99#ifdef B3500000
100 {B3500000, 3500000/200 + 0x8000u},
101#endif
102#ifdef B4000000
103 {B4000000, 4000000/200 + 0x8000u},
104#endif
105/* 4000000/200 = 0x4e20, bit#15 still does not interfere with the value */
Denys Vlasenko525209a2016-09-26 14:37:12 +0200106/* (can use /800 if higher speeds would appear, /1600 won't work for B500000) */
Rob Landley57c1f732006-06-20 16:17:24 +0000107};
Manuel Novoa III cad53642003-03-19 09:13:01 +0000108
Denys Vlasenko525209a2016-09-26 14:37:12 +0200109/*
110 * TODO: maybe we can just bite the bullet, ditch the table and use termios2
111 * Linux API (supports arbitrary baud rates, no Bxxxx mess needed)? Example:
112 *
113 * #include <asm/termios.h>
114 * #include <asm/ioctls.h>
115 * struct termios2 t;
116 * ioctl(fd, TCGETS2, &t);
117 * t.c_ospeed = t.c_ispeed = 543210;
118 * t.c_cflag &= ~CBAUD;
119 * t.c_cflag |= BOTHER;
120 * ioctl(fd, TCSETS2, &t);
121 */
122
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000123enum { NUM_SPEEDS = ARRAY_SIZE(speeds) };
Rob Landley57c1f732006-06-20 16:17:24 +0000124
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000125unsigned FAST_FUNC tty_baud_to_value(speed_t speed)
Rob Landley57c1f732006-06-20 16:17:24 +0000126{
127 int i = 0;
128
129 do {
130 if (speed == speeds[i].speed) {
Denys Vlasenko76787a72016-09-01 11:44:13 +0200131 if (speeds[i].value & 0x8000u) {
Denys Vlasenko525209a2016-09-26 14:37:12 +0200132 return ((unsigned)(speeds[i].value) & 0x7fffU) * 200;
Rob Landley57c1f732006-06-20 16:17:24 +0000133 }
134 return speeds[i].value;
135 }
136 } while (++i < NUM_SPEEDS);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000137
138 return 0;
139}
140
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000141speed_t FAST_FUNC tty_value_to_baud(unsigned int value)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000142{
Rob Landley57c1f732006-06-20 16:17:24 +0000143 int i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000144
Rob Landley57c1f732006-06-20 16:17:24 +0000145 do {
Peter Kjellerstedt5ab8f7d2006-06-20 16:35:37 +0000146 if (value == tty_baud_to_value(speeds[i].speed)) {
Rob Landley57c1f732006-06-20 16:17:24 +0000147 return speeds[i].speed;
148 }
149 } while (++i < NUM_SPEEDS);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150
Rob Landley57c1f732006-06-20 16:17:24 +0000151 return (speed_t) - 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152}
Rob Landley57c1f732006-06-20 16:17:24 +0000153
154#if 0
155/* testing code */
156#include <stdio.h>
157
158int main(void)
159{
160 unsigned long v;
161 speed_t s;
162
Bernhard Reutner-Fischere707a302009-10-20 19:40:20 +0200163 for (v = 0 ; v < 1000000; v++) {
Peter Kjellerstedt5ab8f7d2006-06-20 16:35:37 +0000164 s = tty_value_to_baud(v);
Rob Landley57c1f732006-06-20 16:17:24 +0000165 if (s == (speed_t) -1) {
166 continue;
167 }
168 printf("v = %lu -- s = %0lo\n", v, (unsigned long) s);
169 }
170
171 printf("-------------------------------\n");
172
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000173 for (s = 0 ; s < 010017+1; s++) {
Peter Kjellerstedt5ab8f7d2006-06-20 16:35:37 +0000174 v = tty_baud_to_value(s);
Rob Landley57c1f732006-06-20 16:17:24 +0000175 if (!v) {
176 continue;
177 }
178 printf("v = %lu -- s = %0lo\n", v, (unsigned long) s);
179 }
180
181 return 0;
182}
183#endif