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) {
45 __fdt_blob : AT(ADDR(__fdt_blob) - LOAD_OFFSET) {
46 _fdt_start = . ; /* place for fdt blob */
47 *(__fdt_blob) ; /* Any link-placed DTB */
48 . = _fdt_start + 0x8000; /* Pad up to 32kbyte */
58 * sdata2 section can go anywhere, but must be word aligned
59 * and SDA2_BASE must point to the middle of it
61 .sdata2 : AT(ADDR(.sdata2) - LOAD_OFFSET) {
63 . = ALIGN(PAGE_SIZE); /* page aligned when MMU used */
67 _ssrw_size = _essrw - _ssrw;
68 _KERNEL_SDA2_BASE_ = _ssrw + (_ssrw_size / 2);
72 RW_DATA_SECTION(32, PAGE_SIZE, THREAD_SIZE)
75 /* Under the microblaze ABI, .sdata and .sbss must be contiguous */
77 .sdata : AT(ADDR(.sdata) - LOAD_OFFSET) {
82 .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) {
87 _ssro_size = _essro - _ssro ;
88 _KERNEL_SDA_BASE_ = _ssro + (_ssro_size / 2) ;
94 INIT_TEXT_SECTION(PAGE_SIZE)
96 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
101 .init.ivt : AT(ADDR(.init.ivt) - LOAD_OFFSET) {
107 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
111 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET ) {
115 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
121 __init_end_before_initramfs = .;
123 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
129 .bss ALIGN (PAGE_SIZE) : AT(ADDR(.bss) - LOAD_OFFSET) {
130 /* page aligned when MMU used */
137 . = ALIGN(PAGE_SIZE);