1 /* Kernel link layout for various "sections"
3 * Copyright (C) 1999-2003 Matthew Wilcox <willy at parisc-linux.org>
4 * Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org>
5 * Copyright (C) 2000 John Marvin <jsm at parisc-linux.org>
6 * Copyright (C) 2000 Michael Ang <mang with subcarrier.org>
7 * Copyright (C) 2002 Randolph Chung <tausq with parisc-linux.org>
8 * Copyright (C) 2003 James Bottomley <jejb with parisc-linux.org>
9 * Copyright (C) 2006 Helge Deller <deller@gmx.de>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <asm-generic/vmlinux.lds.h>
27 /* needed for the processor specific cache alignment size */
28 #include <asm/cache.h>
30 #include <asm/asm-offsets.h>
32 /* ld script to make hppa Linux kernel */
34 OUTPUT_FORMAT("elf32-hppa-linux")
37 OUTPUT_FORMAT("elf64-hppa-linux")
38 OUTPUT_ARCH(hppa:hppa2.0w)
43 jiffies = jiffies_64 + 4;
50 . = KERNEL_BINARY_TEXT_START;
52 _text = .; /* Text and read-only data */
59 *(.text.do_sigaltstack)
63 *(.lock.text) /* out-of-line lock text */
67 _etext = .; /* End of text section */
74 . = ALIGN(ASM_PAGE_SIZE); /* Make sure this is page aligned so
75 that we can properly leave these
79 . = ALIGN(16); /* Exception table */
80 __start___ex_table = .;
81 __ex_table : { *(__ex_table) }
82 __stop___ex_table = .;
86 __start___unwind = .; /* unwind info */
87 .PARISC.unwind : { *(.PARISC.unwind) }
90 /* rarely changed data like cpu maps */
92 .data.read_mostly : { *(.data.read_mostly) }
94 . = ALIGN(L1_CACHE_BYTES);
100 . = ALIGN(L1_CACHE_BYTES);
101 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
103 /* PA-RISC locks requires 16-byte alignment */
105 .data.lock_aligned : { *(.data.lock_aligned) }
107 . = ALIGN(ASM_PAGE_SIZE);
108 /* nosave data is really only used for software suspend...it's here
109 * just in case we ever implement it */
111 .data_nosave : { *(.data.nosave) }
112 . = ALIGN(ASM_PAGE_SIZE);
115 _edata = .; /* End of data section */
117 __bss_start = .; /* BSS */
118 /* page table entries need to be PAGE_SIZE aligned */
119 . = ALIGN(ASM_PAGE_SIZE);
125 .bss : { *(.bss) *(COMMON) }
129 /* assembler code expects init_task to be 16k aligned */
130 . = ALIGN(16384); /* init_task */
131 .data.init_task : { *(.data.init_task) }
133 /* The interrupt stack is currently partially coded, but not yet
136 init_istack : { *(init_istack) }
139 . = ALIGN(16); /* Linkage tables */
140 .opd : { *(.opd) } PROVIDE (__gp = .);
145 /* reserve space for interrupt stack by aligning __init* to 16k */
153 .init.data : { *(.init.data) }
156 .init.setup : { *(.init.setup) }
158 __initcall_start = .;
163 __con_initcall_start = .;
164 .con_initcall.init : { *(.con_initcall.init) }
165 __con_initcall_end = .;
167 /* alternate instruction replacement. This is a mechanism x86 uses
168 * to detect the CPU type and replace generic instruction sequences
169 * with CPU specific ones. We don't currently do this in PA, but
170 * it seems like a good idea... */
172 __alt_instructions = .;
173 .altinstructions : { *(.altinstructions) }
174 __alt_instructions_end = .;
175 .altinstr_replacement : { *(.altinstr_replacement) }
176 /* .exit.text is discard at runtime, not link time, to deal with references
177 from .altinstructions and .eh_frame */
178 .exit.text : { *(.exit.text) }
179 .exit.data : { *(.exit.data) }
180 #ifdef CONFIG_BLK_DEV_INITRD
181 . = ALIGN(ASM_PAGE_SIZE);
182 __initramfs_start = .;
183 .init.ramfs : { *(.init.ramfs) }
187 PERCPU(ASM_PAGE_SIZE)
189 . = ALIGN(ASM_PAGE_SIZE);
191 /* freed after init ends here */
195 /* Sections to be discarded */
199 /* temporary hack until binutils is fixed to not emit these
200 for static binaries */
211 .note 0 : { *(.note) }