Merge tag 'v4.4.31' into linux-linaro-lsk-v4.4
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / kernel / vmlinux.lds.S
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>
8 #include <asm/cache.h>
9 #include <asm/kernel-pgtable.h>
10 #include <asm/thread_info.h>
11 #include <asm/memory.h>
12 #include <asm/page.h>
13 #include <asm/pgtable.h>
14
15 #include "image.h"
16
17 /* .exit.text needed in case of alternative patching */
18 #define ARM_EXIT_KEEP(x)        x
19 #define ARM_EXIT_DISCARD(x)
20
21 OUTPUT_ARCH(aarch64)
22 ENTRY(_text)
23
24 jiffies = jiffies_64;
25
26 #define HYPERVISOR_TEXT                                 \
27         /*                                              \
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)         \
34          */                                             \
35         . = ALIGN(SZ_4K);                               \
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
43 #define IDMAP_TEXT                                      \
44         . = ALIGN(SZ_4K);                               \
45         VMLINUX_SYMBOL(__idmap_text_start) = .;         \
46         *(.idmap.text)                                  \
47         VMLINUX_SYMBOL(__idmap_text_end) = .;
48
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  */
56 PECOFF_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
65 #if defined(CONFIG_DEBUG_ALIGN_RODATA)
66 /*
67  *  4 KB granule:   1 level 2 entry
68  * 16 KB granule: 128 level 3 entries, with contiguous bit
69  * 64 KB granule:  32 level 3 entries, with contiguous bit
70  */
71 #define SEGMENT_ALIGN                   SZ_2M
72 #else
73 /*
74  *  4 KB granule:  16 level 3 entries, with contiguous bit
75  * 16 KB granule:   4 level 3 entries, without contiguous bit
76  * 64 KB granule:   1 level 3 entry
77  */
78 #define SEGMENT_ALIGN                   SZ_64K
79 #endif
80
81 SECTIONS
82 {
83         /*
84          * XXX: The linker does not define how output sections are
85          * assigned to input sections when there are multiple statements
86          * matching the same input section name.  There is no documented
87          * order of matching.
88          */
89         /DISCARD/ : {
90                 ARM_EXIT_DISCARD(EXIT_TEXT)
91                 ARM_EXIT_DISCARD(EXIT_DATA)
92                 EXIT_CALL
93                 *(.discard)
94                 *(.discard.*)
95                 *(.interp .dynamic)
96                 *(.dynsym .dynstr .hash)
97         }
98
99         . = KIMAGE_VADDR + TEXT_OFFSET;
100
101         .head.text : {
102                 _text = .;
103                 HEAD_TEXT
104         }
105         .text : {                       /* Real text segment            */
106                 _stext = .;             /* Text and read-only data      */
107                         __exception_text_start = .;
108                         *(.exception.text)
109                         __exception_text_end = .;
110                         IRQENTRY_TEXT
111                         ENTRY_TEXT
112                         TEXT_TEXT
113                         SCHED_TEXT
114                         LOCK_TEXT
115                         KPROBES_TEXT
116                         HYPERVISOR_TEXT
117                         IDMAP_TEXT
118                         *(.fixup)
119                         *(.gnu.warning)
120                 . = ALIGN(16);
121                 *(.got)                 /* Global offset table          */
122         }
123
124         . = ALIGN(SEGMENT_ALIGN);
125         RO_DATA(PAGE_SIZE)              /* everything from this point to */
126         EXCEPTION_TABLE(8)              /* _etext will be marked RO NX   */
127         NOTES
128
129         . = ALIGN(SEGMENT_ALIGN);
130         _etext = .;                     /* End of text and rodata section */
131         __init_begin = .;
132
133         INIT_TEXT_SECTION(8)
134         .exit.text : {
135                 ARM_EXIT_KEEP(EXIT_TEXT)
136         }
137
138         .init.data : {
139                 INIT_DATA
140                 INIT_SETUP(16)
141                 INIT_CALLS
142                 CON_INITCALL
143                 SECURITY_INITCALL
144                 INIT_RAM_FS
145         }
146         .exit.data : {
147                 ARM_EXIT_KEEP(EXIT_DATA)
148         }
149
150         PERCPU_SECTION(L1_CACHE_BYTES)
151
152         . = ALIGN(4);
153         .altinstructions : {
154                 __alt_instructions = .;
155                 *(.altinstructions)
156                 __alt_instructions_end = .;
157         }
158         .altinstr_replacement : {
159                 *(.altinstr_replacement)
160         }
161         .rela : ALIGN(8) {
162                 *(.rela .rela*)
163         }
164
165         __rela_offset   = ABSOLUTE(ADDR(.rela) - KIMAGE_VADDR);
166         __rela_size     = SIZEOF(.rela);
167
168         . = ALIGN(SEGMENT_ALIGN);
169         __init_end = .;
170
171         _data = .;
172         _sdata = .;
173         RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
174         PECOFF_EDATA_PADDING
175         _edata = .;
176
177         BSS_SECTION(0, 0, 0)
178
179         . = ALIGN(PAGE_SIZE);
180         idmap_pg_dir = .;
181         . += IDMAP_DIR_SIZE;
182         swapper_pg_dir = .;
183         . += SWAPPER_DIR_SIZE;
184
185         _end = .;
186
187         STABS_DEBUG
188
189         HEAD_SYMBOLS
190 }
191
192 /*
193  * The HYP init code and ID map text can't be longer than a page each,
194  * and should not cross a page boundary.
195  */
196 ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
197         "HYP init code too big or misaligned")
198 ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
199         "ID map text too big or misaligned")
200
201 /*
202  * If padding is applied before .head.text, virt<->phys conversions will fail.
203  */
204 ASSERT(_text == (KIMAGE_VADDR + TEXT_OFFSET), "HEAD is misaligned")