blob: 6c693a9d29b6d79c3f09af1bb3176b41103e7b8f [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Vineet Guptacfdbc2e2013-01-18 15:12:20 +05302/*
3 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
Vineet Guptacfdbc2e2013-01-18 15:12:20 +05304 */
5
6#include <asm-generic/vmlinux.lds.h>
7#include <asm/cache.h>
8#include <asm/page.h>
9#include <asm/thread_info.h>
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053010
11OUTPUT_ARCH(arc)
Vineet Gupta3971cdc2015-10-09 11:26:12 +053012ENTRY(res_service)
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053013
14#ifdef CONFIG_CPU_BIG_ENDIAN
15jiffies = jiffies_64 + 4;
16#else
17jiffies = jiffies_64;
18#endif
19
20SECTIONS
21{
Vineet Gupta8b5850f2013-01-18 15:12:25 +053022 /*
23 * ICCM starts at 0x8000_0000. So if kernel is relocated to some other
24 * address, make sure peripheral at 0x8z doesn't clash with ICCM
25 * Essentially vector is also in ICCM.
26 */
27
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053028 . = CONFIG_LINUX_LINK_BASE;
29
30 _int_vec_base_lds = .;
31 .vector : {
32 *(.vector)
33 . = ALIGN(PAGE_SIZE);
34 }
35
Vineet Gupta8b5850f2013-01-18 15:12:25 +053036#ifdef CONFIG_ARC_HAS_ICCM
37 .text.arcfp : {
38 *(.text.arcfp)
39 . = ALIGN(CONFIG_ARC_ICCM_SZ * 1024);
40 }
41#endif
42
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053043 /*
44 * The reason for having a seperate subsection .init.ramfs is to
45 * prevent objump from including it in kernel dumps
46 *
47 * Reason for having .init.ramfs above .init is to make sure that the
48 * binary blob is tucked away to one side, reducing the displacement
49 * between .init.text and .text, avoiding any possible relocation
50 * errors because of calls from .init.text to .text
51 * Yes such calls do exist. e.g.
52 * decompress_inflate.c:gunzip( ) -> zlib_inflate_workspace( )
53 */
54
55 __init_begin = .;
56
57 .init.ramfs : { INIT_RAM_FS }
58
59 . = ALIGN(PAGE_SIZE);
60 _stext = .;
61
62 HEAD_TEXT_SECTION
63 INIT_TEXT_SECTION(L1_CACHE_BYTES)
64
65 /* INIT_DATA_SECTION open-coded: special INIT_RAM_FS handling */
66 .init.data : {
67 INIT_DATA
68 INIT_SETUP(L1_CACHE_BYTES)
69 INIT_CALLS
70 CON_INITCALL
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053071 }
72
Vineet Gupta03a6d282013-01-18 15:12:26 +053073 .init.arch.info : {
74 __arch_info_begin = .;
75 *(.arch.info.init)
76 __arch_info_end = .;
77 }
78
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053079 PERCPU_SECTION(L1_CACHE_BYTES)
80
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053081 . = ALIGN(PAGE_SIZE);
82 __init_end = .;
83
84 .text : {
85 _text = .;
86 TEXT_TEXT
87 SCHED_TEXT
Chris Metcalf6727ad92016-10-07 17:02:55 -070088 CPUIDLE_TEXT
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053089 LOCK_TEXT
90 KPROBES_TEXT
91 *(.fixup)
92 *(.gnu.warning)
93 }
94 EXCEPTION_TABLE(L1_CACHE_BYTES)
95 _etext = .;
96
97 _sdata = .;
98 RO_DATA_SECTION(PAGE_SIZE)
99
100 /*
101 * 1. this is .data essentially
102 * 2. THREAD_SIZE for init.task, must be kernel-stk sz aligned
103 */
104 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
105
106 _edata = .;
107
Vineet Guptabef444a2014-04-17 17:13:26 +0530108 BSS_SECTION(4, 4, 4)
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530109
Vineet Gupta854a0d92013-01-22 17:03:19 +0530110#ifdef CONFIG_ARC_DW2_UNWIND
111 . = ALIGN(PAGE_SIZE);
Vineet Gupta6716dbb2013-06-24 21:22:06 +0530112 .eh_frame : {
Vineet Gupta854a0d92013-01-22 17:03:19 +0530113 __start_unwind = .;
Vineet Gupta6716dbb2013-06-24 21:22:06 +0530114 *(.eh_frame)
Vineet Gupta854a0d92013-01-22 17:03:19 +0530115 __end_unwind = .;
116 }
117#else
Vineet Gupta6716dbb2013-06-24 21:22:06 +0530118 /DISCARD/ : { *(.eh_frame) }
Vineet Gupta854a0d92013-01-22 17:03:19 +0530119#endif
120
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530121 NOTES
122
123 . = ALIGN(PAGE_SIZE);
124 _end = . ;
125
126 STABS_DEBUG
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530127 DISCARDS
128
129 .arcextmap 0 : {
130 *(.gnu.linkonce.arcextmap.*)
131 *(.arcextmap.*)
132 }
Vineet Gupta854a0d92013-01-22 17:03:19 +0530133
Vineet Gupta5a45da02013-05-25 14:03:25 +0530134#ifndef CONFIG_DEBUG_INFO
Vineet Gupta6716dbb2013-06-24 21:22:06 +0530135 /DISCARD/ : { *(.debug_frame) }
Vineet Gupta5a45da02013-05-25 14:03:25 +0530136 /DISCARD/ : { *(.debug_aranges) }
137 /DISCARD/ : { *(.debug_pubnames) }
138 /DISCARD/ : { *(.debug_info) }
139 /DISCARD/ : { *(.debug_abbrev) }
140 /DISCARD/ : { *(.debug_line) }
141 /DISCARD/ : { *(.debug_str) }
142 /DISCARD/ : { *(.debug_loc) }
143 /DISCARD/ : { *(.debug_macinfo) }
144 /DISCARD/ : { *(.debug_ranges) }
145#endif
Vineet Gupta854a0d92013-01-22 17:03:19 +0530146
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530147#ifdef CONFIG_ARC_HAS_DCCM
148 . = CONFIG_ARC_DCCM_BASE;
149 __arc_dccm_base = .;
150 .data.arcfp : {
151 *(.data.arcfp)
152 }
153 . = ALIGN(CONFIG_ARC_DCCM_SZ * 1024);
154#endif
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530155}