mirror of https://github.com/wolfSSL/wolfBoot.git
226 lines
7.4 KiB
C
226 lines
7.4 KiB
C
/* startup.c
|
|
*
|
|
* Test bare-metal blinking led application
|
|
*
|
|
* Copyright (C) 2018 wolfSSL Inc.
|
|
*
|
|
* This file is part of wolfBoot.
|
|
*
|
|
* wolfBoot is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* wolfBoot is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
*/
|
|
|
|
extern unsigned int _stored_data;
|
|
extern unsigned int _start_data;
|
|
extern unsigned int _end_data;
|
|
extern unsigned int _start_bss;
|
|
extern unsigned int _end_bss;
|
|
extern unsigned int _end_stack;
|
|
extern unsigned int _start_heap;
|
|
|
|
static int zeroed_variable_in_bss;
|
|
static int initialized_variable_in_data = 42;
|
|
|
|
extern void isr_tim2(void);
|
|
|
|
#define STACK_PAINTING
|
|
|
|
static volatile unsigned int avail_mem = 0;
|
|
static unsigned int sp;
|
|
|
|
extern void main(void);
|
|
|
|
void isr_reset(void) {
|
|
register unsigned int *src, *dst;
|
|
src = (unsigned int *) &_stored_data;
|
|
dst = (unsigned int *) &_start_data;
|
|
while (dst < (unsigned int *)&_end_data) {
|
|
*dst = *src;
|
|
dst++;
|
|
src++;
|
|
}
|
|
|
|
dst = &_start_bss;
|
|
while (dst < (unsigned int *)&_end_bss) {
|
|
*dst = 0U;
|
|
dst++;
|
|
}
|
|
|
|
avail_mem = &_end_stack - &_start_heap;
|
|
#ifdef STACK_PAINTING
|
|
{
|
|
asm volatile("mrs %0, msp" : "=r"(sp));
|
|
dst = ((unsigned int *)(&_end_stack)) - (8192 / sizeof(unsigned int)); ;
|
|
while ((unsigned int)dst < sp) {
|
|
*dst = 0xDEADC0DE;
|
|
dst++;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
|
|
main();
|
|
}
|
|
|
|
void isr_fault(void)
|
|
{
|
|
/* Panic. */
|
|
while(1) ;;
|
|
|
|
}
|
|
|
|
void isr_memfault(void)
|
|
{
|
|
/* Panic. */
|
|
while(1) ;;
|
|
}
|
|
|
|
void isr_busfault(void)
|
|
{
|
|
/* Panic. */
|
|
while(1) ;;
|
|
}
|
|
|
|
void isr_usagefault(void)
|
|
{
|
|
/* Panic. */
|
|
while(1) ;;
|
|
}
|
|
|
|
|
|
void isr_empty(void)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__ ((section(".isr_vector")))
|
|
void (* const IV[])(void) =
|
|
{
|
|
(void (*)(void))(&_end_stack),
|
|
isr_reset, // Reset
|
|
isr_fault, // NMI
|
|
isr_fault, // HardFault
|
|
isr_memfault, // MemFault
|
|
isr_busfault, // BusFault
|
|
isr_usagefault, // UsageFault
|
|
0, 0, 0, 0, // 4x reserved
|
|
isr_empty, // SVC
|
|
isr_empty, // DebugMonitor
|
|
0, // reserved
|
|
isr_empty, // PendSV
|
|
isr_empty, // SysTick
|
|
|
|
/* Device specific IRQs for LM3S */
|
|
|
|
#ifdef LM3S
|
|
isr_empty, // GPIO Port A
|
|
isr_empty, // GPIO Port B
|
|
isr_empty, // GPIO Port C
|
|
isr_empty, // GPIO Port D
|
|
isr_empty, // GPIO Port E
|
|
isr_empty, // UART0 Rx and Tx
|
|
isr_empty, // UART1 Rx and Tx
|
|
isr_empty, // SSI0 Rx and Tx
|
|
isr_empty, // I2C0 Master and Slave
|
|
isr_empty, // PWM Fault
|
|
isr_empty, // PWM Generator 0
|
|
isr_empty, // PWM Generator 1
|
|
isr_empty, // PWM Generator 2
|
|
isr_empty, // Quadrature Encoder 0
|
|
isr_empty, // ADC Sequence 0
|
|
isr_empty, // ADC Sequence 1
|
|
isr_empty, // ADC Sequence 2
|
|
isr_empty, // ADC Sequence 3
|
|
isr_empty, // Watchdog timer
|
|
isr_empty, // Timer 0 subtimer A
|
|
isr_empty, // Timer 0 subtimer B
|
|
isr_empty, // Timer 1 subtimer A
|
|
isr_empty, // Timer 1 subtimer B
|
|
isr_empty, // Timer 2 subtimer A
|
|
isr_empty, // Timer 3 subtimer B
|
|
isr_empty, // Analog Comparator 0
|
|
isr_empty, // Analog Comparator 1
|
|
isr_empty, // Analog Comparator 2
|
|
isr_empty, // System Control (PLL, OSC, BO)
|
|
isr_empty, // FLASH Control
|
|
isr_empty, // GPIO Port F
|
|
isr_empty, // GPIO Port G
|
|
isr_empty, // GPIO Port H
|
|
isr_empty, // UART2 Rx and Tx
|
|
isr_empty, // SSI1 Rx and Tx
|
|
isr_empty, // Timer 3 subtimer A
|
|
isr_empty, // Timer 3 subtimer B
|
|
isr_empty, // I2C1 Master and Slave
|
|
isr_empty, // Quadrature Encoder 1
|
|
isr_empty, // CAN0
|
|
isr_empty, // CAN1
|
|
isr_empty, // CAN2
|
|
isr_empty, // Ethernet
|
|
isr_empty, // Hibernate
|
|
|
|
#else /* For STM32F4 */
|
|
isr_empty, // NVIC_WWDG_IRQ 0
|
|
isr_empty, // PVD_IRQ 1
|
|
isr_empty, // TAMP_STAMP_IRQ 2
|
|
isr_empty, // RTC_WKUP_IRQ 3
|
|
isr_empty, // FLASH_IRQ 4
|
|
isr_empty, // RCC_IRQ 5
|
|
isr_empty, // EXTI0_IRQ 6
|
|
isr_empty, // EXTI1_IRQ 7
|
|
isr_empty, // EXTI2_IRQ 8
|
|
isr_empty, // EXTI3_IRQ 9
|
|
isr_empty, // EXTI4_IRQ 10
|
|
isr_empty, // DMA1_STREAM0_IRQ 11
|
|
isr_empty, // DMA1_STREAM1_IRQ 12
|
|
isr_empty, // DMA1_STREAM2_IRQ 13
|
|
isr_empty, // DMA1_STREAM3_IRQ 14
|
|
isr_empty, // DMA1_STREAM4_IRQ 15
|
|
isr_empty, // DMA1_STREAM5_IRQ 16
|
|
isr_empty, // DMA1_STREAM6_IRQ 17
|
|
isr_empty, // ADC_IRQ 18
|
|
isr_empty, // CAN1_TX_IRQ 19
|
|
isr_empty, // CAN1_RX0_IRQ 20
|
|
isr_empty, // CAN1_RX1_IRQ 21
|
|
isr_empty, // CAN1_SCE_IRQ 22
|
|
isr_empty, // EXTI9_5_IRQ 23
|
|
isr_empty, // TIM1_BRK_TIM9_IRQ 24
|
|
isr_empty, // TIM1_UP_TIM10_IRQ 25
|
|
isr_empty, // TIM1_TRG_COM_TIM11_IRQ 26
|
|
isr_empty, // TIM1_CC_IRQ 27
|
|
isr_tim2, // TIM2_IRQ 28
|
|
isr_empty, // TIM3_IRQ 29
|
|
isr_empty, // TIM4_IRQ 30
|
|
isr_empty, // I2C1_EV_IRQ 31
|
|
isr_empty, // I2C1_ER_IRQ 32
|
|
isr_empty, // I2C2_EV_IRQ 33
|
|
isr_empty, // I2C2_ER_IRQ 34
|
|
isr_empty, // SPI1_IRQ 35
|
|
isr_empty, // SPI2_IRQ 36
|
|
isr_empty, // USART1_IRQ 37
|
|
isr_empty, // USART2_IRQ 38
|
|
isr_empty, // USART3_IRQ 39
|
|
isr_empty, // EXTI15_10_IRQ 40
|
|
isr_empty, // RTC_ALARM_IRQ 41
|
|
isr_empty, // USB_FS_WKUP_IRQ 42
|
|
isr_empty, // TIM8_BRK_TIM12_IRQ 43
|
|
isr_empty, // TIM8_UP_TIM13_IRQ 44
|
|
isr_empty, // TIM8_TRG_COM_TIM14_IRQ 45
|
|
isr_empty, // TIM8_CC_IRQ 46
|
|
isr_empty, // DMA1_STREAM7_IRQ 47
|
|
|
|
#endif
|
|
};
|