d6073f12faad021aef8790f8827e99b22898e60a
[oweals/busybox.git] / libbb / speed_table.c
1 /* 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  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 #include "libbb.h"
11
12 static const unsigned short speeds[] = {
13         0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600,
14         19200, 38400, 57600>>8, 115200>>8, 230400>>8, 460800>>8, 500000>>8,
15         576000>>8, 921600>>8, 1000000>>8, 1152000>>8, 1500000>>8, 2000000>>8,
16         3000000>>8, 3500000>>8, 4000000>>8
17 };
18
19 unsigned int tty_baud_to_value(speed_t speed)
20 {
21         int i;
22
23         for (i=0; i<sizeof(speeds) / sizeof(*speeds); i++)
24                 if (speed == speeds[i] * (i>15 ? 256 : 1))
25                         return i>15 ? (i+4096-14) : i;
26
27         return 0;
28 }
29
30 speed_t tty_value_to_baud(unsigned int value)
31 {
32         int i;
33
34         for (i=0; i<sizeof(speeds) / sizeof(*speeds); i++)
35                 if (value == (i>15 ? (i+4096-14) : i))
36                         return speeds[i] * (i>15 ? 256 : 1);
37
38         return -1;
39 }