remove trailing whitespace
[coreboot.git] / src / lib / uart8250mem.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2003 Eric Biederman
5  * Copyright (C) 2006-2010 coresystems GmbH
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <arch/io.h>
22 #include <uart8250.h>
23 #include <pc80/mc146818rtc.h>
24 #if CONFIG_USE_OPTION_TABLE
25 #include "option_table.h"
26 #endif
27 #if !defined(__SMM__) && !defined(__PRE_RAM__)
28 #include <device/device.h>
29 #endif
30
31 /* Should support 8250, 16450, 16550, 16550A type UARTs */
32
33 static inline int uart8250_mem_can_tx_byte(unsigned base_port)
34 {
35         return read8(base_port + UART_LSR) & UART_MSR_DSR;
36 }
37
38 static inline void uart8250_mem_wait_to_tx_byte(unsigned base_port)
39 {
40         while(!uart8250_mem_can_tx_byte(base_port))
41                 ;
42 }
43
44 static inline void uart8250_mem_wait_until_sent(unsigned base_port)
45 {
46         while(!(read8(base_port + UART_LSR) & UART_LSR_TEMT))
47                 ;
48 }
49
50 void uart8250_mem_tx_byte(unsigned base_port, unsigned char data)
51 {
52         uart8250_mem_wait_to_tx_byte(base_port);
53         write8(base_port + UART_TBR, data);
54 }
55
56 void uart8250_mem_tx_flush(unsigned base_port)
57 {
58         uart8250_mem_wait_until_sent(base_port);
59 }
60
61 int uart8250_mem_can_rx_byte(unsigned base_port)
62 {
63         return read8(base_port + UART_LSR) & UART_LSR_DR;
64 }
65
66 unsigned char uart8250_mem_rx_byte(unsigned base_port)
67 {
68         while(!uart8250_mem_can_rx_byte(base_port))
69                 ;
70         return read8(base_port + UART_RBR);
71 }
72
73 void uart8250_mem_init(unsigned base_port, unsigned divisor)
74 {
75         /* Disable interrupts */
76         write8(base_port + UART_IER, 0x0);
77         /* Enable FIFOs */
78         write8(base_port + UART_FCR, UART_FCR_FIFO_EN);
79
80         /* Assert DTR and RTS so the other end is happy */
81         write8(base_port + UART_MCR, UART_MCR_DTR | UART_MCR_RTS);
82
83         /* DLAB on */
84         write8(base_port + UART_LCR, UART_LCR_DLAB | CONFIG_TTYS0_LCS);
85
86         /* Set Baud Rate Divisor. 12 ==> 115200 Baud */
87         write8(base_port + UART_DLL, divisor & 0xFF);
88         write8(base_port + UART_DLM, (divisor >> 8) & 0xFF);
89
90         /* Set to 3 for 8N1 */
91         write8(base_port + UART_LCR, CONFIG_TTYS0_LCS);
92 }
93
94 u32 uart_mem_init(void)
95 {
96         unsigned uart_baud = CONFIG_TTYS0_BAUD;
97         u32 uart_bar = 0;
98         unsigned div;
99
100         /* find out the correct baud rate */
101 #if !defined(__SMM__) && CONFIG_USE_OPTION_TABLE
102         static const unsigned baud[8] = { 115200, 57600, 38400, 19200, 9600, 4800, 2400, 1200 };
103         unsigned b_index = 0;
104 #if defined(__PRE_RAM__)
105         b_index = read_option(CMOS_VSTART_baud_rate, CMOS_VLEN_baud_rate, 0);
106         b_index &= 7;
107         uart_baud = baud[b_index];
108 #else
109         if (get_option(&b_index, "baud_rate") == 0) {
110                 uart_baud = baud[b_index];
111         }
112 #endif
113 #endif
114
115         /* Now find the UART base address and calculate the divisor */
116 #if CONFIG_DRIVERS_OXFORD_OXPCIE
117
118 #if defined(MORE_TESTING) && !defined(__SMM__) && !defined(__PRE_RAM__)
119         device_t dev = dev_find_device(0x1415, 0xc158, NULL);
120
121         if (dev) {
122                 struct resource *res = find_resource(dev, 0x10);
123
124                 if (res) {
125                         uart_bar = res->base + 0x1000; // for 1st UART
126                         // uart_bar = res->base + 0x2000; // for 2nd UART
127                 }
128         }
129
130         if (!uart_bar)
131 #endif
132         uart_bar = CONFIG_OXFORD_OXPCIE_BASE_ADDRESS + 0x1000; // 1st UART
133         // uart_bar = CONFIG_OXFORD_OXPCIE_BASE_ADDRESS + 0x2000; // 2nd UART
134
135         div = 4000000 / uart_baud;
136 #endif
137
138         if (uart_bar)
139                 uart8250_mem_init(uart_bar, div);
140
141         return uart_bar;
142 }