mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-04 14:24:35 +08:00
90917cc75a
* [dfs] fixup compiler warning Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: separate context switching codes Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: separate vector Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: separate context_gcc.S Signed-off-by: Shell <smokewood@qq.com> * [format] libcpu/arm64: moving headers to include directory Signed-off-by: Shell <smokewood@qq.com> * style: replace tab with space --------- Signed-off-by: Shell <smokewood@qq.com>
49 lines
928 B
ArmAsm
49 lines
928 B
ArmAsm
/*
|
|
* Copyright (c) 2006-2020, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2024-03-28 Shell Move vector handling codes from context_gcc.S
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
#define __ASSEMBLY__
|
|
#endif
|
|
|
|
#include "../include/vector_gcc.h"
|
|
#include "context_gcc.h"
|
|
|
|
.globl vector_fiq
|
|
vector_fiq:
|
|
b .
|
|
|
|
START_POINT(vector_irq)
|
|
SAVE_IRQ_CONTEXT
|
|
stp x0, x1, [sp, #-0x10]! /* X0 is thread sp */
|
|
|
|
bl rt_interrupt_enter
|
|
ldp x0, x1, [sp]
|
|
|
|
#ifdef RT_USING_SMART
|
|
SAVE_USER_CTX
|
|
#endif /* RT_USING_SMART */
|
|
|
|
bl rt_hw_trap_irq
|
|
|
|
#ifdef RT_USING_SMART
|
|
ldp x0, x1, [sp]
|
|
RESTORE_USER_CTX x0
|
|
#endif /* RT_USING_SMART */
|
|
|
|
bl rt_interrupt_leave
|
|
|
|
ldp x0, x1, [sp], #0x10
|
|
bl rt_scheduler_do_irq_switch
|
|
|
|
mov x0, sp
|
|
RESTORE_IRQ_CONTEXT
|
|
|
|
START_POINT_END(vector_irq)
|