diff options
author | Bahadir Balban <bahadir.balban@arm.com> | 2008-12-01 14:54:55 +0000 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2008-12-01 14:54:55 +0000 |
commit | e7c70825a758403cfb476903f3145e6a8c0dd3b5 (patch) | |
tree | a214331400abb2e2c86a32203d532dff930c4f1c /arch/arm/mach-realview/include/mach/uncompress.h | |
parent | 70bb62f8ecdda2d172b05d33b0e6750e3fe6d1c7 (diff) |
RealView: Add support for the Cortex-A8 Platform Baseboard
This patch adds support for RealView/PB-A8, a platform based on
Cortex-A8 with support for PCI-E and compact flash.
Signed-off-by: Bahadir Balban <bahadir.balban@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm/mach-realview/include/mach/uncompress.h')
-rw-r--r-- | arch/arm/mach-realview/include/mach/uncompress.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-realview/include/mach/uncompress.h b/arch/arm/mach-realview/include/mach/uncompress.h index 79f50f218e77..415d634d52ab 100644 --- a/arch/arm/mach-realview/include/mach/uncompress.h +++ b/arch/arm/mach-realview/include/mach/uncompress.h @@ -23,6 +23,7 @@ #include <mach/board-eb.h> #include <mach/board-pb11mp.h> #include <mach/board-pb1176.h> +#include <mach/board-pba8.h> #define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00)) #define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c)) @@ -40,6 +41,8 @@ static inline unsigned long get_uart_base(void) return REALVIEW_PB11MP_UART0_BASE; else if (machine_is_realview_pb1176()) return REALVIEW_PB1176_UART0_BASE; + else if (machine_is_realview_pba8()) + return REALVIEW_PBA8_UART0_BASE; else return 0; } |