blob: af676e1ebe01e240a867770e7135dfbf2caa483e [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 *
Rob Landley290fcb42006-06-18 23:59:03 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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 {
13 unsigned short speed;
14 unsigned short value;
Manuel Novoa III cad53642003-03-19 09:13:01 +000015};
16
Rob Landley57c1f732006-06-20 16:17:24 +000017static const struct speed_map speeds[] = {
18 {B0, 0},
19 {B50, 50},
20 {B75, 75},
21 {B110, 110},
22 {B134, 134},
23 {B150, 150},
24 {B200, 200},
25 {B300, 300},
26 {B600, 600},
27 {B1200, 1200},
28 {B1800, 1800},
29 {B2400, 2400},
30 {B4800, 4800},
31 {B9600, 9600},
32#ifdef B19200
33 {B19200, 19200},
34#elif defined(EXTA)
35 {EXTA, 19200},
36#endif
37#ifdef B38400
38 {B38400, 38400/256 + 0x8000U},
39#elif defined(EXTB)
40 {EXTB, 38400/256 + 0x8000U},
41#endif
42#ifdef B57600
43 {B57600, 57600/256 + 0x8000U},
44#endif
45#ifdef B115200
46 {B115200, 115200/256 + 0x8000U},
47#endif
48#ifdef B230400
49 {B230400, 230400/256 + 0x8000U},
50#endif
51#ifdef B460800
52 {B460800, 460800/256 + 0x8000U},
53#endif
Bernhard Reutner-Fischere707a302009-10-20 19:40:20 +020054#ifdef B921600
55 {B921600, 921600/256 + 0x8000U},
56#endif
Rob Landley57c1f732006-06-20 16:17:24 +000057};
Manuel Novoa III cad53642003-03-19 09:13:01 +000058
Denis Vlasenko80b8b392007-06-25 10:55:35 +000059enum { NUM_SPEEDS = ARRAY_SIZE(speeds) };
Rob Landley57c1f732006-06-20 16:17:24 +000060
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000061unsigned FAST_FUNC tty_baud_to_value(speed_t speed)
Rob Landley57c1f732006-06-20 16:17:24 +000062{
63 int i = 0;
64
65 do {
66 if (speed == speeds[i].speed) {
67 if (speeds[i].value & 0x8000U) {
68 return ((unsigned long) (speeds[i].value) & 0x7fffU) * 256;
69 }
70 return speeds[i].value;
71 }
72 } while (++i < NUM_SPEEDS);
Manuel Novoa III cad53642003-03-19 09:13:01 +000073
74 return 0;
75}
76
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000077speed_t FAST_FUNC tty_value_to_baud(unsigned int value)
Manuel Novoa III cad53642003-03-19 09:13:01 +000078{
Rob Landley57c1f732006-06-20 16:17:24 +000079 int i = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +000080
Rob Landley57c1f732006-06-20 16:17:24 +000081 do {
Peter Kjellerstedt5ab8f7d2006-06-20 16:35:37 +000082 if (value == tty_baud_to_value(speeds[i].speed)) {
Rob Landley57c1f732006-06-20 16:17:24 +000083 return speeds[i].speed;
84 }
85 } while (++i < NUM_SPEEDS);
Manuel Novoa III cad53642003-03-19 09:13:01 +000086
Rob Landley57c1f732006-06-20 16:17:24 +000087 return (speed_t) - 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000088}
Rob Landley57c1f732006-06-20 16:17:24 +000089
90#if 0
91/* testing code */
92#include <stdio.h>
93
94int main(void)
95{
96 unsigned long v;
97 speed_t s;
98
Bernhard Reutner-Fischere707a302009-10-20 19:40:20 +020099 for (v = 0 ; v < 1000000; v++) {
Peter Kjellerstedt5ab8f7d2006-06-20 16:35:37 +0000100 s = tty_value_to_baud(v);
Rob Landley57c1f732006-06-20 16:17:24 +0000101 if (s == (speed_t) -1) {
102 continue;
103 }
104 printf("v = %lu -- s = %0lo\n", v, (unsigned long) s);
105 }
106
107 printf("-------------------------------\n");
108
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000109 for (s = 0 ; s < 010017+1; s++) {
Peter Kjellerstedt5ab8f7d2006-06-20 16:35:37 +0000110 v = tty_baud_to_value(s);
Rob Landley57c1f732006-06-20 16:17:24 +0000111 if (!v) {
112 continue;
113 }
114 printf("v = %lu -- s = %0lo\n", v, (unsigned long) s);
115 }
116
117 return 0;
118}
119#endif