aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Marinas <catalin.marinas@arm.com>2008-04-18 17:43:13 -0400
committerCatalin Marinas <catalin.marinas@arm.com>2008-04-18 17:43:13 -0400
commit34401ec4668c01156c6c4540930a63840f567a61 (patch)
treec94185dbbdf6d9d928a32e707330407a4c40259c
parente67172f5793293370a3ded597742b8d12bd42b82 (diff)
RealView: Add uncompressing support to PB11MPCore
This patch adds the UART address detection in uncompress.h for the PB11MPCore platform. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
-rw-r--r--include/asm-arm/arch-realview/uncompress.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-arm/arch-realview/uncompress.h b/include/asm-arm/arch-realview/uncompress.h
index 9b790a7e782d..4ebc9c908442 100644
--- a/include/asm-arm/arch-realview/uncompress.h
+++ b/include/asm-arm/arch-realview/uncompress.h
@@ -21,6 +21,7 @@
21#include <asm/mach-types.h> 21#include <asm/mach-types.h>
22 22
23#include <asm/arch/board-eb.h> 23#include <asm/arch/board-eb.h>
24#include <asm/arch/board-pb11mp.h>
24 25
25#define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00)) 26#define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00))
26#define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c)) 27#define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c))
@@ -34,6 +35,8 @@ static inline unsigned long get_uart_base(void)
34{ 35{
35 if (machine_is_realview_eb()) 36 if (machine_is_realview_eb())
36 return REALVIEW_EB_UART0_BASE; 37 return REALVIEW_EB_UART0_BASE;
38 else if (machine_is_realview_pb11mp())
39 return REALVIEW_PB11MP_UART0_BASE;
37 else 40 else
38 return 0; 41 return 0;
39} 42}