aboutsummaryrefslogtreecommitdiff
path: root/spm/ivy/aarch64/ivy_entrypoint.S
diff options
context:
space:
mode:
Diffstat (limited to 'spm/ivy/aarch64/ivy_entrypoint.S')
-rw-r--r--spm/ivy/aarch64/ivy_entrypoint.S27
1 files changed, 0 insertions, 27 deletions
diff --git a/spm/ivy/aarch64/ivy_entrypoint.S b/spm/ivy/aarch64/ivy_entrypoint.S
deleted file mode 100644
index c6cb8b34b..000000000
--- a/spm/ivy/aarch64/ivy_entrypoint.S
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (c) 2018, Arm Limited. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#include <asm_macros.S>
-#include <ivy_def.h>
-#include <platform_def.h>
-
- .globl ivy_entrypoint
-
-.section .bss.stacks
- .balign CACHE_WRITEBACK_GRANULE
- .fill IVY_STACKS_SIZE
-stacks_end:
-
-func ivy_entrypoint
-
- /* Setup the stack pointer. */
- adr x0, stacks_end
- mov sp, x0
-
- /* And jump to the C entrypoint. */
- b ivy_main
-
-endfunc ivy_entrypoint