From fdcef1ace9ee75f7db50fabcf200f9e699bfbba0 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Fri, 15 Feb 2013 19:29:12 -0800 Subject: move uartmem_getbaseaddr() to generic uart header This moves uartmem_getbaseaddr() from an 8250-specific header to the generic uart header. This is to accomodate non-8250 memory-mapped UARTs. Change-Id: Id25e7dab12b33bdd928f2aa4611d720aa79f3dee Signed-off-by: David Hendricks Reviewed-on: http://review.coreboot.org/2422 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/include/uart.h | 4 ++++ src/include/uart8250.h | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/uart.h b/src/include/uart.h index ca5191e292..6b8d8e844c 100644 --- a/src/include/uart.h +++ b/src/include/uart.h @@ -37,4 +37,8 @@ void uart_tx_flush(void); void uart_init(void); #endif +#if CONFIG_HAVE_UART_MEMORY_MAPPED +uint32_t uartmem_getbaseaddr(void); +#endif + #endif /* UART_H */ diff --git a/src/include/uart8250.h b/src/include/uart8250.h index 9af43f264b..d1164c586c 100644 --- a/src/include/uart8250.h +++ b/src/include/uart8250.h @@ -136,7 +136,6 @@ void uart8250_mem_tx_byte(unsigned base_port, unsigned char data); void uart8250_mem_tx_flush(unsigned base_port); void uart8250_mem_init(unsigned base_port, unsigned divisor); u32 uart_mem_init(void); -u32 uartmem_getbaseaddr(void); #if defined(__PRE_RAM__) && CONFIG_DRIVERS_OXFORD_OXPCIE /* and special init for OXPCIe based cards */ -- cgit v1.2.3