]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/renesas/MigoR/u-boot.lds
versatile: update config and merge to cfi flash driver
[people/ms/u-boot.git] / board / renesas / MigoR / u-boot.lds
CommitLineData
c2042f59 1/*
2 * Copyrigth (c) 2007
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 */
23
24OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
25OUTPUT_ARCH(sh)
26ENTRY(_start)
27
28SECTIONS
29{
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).
35
36 NOTE: This address must match with the definition of
37 TEXT_BASE in config.mk (in this directory).
38
39 */
40 . = 0x8C000000 + (64*1024*1024) - (256*1024);
41
42 PROVIDE (reloc_dst = .);
43
44 PROVIDE (_ftext = .);
45 PROVIDE (_fcode = .);
46 PROVIDE (_start = .);
47
48 .text :
49 {
50 cpu/sh4/start.o (.text)
51 . = ALIGN(8192);
0cf4fd3c 52 common/env_embedded.o (.ppcenv)
c2042f59 53 . = ALIGN(8192);
0cf4fd3c 54 common/env_embedded.o (.ppcenvr)
c2042f59 55 . = ALIGN(8192);
56 *(.text)
57 . = ALIGN(4);
58 } =0xFF
59 PROVIDE (_ecode = .);
60 .rodata :
61 {
f62fb999 62 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
c2042f59 63 . = ALIGN(4);
64 }
65 PROVIDE (_etext = .);
66
67
68 PROVIDE (_fdata = .);
69 .data :
70 {
71 *(.data)
72 . = ALIGN(4);
73 }
74 PROVIDE (_edata = .);
75
76 PROVIDE (_fgot = .);
77 .got :
78 {
79 *(.got)
80 . = ALIGN(4);
81 }
82 PROVIDE (_egot = .);
83
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 = .);
91
92 PROVIDE (reloc_dst_end = .);
93 /* _reloc_dst_end = .; */
94
95 PROVIDE (bss_start = .);
96 PROVIDE (__bss_start = .);
97 .bss :
98 {
99 *(.bss)
100 . = ALIGN(4);
101 }
102 PROVIDE (bss_end = .);
103
104 PROVIDE (_end = .);
105}