blob: fbdf4ac8436d2ddfacac0f701127345efde9ac28 [file] [log] [blame]
Stefan Reinauer85b0fa12010-12-17 00:08:21 +00001/*
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
Eric Biederman8ca8d762003-04-22 19:02:15 +000021#include <arch/io.h>
22#include <uart8250.h>
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000023#include <pc80/mc146818rtc.h>
24#if CONFIG_USE_OPTION_TABLE
25#include "option_table.h"
26#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000027
Eric Biederman8ca8d762003-04-22 19:02:15 +000028
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000029/* Should support 8250, 16450, 16550, 16550A type UARTs */
Eric Biederman8ca8d762003-04-22 19:02:15 +000030
Eric Biederman69afe282004-11-11 06:53:24 +000031static inline int uart8250_can_tx_byte(unsigned base_port)
Eric Biederman8ca8d762003-04-22 19:02:15 +000032{
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000033 return inb(base_port + UART_LSR) & UART_MSR_DSR;
Eric Biederman8ca8d762003-04-22 19:02:15 +000034}
35
36static inline void uart8250_wait_to_tx_byte(unsigned base_port)
37{
38 while(!uart8250_can_tx_byte(base_port))
39 ;
40}
41
42static inline void uart8250_wait_until_sent(unsigned base_port)
43{
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000044 while(!(inb(base_port + UART_LSR) & UART_LSR_TEMT))
Eric Biederman8ca8d762003-04-22 19:02:15 +000045 ;
46}
47
48void uart8250_tx_byte(unsigned base_port, unsigned char data)
49{
50 uart8250_wait_to_tx_byte(base_port);
51 outb(data, base_port + UART_TBR);
52 /* Make certain the data clears the fifos */
53 uart8250_wait_until_sent(base_port);
54}
55
Greg Watsone54d55b2004-03-13 03:40:51 +000056int uart8250_can_rx_byte(unsigned base_port)
57{
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000058 return inb(base_port + UART_LSR) & UART_LSR_DR;
Greg Watsone54d55b2004-03-13 03:40:51 +000059}
60
61unsigned char uart8250_rx_byte(unsigned base_port)
62{
63 while(!uart8250_can_rx_byte(base_port))
64 ;
65 return inb(base_port + UART_RBR);
66}
67
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000068void uart8250_init(unsigned base_port, unsigned divisor)
Eric Biederman8ca8d762003-04-22 19:02:15 +000069{
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000070 /* Disable interrupts */
Eric Biederman8ca8d762003-04-22 19:02:15 +000071 outb(0x0, base_port + UART_IER);
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000072 /* Enable FIFOs */
73 outb(UART_FCR_FIFO_EN, base_port + UART_FCR);
74
Stefan Reinauerebafa4d2006-10-07 00:13:24 +000075 /* assert DTR and RTS so the other end is happy */
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000076 outb(UART_MCR_DTR | UART_MCR_RTS, base_port + UART_MCR);
77
78 /* DLAB on */
79 outb(UART_LCR_DLAB | CONFIG_TTYS0_LCS, base_port + UART_LCR);
80
81 /* Set Baud Rate Divisor. 12 ==> 115200 Baud */
Eric Biederman8ca8d762003-04-22 19:02:15 +000082 outb(divisor & 0xFF, base_port + UART_DLL);
83 outb((divisor >> 8) & 0xFF, base_port + UART_DLM);
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000084
85 /* Set to 3 for 8N1 */
86 outb(CONFIG_TTYS0_LCS, base_port + UART_LCR);
Eric Biederman8ca8d762003-04-22 19:02:15 +000087}
Eric Biederman5cd81732004-03-11 15:01:31 +000088
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000089#ifndef __ROMCC__
Eric Biederman5cd81732004-03-11 15:01:31 +000090/* Initialize a generic uart */
91void init_uart8250(unsigned base_port, struct uart8250 *uart)
92{
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000093 int divisor = uart->baud ? (115200/uart->baud) : 1;
94
Stefan Reinauer08670622009-06-30 15:17:49 +000095 if (base_port == CONFIG_TTYS0_BASE) {
Eric Biederman5cd81732004-03-11 15:01:31 +000096 /* Don't reinitialize the console serial port,
97 * This is espeically nasty in SMP.
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000098 * NOTE: The first invocation thus always needs to be
Eric Biederman5cd81732004-03-11 15:01:31 +000099 */
100 return;
101 }
Stefan Reinauer85b0fa12010-12-17 00:08:21 +0000102 uart8250_init(base_port, divisor);
Eric Biederman5cd81732004-03-11 15:01:31 +0000103}
Stefan Reinauer85b0fa12010-12-17 00:08:21 +0000104#endif
105
106void uart_init(void)
107{
108#if CONFIG_USE_OPTION_TABLE
109 static const unsigned char divisor[] = { 1, 2, 3, 6, 12, 24, 48, 96 };
110 unsigned ttys0_div, ttys0_index;
111 ttys0_index = read_option(CMOS_VSTART_baud_rate, CMOS_VLEN_baud_rate, 0);
112 ttys0_index &= 7;
113 ttys0_div = divisor[ttys0_index];
114
115 uart8250_init(CONFIG_TTYS0_BASE, ttys0_div);
116#else
117 uart8250_init(CONFIG_TTYS0_BASE, CONFIG_TTYS0_DIV);
118#endif
119}
120