libpayload: Support curses for serial
[coreboot.git] / payloads / libpayload / drivers / serial.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <libpayload.h>
31
32 #define IOBASE lib_sysinfo.ser_ioport
33
34 #ifdef CONFIG_SERIAL_SET_SPEED
35 #define DIVISOR (115200 / CONFIG_SERIAL_BAUD_RATE)
36 #endif
37
38 /* This is a hack - we convert the drawing characters to ASCII */
39
40 static unsigned char translate_special_chars(unsigned char c)
41 {
42         switch(c) {
43         case 196:
44                 return '-';
45         case 179:
46                 return '|';
47         case 218:
48         case 191:
49         case 192:
50         case 217:
51                 return '+';
52         default:
53                 return ' ';
54         }
55 }
56
57 void serial_init(void)
58 {
59 #ifdef CONFIG_SERIAL_SET_SPEED
60         unsigned char reg;
61
62         /* Disable interrupts. */
63         outb(0, IOBASE + 0x01);
64
65         /* Assert RTS and DTR. */
66         outb(3, IOBASE + 0x04);
67
68         /* Set the divisor latch. */
69         reg = inb(IOBASE + 0x03);
70         outb(reg | 0x80, IOBASE + 0x03);
71
72         /* Write the divisor. */
73         outb(DIVISOR & 0xFF, IOBASE);
74         outb(DIVISOR >> 8 & 0xFF, IOBASE + 1);
75
76         /* Restore the previous value of the divisor. */
77         outb(reg &= ~0x80, IOBASE + 0x03);
78 #endif
79 }
80
81 void serial_putchar(unsigned char c)
82 {
83         if (c > 127)
84                 c = translate_special_chars(c);
85
86         while ((inb(IOBASE + 0x05) & 0x20) == 0) ;
87         outb(c, IOBASE);
88 }
89
90 int serial_havechar(void)
91 {
92         return inb(IOBASE + 0x05) & 0x01;
93 }
94
95 int serial_getchar(void)
96 {
97         while (!serial_havechar()) ;
98         return (int)inb(IOBASE);
99 }
100
101 /*  These are thinly veiled vt100 functions used by curses */
102
103 #define VT100_CLEAR       "\e[H\e[J"
104 #define VT100_SBOLD       "\e[7m"
105 #define VT100_EBOLD       "\e[m"
106 #define VT100_CURSOR_ADDR "\e[%d;%dH"
107
108 static void serial_putcmd(char *str)
109 {
110         while(*str)
111                 serial_putchar(*(str++));
112 }
113
114 void serial_clear(void)
115 {
116         serial_putcmd(VT100_CLEAR);
117 }
118
119 void serial_start_bold(void)
120 {
121         serial_putcmd(VT100_SBOLD);
122 }
123
124 void serial_end_bold(void)
125 {
126         serial_putcmd(VT100_EBOLD);
127 }
128
129 void serial_set_cursor(int y, int x)
130 {
131         char buffer[32];
132         snprintf(buffer, sizeof(buffer), VT100_CURSOR_ADDR, y, x);
133         serial_putcmd(buffer);
134 }