arm64: errata: Calling enable functions for CPU errata too
[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
82869ac5
JM
49#ifdef CONFIG_HIBERNATION
50#define HIBERNATE_TEXT \
51 . = ALIGN(SZ_4K); \
52 VMLINUX_SYMBOL(__hibernate_exit_text_start) = .;\
53 *(.hibernate_exit.text) \
54 VMLINUX_SYMBOL(__hibernate_exit_text_end) = .;
55#else
56#define HIBERNATE_TEXT
57#endif
58
a352ea3e
AB
59/*
60 * The size of the PE/COFF section that covers the kernel image, which
61 * runs from stext to _edata, must be a round multiple of the PE/COFF
62 * FileAlignment, which we set to its minimum value of 0x200. 'stext'
63 * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned
64 * boundary should be sufficient.
65 */
66PECOFF_FILE_ALIGNMENT = 0x200;
67
68#ifdef CONFIG_EFI
69#define PECOFF_EDATA_PADDING \
70 .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); }
71#else
72#define PECOFF_EDATA_PADDING
73#endif
74
cb083816 75#if defined(CONFIG_DEBUG_ALIGN_RODATA)
97740051
AB
76/*
77 * 4 KB granule: 1 level 2 entry
78 * 16 KB granule: 128 level 3 entries, with contiguous bit
79 * 64 KB granule: 32 level 3 entries, with contiguous bit
80 */
81#define SEGMENT_ALIGN SZ_2M
da141706 82#else
97740051
AB
83/*
84 * 4 KB granule: 16 level 3 entries, with contiguous bit
85 * 16 KB granule: 4 level 3 entries, without contiguous bit
86 * 64 KB granule: 1 level 3 entry
87 */
88#define SEGMENT_ALIGN SZ_64K
da141706
LA
89#endif
90
8c2c3df3
CM
91SECTIONS
92{
93 /*
94 * XXX: The linker does not define how output sections are
95 * assigned to input sections when there are multiple statements
96 * matching the same input section name. There is no documented
97 * order of matching.
98 */
99 /DISCARD/ : {
100 ARM_EXIT_DISCARD(EXIT_TEXT)
101 ARM_EXIT_DISCARD(EXIT_DATA)
102 EXIT_CALL
103 *(.discard)
104 *(.discard.*)
1e48ef7f 105 *(.interp .dynamic)
8c2c3df3
CM
106 }
107
ab893fb9 108 . = KIMAGE_VADDR + TEXT_OFFSET;
8c2c3df3
CM
109
110 .head.text : {
111 _text = .;
112 HEAD_TEXT
113 }
114 .text : { /* Real text segment */
115 _stext = .; /* Text and read-only data */
8c2c3df3
CM
116 __exception_text_start = .;
117 *(.exception.text)
118 __exception_text_end = .;
119 IRQENTRY_TEXT
be7635e7 120 SOFTIRQENTRY_TEXT
8c2c3df3
CM
121 TEXT_TEXT
122 SCHED_TEXT
123 LOCK_TEXT
2240bbb6 124 HYPERVISOR_TEXT
5dfe9d7d 125 IDMAP_TEXT
82869ac5 126 HIBERNATE_TEXT
8c2c3df3
CM
127 *(.fixup)
128 *(.gnu.warning)
129 . = ALIGN(16);
130 *(.got) /* Global offset table */
131 }
132
97740051 133 . = ALIGN(SEGMENT_ALIGN);
9fdc14c5
AB
134 _etext = .; /* End of text section */
135
136 RO_DATA(PAGE_SIZE) /* everything from this point to */
137 EXCEPTION_TABLE(8) /* __init_begin will be marked RO NX */
c80b7ee8 138 NOTES
8c2c3df3 139
97740051 140 . = ALIGN(SEGMENT_ALIGN);
8c2c3df3
CM
141 __init_begin = .;
142
143 INIT_TEXT_SECTION(8)
144 .exit.text : {
145 ARM_EXIT_KEEP(EXIT_TEXT)
146 }
da141706 147
8c2c3df3
CM
148 .init.data : {
149 INIT_DATA
150 INIT_SETUP(16)
151 INIT_CALLS
152 CON_INITCALL
153 SECURITY_INITCALL
154 INIT_RAM_FS
1ce99bf4 155 *(.init.rodata.* .init.bss) /* from the EFI stub */
8c2c3df3
CM
156 }
157 .exit.data : {
158 ARM_EXIT_KEEP(EXIT_DATA)
159 }
160
98fb7548 161 PERCPU_SECTION(L1_CACHE_BYTES)
8c2c3df3 162
e039ee4e
AP
163 . = ALIGN(4);
164 .altinstructions : {
165 __alt_instructions = .;
166 *(.altinstructions)
167 __alt_instructions_end = .;
168 }
169 .altinstr_replacement : {
170 *(.altinstr_replacement)
171 }
1e48ef7f 172 .rela : ALIGN(8) {
1e48ef7f 173 *(.rela .rela*)
1e48ef7f
AB
174 }
175 .dynsym : ALIGN(8) {
1e48ef7f
AB
176 *(.dynsym)
177 }
178 .dynstr : {
179 *(.dynstr)
180 }
181 .hash : {
182 *(.hash)
183 }
e039ee4e 184
0cd3defe
AB
185 __rela_offset = ADDR(.rela) - KIMAGE_VADDR;
186 __rela_size = SIZEOF(.rela);
187 __dynsym_offset = ADDR(.dynsym) - KIMAGE_VADDR;
188
97740051 189 . = ALIGN(SEGMENT_ALIGN);
9aa4ec15
MR
190 __init_end = .;
191
3c620626 192 _data = .;
3c620626 193 _sdata = .;
98fb7548 194 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
a352ea3e 195 PECOFF_EDATA_PADDING
3c620626 196 _edata = .;
8c2c3df3 197
8c2c3df3 198 BSS_SECTION(0, 0, 0)
bd00cd5f
MR
199
200 . = ALIGN(PAGE_SIZE);
201 idmap_pg_dir = .;
202 . += IDMAP_DIR_SIZE;
203 swapper_pg_dir = .;
204 . += SWAPPER_DIR_SIZE;
205
8c2c3df3
CM
206 _end = .;
207
208 STABS_DEBUG
a2c1d73b
MR
209
210 HEAD_SYMBOLS
8c2c3df3 211}
2240bbb6
MZ
212
213/*
5dfe9d7d 214 * The HYP init code and ID map text can't be longer than a page each,
06f75a1f 215 * and should not cross a page boundary.
2240bbb6 216 */
06f75a1f
AB
217ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
218 "HYP init code too big or misaligned")
5dfe9d7d
AB
219ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
220 "ID map text too big or misaligned")
82869ac5
JM
221#ifdef CONFIG_HIBERNATION
222ASSERT(__hibernate_exit_text_end - (__hibernate_exit_text_start & ~(SZ_4K - 1))
223 <= SZ_4K, "Hibernate exit text too big or misaligned")
224#endif
da57a369
MR
225
226/*
227 * If padding is applied before .head.text, virt<->phys conversions will fail.
228 */
ab893fb9 229ASSERT(_text == (KIMAGE_VADDR + TEXT_OFFSET), "HEAD is misaligned")
This page took 0.266889 seconds and 5 git commands to generate.