arm: KVM: Fix SMCCC handling of unimplemented SMC/HVC calls
[linux/fpc-iii.git] / arch / metag / kernel / vmlinux.lds.S
blob1efadae2ea8e3b88418b46cea35f54c70ffd8a8a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* ld script to make Meta Linux kernel */
4 #include <asm/thread_info.h>
5 #include <asm/page.h>
6 #include <asm/cache.h>
8 #include <asm-generic/vmlinux.lds.h>
10 OUTPUT_FORMAT("elf32-metag", "elf32-metag", "elf32-metag")
11 OUTPUT_ARCH(metag)
12 ENTRY(__start)
14 _jiffies = _jiffies_64;
15 SECTIONS
17   . = CONFIG_PAGE_OFFSET;
18   _text = .;
19   __text = .;
20   __stext = .;
21   HEAD_TEXT_SECTION
22   .text : {
23         TEXT_TEXT
24         SCHED_TEXT
25         CPUIDLE_TEXT
26         LOCK_TEXT
27         KPROBES_TEXT
28         IRQENTRY_TEXT
29         SOFTIRQENTRY_TEXT
30         *(.text.*)
31         *(.gnu.warning)
32         }
34   __etext = .;                  /* End of text section */
36   __sdata = .;
37   RO_DATA_SECTION(PAGE_SIZE)
38   RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
39   __edata = .;                  /* End of data section */
41   EXCEPTION_TABLE(16)
42   NOTES
44   . = ALIGN(PAGE_SIZE);         /* Init code and data */
45   ___init_begin = .;
46   INIT_TEXT_SECTION(PAGE_SIZE)
47   INIT_DATA_SECTION(16)
49   .init.arch.info : {
50           ___arch_info_begin = .;
51           *(.arch.info.init)
52           ___arch_info_end = .;
53   }
55   PERCPU_SECTION(L1_CACHE_BYTES)
57   ___init_end = .;
59   BSS_SECTION(0, PAGE_SIZE, 0)
61   __end = .;
63   . = ALIGN(PAGE_SIZE);
64   __heap_start = .;
66   DWARF_DEBUG
68   /* When something in the kernel is NOT compiled as a module, the
69    * module cleanup code and data are put into these segments.  Both
70    * can then be thrown away, as cleanup code is never called unless
71    * it's a module.
72    */
73   DISCARDS