2011-12-31 12:08:12 +08:00
|
|
|
/*
|
|
|
|
* File : cpuport.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
2012-12-23 15:40:31 +08:00
|
|
|
* COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
|
2011-12-31 12:08:12 +08:00
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
2012-12-24 14:59:14 +08:00
|
|
|
* Date Author Notes
|
|
|
|
* 2009-01-05 Bernard first version
|
|
|
|
* 2011-02-14 onelife Modify for EFM32
|
|
|
|
* 2011-06-17 onelife Merge all of the C source code into cpuport.c
|
2012-12-23 15:40:31 +08:00
|
|
|
* 2012-12-23 aozima stack addr align to 8byte.
|
2012-12-29 17:36:16 +08:00
|
|
|
* 2012-12-29 Bernard Add exception hook.
|
2011-12-31 12:08:12 +08:00
|
|
|
*/
|
2011-10-28 21:19:30 +08:00
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
2012-12-23 15:40:31 +08:00
|
|
|
struct exception_stack_frame
|
2011-10-28 21:19:30 +08:00
|
|
|
{
|
2012-12-23 15:40:31 +08:00
|
|
|
rt_uint32_t r0;
|
|
|
|
rt_uint32_t r1;
|
|
|
|
rt_uint32_t r2;
|
|
|
|
rt_uint32_t r3;
|
|
|
|
rt_uint32_t r12;
|
|
|
|
rt_uint32_t lr;
|
|
|
|
rt_uint32_t pc;
|
|
|
|
rt_uint32_t psr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct stack_frame
|
|
|
|
{
|
|
|
|
/* r4 ~ r11 register */
|
|
|
|
rt_uint32_t r4;
|
|
|
|
rt_uint32_t r5;
|
|
|
|
rt_uint32_t r6;
|
|
|
|
rt_uint32_t r7;
|
|
|
|
rt_uint32_t r8;
|
|
|
|
rt_uint32_t r9;
|
|
|
|
rt_uint32_t r10;
|
|
|
|
rt_uint32_t r11;
|
|
|
|
|
|
|
|
struct exception_stack_frame exception_stack_frame;
|
2011-10-28 21:19:30 +08:00
|
|
|
};
|
|
|
|
|
2011-12-31 12:08:12 +08:00
|
|
|
/* flag in interrupt handling */
|
2011-10-28 21:19:30 +08:00
|
|
|
rt_uint32_t rt_interrupt_from_thread, rt_interrupt_to_thread;
|
|
|
|
rt_uint32_t rt_thread_switch_interrupt_flag;
|
2012-12-29 17:36:16 +08:00
|
|
|
/* exception hook */
|
|
|
|
static rt_err_t (*rt_exception_hook)(void *context) = RT_NULL;
|
2011-10-28 21:19:30 +08:00
|
|
|
|
2011-12-31 12:08:12 +08:00
|
|
|
/**
|
2012-12-23 15:40:31 +08:00
|
|
|
* This function will initialize thread stack
|
|
|
|
*
|
|
|
|
* @param tentry the entry of thread
|
|
|
|
* @param parameter the parameter of entry
|
|
|
|
* @param stack_addr the beginning stack address
|
|
|
|
* @param texit the function will be called when thread exit
|
|
|
|
*
|
|
|
|
* @return stack address
|
2011-12-31 12:08:12 +08:00
|
|
|
*/
|
2012-12-24 14:59:14 +08:00
|
|
|
rt_uint8_t *rt_hw_stack_init(void *tentry,
|
|
|
|
void *parameter,
|
2012-12-23 15:40:31 +08:00
|
|
|
rt_uint8_t *stack_addr,
|
2012-12-24 14:59:14 +08:00
|
|
|
void *texit)
|
2011-10-28 21:19:30 +08:00
|
|
|
{
|
2012-12-23 15:40:31 +08:00
|
|
|
struct stack_frame *stack_frame;
|
|
|
|
rt_uint8_t *stk;
|
|
|
|
unsigned long i;
|
|
|
|
|
2012-12-24 14:59:14 +08:00
|
|
|
stk = stack_addr + sizeof(rt_uint32_t);
|
|
|
|
stk = (rt_uint8_t *)RT_ALIGN_DOWN((rt_uint32_t)stk, 8);
|
|
|
|
stk -= sizeof(struct stack_frame);
|
2012-12-23 15:40:31 +08:00
|
|
|
|
|
|
|
stack_frame = (struct stack_frame *)stk;
|
2011-10-28 21:19:30 +08:00
|
|
|
|
2012-12-23 15:40:31 +08:00
|
|
|
/* init all register */
|
|
|
|
for (i = 0; i < sizeof(struct stack_frame) / sizeof(rt_uint32_t); i ++)
|
|
|
|
{
|
|
|
|
((rt_uint32_t *)stack_frame)[i] = 0xdeadbeef;
|
|
|
|
}
|
2011-10-28 21:19:30 +08:00
|
|
|
|
2012-12-23 15:40:31 +08:00
|
|
|
stack_frame->exception_stack_frame.r0 = (unsigned long)parameter; /* r0 : argument */
|
|
|
|
stack_frame->exception_stack_frame.r1 = 0; /* r1 */
|
|
|
|
stack_frame->exception_stack_frame.r2 = 0; /* r2 */
|
|
|
|
stack_frame->exception_stack_frame.r3 = 0; /* r3 */
|
|
|
|
stack_frame->exception_stack_frame.r12 = 0; /* r12 */
|
|
|
|
stack_frame->exception_stack_frame.lr = (unsigned long)texit; /* lr */
|
|
|
|
stack_frame->exception_stack_frame.pc = (unsigned long)tentry; /* entry point, pc */
|
|
|
|
stack_frame->exception_stack_frame.psr = 0x01000000L; /* PSR */
|
2011-10-28 21:19:30 +08:00
|
|
|
|
2012-12-23 15:40:31 +08:00
|
|
|
/* return task's current stack address */
|
|
|
|
return stk;
|
2011-10-28 21:19:30 +08:00
|
|
|
}
|
|
|
|
|
2011-12-31 12:08:12 +08:00
|
|
|
/**
|
2012-12-29 17:36:16 +08:00
|
|
|
* This function set the hook, which is invoked on fault exception handling.
|
|
|
|
*
|
|
|
|
* @param exception_handle the exception handling hook function.
|
|
|
|
*/
|
|
|
|
void rt_hw_exception_install(rt_err_t (*exception_handle)(void* context))
|
|
|
|
{
|
2013-06-16 10:00:34 +08:00
|
|
|
rt_exception_hook = exception_handle;
|
2012-12-29 17:36:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fault exception handler
|
2011-12-31 12:08:12 +08:00
|
|
|
*/
|
2012-12-29 17:36:16 +08:00
|
|
|
void rt_hw_hard_fault_exception(struct exception_stack_frame* context)
|
2011-10-28 21:19:30 +08:00
|
|
|
{
|
2013-06-16 10:00:34 +08:00
|
|
|
extern long list_thread(void);
|
2012-12-29 17:36:16 +08:00
|
|
|
|
2013-06-16 10:00:34 +08:00
|
|
|
if (rt_exception_hook != RT_NULL)
|
|
|
|
{
|
|
|
|
rt_err_t result;
|
2012-12-29 17:36:16 +08:00
|
|
|
|
2013-06-16 10:00:34 +08:00
|
|
|
result = rt_exception_hook(context);
|
|
|
|
if (result == RT_EOK)
|
|
|
|
return;
|
|
|
|
}
|
2011-10-28 21:19:30 +08:00
|
|
|
|
2012-12-29 17:36:16 +08:00
|
|
|
rt_kprintf("psr: 0x%08x\n", context->psr);
|
|
|
|
rt_kprintf(" pc: 0x%08x\n", context->pc);
|
|
|
|
rt_kprintf(" lr: 0x%08x\n", context->lr);
|
|
|
|
rt_kprintf("r12: 0x%08x\n", context->r12);
|
|
|
|
rt_kprintf("r03: 0x%08x\n", context->r3);
|
|
|
|
rt_kprintf("r02: 0x%08x\n", context->r2);
|
|
|
|
rt_kprintf("r01: 0x%08x\n", context->r1);
|
|
|
|
rt_kprintf("r00: 0x%08x\n", context->r0);
|
|
|
|
|
|
|
|
rt_kprintf("hard fault on thread: %s\n", rt_thread_self()->name);
|
2012-12-24 14:59:14 +08:00
|
|
|
|
2011-10-28 21:19:30 +08:00
|
|
|
#ifdef RT_USING_FINSH
|
2012-12-23 15:40:31 +08:00
|
|
|
list_thread();
|
2011-10-28 21:19:30 +08:00
|
|
|
#endif
|
2012-12-24 14:59:14 +08:00
|
|
|
|
2013-06-16 10:00:34 +08:00
|
|
|
while (1)
|
|
|
|
;
|
2011-10-28 21:19:30 +08:00
|
|
|
}
|
|
|
|
|
2011-12-31 12:08:12 +08:00
|
|
|
/**
|
|
|
|
* shutdown CPU
|
|
|
|
*/
|
2012-12-24 14:59:14 +08:00
|
|
|
void rt_hw_cpu_shutdown(void)
|
2011-10-28 21:19:30 +08:00
|
|
|
{
|
2012-12-23 15:40:31 +08:00
|
|
|
rt_kprintf("shutdown...\n");
|
2011-10-28 21:19:30 +08:00
|
|
|
|
2012-12-23 15:40:31 +08:00
|
|
|
RT_ASSERT(0);
|
2011-10-28 21:19:30 +08:00
|
|
|
}
|
2012-12-29 17:36:16 +08:00
|
|
|
|
2013-03-23 11:27:29 +08:00
|
|
|
#ifdef RT_USING_CPU_FFS
|
|
|
|
/**
|
|
|
|
* This function finds the first bit set (beginning with the least significant bit)
|
|
|
|
* in value and return the index of that bit.
|
|
|
|
*
|
|
|
|
* Bits are numbered starting at 1 (the least significant bit). A return value of
|
|
|
|
* zero from any of these functions means that the argument was zero.
|
|
|
|
*
|
|
|
|
* @return return the index of the first bit set. If value is 0, then this function
|
|
|
|
* shall return 0.
|
|
|
|
*/
|
|
|
|
#if defined(__CC_ARM)
|
|
|
|
__asm int __rt_ffs(int value)
|
|
|
|
{
|
2013-03-26 08:52:33 +08:00
|
|
|
CMP r0, #0x00
|
|
|
|
BEQ exit
|
|
|
|
RBIT r0, r0
|
|
|
|
CLZ r0, r0
|
|
|
|
ADDS r0, r0, #0x01
|
2013-03-23 11:27:29 +08:00
|
|
|
|
|
|
|
exit
|
2013-03-26 08:52:33 +08:00
|
|
|
BX lr
|
2013-03-23 11:27:29 +08:00
|
|
|
}
|
|
|
|
#elif defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
int __rt_ffs(int value)
|
|
|
|
{
|
2013-03-26 08:52:33 +08:00
|
|
|
if (value == 0) return value;
|
|
|
|
|
|
|
|
__ASM("RBIT r0, r0");
|
|
|
|
__ASM("CLZ r0, r0");
|
|
|
|
__ASM("ADDS r0, r0, #0x01");
|
2013-03-23 11:27:29 +08:00
|
|
|
}
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
int __rt_ffs(int value)
|
|
|
|
{
|
2013-03-26 08:52:33 +08:00
|
|
|
return __builtin_ffs(value);
|
2013-03-23 11:27:29 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|