diff options
author | Steve Rae <srae@broadcom.com> | 2014-11-11 11:32:18 -0800 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-23 06:49:00 -0500 |
commit | abb1678cca69e4259f01a10f6da2828394d26046 (patch) | |
tree | 47b7f8ba7ef7713ddf8c920a5d0575e4fa1cc6ed /board/broadcom/bcm_ep/board.c | |
parent | 18f26fdbd0503e5293aa7858809015737bf5006e (diff) |
ARM: bcm: Enable five Cygnus boards
bcm911360_entphn
bcm911360_entphn-ns
bcm911360k
bcm958300k-ns
bcm958305k
- updates to support Cygnus and NSP board families better
- add functions so CONFIG_ARMV7_NONSEC can be enabled on Cygnus boards
Signed-off-by: Steve Rae <srae@broadcom.com>
Diffstat (limited to 'board/broadcom/bcm_ep/board.c')
-rw-r--r-- | board/broadcom/bcm_ep/board.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/broadcom/bcm_ep/board.c b/board/broadcom/bcm_ep/board.c index e48cd3f767..6a70a2e305 100644 --- a/board/broadcom/bcm_ep/board.c +++ b/board/broadcom/bcm_ep/board.c @@ -53,3 +53,17 @@ int board_early_init_f(void) return status; } + +#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT) +void smp_set_core_boot_addr(unsigned long addr, int corenr) +{ +} + +void smp_kick_all_cpus(void) +{ +} + +void smp_waitloop(unsigned previous_address) +{ +} +#endif |