2012-12-08 02:31:37 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2013-01-01 02:28:43 +01:00
|
|
|
/* madness. Uarts are a mess. If you include this file, it
|
|
|
|
* includes ALL uart implementations which may be needed.
|
|
|
|
* No need to include them separately, and include this file FIRST.
|
|
|
|
* At least one (but at most one) of the files needs to define
|
|
|
|
* uart_init().
|
|
|
|
*/
|
2012-12-08 02:31:37 +01:00
|
|
|
#ifndef UART_H
|
|
|
|
#define UART_H
|
|
|
|
|
2013-02-06 14:51:15 +01:00
|
|
|
#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM
|
2013-01-01 02:28:43 +01:00
|
|
|
#include <uart8250.h>
|
|
|
|
#endif
|
|
|
|
|
2013-05-07 20:35:29 +02:00
|
|
|
#if CONFIG_CONSOLE_SERIAL_UART
|
2012-12-08 02:31:37 +01:00
|
|
|
unsigned char uart_rx_byte(void);
|
|
|
|
void uart_tx_byte(unsigned char data);
|
|
|
|
void uart_tx_flush(void);
|
2013-02-06 15:01:18 +01:00
|
|
|
void uart_init(void);
|
2013-01-01 02:28:43 +01:00
|
|
|
#endif
|
2012-12-08 02:31:37 +01:00
|
|
|
|
2013-02-16 04:29:12 +01:00
|
|
|
#if CONFIG_HAVE_UART_MEMORY_MAPPED
|
|
|
|
uint32_t uartmem_getbaseaddr(void);
|
|
|
|
#endif
|
|
|
|
|
2012-12-08 02:31:37 +01:00
|
|
|
#endif /* UART_H */
|