2 * Copyright © 2013 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.
23 #ifndef IS_FLASH_LOADER
24 #error Should define IS_FLASH_LOADER
25 #define IS_FLASH_LOADER 0
29 #define RELOCATE_INTERRUPT 1
32 extern void main(void);
33 extern char __stack__;
34 extern char __text_start__, __text_end__;
35 extern char __data_start__, __data_end__;
36 extern char __bss_start__, __bss_end__;
37 #if RELOCATE_INTERRUPT
38 extern char __interrupt_rom__, __interrupt_start__, __interrupt_end__;
41 /* Interrupt functions */
43 void lpc_halt_isr(void)
45 ao_panic(AO_PANIC_CRASH);
48 void lpc_ignore_isr(void)
54 if (ao_boot_check_chain()) {
60 #if RELOCATE_INTERRUPT
61 memcpy(&__interrupt_start__, &__interrupt_rom__, &__interrupt_end__ - &__interrupt_start__);
62 lpc_scb.sysmemremap = LPC_SCB_SYSMEMREMAP_MAP_RAM << LPC_SCB_SYSMEMREMAP_MAP;
64 memcpy(&__data_start__, &__text_end__, &__data_end__ - &__data_start__);
65 memset(&__bss_start__, '\0', &__bss_end__ - &__bss_start__);
69 #define STRINGIFY(x) #x
72 void __attribute__ ((weak)) lpc_ ## name ## _isr(void); \
73 _Pragma(STRINGIFY(weak lpc_ ## name ## _isr = lpc_ignore_isr))
75 #define isr_halt(name) \
76 void __attribute__ ((weak)) lpc_ ## name ## _isr(void); \
77 _Pragma(STRINGIFY(weak lpc_ ## name ## _isr = lpc_halt_isr))
89 isr(pin_int0) /* IRQ0 */
93 isr(pin_int4) /* IRQ4 */
103 isr(ct16b0) /* IRQ16 */
107 isr(ssp0) /* IRQ20 */
119 #define i(addr,name) [(addr)/4] = lpc_ ## name ## _isr
120 #define c(addr,value) [(addr)/4] = (value)
122 __attribute__ ((section(".interrupt")))
123 const void *lpc_interrupt_vector[] = {
141 i(0x40, pin_int0), /* IRQ0 */
145 i(0x50, pin_int4), /* IRQ4 */
150 i(0x60, gint0), /* IRQ8 */
154 i(0x70, hardfault), /* IRQ12 */
159 i(0x80, ct16b0), /* IRQ16 */
163 i(0x90, ssp0), /* IRQ20 */
168 i(0xa0, adc), /* IRQ24 */
173 i(0xb0, hardfault), /* IRQ28 */