blob: f943a848f8440c1cb3e6a0eb2204a4ff67156e9f [file] [log] [blame]
Catalin Marinas8c2c3df2012-04-20 14:45:54 +01001/*
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>
Suzuki K. Poulose87d15872015-10-19 14:19:27 +01008#include <asm/kernel-pgtable.h>
Catalin Marinas8c2c3df2012-04-20 14:45:54 +01009#include <asm/thread_info.h>
10#include <asm/memory.h>
11#include <asm/page.h>
Laura Abbottda141702015-01-21 17:36:06 -080012#include <asm/pgtable.h>
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010013
Mark Rutlanda2c1d732014-06-24 16:51:36 +010014#include "image.h"
15
Will Deacon07c802b2014-11-25 15:26:13 +000016/* .exit.text needed in case of alternative patching */
17#define ARM_EXIT_KEEP(x) x
18#define ARM_EXIT_DISCARD(x)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010019
20OUTPUT_ARCH(aarch64)
Geoff Levandaf885f42014-05-16 18:26:01 +010021ENTRY(_text)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010022
23jiffies = jiffies_64;
24
Marc Zyngier2240bbb2012-12-07 18:40:43 +000025#define HYPERVISOR_TEXT \
26 /* \
Ard Biesheuvel06f75a12015-03-19 16:42:26 +000027 * Align to 4 KB so that \
28 * a) the HYP vector table is at its minimum \
29 * alignment of 2048 bytes \
30 * b) the HYP init code will not cross a page \
31 * boundary if its size does not exceed \
32 * 4 KB (see related ASSERT() below) \
Marc Zyngier2240bbb2012-12-07 18:40:43 +000033 */ \
Ard Biesheuvel06f75a12015-03-19 16:42:26 +000034 . = ALIGN(SZ_4K); \
Marc Zyngier2240bbb2012-12-07 18:40:43 +000035 VMLINUX_SYMBOL(__hyp_idmap_text_start) = .; \
36 *(.hyp.idmap.text) \
37 VMLINUX_SYMBOL(__hyp_idmap_text_end) = .; \
38 VMLINUX_SYMBOL(__hyp_text_start) = .; \
39 *(.hyp.text) \
40 VMLINUX_SYMBOL(__hyp_text_end) = .;
41
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +020042#define IDMAP_TEXT \
43 . = ALIGN(SZ_4K); \
44 VMLINUX_SYMBOL(__idmap_text_start) = .; \
45 *(.idmap.text) \
46 VMLINUX_SYMBOL(__idmap_text_end) = .;
47
Ard Biesheuvela352ea32014-10-10 18:42:55 +020048/*
49 * The size of the PE/COFF section that covers the kernel image, which
50 * runs from stext to _edata, must be a round multiple of the PE/COFF
51 * FileAlignment, which we set to its minimum value of 0x200. 'stext'
52 * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned
53 * boundary should be sufficient.
54 */
55PECOFF_FILE_ALIGNMENT = 0x200;
56
57#ifdef CONFIG_EFI
58#define PECOFF_EDATA_PADDING \
59 .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); }
60#else
61#define PECOFF_EDATA_PADDING
62#endif
63
Mark Rutlandcb083812015-10-26 21:42:33 +000064#if defined(CONFIG_DEBUG_ALIGN_RODATA)
Laura Abbottda141702015-01-21 17:36:06 -080065#define ALIGN_DEBUG_RO . = ALIGN(1<<SECTION_SHIFT);
66#define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO
Mark Rutlandcb083812015-10-26 21:42:33 +000067#elif defined(CONFIG_DEBUG_RODATA)
68#define ALIGN_DEBUG_RO . = ALIGN(1<<PAGE_SHIFT);
69#define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO
Laura Abbottda141702015-01-21 17:36:06 -080070#else
71#define ALIGN_DEBUG_RO
72#define ALIGN_DEBUG_RO_MIN(min) . = ALIGN(min);
73#endif
74
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010075SECTIONS
76{
77 /*
78 * XXX: The linker does not define how output sections are
79 * assigned to input sections when there are multiple statements
80 * matching the same input section name. There is no documented
81 * order of matching.
82 */
83 /DISCARD/ : {
84 ARM_EXIT_DISCARD(EXIT_TEXT)
85 ARM_EXIT_DISCARD(EXIT_DATA)
86 EXIT_CALL
87 *(.discard)
88 *(.discard.*)
89 }
90
91 . = PAGE_OFFSET + TEXT_OFFSET;
92
93 .head.text : {
94 _text = .;
95 HEAD_TEXT
96 }
Laura Abbottda141702015-01-21 17:36:06 -080097 ALIGN_DEBUG_RO
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010098 .text : { /* Real text segment */
99 _stext = .; /* Text and read-only data */
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100100 __exception_text_start = .;
101 *(.exception.text)
102 __exception_text_end = .;
103 IRQENTRY_TEXT
104 TEXT_TEXT
105 SCHED_TEXT
106 LOCK_TEXT
Marc Zyngier2240bbb2012-12-07 18:40:43 +0000107 HYPERVISOR_TEXT
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +0200108 IDMAP_TEXT
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100109 *(.fixup)
110 *(.gnu.warning)
111 . = ALIGN(16);
112 *(.got) /* Global offset table */
113 }
114
115 RO_DATA(PAGE_SIZE)
Will Deaconadace892013-05-08 17:29:24 +0100116 EXCEPTION_TABLE(8)
Mark Salterc80b7ee2013-08-23 16:16:42 +0100117 NOTES
Laura Abbottda141702015-01-21 17:36:06 -0800118 ALIGN_DEBUG_RO
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100119 _etext = .; /* End of text and rodata section */
120
Laura Abbottda141702015-01-21 17:36:06 -0800121 ALIGN_DEBUG_RO_MIN(PAGE_SIZE)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100122 __init_begin = .;
123
124 INIT_TEXT_SECTION(8)
125 .exit.text : {
126 ARM_EXIT_KEEP(EXIT_TEXT)
127 }
Laura Abbottda141702015-01-21 17:36:06 -0800128
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100129 .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
141 PERCPU_SECTION(64)
142
Andre Przywarae039ee42014-11-14 15:54:08 +0000143 . = 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);
Mark Rutland9aa4ec152015-12-09 12:44:38 +0000154 __init_end = .;
155
Mark Salter3c620622013-11-04 16:38:47 +0000156 _data = .;
Mark Salter3c620622013-11-04 16:38:47 +0000157 _sdata = .;
158 RW_DATA_SECTION(64, PAGE_SIZE, THREAD_SIZE)
Ard Biesheuvela352ea32014-10-10 18:42:55 +0200159 PECOFF_EDATA_PADDING
Mark Salter3c620622013-11-04 16:38:47 +0000160 _edata = .;
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100161
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100162 BSS_SECTION(0, 0, 0)
Mark Rutlandbd00cd5f2014-06-24 16:51:35 +0100163
164 . = ALIGN(PAGE_SIZE);
165 idmap_pg_dir = .;
166 . += IDMAP_DIR_SIZE;
167 swapper_pg_dir = .;
168 . += SWAPPER_DIR_SIZE;
169
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100170 _end = .;
171
172 STABS_DEBUG
Mark Rutlanda2c1d732014-06-24 16:51:36 +0100173
174 HEAD_SYMBOLS
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100175}
Marc Zyngier2240bbb2012-12-07 18:40:43 +0000176
177/*
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +0200178 * The HYP init code and ID map text can't be longer than a page each,
Ard Biesheuvel06f75a12015-03-19 16:42:26 +0000179 * and should not cross a page boundary.
Marc Zyngier2240bbb2012-12-07 18:40:43 +0000180 */
Ard Biesheuvel06f75a12015-03-19 16:42:26 +0000181ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
182 "HYP init code too big or misaligned")
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +0200183ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
184 "ID map text too big or misaligned")
Mark Rutlandda57a362014-06-24 16:51:37 +0100185
186/*
187 * If padding is applied before .head.text, virt<->phys conversions will fail.
188 */
189ASSERT(_text == (PAGE_OFFSET + TEXT_OFFSET), "HEAD is misaligned")