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.
25 * LPC11U14 definitions and code fragments for AltOS
29 #define AO_STACK_SIZE 512
32 #define AO_PORT_TYPE uint32_t
34 #define AO_LED_TYPE AO_PORT_TYPE
37 #define AO_TICK_TYPE uint16_t
38 #define AO_TICK_SIGNED int16_t
41 /* Various definitions to make GCC look more like SDCC */
43 #define ao_arch_naked_declare __attribute__((naked))
44 #define ao_arch_naked_define
50 #define __interrupt(n)
53 #define ao_arch_reboot() arm_scb.aircr = ((0x05fa << 16) | \
58 #define ao_arch_nop() asm("nop")
60 #define ao_arch_interrupt(n) /* nothing */
64 #define putchar(c) ao_putchar(c)
65 #define getchar ao_getchar
67 extern void putchar(char c);
68 extern char getchar(void);
74 #define AO_ROMCONFIG_VERSION 2
76 #define AO_ROMCONFIG_SYMBOL(a) __attribute__((section(".romconfig"))) const
78 extern const uint16_t ao_romconfig_version;
79 extern const uint16_t ao_romconfig_check;
80 extern const uint16_t ao_serial_number;
81 extern const uint32_t ao_radio_cal;
83 #define ao_arch_task_members\
84 uint32_t *sp; /* saved stack pointer */
86 #define ao_arch_block_interrupts() asm("cpsid i")
87 #define ao_arch_release_interrupts() asm("cpsie i")
90 * For now, we're running at a weird frequency
94 #define AO_PLLSRC AO_HSE
96 #define AO_PLLSRC STM_HSI_FREQ
99 #define AO_PLLVCO (AO_PLLSRC * AO_PLLMUL)
100 #define AO_SYSCLK (AO_PLLVCO / AO_PLLDIV)
101 #define AO_HCLK (AO_SYSCLK / AO_AHB_PRESCALER)
102 #define AO_PCLK1 (AO_HCLK / AO_APB1_PRESCALER)
103 #define AO_PCLK2 (AO_HCLK / AO_APB2_PRESCALER)
105 #if AO_APB1_PRESCALER == 1
106 #define AO_TIM23467_CLK AO_PCLK1
108 #define AO_TIM23467_CLK (2 * AO_PCLK1)
111 #if AO_APB2_PRESCALER == 1
112 #define AO_TIM91011_CLK AO_PCLK2
114 #define AO_TIM91011_CLK (2 * AO_PCLK2)
117 #define AO_LPC_NVIC_HIGH_PRIORITY 0
118 #define AO_LPC_NVIC_CLOCK_PRIORITY 1
119 #define AO_LPC_NVIC_MED_PRIORITY 2
120 #define AO_LPC_NVIC_LOW_PRIORITY 3
125 #define AO_USB_OUT_EP 2
126 #define AO_USB_IN_EP 3
129 ao_serial_init(void);
131 /* SPI definitions */
133 #define AO_SPI_SPEED_12MHz 4
134 #define AO_SPI_SPEED_8MHz 6
135 #define AO_SPI_SPEED_6MHz 8
136 #define AO_SPI_SPEED_4MHz 12
137 #define AO_SPI_SPEED_2MHz 24
138 #define AO_SPI_SPEED_1MHz 48
139 #define AO_SPI_SPEED_500kHz 96
140 #define AO_SPI_SPEED_250kHz 192
141 #define AO_SPI_SPEED_125kHz 384
142 #define AO_SPI_SPEED_62500Hz 768
144 #define AO_SPI_SPEED_FAST AO_SPI_SPEED_12MHz
146 #define AO_BOOT_APPLICATION_BASE ((uint32_t *) 0x00001000)
147 #define AO_BOOT_APPLICATION_BOUND ((uint32_t *) (0x00000000 + 32 * 1024))
148 #define AO_BOOT_LOADER_BASE ((uint32_t *) 0x00000000)
149 #define HAS_BOOT_LOADER 1
151 /* ADC definitions */
153 #define AO_ADC_MAX 32767
155 #endif /* _AO_ARCH_H_ */