blob: 6b8d8e844c5ece178452b31cea960f0feb1d714b [file] [log] [blame]
Stefan Reinauer509f7722012-12-07 17:31:37 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer509f7722012-12-07 17:31:37 -080018 */
19
David Hendricks6a503b62012-12-31 17:28:43 -080020/* madness. Uarts are a mess. If you include this file, it
21 * includes ALL uart implementations which may be needed.
22 * No need to include them separately, and include this file FIRST.
23 * At least one (but at most one) of the files needs to define
24 * uart_init().
25 */
Stefan Reinauer509f7722012-12-07 17:31:37 -080026#ifndef UART_H
27#define UART_H
28
Hung-Te Lin580fa2b2013-02-06 21:51:15 +080029#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM
David Hendricks6a503b62012-12-31 17:28:43 -080030#include <uart8250.h>
31#endif
32
Hung-Te Lin580fa2b2013-02-06 21:51:15 +080033#if !defined(__ROMCC__) && CONFIG_CONSOLE_SERIAL_UART
Stefan Reinauer509f7722012-12-07 17:31:37 -080034unsigned char uart_rx_byte(void);
35void uart_tx_byte(unsigned char data);
36void uart_tx_flush(void);
Hung-Te Linb868d402013-02-06 22:01:18 +080037void uart_init(void);
David Hendricks6a503b62012-12-31 17:28:43 -080038#endif
Stefan Reinauer509f7722012-12-07 17:31:37 -080039
David Hendricksfdcef1a2013-02-15 19:29:12 -080040#if CONFIG_HAVE_UART_MEMORY_MAPPED
41uint32_t uartmem_getbaseaddr(void);
42#endif
43
Stefan Reinauer509f7722012-12-07 17:31:37 -080044#endif /* UART_H */