summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/entry_ll.S
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2023-05-09 16:18:45 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2023-05-22 12:38:17 +0200
commitf4b2051bdc409d0537c04d29cede0a1c946158f0 (patch)
treea73f4bbd3605e48a04965fcc7d84c89bc067f263 /arch/arm/cpu/entry_ll.S
parent3453d482d52a2dd44e4020f15a42fe67881d8fc8 (diff)
downloadbarebox-f4b2051bdc409d0537c04d29cede0a1c946158f0.tar.gz
barebox-f4b2051bdc409d0537c04d29cede0a1c946158f0.tar.xz
ARM: Add _32 suffix to aarch32 specific filenames
Several files in arch/arm/cpu/ have 32bit and 64bit versions. The 64bit versions have a _64 suffix, but the 32bit versions have none. This can be confusing sometimes as one doesn't know if a file is 32bit specific or common code. Add a _32 suffix to the 32bit files to avoid this confusion. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Diffstat (limited to 'arch/arm/cpu/entry_ll.S')
-rw-r--r--arch/arm/cpu/entry_ll.S27
1 files changed, 0 insertions, 27 deletions
diff --git a/arch/arm/cpu/entry_ll.S b/arch/arm/cpu/entry_ll.S
deleted file mode 100644
index 2800174c45..0000000000
--- a/arch/arm/cpu/entry_ll.S
+++ /dev/null
@@ -1,27 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <linux/linkage.h>
-#include <asm/sections.h>
-
-/*
- * r0: memory base
- * r1: memory size
- * r2: board data
- * r3: new value for SP
- */
-.section .text.__barebox_arm_entry
-ENTRY(__barebox_arm_entry)
- mov sp, r3
- mov r4, r0
- mov r5, r1
- mov r6, r2
- bl arm_early_mmu_cache_invalidate
- mov r0, r4
- mov r1, r5
- mov r2, r6
-#if IS_ENABLED(CONFIG_PBL_IMAGE)
- b barebox_pbl_start
-#else
- b barebox_non_pbl_start
-#endif
-ENDPROC(__barebox_arm_entry)