2 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2008-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
11 OUTPUT_ARCH(microblaze)
12 ENTRY(microblaze_start)
15 #include <asm-generic/vmlinux.lds.h>
16 #include <asm/thread_info.h>
18 #ifdef __MICROBLAZEEL__
21 jiffies = jiffies_64 + 4;
25 . = CONFIG_KERNEL_START;
26 microblaze_start = CONFIG_KERNEL_BASE_ADDR;
27 .text : AT(ADDR(.text) - LOAD_OFFSET) {
44 __fdt_blob : AT(ADDR(__fdt_blob) - LOAD_OFFSET) {
45 _fdt_start = . ; /* place for fdt blob */
46 *(__fdt_blob) ; /* Any link-placed DTB */
47 . = _fdt_start + 0x4000; /* Pad up to 16kbyte */
56 * sdata2 section can go anywhere, but must be word aligned
57 * and SDA2_BASE must point to the middle of it
59 .sdata2 : AT(ADDR(.sdata2) - LOAD_OFFSET) {
61 . = ALIGN(PAGE_SIZE); /* page aligned when MMU used */
65 _ssrw_size = _essrw - _ssrw;
66 _KERNEL_SDA2_BASE_ = _ssrw + (_ssrw_size / 2);
70 RW_DATA_SECTION(32, PAGE_SIZE, THREAD_SIZE)
73 /* Under the microblaze ABI, .sdata and .sbss must be contiguous */
75 .sdata : AT(ADDR(.sdata) - LOAD_OFFSET) {
80 .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) {
85 _ssro_size = _essro - _ssro ;
86 _KERNEL_SDA_BASE_ = _ssro + (_ssro_size / 2) ;
92 INIT_TEXT_SECTION(PAGE_SIZE)
94 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
99 .init.ivt : AT(ADDR(.init.ivt) - LOAD_OFFSET) {
105 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
109 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET ) {
113 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
119 __init_end_before_initramfs = .;
121 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
127 .bss ALIGN (PAGE_SIZE) : AT(ADDR(.bss) - LOAD_OFFSET) {
128 /* page aligned when MMU used */
136 . = ALIGN(PAGE_SIZE);