arm64: add support for ioremap() block mappings
[deliverable/linux.git] / arch / arm64 / kernel / vmlinux.lds.S
CommitLineData
8c2c3df3
CM
1/*
2 * ld script to make ARM Linux kernel
3 * taken from the i386 version by Russell King
4 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
5 */
6
7#include <asm-generic/vmlinux.lds.h>
98fb7548 8#include <asm/cache.h>
87d1587b 9#include <asm/kernel-pgtable.h>
8c2c3df3
CM
10#include <asm/thread_info.h>
11#include <asm/memory.h>
12#include <asm/page.h>
da141706 13#include <asm/pgtable.h>
8c2c3df3 14
a2c1d73b
MR
15#include "image.h"
16
07c802bd
WD
17/* .exit.text needed in case of alternative patching */
18#define ARM_EXIT_KEEP(x) x
19#define ARM_EXIT_DISCARD(x)
8c2c3df3
CM
20
21OUTPUT_ARCH(aarch64)
af885f40 22ENTRY(_text)
8c2c3df3
CM
23
24jiffies = jiffies_64;
25
2240bbb6
MZ
26#define HYPERVISOR_TEXT \
27 /* \
06f75a1f
AB
28 * Align to 4 KB so that \
29 * a) the HYP vector table is at its minimum \
30 * alignment of 2048 bytes \
31 * b) the HYP init code will not cross a page \
32 * boundary if its size does not exceed \
33 * 4 KB (see related ASSERT() below) \
2240bbb6 34 */ \
06f75a1f 35 . = ALIGN(SZ_4K); \
2240bbb6
MZ
36 VMLINUX_SYMBOL(__hyp_idmap_text_start) = .; \
37 *(.hyp.idmap.text) \
38 VMLINUX_SYMBOL(__hyp_idmap_text_end) = .; \
39 VMLINUX_SYMBOL(__hyp_text_start) = .; \
40 *(.hyp.text) \
41 VMLINUX_SYMBOL(__hyp_text_end) = .;
42
5dfe9d7d
AB
43#define IDMAP_TEXT \
44 . = ALIGN(SZ_4K); \
45 VMLINUX_SYMBOL(__idmap_text_start) = .; \
46 *(.idmap.text) \
47 VMLINUX_SYMBOL(__idmap_text_end) = .;
48
a352ea3e
AB
49/*
50 * The size of the PE/COFF section that covers the kernel image, which
51 * runs from stext to _edata, must be a round multiple of the PE/COFF
52 * FileAlignment, which we set to its minimum value of 0x200. 'stext'
53 * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned
54 * boundary should be sufficient.
55 */
56PECOFF_FILE_ALIGNMENT = 0x200;
57
58#ifdef CONFIG_EFI
59#define PECOFF_EDATA_PADDING \
60 .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); }
61#else
62#define PECOFF_EDATA_PADDING
63#endif
64
cb083816 65#if defined(CONFIG_DEBUG_ALIGN_RODATA)
da141706
LA
66#define ALIGN_DEBUG_RO . = ALIGN(1<<SECTION_SHIFT);
67#define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO
cb083816
MR
68#elif defined(CONFIG_DEBUG_RODATA)
69#define ALIGN_DEBUG_RO . = ALIGN(1<<PAGE_SHIFT);
70#define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO
da141706
LA
71#else
72#define ALIGN_DEBUG_RO
73#define ALIGN_DEBUG_RO_MIN(min) . = ALIGN(min);
74#endif
75
8c2c3df3
CM
76SECTIONS
77{
78 /*
79 * XXX: The linker does not define how output sections are
80 * assigned to input sections when there are multiple statements
81 * matching the same input section name. There is no documented
82 * order of matching.
83 */
84 /DISCARD/ : {
85 ARM_EXIT_DISCARD(EXIT_TEXT)
86 ARM_EXIT_DISCARD(EXIT_DATA)
87 EXIT_CALL
88 *(.discard)
89 *(.discard.*)
90 }
91
92 . = PAGE_OFFSET + TEXT_OFFSET;
93
94 .head.text : {
95 _text = .;
96 HEAD_TEXT
97 }
fca082bf 98 ALIGN_DEBUG_RO_MIN(PAGE_SIZE)
8c2c3df3
CM
99 .text : { /* Real text segment */
100 _stext = .; /* Text and read-only data */
8c2c3df3
CM
101 __exception_text_start = .;
102 *(.exception.text)
103 __exception_text_end = .;
104 IRQENTRY_TEXT
105 TEXT_TEXT
106 SCHED_TEXT
107 LOCK_TEXT
2240bbb6 108 HYPERVISOR_TEXT
5dfe9d7d 109 IDMAP_TEXT
8c2c3df3
CM
110 *(.fixup)
111 *(.gnu.warning)
112 . = ALIGN(16);
113 *(.got) /* Global offset table */
114 }
115
116 RO_DATA(PAGE_SIZE)
adace895 117 EXCEPTION_TABLE(8)
c80b7ee8 118 NOTES
8c2c3df3 119
da141706 120 ALIGN_DEBUG_RO_MIN(PAGE_SIZE)
fca082bf 121 _etext = .; /* End of text and rodata section */
8c2c3df3
CM
122 __init_begin = .;
123
124 INIT_TEXT_SECTION(8)
125 .exit.text : {
126 ARM_EXIT_KEEP(EXIT_TEXT)
127 }
da141706 128
8c2c3df3
CM
129 .init.data : {
130 INIT_DATA
131 INIT_SETUP(16)
132 INIT_CALLS
133 CON_INITCALL
134 SECURITY_INITCALL
135 INIT_RAM_FS
136 }
137 .exit.data : {
138 ARM_EXIT_KEEP(EXIT_DATA)
139 }
140
98fb7548 141 PERCPU_SECTION(L1_CACHE_BYTES)
8c2c3df3 142
e039ee4e
AP
143 . = ALIGN(4);
144 .altinstructions : {
145 __alt_instructions = .;
146 *(.altinstructions)
147 __alt_instructions_end = .;
148 }
149 .altinstr_replacement : {
150 *(.altinstr_replacement)
151 }
152
153 . = ALIGN(PAGE_SIZE);
9aa4ec15
MR
154 __init_end = .;
155
3c620626 156 _data = .;
3c620626 157 _sdata = .;
98fb7548 158 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
a352ea3e 159 PECOFF_EDATA_PADDING
3c620626 160 _edata = .;
8c2c3df3 161
8c2c3df3 162 BSS_SECTION(0, 0, 0)
bd00cd5f
MR
163
164 . = ALIGN(PAGE_SIZE);
165 idmap_pg_dir = .;
166 . += IDMAP_DIR_SIZE;
167 swapper_pg_dir = .;
168 . += SWAPPER_DIR_SIZE;
169
8c2c3df3
CM
170 _end = .;
171
172 STABS_DEBUG
a2c1d73b
MR
173
174 HEAD_SYMBOLS
8c2c3df3 175}
2240bbb6
MZ
176
177/*
5dfe9d7d 178 * The HYP init code and ID map text can't be longer than a page each,
06f75a1f 179 * and should not cross a page boundary.
2240bbb6 180 */
06f75a1f
AB
181ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
182 "HYP init code too big or misaligned")
5dfe9d7d
AB
183ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
184 "ID map text too big or misaligned")
da57a369
MR
185
186/*
187 * If padding is applied before .head.text, virt<->phys conversions will fail.
188 */
189ASSERT(_text == (PAGE_OFFSET + TEXT_OFFSET), "HEAD is misaligned")
This page took 0.159236 seconds and 5 git commands to generate.