2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Stack helpers for Cortex-M CPUs
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* Stack helper functions.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#ifndef _ARM_CORTEXM_STACK__H_
|
|
|
|
#define _ARM_CORTEXM_STACK__H_
|
|
|
|
|
2015-06-19 23:07:02 +08:00
|
|
|
#include <nano_private.h>
|
2015-04-28 01:40:11 +08:00
|
|
|
#include <asm_inline.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
#ifdef CONFIG_STACK_ALIGN_DOUBLE_WORD
|
|
|
|
#define STACK_ALIGN_SIZE 8
|
|
|
|
#else
|
|
|
|
#define STACK_ALIGN_SIZE 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _ASMLANGUAGE
|
|
|
|
|
|
|
|
/* nothing */
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2015-04-27 23:28:19 +08:00
|
|
|
extern char _interrupt_stack[CONFIG_ISR_STACK_SIZE];
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-07-02 05:22:39 +08:00
|
|
|
/**
|
|
|
|
*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Setup interrupt stack
|
2015-07-02 05:22:39 +08:00
|
|
|
*
|
|
|
|
* On Cortex-M, the interrupt stack is registered in the MSP (main stack
|
|
|
|
* pointer) register, and switched to automatically when taking an exception.
|
|
|
|
*
|
2015-07-02 05:29:04 +08:00
|
|
|
* @return N/A
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
static ALWAYS_INLINE void _InterruptStackSetup(void)
|
|
|
|
{
|
2016-07-21 03:42:10 +08:00
|
|
|
uint32_t msp = (uint32_t)(_interrupt_stack + CONFIG_ISR_STACK_SIZE);
|
2015-04-15 06:15:52 +08:00
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
_MspSet(msp);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _ASMLANGUAGE */
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
#endif /* _ARM_CORTEXM_STACK__H_ */
|