blob: 1eebb1823416af6d39285c3113424a07e8ea30e1 [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>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020022#include <console/uart.h>
Rudolf Marek7f0e9302011-09-02 23:23:41 +020023#include <trace.h>
Kyösti Mälkkibea6bf02014-01-30 15:45:16 +020024#include "uart8250reg.h"
Rudolf Marek7f0e9302011-09-02 23:23:41 +020025
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +020026#ifndef __ROMCC__
27#include <boot/coreboot_tables.h>
28#endif
29
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000030/* Should support 8250, 16450, 16550, 16550A type UARTs */
Eric Biederman8ca8d762003-04-22 19:02:15 +000031
Kyösti Mälkki3ee16682014-02-17 19:37:52 +020032/* Nominal values only, good for the range of choices Kconfig offers for
33 * set of standard baudrates.
34 */
35#define BAUDRATE_REFCLK (115200)
36#define BAUDRATE_OVERSAMPLE (1)
37
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020038/* Expected character delay at 1200bps is 9ms for a working UART
39 * and no flow-control. Assume UART as stuck if shift register
40 * or FIFO takes more than 50ms per character to appear empty.
41 *
42 * Estimated that inb() from UART takes 1 microsecond.
43 */
44#define SINGLE_CHAR_TIMEOUT (50 * 1000)
45#define FIFO_TIMEOUT (16 * SINGLE_CHAR_TIMEOUT)
46
Kyösti Mälkki47707492014-02-15 07:53:18 +020047static int uart8250_can_tx_byte(unsigned base_port)
Eric Biederman8ca8d762003-04-22 19:02:15 +000048{
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020049 return inb(base_port + UART_LSR) & UART_LSR_THRE;
Eric Biederman8ca8d762003-04-22 19:02:15 +000050}
51
Kyösti Mälkki47707492014-02-15 07:53:18 +020052static void uart8250_tx_byte(unsigned base_port, unsigned char data)
Eric Biederman8ca8d762003-04-22 19:02:15 +000053{
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020054 unsigned long int i = SINGLE_CHAR_TIMEOUT;
55 while (i-- && !uart8250_can_tx_byte(base_port));
Kyösti Mälkki47707492014-02-15 07:53:18 +020056 outb(data, base_port + UART_TBR);
Eric Biederman8ca8d762003-04-22 19:02:15 +000057}
58
Kyösti Mälkki47707492014-02-15 07:53:18 +020059static void uart8250_tx_flush(unsigned base_port)
Eric Biederman8ca8d762003-04-22 19:02:15 +000060{
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020061 unsigned long int i = FIFO_TIMEOUT;
62 while (i-- && !(inb(base_port + UART_LSR) & UART_LSR_TEMT));
Eric Biederman8ca8d762003-04-22 19:02:15 +000063}
64
Kyösti Mälkki47707492014-02-15 07:53:18 +020065static int uart8250_can_rx_byte(unsigned base_port)
Greg Watsone54d55b2004-03-13 03:40:51 +000066{
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000067 return inb(base_port + UART_LSR) & UART_LSR_DR;
Greg Watsone54d55b2004-03-13 03:40:51 +000068}
69
Kyösti Mälkki47707492014-02-15 07:53:18 +020070static unsigned char uart8250_rx_byte(unsigned base_port)
Greg Watsone54d55b2004-03-13 03:40:51 +000071{
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020072 unsigned long int i = SINGLE_CHAR_TIMEOUT;
73 while (i-- && !uart8250_can_rx_byte(base_port));
Patrick Georgi472efa62012-02-16 20:44:20 +010074
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020075 if (i)
76 return inb(base_port + UART_RBR);
77 else
78 return 0x0;
Greg Watsone54d55b2004-03-13 03:40:51 +000079}
80
Kyösti Mälkki47707492014-02-15 07:53:18 +020081static void uart8250_init(unsigned base_port, unsigned divisor)
Eric Biederman8ca8d762003-04-22 19:02:15 +000082{
Rudolf Marek7f0e9302011-09-02 23:23:41 +020083 DISABLE_TRACE;
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000084 /* Disable interrupts */
Eric Biederman8ca8d762003-04-22 19:02:15 +000085 outb(0x0, base_port + UART_IER);
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000086 /* Enable FIFOs */
87 outb(UART_FCR_FIFO_EN, base_port + UART_FCR);
88
Stefan Reinauerebafa4d2006-10-07 00:13:24 +000089 /* assert DTR and RTS so the other end is happy */
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000090 outb(UART_MCR_DTR | UART_MCR_RTS, base_port + UART_MCR);
91
92 /* DLAB on */
93 outb(UART_LCR_DLAB | CONFIG_TTYS0_LCS, base_port + UART_LCR);
94
Kyösti Mälkki9dd3ef12012-02-07 20:50:22 +020095 /* Set Baud Rate Divisor. 12 ==> 9600 Baud */
Eric Biederman8ca8d762003-04-22 19:02:15 +000096 outb(divisor & 0xFF, base_port + UART_DLL);
97 outb((divisor >> 8) & 0xFF, base_port + UART_DLM);
Stefan Reinauer85b0fa12010-12-17 00:08:21 +000098
99 /* Set to 3 for 8N1 */
100 outb(CONFIG_TTYS0_LCS, base_port + UART_LCR);
Rudolf Marek7f0e9302011-09-02 23:23:41 +0200101 ENABLE_TRACE;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000102}
Eric Biederman5cd81732004-03-11 15:01:31 +0000103
Kyösti Mälkki47707492014-02-15 07:53:18 +0200104/* FIXME: Needs uart index from Kconfig.
105 * Already use array as a work-around for ROMCC.
106 */
107static const unsigned bases[1] = { CONFIG_TTYS0_BASE };
108
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200109unsigned int uart_platform_base(int idx)
110{
111 return bases[idx];
112}
113
Stefan Reinauer85b0fa12010-12-17 00:08:21 +0000114void uart_init(void)
115{
Kyösti Mälkki3ee16682014-02-17 19:37:52 +0200116 unsigned int div;
117 div = uart_baudrate_divisor(default_baudrate(), BAUDRATE_REFCLK,
118 BAUDRATE_OVERSAMPLE);
Kyösti Mälkki47707492014-02-15 07:53:18 +0200119 uart8250_init(bases[0], div);
120}
121
122void uart_tx_byte(unsigned char data)
123{
124 uart8250_tx_byte(bases[0], data);
125}
126
127unsigned char uart_rx_byte(void)
128{
129 return uart8250_rx_byte(bases[0]);
130}
131
132int uart_can_rx_byte(void)
133{
134 return uart8250_can_rx_byte(bases[0]);
135}
136
137void uart_tx_flush(void)
138{
139 uart8250_tx_flush(bases[0]);
Stefan Reinauer85b0fa12010-12-17 00:08:21 +0000140}
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200141
142#ifndef __PRE_RAM__
143void uart_fill_lb(void *data)
144{
145 struct lb_serial serial;
146 serial.type = LB_SERIAL_TYPE_IO_MAPPED;
147 serial.baseaddr = uart_platform_base(0);
148 serial.baud = default_baudrate();
149 lb_add_serial(&serial, data);
150
151 lb_add_console(LB_TAG_CONSOLE_SERIAL8250, data);
152}
153#endif