summaryrefslogtreecommitdiff
path: root/src/arch/arm64/boot.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2015-10-15 12:22:27 -0500
committerJulius Werner <jwerner@chromium.org>2015-11-07 03:28:50 +0100
commit1148786c05d97b4c646c11e770b275809b562953 (patch)
tree98d03627dc2f49c788042cb0f743c2e1dd377dc9 /src/arch/arm64/boot.c
parent0325a45fd03eb33818c7ac32208ea6568236ec14 (diff)
downloadcoreboot-1148786c05d97b4c646c11e770b275809b562953.tar.xz
arm64: remove spin table support
As ARM Trusted Firmware is the only first class citizen for booting arm64 multi-processor in coreboot remove spintable support. If SoCs want to bring up MP then ATF needs to be ported and integrated. Change-Id: I1f38b8d8b0952eee50cc64440bfd010b1dd0bff4 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/11908 Tested-by: build bot (Jenkins) Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/arch/arm64/boot.c')
-rw-r--r--src/arch/arm64/boot.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/arch/arm64/boot.c b/src/arch/arm64/boot.c
index 6076e67065..10d72576d9 100644
--- a/src/arch/arm64/boot.c
+++ b/src/arch/arm64/boot.c
@@ -16,7 +16,6 @@
#include <arch/cache.h>
#include <arch/lib_helpers.h>
#include <arch/stages.h>
-#include <arch/spintable.h>
#include <arch/transition.h>
#include <arm_tf.h>
#include <cbmem.h>
@@ -39,10 +38,6 @@ static void run_payload(struct prog *prog)
else {
uint8_t current_el = get_current_el();
- /* Start the other CPUs spinning. */
- if (IS_ENABLED(CONFIG_ARM64_USE_SPINTABLE))
- spintable_start();
-
cache_sync_instructions();
printk(BIOS_SPEW, "entry = %p\n", doit);