2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
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.
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.
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.
20 rom (rx) : ORIGIN = 0x00000000, LENGTH = 32K
21 ram (!w) : ORIGIN = 0x10000000, LENGTH = 4K - 128 - 32
22 usb (!x) : ORIGIN = 0x20004000 + 2K - 256, LENGTH = 256
23 stack (!w) : ORIGIN = 0x10000000 + 4K - 128 - 32, LENGTH = 128
28 EXTERN (lpc_interrupt_vector)
37 *(.interrupt) /* Interrupt vectors */
39 . = ORIGIN(rom) + 0x100;
41 ao_romconfig.o(.romconfig*)
42 ao_product.o(.romconfig*)
44 *(.text*) /* Executable code */
45 *(.rodata*) /* Constants */
50 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
54 /* Boot data which must live at the start of ram so that
55 * the application and bootloader share the same addresses.
56 * This must be all uninitialized data
65 /* Data -- relocated to RAM, but written to ROM
67 .data ORIGIN(ram) : AT (ADDR(.ARM.exidx) + SIZEOF (.ARM.exidx)) {
69 *(.data) /* initialized data */
81 PROVIDE(__stack__ = ORIGIN(stack) + LENGTH(stack));