vmlinux.lds.S 5.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*    Kernel link layout for various "sections"
 *
 *    Copyright (C) 1999-2003 Matthew Wilcox <willy at parisc-linux.org>
 *    Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org>
 *    Copyright (C) 2000 John Marvin <jsm at parisc-linux.org>
 *    Copyright (C) 2000 Michael Ang <mang with subcarrier.org>
 *    Copyright (C) 2002 Randolph Chung <tausq with parisc-linux.org>
 *    Copyright (C) 2003 James Bottomley <jejb with parisc-linux.org>
9
 *    Copyright (C) 2006 Helge Deller <deller@gmx.de>
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#include <asm-generic/vmlinux.lds.h>
/* needed for the processor specific cache alignment size */	
#include <asm/cache.h>
#include <asm/page.h>
30
#include <asm/asm-offsets.h>
L
Linus Torvalds 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
	
/* ld script to make hppa Linux kernel */
#ifndef CONFIG_64BIT
OUTPUT_FORMAT("elf32-hppa-linux")
OUTPUT_ARCH(hppa)
#else
OUTPUT_FORMAT("elf64-hppa-linux")
OUTPUT_ARCH(hppa:hppa2.0w)
#endif

ENTRY(_stext)
#ifndef CONFIG_64BIT
jiffies = jiffies_64 + 4;
#else
jiffies = jiffies_64;
#endif
SECTIONS
{
49
	. = KERNEL_BINARY_TEXT_START;
L
Linus Torvalds 已提交
50

51 52
	_text = .;		/* Text and read-only data */
	.text ALIGN(16) : {
53
		HEAD_TEXT
54 55 56
		TEXT_TEXT
		SCHED_TEXT
		LOCK_TEXT
57 58
		KPROBES_TEXT
		IRQENTRY_TEXT
59 60 61 62 63 64 65 66
		*(.text.do_softirq)
		*(.text.sys_exit)
		*(.text.do_sigaltstack)
		*(.text.do_fork)
		*(.text.*)
		*(.fixup)
		*(.lock.text)		/* out-of-line lock text */
		*(.gnu.warning)
L
Linus Torvalds 已提交
67
	} = 0
68 69
	/* End of text section */
	_etext = .;
L
Linus Torvalds 已提交
70

71
	RODATA
L
Linus Torvalds 已提交
72

73 74 75 76 77
	/* writeable */
	/* Make sure this is page aligned so
	 * that we can properly leave these
	 * as writable
	 */
S
Sam Ravnborg 已提交
78
	. = ALIGN(PAGE_SIZE);
79 80 81 82 83 84 85 86
	data_start = .;
	. = ALIGN(16);
	/* Exception table */
	__ex_table : {
		__start___ex_table = .;
		*(__ex_table)
		__stop___ex_table = .;
	}
L
Linus Torvalds 已提交
87

88
	NOTES
K
Kyle McMartin 已提交
89

90 91 92 93 94 95
	/* unwind info */
	.PARISC.unwind : {
		__start___unwind = .;
		*(.PARISC.unwind)
		__stop___unwind = .;
	}
96

97 98 99 100 101
	/* rarely changed data like cpu maps */
	. = ALIGN(16);
	.data.read_mostly : {
		*(.data.read_mostly)
	}
102

103 104 105 106 107
	. = ALIGN(L1_CACHE_BYTES);
	/* Data */
	.data : {
		DATA_DATA
		CONSTRUCTORS
L
Linus Torvalds 已提交
108 109
	}

110 111 112 113
	. = ALIGN(L1_CACHE_BYTES);
	.data.cacheline_aligned : {
		*(.data.cacheline_aligned)
	}
L
Linus Torvalds 已提交
114

115 116 117 118 119
	/* PA-RISC locks requires 16-byte alignment */
	. = ALIGN(16);
	.data.lock_aligned : {
		*(.data.lock_aligned)
	}
L
Linus Torvalds 已提交
120

121 122 123
	/* nosave data is really only used for software suspend...it's here
	 * just in case we ever implement it
	 */
S
Sam Ravnborg 已提交
124
	. = ALIGN(PAGE_SIZE);
125 126 127 128
	__nosave_begin = .;
	.data_nosave : {
		*(.data.nosave)
	}
S
Sam Ravnborg 已提交
129
	. = ALIGN(PAGE_SIZE);
130
	__nosave_end = .;
131

132 133
	/* End of data section */
	_edata = .;
L
Linus Torvalds 已提交
134

135 136 137
	/* BSS */
	__bss_start = .;
	/* page table entries need to be PAGE_SIZE aligned */
S
Sam Ravnborg 已提交
138
	. = ALIGN(PAGE_SIZE);
139 140 141 142 143 144 145 146
	.data.vmpages : {
		*(.data.vm0.pmd)
		*(.data.vm0.pgd)
		*(.data.vm0.pte)
	}
	.bss : {
		*(.bss)
		*(COMMON)
147
	}
148
	__bss_stop = .;
149 150


151 152 153 154 155 156
	/* assembler code expects init_task to be 16k aligned */
	. = ALIGN(16384);
	/* init_task */
	.data.init_task : {
		*(.data.init_task)
	}
L
Linus Torvalds 已提交
157 158

#ifdef CONFIG_64BIT
159 160 161 162 163 164 165 166 167 168 169
	. = ALIGN(16);
	/* Linkage tables */
	.opd : {
		*(.opd)
	} PROVIDE (__gp = .); 
	.plt : {
		*(.plt)
	} 
	.dlt : {
		*(.dlt)
	}
L
Linus Torvalds 已提交
170 171
#endif

172 173 174 175 176
	/* reserve space for interrupt stack by aligning __init* to 16k */
	. = ALIGN(16384);
	__init_begin = .;
	.init.text : { 
		_sinittext = .;
177
		INIT_TEXT
178 179 180
		_einittext = .;
	}
	.init.data : {
181
		INIT_DATA
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
	}
	. = ALIGN(16);
	.init.setup : {
		__setup_start = .;
		*(.init.setup)
		__setup_end = .;
	}
	.initcall.init : {
		__initcall_start = .;
		INITCALLS
		__initcall_end = .;
	}
	.con_initcall.init : {
		__con_initcall_start = .;
		*(.con_initcall.init)
		__con_initcall_end = .;
	}
	SECURITY_INIT

	/* alternate instruction replacement.  This is a mechanism x86 uses
	 * to detect the CPU type and replace generic instruction sequences
	 * with CPU specific ones.  We don't currently do this in PA, but
	 * it seems like a good idea...
	 */
	. = ALIGN(4);
	.altinstructions : {
		__alt_instructions = .;
		*(.altinstructions)
		__alt_instructions_end = .; 
	} 
	.altinstr_replacement : {
		*(.altinstr_replacement)
	} 

	/* .exit.text is discard at runtime, not link time, to deal with references
	 *  from .altinstructions and .eh_frame
	 */
	.exit.text : {
220
		EXIT_TEXT
221 222
	}
	.exit.data : {
223
		EXIT_DATA
224
	}
225
#ifdef CONFIG_BLK_DEV_INITRD
S
Sam Ravnborg 已提交
226
	. = ALIGN(PAGE_SIZE);
227 228 229 230 231
	.init.ramfs : {
		__initramfs_start = .;
		*(.init.ramfs)
		__initramfs_end = .;
	}
232
#endif
233

S
Sam Ravnborg 已提交
234 235
	PERCPU(PAGE_SIZE)
	. = ALIGN(PAGE_SIZE);
236 237 238
	__init_end = .;
	/* freed after init ends here */
	_end = . ;
239

240 241 242
	/* Sections to be discarded */
	/DISCARD/ : {
		*(.exitcall.exit)
L
Linus Torvalds 已提交
243
#ifdef CONFIG_64BIT
244 245 246 247 248 249 250 251 252
		/* temporary hack until binutils is fixed to not emit these
	 	 * for static binaries
		 */
		*(.interp)
		*(.dynsym)
		*(.dynstr)
		*(.dynamic)
		*(.hash)
		*(.gnu.hash)
L
Linus Torvalds 已提交
253 254 255
#endif
	}

256 257
	STABS_DEBUG
	.note 0 : { *(.note) }	
L
Linus Torvalds 已提交
258
}