2010-06-05 22:04:21 +02:00
|
|
|
/****************************************************************************
|
2019-07-11 18:50:00 +02:00
|
|
|
* arch/arm/src/lpc17xx_40xx/lpc17_40_start.c
|
2010-06-05 22:04:21 +02:00
|
|
|
*
|
2018-06-20 16:18:32 +02:00
|
|
|
* Copyright (C) 2010, 2012-2013, 2015, 2018 Gregory Nutt. All rights
|
|
|
|
* reserved.
|
2012-02-11 04:50:52 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2010-06-05 22:04:21 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/init.h>
|
|
|
|
|
2019-01-28 00:45:19 +01:00
|
|
|
#include <arch/irq.h>
|
|
|
|
|
2020-05-01 03:20:29 +02:00
|
|
|
#include "arm_arch.h"
|
|
|
|
#include "arm_internal.h"
|
2019-04-25 15:17:10 +02:00
|
|
|
#include "nvic.h"
|
2010-06-05 22:04:21 +02:00
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
#include "lpc17_40_clockconfig.h"
|
|
|
|
#include "lpc17_40_lowputc.h"
|
|
|
|
#include "lpc17_40_userspace.h"
|
|
|
|
#include "lpc17_40_start.h"
|
2010-06-05 22:04:21 +02:00
|
|
|
|
2018-06-20 16:18:32 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* .data is positioned first in the primary RAM followed immediately by .bss.
|
|
|
|
* The IDLE thread stack lies just after .bss and has size give by
|
|
|
|
* CONFIG_IDLETHREAD_STACKSIZE; The heap then begins just after the IDLE.
|
|
|
|
* ARM EABI requires 64 bit stack alignment.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IDLE_STACKSIZE (CONFIG_IDLETHREAD_STACKSIZE & ~7)
|
|
|
|
#define IDLE_STACK ((uintptr_t)&_ebss + IDLE_STACKSIZE)
|
|
|
|
#define HEAP_BASE ((uintptr_t)&_ebss + IDLE_STACKSIZE)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* g_idle_topstack: _sbss is the start of the BSS region as defined by the
|
|
|
|
* linker script. _ebss lies at the end of the BSS region. The idle task
|
|
|
|
* stack starts at the end of BSS and is of size CONFIG_IDLETHREAD_STACKSIZE.
|
|
|
|
* The IDLE thread is the thread that the system boots on and, eventually,
|
|
|
|
* becomes the IDLE, do nothing task that runs only when there is nothing
|
|
|
|
* else to run. The heap continues from there until the end of memory.
|
|
|
|
* g_idle_topstack is a read-only variable the provides this computed
|
|
|
|
* address.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const uintptr_t g_idle_topstack = HEAP_BASE;
|
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: showprogress
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Print a character on the UART to show boot status.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-06-11 22:14:08 +02:00
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
2020-05-01 16:50:23 +02:00
|
|
|
# define showprogress(c) arm_lowputc(c)
|
2010-06-05 22:04:21 +02:00
|
|
|
#else
|
|
|
|
# define showprogress(c)
|
|
|
|
#endif
|
|
|
|
|
2013-02-08 01:17:54 +01:00
|
|
|
/****************************************************************************
|
2019-07-11 18:50:00 +02:00
|
|
|
* Name: lpc17_40_fpuconfig
|
2013-02-08 01:17:54 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Configure the FPU. Relative bit settings:
|
|
|
|
*
|
|
|
|
* CPACR: Enables access to CP10 and CP11
|
|
|
|
* CONTROL.FPCA: Determines whether the FP extension is active in the
|
|
|
|
* current context:
|
|
|
|
* FPCCR.ASPEN: Enables automatic FP state preservation, then the
|
|
|
|
* processor sets this bit to 1 on successful completion of any FP
|
|
|
|
* instruction.
|
|
|
|
* FPCCR.LSPEN: Enables lazy context save of FP state. When this is
|
|
|
|
* done, the processor reserves space on the stack for the FP state,
|
|
|
|
* but does not save that state information to the stack.
|
|
|
|
*
|
2020-07-05 09:10:40 +02:00
|
|
|
* Software must not change the value of the ASPEN bit or LSPEN bit either:
|
2013-02-08 01:17:54 +01:00
|
|
|
* - the CPACR permits access to CP10 and CP11, that give access to the FP
|
|
|
|
* extension, or
|
|
|
|
* - the CONTROL.FPCA bit is set to 1
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_FPU
|
2018-06-20 16:18:32 +02:00
|
|
|
#ifndef CONFIG_ARMV7M_LAZYFPU
|
2013-02-08 01:17:54 +01:00
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
static inline void lpc17_40_fpuconfig(void)
|
2013-02-08 01:17:54 +01:00
|
|
|
{
|
|
|
|
uint32_t regval;
|
|
|
|
|
|
|
|
/* Set CONTROL.FPCA so that we always get the extended context frame
|
|
|
|
* with the volatile FP registers stacked above the basic context.
|
|
|
|
*/
|
|
|
|
|
2014-04-14 00:22:22 +02:00
|
|
|
regval = getcontrol();
|
2013-02-08 01:17:54 +01:00
|
|
|
regval |= (1 << 2);
|
|
|
|
setcontrol(regval);
|
|
|
|
|
|
|
|
/* Ensure that FPCCR.LSPEN is disabled, so that we don't have to contend
|
|
|
|
* with the lazy FP context save behaviour. Clear FPCCR.ASPEN since we
|
|
|
|
* are going to turn on CONTROL.FPCA for all contexts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
regval = getreg32(NVIC_FPCCR);
|
|
|
|
regval &= ~((1 << 31) | (1 << 30));
|
|
|
|
putreg32(regval, NVIC_FPCCR);
|
|
|
|
|
|
|
|
/* Enable full access to CP10 and CP11 */
|
|
|
|
|
|
|
|
regval = getreg32(NVIC_CPACR);
|
2020-07-05 09:10:40 +02:00
|
|
|
regval |= ((3 << (2 * 10)) | (3 << (2 * 11)));
|
2013-02-08 01:17:54 +01:00
|
|
|
putreg32(regval, NVIC_CPACR);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
static inline void lpc17_40_fpuconfig(void)
|
2013-02-08 01:17:54 +01:00
|
|
|
{
|
|
|
|
uint32_t regval;
|
|
|
|
|
|
|
|
/* Clear CONTROL.FPCA so that we do not get the extended context frame
|
|
|
|
* with the volatile FP registers stacked in the saved context.
|
|
|
|
*/
|
|
|
|
|
2014-04-14 00:22:22 +02:00
|
|
|
regval = getcontrol();
|
2013-02-08 01:17:54 +01:00
|
|
|
regval &= ~(1 << 2);
|
|
|
|
setcontrol(regval);
|
|
|
|
|
|
|
|
/* Ensure that FPCCR.LSPEN is disabled, so that we don't have to contend
|
|
|
|
* with the lazy FP context save behaviour. Clear FPCCR.ASPEN since we
|
|
|
|
* are going to keep CONTROL.FPCA off for all contexts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
regval = getreg32(NVIC_FPCCR);
|
|
|
|
regval &= ~((1 << 31) | (1 << 30));
|
|
|
|
putreg32(regval, NVIC_FPCCR);
|
|
|
|
|
|
|
|
/* Enable full access to CP10 and CP11 */
|
|
|
|
|
|
|
|
regval = getreg32(NVIC_CPACR);
|
2020-07-05 09:10:40 +02:00
|
|
|
regval |= ((3 << (2 * 10)) | (3 << (2 * 11)));
|
2013-02-08 01:17:54 +01:00
|
|
|
putreg32(regval, NVIC_CPACR);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
2019-07-11 18:50:00 +02:00
|
|
|
# define lpc17_40_fpuconfig()
|
2013-02-08 01:17:54 +01:00
|
|
|
#endif
|
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2018-05-06 15:06:52 +02:00
|
|
|
#ifdef CONFIG_ARMV7M_STACKCHECK
|
|
|
|
/* we need to get r10 set before we can allow instrumentation calls */
|
|
|
|
|
|
|
|
void __start(void) __attribute__ ((no_instrument_function));
|
|
|
|
#endif
|
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: _start
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This is the reset entry point.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void __start(void)
|
|
|
|
{
|
|
|
|
const uint32_t *src;
|
|
|
|
uint32_t *dest;
|
|
|
|
|
2019-01-28 00:45:19 +01:00
|
|
|
/* Disable interrupts for the case that started by loader */
|
|
|
|
|
|
|
|
cpsid();
|
|
|
|
|
2018-05-06 15:06:52 +02:00
|
|
|
#ifdef CONFIG_ARMV7M_STACKCHECK
|
|
|
|
/* Set the stack limit before we attempt to call any functions */
|
|
|
|
|
2020-07-05 09:10:40 +02:00
|
|
|
__asm__ volatile("sub r10, sp, %0" : :
|
|
|
|
"r"(CONFIG_IDLETHREAD_STACKSIZE - 64) :);
|
2018-05-06 15:06:52 +02:00
|
|
|
#endif
|
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
/* Configure the uart so that we can get debug output as soon as possible */
|
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_clockconfig();
|
|
|
|
lpc17_40_fpuconfig();
|
|
|
|
lpc17_40_lowsetup();
|
2010-06-05 22:04:21 +02:00
|
|
|
showprogress('A');
|
|
|
|
|
|
|
|
/* Clear .bss. We'll do this inline (vs. calling memset) just to be
|
|
|
|
* certain that there are no issues with the state of global variables.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (dest = &_sbss; dest < &_ebss; )
|
|
|
|
{
|
|
|
|
*dest++ = 0;
|
|
|
|
}
|
2013-03-12 18:50:59 +01:00
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
showprogress('B');
|
|
|
|
|
2013-12-05 17:37:55 +01:00
|
|
|
/* Move the initialized data section from his temporary holding spot in
|
2010-06-05 22:04:21 +02:00
|
|
|
* FLASH into the correct place in SRAM. The correct place in SRAM is
|
|
|
|
* give by _sdata and _edata. The temporary location is in FLASH at the
|
|
|
|
* end of all of the other read-only data (.text, .rodata) at _eronly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (src = &_eronly, dest = &_sdata; dest < &_edata; )
|
|
|
|
{
|
|
|
|
*dest++ = *src++;
|
|
|
|
}
|
2013-03-12 18:50:59 +01:00
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
showprogress('C');
|
|
|
|
|
|
|
|
/* Perform early serial initialization */
|
|
|
|
|
2012-02-11 04:50:52 +01:00
|
|
|
#ifdef USE_EARLYSERIALINIT
|
2020-05-01 16:50:23 +02:00
|
|
|
arm_earlyserialinit();
|
2010-06-05 22:04:21 +02:00
|
|
|
#endif
|
|
|
|
showprogress('D');
|
|
|
|
|
2013-03-11 18:51:42 +01:00
|
|
|
/* For the case of the separate user-/kernel-space build, perform whatever
|
|
|
|
* platform specific initialization of the user memory is required.
|
|
|
|
* Normally this just means initializing the user space .data and .bss
|
2013-03-22 15:49:21 +01:00
|
|
|
* segments.
|
2013-03-11 18:51:42 +01:00
|
|
|
*/
|
|
|
|
|
2014-08-29 22:47:22 +02:00
|
|
|
#ifdef CONFIG_BUILD_PROTECTED
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_userspace();
|
2013-03-11 18:51:42 +01:00
|
|
|
showprogress('E');
|
|
|
|
#endif
|
|
|
|
|
2010-06-05 22:04:21 +02:00
|
|
|
/* Initialize onboard resources */
|
|
|
|
|
2019-07-11 18:50:00 +02:00
|
|
|
lpc17_40_boardinitialize();
|
2013-03-11 18:51:42 +01:00
|
|
|
showprogress('F');
|
2010-06-05 22:04:21 +02:00
|
|
|
|
|
|
|
/* Then start NuttX */
|
|
|
|
|
|
|
|
showprogress('\r');
|
|
|
|
showprogress('\n');
|
2019-02-04 23:20:35 +01:00
|
|
|
nx_start();
|
2010-06-05 22:04:21 +02:00
|
|
|
|
|
|
|
/* Shouldn't get here */
|
|
|
|
|
2015-10-07 19:39:06 +02:00
|
|
|
for (; ; );
|
2010-06-05 22:04:21 +02:00
|
|
|
}
|