glamo-mmc.patch
[u-boot-openmoko/mini2440.git] / board / r7780mp / u-boot.lds
blobe7499e5cd98d279e27e0b66fbf7f5cc2ef1301f1
1 /*
2  * Copyrigth (c) 2007,2008
3  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
24 OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
25 OUTPUT_ARCH(sh)
26 ENTRY(_start)
28 SECTIONS
30         /*
31            Base address of internal SDRAM is 0x0C000000.
32            Although size of SDRAM can be either 16 or 32 MBytes,
33            we assume 16 MBytes (ie ignore upper half if the full
34            32 MBytes is present).
36            NOTE: This address must match with the definition of
37            TEXT_BASE in config.mk (in this directory).
39         */
40         . = 0x08000000 + (128*1024*1024) - (256*1024);
42         PROVIDE (reloc_dst = .);
44         PROVIDE (_ftext = .);
45         PROVIDE (_fcode = .);
46         PROVIDE (_start = .);
48         .text :
49         {
50                 cpu/sh4/start.o         (.text)
51                 . = ALIGN(8192);
52                 common/environment.o    (.ppcenv)
53                 . = ALIGN(8192);
54                 common/environment.o    (.ppcenvr)
55                 . = ALIGN(8192);
56                 *(.text)
57                 . = ALIGN(4);
58         } =0xFF
59         PROVIDE (_ecode = .);
60         .rodata :
61         {
62                 *(.rodata)
63                 . = ALIGN(4);
64         }
65         PROVIDE (_etext = .);
68         PROVIDE (_fdata = .);
69         .data :
70         {
71                 *(.data)
72                 . = ALIGN(4);
73         }
74         PROVIDE (_edata = .);
76         PROVIDE (_fgot = .);
77         .got :
78         {
79                 *(.got)
80                 . = ALIGN(4);
81         }
82         PROVIDE (_egot = .);
84         PROVIDE (__u_boot_cmd_start = .);
85         .u_boot_cmd :
86         {
87                 *(.u_boot_cmd)
88                 . = ALIGN(4);
89         }
90         PROVIDE (__u_boot_cmd_end = .);
92         PROVIDE (reloc_dst_end = .);
93         /* _reloc_dst_end = .; */
95         PROVIDE (bss_start = .);
96         PROVIDE (__bss_start = .);
97         .bss :
98         {
99                 *(.bss)
100                 . = ALIGN(4);
101         }
102         PROVIDE (bss_end = .);
104         PROVIDE (_end = .);