2005-09-30 02:16:52 -04:00
|
|
|
#include <linux/config.h>
|
2005-11-04 18:36:59 -05:00
|
|
|
#ifdef CONFIG_PPC64
|
2005-09-30 02:16:52 -04:00
|
|
|
#include <asm/page.h>
|
2005-11-04 18:36:59 -05:00
|
|
|
#else
|
|
|
|
#define PAGE_SIZE 4096
|
|
|
|
#define KERNELBASE CONFIG_KERNEL_START
|
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
2005-11-03 00:03:06 -05:00
|
|
|
ENTRY(_stext)
|
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
OUTPUT_ARCH(powerpc:common64)
|
|
|
|
jiffies = jiffies_64;
|
|
|
|
#else
|
2005-09-26 02:04:21 -04:00
|
|
|
OUTPUT_ARCH(powerpc:common)
|
|
|
|
jiffies = jiffies_64 + 4;
|
2005-09-30 02:16:52 -04:00
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
SECTIONS
|
|
|
|
{
|
2005-09-30 02:16:52 -04:00
|
|
|
/* Sections to be discarded. */
|
|
|
|
/DISCARD/ : {
|
|
|
|
*(.exitcall.exit)
|
|
|
|
*(.exit.data)
|
|
|
|
}
|
|
|
|
|
2005-11-03 00:03:06 -05:00
|
|
|
. = KERNELBASE;
|
2005-09-30 02:16:52 -04:00
|
|
|
|
2005-09-26 02:04:21 -04:00
|
|
|
/* Read-only sections, merged into text segment: */
|
2005-09-30 02:16:52 -04:00
|
|
|
.text : {
|
|
|
|
*(.text .text.*)
|
2005-09-26 02:04:21 -04:00
|
|
|
SCHED_TEXT
|
|
|
|
LOCK_TEXT
|
2005-09-30 02:16:52 -04:00
|
|
|
KPROBES_TEXT
|
2005-09-26 02:04:21 -04:00
|
|
|
*(.fixup)
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
*(.got1)
|
|
|
|
__got2_start = .;
|
|
|
|
*(.got2)
|
|
|
|
__got2_end = .;
|
2005-09-30 02:16:52 -04:00
|
|
|
#else
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
_etext = .;
|
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
}
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
_etext = .;
|
|
|
|
PROVIDE (etext = .);
|
|
|
|
|
|
|
|
RODATA
|
|
|
|
.fini : { *(.fini) } =0
|
|
|
|
.ctors : { *(.ctors) }
|
|
|
|
.dtors : { *(.dtors) }
|
|
|
|
|
|
|
|
.fixup : { *(.fixup) }
|
2005-09-30 02:16:52 -04:00
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
|
|
|
|
__ex_table : {
|
|
|
|
__start___ex_table = .;
|
|
|
|
*(__ex_table)
|
|
|
|
__stop___ex_table = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
__bug_table : {
|
|
|
|
__start___bug_table = .;
|
|
|
|
*(__bug_table)
|
|
|
|
__stop___bug_table = .;
|
|
|
|
}
|
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
__ftr_fixup : {
|
|
|
|
__start___ftr_fixup = .;
|
|
|
|
*(__ftr_fixup)
|
|
|
|
__stop___ftr_fixup = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
RODATA
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
/* Read-write section, merged into data segment: */
|
2005-10-10 08:38:46 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-10-05 23:28:31 -04:00
|
|
|
_sdata = .;
|
2005-09-26 02:04:21 -04:00
|
|
|
.data :
|
|
|
|
{
|
|
|
|
*(.data)
|
|
|
|
*(.data1)
|
|
|
|
*(.sdata)
|
|
|
|
*(.sdata2)
|
|
|
|
*(.got.plt) *(.got)
|
|
|
|
*(.dynamic)
|
|
|
|
CONSTRUCTORS
|
|
|
|
}
|
|
|
|
|
2005-10-10 08:38:46 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-09-26 02:04:21 -04:00
|
|
|
__nosave_begin = .;
|
|
|
|
.data_nosave : { *(.data.nosave) }
|
2005-10-10 08:38:46 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-09-26 02:04:21 -04:00
|
|
|
__nosave_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(32);
|
|
|
|
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
|
|
|
|
|
|
|
|
_edata = .;
|
|
|
|
PROVIDE (edata = .);
|
|
|
|
|
|
|
|
. = ALIGN(8192);
|
|
|
|
.data.init_task : { *(.data.init_task) }
|
2005-10-10 08:38:46 -04:00
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
/* will be freed after init */
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-09-26 02:04:21 -04:00
|
|
|
__init_begin = .;
|
|
|
|
.init.text : {
|
|
|
|
_sinittext = .;
|
|
|
|
*(.init.text)
|
|
|
|
_einittext = .;
|
|
|
|
}
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
/* .exit.text is discarded at runtime, not link time,
|
|
|
|
to deal with references from __bug_table */
|
|
|
|
.exit.text : { *(.exit.text) }
|
2005-09-30 02:16:52 -04:00
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
.init.data : {
|
|
|
|
*(.init.data);
|
|
|
|
__vtop_table_begin = .;
|
|
|
|
*(.vtop_fixup);
|
|
|
|
__vtop_table_end = .;
|
|
|
|
__ptov_table_begin = .;
|
|
|
|
*(.ptov_fixup);
|
|
|
|
__ptov_table_end = .;
|
|
|
|
}
|
2005-09-30 02:16:52 -04:00
|
|
|
|
2005-09-26 02:04:21 -04:00
|
|
|
. = ALIGN(16);
|
2005-09-30 02:16:52 -04:00
|
|
|
.init.setup : {
|
|
|
|
__setup_start = .;
|
|
|
|
*(.init.setup)
|
|
|
|
__setup_end = .;
|
|
|
|
}
|
|
|
|
|
2005-09-26 02:04:21 -04:00
|
|
|
.initcall.init : {
|
2005-09-30 02:16:52 -04:00
|
|
|
__initcall_start = .;
|
2005-09-26 02:04:21 -04:00
|
|
|
*(.initcall1.init)
|
|
|
|
*(.initcall2.init)
|
|
|
|
*(.initcall3.init)
|
|
|
|
*(.initcall4.init)
|
|
|
|
*(.initcall5.init)
|
|
|
|
*(.initcall6.init)
|
|
|
|
*(.initcall7.init)
|
2005-09-30 02:16:52 -04:00
|
|
|
__initcall_end = .;
|
2005-09-26 02:04:21 -04:00
|
|
|
}
|
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
.con_initcall.init : {
|
|
|
|
__con_initcall_start = .;
|
|
|
|
*(.con_initcall.init)
|
|
|
|
__con_initcall_end = .;
|
|
|
|
}
|
2005-09-26 02:04:21 -04:00
|
|
|
|
|
|
|
SECURITY_INIT
|
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
__start___ftr_fixup = .;
|
|
|
|
__ftr_fixup : { *(__ftr_fixup) }
|
|
|
|
__stop___ftr_fixup = .;
|
2005-09-30 02:16:52 -04:00
|
|
|
#else
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
.init.ramfs : {
|
|
|
|
__initramfs_start = .;
|
|
|
|
*(.init.ramfs)
|
|
|
|
__initramfs_end = .;
|
|
|
|
}
|
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
. = ALIGN(32);
|
2005-09-30 02:16:52 -04:00
|
|
|
#endif
|
|
|
|
.data.percpu : {
|
|
|
|
__per_cpu_start = .;
|
|
|
|
*(.data.percpu)
|
|
|
|
__per_cpu_end = .;
|
|
|
|
}
|
2005-09-26 02:04:21 -04:00
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-10-10 08:38:46 -04:00
|
|
|
#ifdef CONFIG_PPC64
|
2005-09-30 02:16:52 -04:00
|
|
|
. = ALIGN(16384);
|
|
|
|
__init_end = .;
|
|
|
|
/* freed after init ends here */
|
|
|
|
|
|
|
|
/* Read/write sections */
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
. = ALIGN(16384);
|
2005-10-10 08:38:46 -04:00
|
|
|
_sdata = .;
|
2005-09-30 02:16:52 -04:00
|
|
|
/* The initial task and kernel stack */
|
|
|
|
.data.init_task : {
|
|
|
|
*(.data.init_task)
|
|
|
|
}
|
|
|
|
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
.data.page_aligned : {
|
|
|
|
*(.data.page_aligned)
|
|
|
|
}
|
|
|
|
|
|
|
|
.data.cacheline_aligned : {
|
|
|
|
*(.data.cacheline_aligned)
|
|
|
|
}
|
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.data .data.rel* .toc1)
|
|
|
|
*(.branch_lt)
|
|
|
|
}
|
|
|
|
|
|
|
|
.opd : {
|
|
|
|
*(.opd)
|
|
|
|
}
|
|
|
|
|
|
|
|
.got : {
|
|
|
|
__toc_start = .;
|
|
|
|
*(.got)
|
|
|
|
*(.toc)
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
_edata = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
#else
|
2005-09-26 02:04:21 -04:00
|
|
|
__initramfs_start = .;
|
2005-09-30 02:16:52 -04:00
|
|
|
.init.ramfs : {
|
|
|
|
*(.init.ramfs)
|
|
|
|
}
|
2005-09-26 02:04:21 -04:00
|
|
|
__initramfs_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(4096);
|
|
|
|
__init_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(4096);
|
|
|
|
_sextratext = .;
|
|
|
|
_eextratext = .;
|
|
|
|
|
|
|
|
__bss_start = .;
|
2005-09-30 02:16:52 -04:00
|
|
|
#endif
|
2005-10-10 08:38:46 -04:00
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
.bss : {
|
|
|
|
__bss_start = .;
|
2005-09-26 02:04:21 -04:00
|
|
|
*(.sbss) *(.scommon)
|
|
|
|
*(.dynbss)
|
|
|
|
*(.bss)
|
|
|
|
*(COMMON)
|
2005-09-30 02:16:52 -04:00
|
|
|
__bss_stop = .;
|
2005-09-26 02:04:21 -04:00
|
|
|
}
|
|
|
|
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
_end = . ;
|
2005-09-30 02:16:52 -04:00
|
|
|
#ifdef CONFIG_PPC32
|
2005-09-26 02:04:21 -04:00
|
|
|
PROVIDE (end = .);
|
2005-09-30 02:16:52 -04:00
|
|
|
#endif
|
2005-09-26 02:04:21 -04:00
|
|
|
}
|