wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 1 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") |
| 26 | OUTPUT_ARCH(i386) |
| 27 | ENTRY(_start) |
| 28 | |
| 29 | SECTIONS |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 30 | { |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 31 | . = 0x387c0000; /* Where bootcode in the flash is mapped */ |
| 32 | .text : { *(.text); } |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 33 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 34 | . = ALIGN(4); |
Trent Piepho | f62fb99 | 2009-02-18 15:22:05 -0800 | [diff] [blame] | 35 | .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 36 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 37 | . = 0x400000; /* Ram data segment to use */ |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 38 | _i386boot_romdata_dest = ABSOLUTE(.); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 39 | .data : AT ( LOADADDR(.rodata) + SIZEOF(.rodata) ) { *(.data) } |
| 40 | _i386boot_romdata_start = LOADADDR(.data); |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 41 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 42 | . = ALIGN(4); |
| 43 | .got : AT ( LOADADDR(.data) + SIZEOF(.data) ) { *(.got) } |
| 44 | _i386boot_romdata_size = SIZEOF(.data) + SIZEOF(.got); |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 45 | |
| 46 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 47 | . = ALIGN(4); |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 48 | _i386boot_bss_start = ABSOLUTE(.); |
Selvamuthukumar | 9b827cf | 2008-10-16 22:54:03 +0530 | [diff] [blame] | 49 | .bss (NOLOAD) : { *(.bss) . = ALIGN(4); } |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 50 | _i386boot_bss_size = SIZEOF(.bss); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 51 | |
| 52 | |
Wolfgang Denk | 807d5d7 | 2005-08-31 12:28:00 +0200 | [diff] [blame] | 53 | . = .; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 54 | __u_boot_cmd_start = .; |
| 55 | .u_boot_cmd : { *(.u_boot_cmd) } |
| 56 | __u_boot_cmd_end = .; |
| 57 | |
| 58 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 59 | /* 16bit realmode trampoline code */ |
| 60 | .realmode 0x7c0 : AT ( LOADADDR(.got) + SIZEOF(.got) ) { *(.realmode) } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 61 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 62 | _i386boot_realmode = LOADADDR(.realmode); |
| 63 | _i386boot_realmode_size = SIZEOF(.realmode); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 64 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 65 | /* 16bit BIOS emulation code (just enough to boot Linux) */ |
| 66 | .bios 0 : AT ( LOADADDR(.realmode) + SIZEOF(.realmode) ) { *(.bios) } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 67 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 68 | _i386boot_bios = LOADADDR(.bios); |
| 69 | _i386boot_bios_size = SIZEOF(.bios); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 70 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 71 | |
| 72 | /* The load addresses below assumes that the flash |
| 73 | * will be mapped so that 0x387f0000 == 0xffff0000 |
| 74 | * at reset time |
| 75 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 76 | * The fe00 and ff00 offsets of the start32 and start16 |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 77 | * segments are arbitrary, the just have to be mapped |
| 78 | * at reset and the code have to fit. |
Graeme Russ | 85ffbbd | 2008-12-07 10:28:58 +1100 | [diff] [blame] | 79 | * The fff0 offset of resetvec is important, however. |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 80 | */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 81 | |
| 82 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 83 | . = 0xfffffe00; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 84 | .start32 : AT (0x387ffe00) { *(.start32); } |
| 85 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 86 | . = 0xff00; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 87 | .start16 : AT (0x387fff00) { *(.start16); } |
| 88 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 89 | . = 0xfff0; |
Graeme Russ | 85ffbbd | 2008-12-07 10:28:58 +1100 | [diff] [blame] | 90 | .resetvec : AT (0x387ffff0) { *(.resetvec); } |
| 91 | _i386boot_end = (LOADADDR(.resetvec) + SIZEOF(.resetvec) ); |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 92 | } |