diff options
author | Colin Tuckley <colin.tuckley@arm.com> | 2009-05-30 08:56:12 -0400 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2009-05-30 08:56:12 -0400 |
commit | 1b504bbe7a4a6c251cdc9dcba1fab72234827945 (patch) | |
tree | f747a26e44efb9420a2ac9a0f2c95f7004f3b826 /arch/arm/mach-realview/include/mach/uncompress.h | |
parent | 412b400278ed0f71712387d0b9b31cbdd8a18efc (diff) |
RealView: Add support for the RealView/PBX platform
This is a RealView platform supporting core tiles with ARM11MPCore,
Cortex-A8 or Cortex-A9 (multicore) processors. It has support for MMC,
CompactFlash, PCI-E.
Signed-off-by: Colin Tuckley <colin.tuckley@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 415d634d52ab..83050378ffd2 100644 --- a/arch/arm/mach-realview/include/mach/uncompress.h +++ b/arch/arm/mach-realview/include/mach/uncompress.h | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <mach/board-pb11mp.h> | 24 | #include <mach/board-pb11mp.h> |
25 | #include <mach/board-pb1176.h> | 25 | #include <mach/board-pb1176.h> |
26 | #include <mach/board-pba8.h> | 26 | #include <mach/board-pba8.h> |
27 | #include <mach/board-pbx.h> | ||
27 | 28 | ||
28 | #define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00)) | 29 | #define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00)) |
29 | #define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c)) | 30 | #define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c)) |
@@ -43,6 +44,8 @@ static inline unsigned long get_uart_base(void) | |||
43 | return REALVIEW_PB1176_UART0_BASE; | 44 | return REALVIEW_PB1176_UART0_BASE; |
44 | else if (machine_is_realview_pba8()) | 45 | else if (machine_is_realview_pba8()) |
45 | return REALVIEW_PBA8_UART0_BASE; | 46 | return REALVIEW_PBA8_UART0_BASE; |
47 | else if (machine_is_realview_pbx()) | ||
48 | return REALVIEW_PBX_UART0_BASE; | ||
46 | else | 49 | else |
47 | return 0; | 50 | return 0; |
48 | } | 51 | } |