summaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/vmlinux.lds.S
diff options
context:
space:
mode:
authorNicolas Pitre <nicolas.pitre@linaro.org>2018-03-08 21:12:04 -0500
committerNicolas Pitre <nicolas.pitre@linaro.org>2018-03-09 20:20:43 -0500
commitb54290e51accea4f696f5dacef8e609d0ccbe54a (patch)
tree3d35a3674cfc8613445b0cd71faebb3a68d3bd24 /arch/arm/kernel/vmlinux.lds.S
parentc3146c43db4974f4571bd9d42b172ca03a9137c6 (diff)
downloadlinux-0-day-b54290e51accea4f696f5dacef8e609d0ccbe54a.tar.gz
linux-0-day-b54290e51accea4f696f5dacef8e609d0ccbe54a.tar.xz
ARM: simplify and fix linker script for TCM
Let's put the TCM stuff in the __init section directly. No need for a separately freed memory area. Remove redundant linker sections, as well as comments that were more confusing than no comments at all. Finally make it XIP compatible by using LOAD_OFFSET in the section LMA specification. Signed-off-by: Nicolas Pitre <nico@linaro.org> Tested-by: Chris Brandt <Chris.Brandt@renesas.com>
Diffstat (limited to 'arch/arm/kernel/vmlinux.lds.S')
-rw-r--r--arch/arm/kernel/vmlinux.lds.S8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/kernel/vmlinux.lds.S b/arch/arm/kernel/vmlinux.lds.S
index 1e9f2a6b3d33c..b77dc675ae55c 100644
--- a/arch/arm/kernel/vmlinux.lds.S
+++ b/arch/arm/kernel/vmlinux.lds.S
@@ -127,6 +127,10 @@ SECTIONS
PERCPU_SECTION(L1_CACHE_BYTES)
#endif
+#ifdef CONFIG_HAVE_TCM
+ ARM_TCM
+#endif
+
#ifdef CONFIG_STRICT_KERNEL_RWX
. = ALIGN(1<<SECTION_SHIFT);
#else
@@ -138,10 +142,6 @@ SECTIONS
RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
_edata = .;
-#ifdef CONFIG_HAVE_TCM
- ARM_TCM
-#endif
-
BSS_SECTION(0, 0, 0)
_end = .;