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/platsmp.c | |
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/platsmp.c')
-rw-r--r-- | arch/arm/mach-realview/platsmp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-realview/platsmp.c b/arch/arm/mach-realview/platsmp.c index 30a9c68591f6..e3bd9345c6a1 100644 --- a/arch/arm/mach-realview/platsmp.c +++ b/arch/arm/mach-realview/platsmp.c | |||
@@ -22,6 +22,7 @@ | |||
22 | 22 | ||
23 | #include <mach/board-eb.h> | 23 | #include <mach/board-eb.h> |
24 | #include <mach/board-pb11mp.h> | 24 | #include <mach/board-pb11mp.h> |
25 | #include <mach/board-pbx.h> | ||
25 | #include <mach/scu.h> | 26 | #include <mach/scu.h> |
26 | 27 | ||
27 | #include "core.h" | 28 | #include "core.h" |
@@ -40,6 +41,9 @@ static void __iomem *scu_base_addr(void) | |||
40 | return __io_address(REALVIEW_EB11MP_SCU_BASE); | 41 | return __io_address(REALVIEW_EB11MP_SCU_BASE); |
41 | else if (machine_is_realview_pb11mp()) | 42 | else if (machine_is_realview_pb11mp()) |
42 | return __io_address(REALVIEW_TC11MP_SCU_BASE); | 43 | return __io_address(REALVIEW_TC11MP_SCU_BASE); |
44 | else if (machine_is_realview_pbx() && | ||
45 | (core_tile_pbx11mp() || core_tile_pbxa9mp())) | ||
46 | return __io_address(REALVIEW_PBX_TILE_SCU_BASE); | ||
43 | else | 47 | else |
44 | return (void __iomem *)0; | 48 | return (void __iomem *)0; |
45 | } | 49 | } |