Switch from GPLv2 to GPLv2+
[fw/altos] / src / lpc / altos.ld
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 MEMORY {
20         rom (rx) : ORIGIN = 0x00001000, LENGTH = 28K
21         ram (!w) : ORIGIN = 0x10000000, LENGTH = 4K - 128
22         usb (!x) : ORIGIN = 0x20004000 + 2K - 256, LENGTH = 256
23         stack (!w) : ORIGIN = 0x10000000 + 4K - 128, LENGTH = 128
24 }
25
26 INCLUDE registers.ld
27
28 EXTERN (lpc_interrupt_vector)
29
30 SECTIONS {
31         /*
32          * Rom contents
33          */
34
35         .interrupt ORIGIN(ram) : AT (ORIGIN(rom)) {
36                 __interrupt_start__ = .;
37                 __interrupt_rom__ = ORIGIN(rom);
38                 *(.interrupt)   /* Interrupt vectors */
39                 __interrupt_end__ = .;
40         } > ram
41
42         .text ORIGIN(rom) + 0x100 : {
43                 __text_start__ = .;
44
45                 ao_romconfig.o(.romconfig*)
46                 ao_product.o(.romconfig*)
47
48                 *(.text*)       /* Executable code */
49                 *(.rodata*)     /* Constants */
50
51         } > rom
52
53         .ARM.exidx : {
54                 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
55                 __text_end__ = .;
56         } > rom
57
58         /* Boot data which must live at the start of ram so that
59          * the application and bootloader share the same addresses.
60          * This must be all uninitialized data
61          */
62         .boot : {
63                 __boot_start__ = .;
64                 *(.boot)
65                 . = ALIGN(4);
66                 __boot_end__ = .;
67         } >ram
68
69         /* Data -- relocated to RAM, but written to ROM
70          */
71         .data : AT (ADDR(.ARM.exidx) + SIZEOF (.ARM.exidx)) {
72                 __data_start__ = .;
73                 *(.data)        /* initialized data */
74                 __data_end__ = .;
75                 __bss_start__ = .;
76         } >ram
77
78         .bss : {
79                 __bss_start__ = .;
80                 *(.bss)
81                 *(COMMON)
82                 __bss_end__ = .;
83         } >ram
84         PROVIDE(end = .);
85
86         PROVIDE(__stack__ = ORIGIN(stack) + LENGTH(stack));
87 }
88
89 ENTRY(start);
90
91