Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
| 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 | |
| 24 | OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") |
| 25 | OUTPUT_ARCH(i386) |
| 26 | ENTRY(_start) |
| 27 | |
| 28 | SECTIONS |
| 29 | { |
Graeme Russ | de25059 | 2010-10-07 20:03:18 +1100 | [diff] [blame] | 30 | . = TEXT_BASE; /* Location of bootcode in flash */ |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 31 | __text_start = .; |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 32 | .text : { *(.text); } |
| 33 | |
| 34 | . = ALIGN(4); |
Trent Piepho | f62fb99 | 2009-02-18 15:22:05 -0800 | [diff] [blame] | 35 | .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 36 | |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 37 | . = ALIGN(4); |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 38 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 39 | .data : { *(.data) } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 40 | . = ALIGN(4); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 41 | |
| 42 | .interp : { *(.interp) } |
| 43 | . = ALIGN(4); |
| 44 | |
| 45 | .dynsym : { *(.dynsym) } |
| 46 | . = ALIGN(4); |
| 47 | |
| 48 | .dynstr : { *(.dynstr) } |
| 49 | . = ALIGN(4); |
| 50 | |
| 51 | .hash : { *(.hash) } |
| 52 | . = ALIGN(4); |
| 53 | |
| 54 | .got : { *(.got) } |
| 55 | . = ALIGN(4); |
| 56 | |
| 57 | .got.plt : { *(.got.plt) } |
| 58 | . = ALIGN(4); |
| 59 | |
| 60 | .dynamic (NOLOAD) : { *(.dynamic) } |
| 61 | . = ALIGN(4); |
| 62 | |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 63 | __u_boot_cmd_start = .; |
| 64 | .u_boot_cmd : { *(.u_boot_cmd) } |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 65 | . = ALIGN(4); |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 66 | __u_boot_cmd_end = .; |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 67 | |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 68 | __rel_dyn_start = .; |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 69 | .rel.dyn : { *(.rel.dyn) } |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 70 | __rel_dyn_end = .; |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 71 | |
| 72 | . = ALIGN(4); |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 73 | __bss_start = ABSOLUTE(.); |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 74 | .bss (NOLOAD) : { *(.bss) } |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 75 | __bss_size = SIZEOF(.bss); |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 76 | |
| 77 | /* 16bit realmode trampoline code */ |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 78 | .realmode 0x7c0 : AT ( LOADADDR(.rel.dyn) + SIZEOF(.rel.dyn) ) { KEEP(*(.realmode)) } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 79 | |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 80 | __realmode_start = LOADADDR(.realmode); |
| 81 | __realmode_size = SIZEOF(.realmode); |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 82 | |
| 83 | /* 16bit BIOS emulation code (just enough to boot Linux) */ |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 84 | .bios 0 : AT ( LOADADDR(.realmode) + SIZEOF(.realmode) ) { KEEP(*(.bios)) } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 85 | |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame^] | 86 | __bios_start = LOADADDR(.bios); |
| 87 | __bios_size = SIZEOF(.bios); |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 88 | |
| 89 | /* The load addresses below assumes that the flash |
| 90 | * will be mapped so that 0x387f0000 == 0xffff0000 |
| 91 | * at reset time |
| 92 | * |
| 93 | * The fe00 and ff00 offsets of the start32 and start16 |
| 94 | * segments are arbitrary, the just have to be mapped |
| 95 | * at reset and the code have to fit. |
Graeme Russ | 85ffbbd | 2008-12-07 10:28:58 +1100 | [diff] [blame] | 96 | * The fff0 offset of resetvec is important, however. |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 97 | */ |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 98 | . = 0xfffffe00; |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 99 | .start32 : AT (TEXT_BASE + 0x3fe00) { KEEP(*(.start32)); } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 100 | |
| 101 | . = 0xf800; |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 102 | .start16 : AT (TEXT_BASE + 0x3f800) { KEEP(*(.start16)); } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 103 | |
| 104 | . = 0xfff0; |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 105 | .resetvec : AT (TEXT_BASE + 0x3fff0) { KEEP(*(.resetvec)); } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 106 | } |