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.
26 * STM32F0 definitions and code fragments for AltOS
30 #define AO_STACK_SIZE 512
33 #define AO_LED_TYPE uint16_t
35 #define AO_PORT_TYPE uint16_t
37 /* Various definitions to make GCC look more like SDCC */
39 #define ao_arch_naked_declare __attribute__((naked))
40 #define ao_arch_naked_define
41 #define __interrupt(n)
44 #define ao_arch_reboot() \
45 (stm_scb.aircr = ((STM_SCB_AIRCR_VECTKEY_KEY << STM_SCB_AIRCR_VECTKEY) | \
46 (1 << STM_SCB_AIRCR_SYSRESETREQ)))
48 #define ao_arch_nop() asm("nop")
50 #define ao_arch_interrupt(n) /* nothing */
56 #define AO_ROMCONFIG_SYMBOL __attribute__((section(".romconfig"))) const
58 extern const uint16_t ao_romconfig_version;
59 extern const uint16_t ao_romconfig_check;
60 extern const uint16_t ao_serial_number;
61 extern const uint32_t ao_radio_cal;
63 #define ao_arch_block_interrupts() asm("cpsid i")
64 #define ao_arch_release_interrupts() asm("cpsie i")
69 * For the stm32f042, we want to use the USB-based HSI48 clock
74 #define AO_SYSCLK STM_HSI_FREQ
78 #define AO_SYSCLK 48000000
82 #define AO_HCLK (AO_SYSCLK / AO_AHB_PRESCALER)
87 #define AO_PLLSRC AO_HSE
89 #define AO_PLLSRC STM_HSI_FREQ
92 #define AO_PLLVCO (AO_PLLSRC * AO_PLLMUL)
93 #define AO_SYSCLK (AO_PLLVCO / AO_PLLDIV)
97 #define AO_HCLK (AO_SYSCLK / AO_AHB_PRESCALER)
98 #define AO_PCLK (AO_HCLK / AO_APB_PRESCALER)
99 #define AO_SYSTICK (AO_HCLK)
100 #define AO_PANIC_DELAY_SCALE (AO_SYSCLK / 12000000)
102 #if AO_APB_PRESCALER == 1
103 #define AO_TIM_CLK AO_PCLK
105 #define AO_TIM_CLK (2 * AO_PCLK)
108 #define AO_STM_NVIC_HIGH_PRIORITY (0 << 6)
109 #define AO_STM_NVIC_CLOCK_PRIORITY (1 << 6)
110 #define AO_STM_NVIC_MED_PRIORITY (2 << 6)
111 #define AO_STM_NVIC_LOW_PRIORITY (3 << 6)
113 void ao_lcd_stm_init(void);
115 void ao_lcd_font_init(void);
117 void ao_lcd_font_string(char *s);
119 extern const uint32_t ao_radio_cal;
124 /* ADC maximum reported value */
125 #define AO_ADC_MAX 4095
127 #ifndef HAS_BOOT_LOADER
128 #define HAS_BOOT_LOADER 1
132 #define AO_BOOT_APPLICATION_BASE ((uint32_t *) 0x08001000)
133 #ifndef AO_BOOT_APPLICATION_BOUND
134 #define AO_BOOT_APPLICATION_BOUND ((uint32_t *) (0x08000000 + stm_flash_size()))
136 #define AO_BOOT_LOADER_BASE ((uint32_t *) 0x08000000)
139 #endif /* _AO_ARCH_H_ */