2011-04-15 12:27:13 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file ARMCMx/crt0.c
|
|
|
|
* @brief Generic ARMvx-M (Cortex-M0/M1/M3/M4) startup file for ChibiOS/RT.
|
|
|
|
*
|
2011-06-02 17:33:57 +00:00
|
|
|
* @addtogroup ARMCMx_STARTUP
|
2011-04-15 12:27:13 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2011-08-09 08:12:47 +00:00
|
|
|
#include <stdint.h>
|
2011-04-15 12:27:13 +00:00
|
|
|
|
2011-04-17 13:55:31 +00:00
|
|
|
#define FALSE 0
|
|
|
|
#define TRUE (!FALSE)
|
|
|
|
|
|
|
|
typedef void (*funcp_t)(void);
|
|
|
|
typedef funcp_t * funcpp_t;
|
|
|
|
|
2011-08-11 17:51:37 +00:00
|
|
|
#define SYMVAL(sym) (uint32_t)(((uint8_t *)&(sym)) - ((uint8_t *)0))
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/**
|
|
|
|
* @name Startup settings
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2011-04-15 12:27:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Control special register initialization value.
|
|
|
|
* @details The system is setup to run in privileged mode using the PSP
|
|
|
|
* stack (dual stack mode).
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_CONTROL_INIT) || defined(__DOXYGEN__)
|
2011-08-09 08:12:47 +00:00
|
|
|
#define CRT0_CONTROL_INIT 0x00000002
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Stack segments initialization switch.
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_STACKS_FILL_PATTERN) || defined(__DOXYGEN__)
|
|
|
|
#define CRT0_STACKS_FILL_PATTERN 0x55555555
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Stack segments initialization switch.
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_INIT_STACKS) || defined(__DOXYGEN__)
|
|
|
|
#define CRT0_INIT_STACKS TRUE
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DATA segment initialization switch.
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_INIT_DATA) || defined(__DOXYGEN__)
|
2011-08-09 08:12:47 +00:00
|
|
|
#define CRT0_INIT_DATA TRUE
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BSS segment initialization switch.
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_INIT_BSS) || defined(__DOXYGEN__)
|
2011-08-09 08:12:47 +00:00
|
|
|
#define CRT0_INIT_BSS TRUE
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Constructors invocation switch.
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_CALL_CONSTRUCTORS) || defined(__DOXYGEN__)
|
2011-08-09 08:12:47 +00:00
|
|
|
#define CRT0_CALL_CONSTRUCTORS TRUE
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Destructors invocation switch.
|
|
|
|
*/
|
|
|
|
#if !defined(CRT0_CALL_DESTRUCTORS) || defined(__DOXYGEN__)
|
2011-08-09 08:12:47 +00:00
|
|
|
#define CRT0_CALL_DESTRUCTORS TRUE
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
|
2011-08-11 17:51:37 +00:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/**
|
|
|
|
* @name Symbols from the scatter file
|
|
|
|
*/
|
|
|
|
/*===========================================================================*/
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
2011-08-09 08:12:47 +00:00
|
|
|
* @brief Main stack lower boundary.
|
|
|
|
* @details This symbol must be exported by the linker script and represents
|
|
|
|
* the main stack lower boundary.
|
|
|
|
*/
|
|
|
|
extern uint32_t __main_stack_base__;
|
|
|
|
|
|
|
|
/**
|
2011-08-11 17:51:37 +00:00
|
|
|
*
|
2011-08-09 08:12:47 +00:00
|
|
|
* @brief Main stack initial position.
|
|
|
|
* @details This symbol must be exported by the linker script and represents
|
|
|
|
* the main stack initial position.
|
|
|
|
*/
|
|
|
|
extern uint32_t __main_stack_end__;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Process stack lower boundary.
|
2011-04-15 12:27:13 +00:00
|
|
|
* @details This symbol must be exported by the linker script and represents
|
2011-08-09 08:12:47 +00:00
|
|
|
* the process stack lower boundary.
|
2011-04-15 12:27:13 +00:00
|
|
|
*/
|
2011-08-09 08:12:47 +00:00
|
|
|
extern uint32_t __process_stack_base__;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Process stack initial position.
|
|
|
|
* @details This symbol must be exported by the linker script and represents
|
|
|
|
* the process stack initial position.
|
|
|
|
*/
|
|
|
|
extern uint32_t __process_stack_end__;
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief ROM image of the data segment start.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
|
|
|
extern uint32_t _textdata;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Data segment start.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
|
|
|
extern uint32_t _data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Data segment end.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
|
|
|
extern uint32_t _edata;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BSS segment start.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
|
|
|
extern uint32_t _bss_start;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BSS segment end.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
|
|
|
extern uint32_t _bss_end;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Constructors table start.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
2011-04-17 13:55:31 +00:00
|
|
|
extern funcp_t __init_array_start;
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Constructors table end.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
2011-04-17 13:55:31 +00:00
|
|
|
extern funcp_t __init_array_end;
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Destructors table start.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
2011-04-17 13:55:31 +00:00
|
|
|
extern funcp_t __fini_array_start;
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Destructors table end.
|
|
|
|
* @pre The symbol must be aligned to a 32 bits boundary.
|
|
|
|
*/
|
2011-04-17 13:55:31 +00:00
|
|
|
extern funcp_t __fini_array_end;
|
2011-04-15 12:27:13 +00:00
|
|
|
|
2011-08-11 17:51:37 +00:00
|
|
|
/** @} */
|
|
|
|
|
2011-04-15 12:27:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Application @p main() function.
|
|
|
|
*/
|
2011-04-17 13:55:31 +00:00
|
|
|
extern void main(void);
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
2011-04-17 13:55:31 +00:00
|
|
|
* @brief Early initialization.
|
2011-04-15 12:27:13 +00:00
|
|
|
* @details This hook is invoked immediately after the stack initialization
|
|
|
|
* and before the DATA and BSS segments initialization. The
|
|
|
|
* default behavior is to do nothing.
|
|
|
|
* @note This function is a weak symbol.
|
|
|
|
*/
|
|
|
|
#if !defined(__DOXYGEN__)
|
|
|
|
__attribute__((weak))
|
|
|
|
#endif
|
2011-04-17 13:55:31 +00:00
|
|
|
void __early_init(void) {}
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
2011-04-17 13:55:31 +00:00
|
|
|
* @brief Late initialization.
|
|
|
|
* @details This hook is invoked after the DATA and BSS segments
|
|
|
|
* initialization and before any static constructor. The
|
2011-04-15 12:27:13 +00:00
|
|
|
* default behavior is to do nothing.
|
|
|
|
* @note This function is a weak symbol.
|
|
|
|
*/
|
|
|
|
#if !defined(__DOXYGEN__)
|
|
|
|
__attribute__((weak))
|
|
|
|
#endif
|
2011-04-17 13:55:31 +00:00
|
|
|
void __late_init(void) {}
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Default @p main() function exit handler.
|
|
|
|
* @details This handler is invoked or the @p main() function exit. The
|
|
|
|
* default behavior is to enter an infinite loop.
|
|
|
|
* @note This function is a weak symbol.
|
|
|
|
*/
|
|
|
|
#if !defined(__DOXYGEN__)
|
2011-04-17 14:41:19 +00:00
|
|
|
__attribute__((weak, naked))
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
2011-04-17 13:55:31 +00:00
|
|
|
void _default_exit(void) {
|
2011-04-15 12:27:13 +00:00
|
|
|
while (1)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2011-08-09 08:12:47 +00:00
|
|
|
/**
|
|
|
|
* @brief Memory fill.
|
|
|
|
*
|
|
|
|
* @param[in] start fill area start
|
|
|
|
* @param[in] end fill area end
|
|
|
|
* @param[in] filler filler pattern
|
|
|
|
*/
|
|
|
|
static void fill32(uint32_t *start, uint32_t *end, uint32_t filler) {
|
|
|
|
|
|
|
|
while (start < end)
|
|
|
|
*start++ = filler;
|
|
|
|
}
|
|
|
|
|
2011-04-15 12:27:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Reset vector.
|
|
|
|
*/
|
|
|
|
#if !defined(__DOXYGEN__)
|
2011-04-17 14:41:19 +00:00
|
|
|
__attribute__((naked))
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
void ResetHandler(void) {
|
2011-04-17 13:55:31 +00:00
|
|
|
uint32_t psp, ctl;
|
2011-04-15 12:27:13 +00:00
|
|
|
|
2011-10-05 17:00:13 +00:00
|
|
|
/* Process Stack initialization, it is allocated starting from the
|
|
|
|
symbol __process_stack_end__ and its lower limit is the symbol
|
|
|
|
__process_stack_base__.*/
|
2011-04-15 12:27:13 +00:00
|
|
|
asm volatile ("cpsid i");
|
2011-08-07 09:00:12 +00:00
|
|
|
psp = SYMVAL(__process_stack_end__);
|
2011-04-17 13:55:31 +00:00
|
|
|
asm volatile ("msr PSP, %0" : : "r" (psp));
|
2011-04-15 12:27:13 +00:00
|
|
|
|
2011-10-05 17:00:13 +00:00
|
|
|
/* CPU mode initialization.*/
|
2011-04-15 12:27:13 +00:00
|
|
|
ctl = CRT0_CONTROL_INIT;
|
|
|
|
asm volatile ("msr CONTROL, %0" : : "r" (ctl));
|
|
|
|
asm volatile ("isb");
|
|
|
|
|
2011-04-17 13:55:31 +00:00
|
|
|
/* Early initialization hook invocation.*/
|
|
|
|
__early_init();
|
2011-04-15 12:27:13 +00:00
|
|
|
|
2011-08-09 08:12:47 +00:00
|
|
|
#if CRT0_INIT_STACKS
|
|
|
|
/* Main and Process stacks initialization.*/
|
|
|
|
fill32(&__main_stack_base__,
|
|
|
|
&__main_stack_end__,
|
|
|
|
CRT0_STACKS_FILL_PATTERN);
|
|
|
|
fill32(&__process_stack_base__,
|
|
|
|
&__process_stack_end__,
|
|
|
|
CRT0_STACKS_FILL_PATTERN);
|
|
|
|
#endif
|
|
|
|
|
2011-04-15 12:27:13 +00:00
|
|
|
#if CRT0_INIT_DATA
|
|
|
|
/* DATA segment initialization.*/
|
|
|
|
{
|
|
|
|
uint32_t *tp, *dp;
|
|
|
|
|
|
|
|
tp = &_textdata;
|
|
|
|
dp = &_data;
|
|
|
|
while (dp < &_edata)
|
|
|
|
*dp++ = *tp++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CRT0_INIT_BSS
|
|
|
|
/* BSS segment initialization.*/
|
2011-08-09 08:12:47 +00:00
|
|
|
fill32(&_bss_start, &_bss_end, 0);
|
2011-04-15 12:27:13 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-17 13:55:31 +00:00
|
|
|
/* Late initialization hook invocation.*/
|
|
|
|
__late_init();
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
#if CRT0_CALL_CONSTRUCTORS
|
|
|
|
/* Constructors invocation.*/
|
|
|
|
{
|
2011-04-17 13:55:31 +00:00
|
|
|
funcpp_t fpp = &__init_array_start;
|
|
|
|
while (fpp < &__init_array_end) {
|
|
|
|
(*fpp)();
|
|
|
|
fpp++;
|
2011-04-15 12:27:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Invoking application main() function.*/
|
2011-04-17 13:55:31 +00:00
|
|
|
main();
|
2011-04-15 12:27:13 +00:00
|
|
|
|
|
|
|
#if CRT0_CALL_DESTRUCTORS
|
|
|
|
/* Destructors invocation.*/
|
|
|
|
{
|
2011-04-17 13:55:31 +00:00
|
|
|
funcpp_t fpp = &__fini_array_start;
|
|
|
|
while (fpp < &__fini_array_end) {
|
|
|
|
(*fpp)();
|
|
|
|
fpp++;
|
2011-04-15 12:27:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-04-17 13:55:31 +00:00
|
|
|
/* Invoking the exit handler.*/
|
|
|
|
_default_exit();
|
2011-04-15 12:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @} */
|