Compare commits
72 Commits
weekly_202
...
weekly_202
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1013f24209 | ||
|
|
207efc15b8 | ||
|
|
f2e55bd6a3 | ||
|
|
607152c434 | ||
|
|
39558ae1a3 | ||
|
|
eae638be6c | ||
|
|
e0b12758da | ||
|
|
6e1780546c | ||
|
|
ad6f249d1e | ||
|
|
907dfc63f3 | ||
|
|
5a2c176651 | ||
|
|
05642f05ae | ||
|
|
300e83214d | ||
|
|
e133ce6865 | ||
|
|
168fde70d4 | ||
|
|
fede33b32a | ||
|
|
3eba6cb2af | ||
|
|
d8e7a477f3 | ||
|
|
2d1b6f1cc0 | ||
|
|
30ff05c6a5 | ||
|
|
295681f08f | ||
|
|
161e631dcd | ||
|
|
7b86f69cc0 | ||
|
|
8a034a6202 | ||
|
|
e8538d041a | ||
|
|
5b1380ebfd | ||
|
|
017adac7a4 | ||
|
|
1b78e6ae78 | ||
|
|
911043ed4b | ||
|
|
a641899cd9 | ||
|
|
08921dc7a0 | ||
|
|
1edfa86bc9 | ||
|
|
f4add1711a | ||
|
|
8d7468b44c | ||
|
|
93e1edf81e | ||
|
|
af0db5562b | ||
|
|
bd04d9f29a | ||
|
|
9314b2fe81 | ||
|
|
1f8151649b | ||
|
|
1e5aeb9eed | ||
|
|
5a535f9f1f | ||
|
|
3a978d51b8 | ||
|
|
194ac5898d | ||
|
|
1ee543d5d3 | ||
|
|
a305119a4a | ||
|
|
a906dfaa99 | ||
|
|
c2d3518c42 | ||
|
|
4a8d3a52ec | ||
|
|
2c07ddb2b0 | ||
|
|
4890222e7c | ||
|
|
eef7c80a72 | ||
|
|
2294ff93d8 | ||
|
|
ca6801dce8 | ||
|
|
566f46dee2 | ||
|
|
10fd031b09 | ||
|
|
25a1eb522d | ||
|
|
382872d998 | ||
|
|
2219c32784 | ||
|
|
93f616b64e | ||
|
|
1c605a338a | ||
|
|
570f2785bd | ||
|
|
3900785b8f | ||
|
|
d50c106304 | ||
|
|
697a0cbdeb | ||
|
|
b9c9936270 | ||
|
|
852114d9d2 | ||
|
|
68cd62733f | ||
|
|
ce5357eee1 | ||
|
|
dcda9dcfa3 | ||
|
|
4a9d1f0c51 | ||
|
|
4c4784e33d | ||
|
|
2f7f6f0cbb |
@@ -1,6 +1,6 @@
|
|||||||
### 相关的Issue
|
### 相关的Issue
|
||||||
|
|
||||||
|
|
||||||
### 原因(目的、解决的问题等)
|
### 原因(目的、解决的问题等)
|
||||||
|
|
||||||
|
|
||||||
@@ -8,5 +8,14 @@
|
|||||||
|
|
||||||
|
|
||||||
### 测试用例(新增、改动、可能影响的功能)
|
### 测试用例(新增、改动、可能影响的功能)
|
||||||
|
|
||||||
|
|
||||||
|
### 是否需要同步至release(如:3.0LTS ... )分支?
|
||||||
|
|
||||||
|
必须选择一项(在MarkDown模式下用[x]替换[ ]即可勾选对应选项):
|
||||||
|
- [ ] 是,需要同步的分支:
|
||||||
|
- [ ] 否
|
||||||
|
|
||||||
|
理由:
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
1
BUILD.gn
1
BUILD.gn
@@ -143,6 +143,7 @@ config("kconfig_config") {
|
|||||||
"$LITEOS_MENUCONFIG_H",
|
"$LITEOS_MENUCONFIG_H",
|
||||||
]
|
]
|
||||||
asmflags = cflags
|
asmflags = cflags
|
||||||
|
cflags_cc = cflags
|
||||||
}
|
}
|
||||||
|
|
||||||
config("warn_config") {
|
config("warn_config") {
|
||||||
|
|||||||
16
Kconfig
16
Kconfig
@@ -91,19 +91,20 @@ menu "Platform"
|
|||||||
######################### config options of bsp #####################
|
######################### config options of bsp #####################
|
||||||
config PLATFORM
|
config PLATFORM
|
||||||
string
|
string
|
||||||
default "virt" if PLATFORM_QEMU_ARM_VIRT_CM7 || PLATFORM_QEMU_ARM_VIRT_CM4 || PRODUCT_QEMU_RISCV32_VIRT || PLATFORM_QEMU_CSKY_SMARTL || PLATFORM_QEMU_XTENSA_ESP32
|
default "virt" if PLATFORM_QEMU_ARM_VIRT_CM7 || PLATFORM_QEMU_ARM_VIRT_CM4 || PLATFORM_QEMU_ARM_VIRT_CM55 || PRODUCT_QEMU_RISCV32_VIRT || PLATFORM_QEMU_CSKY_SMARTL || PLATFORM_QEMU_XTENSA_ESP32
|
||||||
|
|
||||||
config PRODUCT_NAME
|
config PRODUCT_NAME
|
||||||
string
|
string
|
||||||
default "arm_virt" if PRODUCT_QEMU_ARM
|
default "arm_virt" if PRODUCT_QEMU_ARM
|
||||||
default "arm_mps2_an386" if PRODUCT_QEMU_ARM_MPS2_AN386
|
default "arm_mps2_an386" if PRODUCT_QEMU_ARM_MPS2_AN386
|
||||||
|
default "arm_mps3_an547" if PRODUCT_QEMU_ARM_MPS3_AN547
|
||||||
default "riscv32_virt" if PRODUCT_QEMU_RISCV32_VIRT
|
default "riscv32_virt" if PRODUCT_QEMU_RISCV32_VIRT
|
||||||
default "csky_smartl_e802" if PRODUCT_QEMU_CSKY_SMARTL_E802
|
default "csky_smartl_e802" if PRODUCT_QEMU_CSKY_SMARTL_E802
|
||||||
default "xtensa_esp32" if PRODUCT_QEMU_XTENSA_ESP32
|
default "xtensa_esp32" if PRODUCT_QEMU_XTENSA_ESP32
|
||||||
|
|
||||||
config DEVICE_COMPANY
|
config DEVICE_COMPANY
|
||||||
string
|
string
|
||||||
default "qemu" if PLATFORM_QEMU_ARM_VIRT_CM7 || PLATFORM_QEMU_ARM_VIRT_CM4 || PRODUCT_QEMU_RISCV32_VIRT || PLATFORM_QEMU_CSKY_SMARTL || PLATFORM_QEMU_XTENSA_ESP32
|
default "qemu" if PLATFORM_QEMU_ARM_VIRT_CM7 || PLATFORM_QEMU_ARM_VIRT_CM4 || PLATFORM_QEMU_ARM_VIRT_CM55 || PRODUCT_QEMU_RISCV32_VIRT || PLATFORM_QEMU_CSKY_SMARTL || PLATFORM_QEMU_XTENSA_ESP32
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Chip"
|
prompt "Chip"
|
||||||
@@ -128,6 +129,12 @@ config PLATFORM_QEMU_ARM_VIRT_CM4
|
|||||||
help
|
help
|
||||||
QEMU ARM Virtual Platform using Cortex-M4 CPU.
|
QEMU ARM Virtual Platform using Cortex-M4 CPU.
|
||||||
|
|
||||||
|
config PLATFORM_QEMU_ARM_VIRT_CM55
|
||||||
|
bool "qemu_arm_virt_cm55"
|
||||||
|
select ARCH_CORTEX_M55
|
||||||
|
help
|
||||||
|
QEMU ARM Virtual Platform using Cortex-M55 CPU.
|
||||||
|
|
||||||
config PLATFORM_QEMU_RISCV32_VIRT
|
config PLATFORM_QEMU_RISCV32_VIRT
|
||||||
bool "qemu_riscv32_virt"
|
bool "qemu_riscv32_virt"
|
||||||
select ARCH_RISCV32
|
select ARCH_RISCV32
|
||||||
@@ -159,6 +166,9 @@ config PRODUCT_QEMU_ARM
|
|||||||
config PRODUCT_QEMU_ARM_MPS2_AN386
|
config PRODUCT_QEMU_ARM_MPS2_AN386
|
||||||
bool "arm_mps2_an386" if PLATFORM_QEMU_ARM_VIRT_CM4
|
bool "arm_mps2_an386" if PLATFORM_QEMU_ARM_VIRT_CM4
|
||||||
|
|
||||||
|
config PRODUCT_QEMU_ARM_MPS3_AN547
|
||||||
|
bool "arm_mps3_an547" if PLATFORM_QEMU_ARM_VIRT_CM55
|
||||||
|
|
||||||
config PRODUCT_QEMU_RISCV32_VIRT
|
config PRODUCT_QEMU_RISCV32_VIRT
|
||||||
bool "riscv32_virt" if PLATFORM_QEMU_RISCV32_VIRT
|
bool "riscv32_virt" if PLATFORM_QEMU_RISCV32_VIRT
|
||||||
|
|
||||||
@@ -286,6 +296,8 @@ config KERNEL_CPPSUPPORT
|
|||||||
help
|
help
|
||||||
If you wish to build LiteOS with support for C++.
|
If you wish to build LiteOS with support for C++.
|
||||||
|
|
||||||
|
rsource "components/signal/Kconfig"
|
||||||
|
|
||||||
config BASE_CORE_CPUP
|
config BASE_CORE_CPUP
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ module_group("arch") {
|
|||||||
modules = []
|
modules = []
|
||||||
if ("$board_cpu" == "arm9" || "$board_cpu" == "cortex-m3" ||
|
if ("$board_cpu" == "arm9" || "$board_cpu" == "cortex-m3" ||
|
||||||
"$board_cpu" == "cortex-m4" || "$board_cpu" == "cortex-m7" ||
|
"$board_cpu" == "cortex-m4" || "$board_cpu" == "cortex-m7" ||
|
||||||
"$board_cpu" == "cortex-m33") {
|
"$board_cpu" == "cortex-m33" || "$board_cpu" == "cortex-m55") {
|
||||||
modules += [ "arm" ]
|
modules += [ "arm" ]
|
||||||
} else if ("$board_cpu" == "ck802" || "$board_cpu" == "e802") {
|
} else if ("$board_cpu" == "ck802" || "$board_cpu" == "e802") {
|
||||||
modules += [ "csky" ]
|
modules += [ "csky" ]
|
||||||
|
|||||||
@@ -94,6 +94,14 @@ config ARCH_CORTEX_M33
|
|||||||
select ARCH_FPU_VFP_D32
|
select ARCH_FPU_VFP_D32
|
||||||
select ARCH_FPU_VFP_NEON
|
select ARCH_FPU_VFP_NEON
|
||||||
|
|
||||||
|
config ARCH_CORTEX_M55
|
||||||
|
bool
|
||||||
|
select ARCH_ARM_V7M
|
||||||
|
select ARCH_ARM_AARCH32
|
||||||
|
select ARCH_FPU_VFP_V4
|
||||||
|
select ARCH_FPU_VFP_D32
|
||||||
|
select ARCH_FPU_VFP_NEON
|
||||||
|
|
||||||
config ARCH_ARM9
|
config ARCH_ARM9
|
||||||
bool
|
bool
|
||||||
select ARCH_ARM_V5TE
|
select ARCH_ARM_V5TE
|
||||||
@@ -105,4 +113,5 @@ config ARCH_CPU
|
|||||||
default "cortex-m4" if ARCH_CORTEX_M4
|
default "cortex-m4" if ARCH_CORTEX_M4
|
||||||
default "cortex-m7" if ARCH_CORTEX_M7
|
default "cortex-m7" if ARCH_CORTEX_M7
|
||||||
default "cortex-m33" if ARCH_CORTEX_M33
|
default "cortex-m33" if ARCH_CORTEX_M33
|
||||||
|
default "cortex-m55" if ARCH_CORTEX_M55
|
||||||
default "arm9" if ARCH_ARM9
|
default "arm9" if ARCH_ARM9
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ kernel_module(module_name) {
|
|||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
"reset_vector.S",
|
"reset_vector.S",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -42,10 +42,6 @@ extern "C" {
|
|||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
return *v;
|
return *v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -97,7 +97,8 @@ extern UINT32 g_intCount;
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a arm9 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -147,7 +148,8 @@ extern UINT32 g_intCount;
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a arm9 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -157,7 +159,8 @@ extern UINT32 g_intCount;
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -204,25 +207,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -75,18 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
LosTaskCB *taskCB = OS_TCB_FROM_TID(taskID);
|
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
PRINT_ERR("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
context->r0 = taskID;
|
context->r0 = taskID;
|
||||||
context->r1 = 0x01010101L;
|
context->r1 = 0x01010101L;
|
||||||
|
|||||||
@@ -48,9 +48,6 @@
|
|||||||
#define OS_INT_ENABLE_ADDR (OS_INT_REG_BASE)
|
#define OS_INT_ENABLE_ADDR (OS_INT_REG_BASE)
|
||||||
#define OS_INT_STATUS_ADDR (OS_INT_REG_BASE + 12)
|
#define OS_INT_STATUS_ADDR (OS_INT_REG_BASE + 12)
|
||||||
|
|
||||||
#define OS_INT_ENABLE(num) (*((volatile UINT32 *)OS_INT_ENABLE_ADDR) |= (1U << (num)))
|
|
||||||
#define OS_INT_DISABLE(num) (*((volatile UINT32 *)OS_INT_ENABLE_ADDR ) &= ~(1U << (num)))
|
|
||||||
|
|
||||||
#define OS_INSTR_SET_MASK 0x01000020U
|
#define OS_INSTR_SET_MASK 0x01000020U
|
||||||
#define OS_ARM_INSTR_LEN 4
|
#define OS_ARM_INSTR_LEN 4
|
||||||
#define OS_THUMB_INSTR_LEN 2
|
#define OS_THUMB_INSTR_LEN 2
|
||||||
@@ -112,20 +109,49 @@ VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector)
|
|||||||
|
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
READ_UINT32(status, OS_INT_STATUS_ADDR);
|
READ_UINT32(status, OS_INT_STATUS_ADDR);
|
||||||
|
|
||||||
return (31 - CLZ(status));
|
return (31 - CLZ(status));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
*((volatile UINT32 *)OS_INT_ENABLE_ADDR) |= (1U << (hwiNum));
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
*((volatile UINT32 *)OS_INT_ENABLE_ADDR) &= ~(1U << (hwiNum));
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -140,8 +166,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -175,7 +201,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
OsSchedUpdateSleepTime();
|
OsSchedUpdateSleepTime();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -237,7 +263,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
OS_INT_ENABLE(hwiNum);
|
HwiUnmask(hwiNum);
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
@@ -258,7 +284,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
OS_INT_DISABLE(hwiNum);
|
HwiMask(hwiNum);
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
g_hwiForm[hwiNum + OS_SYS_VECTOR_CNT] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
g_hwiForm[hwiNum + OS_SYS_VECTOR_CNT] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
||||||
@@ -316,6 +342,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->spsr);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->spsr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -332,6 +359,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -381,7 +409,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -40,73 +40,6 @@ extern "C" {
|
|||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|
||||||
{
|
|
||||||
INT32 val;
|
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
|
||||||
|
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
|
||||||
: "=&r"(val)
|
|
||||||
: "r"(v)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
|
||||||
{
|
|
||||||
UINT32 status;
|
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
|
||||||
|
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
|
||||||
" strex %0, %3, [%2]\n"
|
|
||||||
" teq %0, #0\n"
|
|
||||||
" beq 1b"
|
|
||||||
: "=&r"(status), "+m"(*v)
|
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|
||||||
{
|
|
||||||
INT32 val;
|
|
||||||
UINT32 status;
|
|
||||||
|
|
||||||
do {
|
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
|
||||||
"add %1, %1, %3\n"
|
|
||||||
"strex %0, %1, [%2]"
|
|
||||||
: "=&r"(status), "=&r"(val)
|
|
||||||
: "r"(v), "r"(addVal)
|
|
||||||
: "cc");
|
|
||||||
} while (__builtin_expect(status != 0, 0));
|
|
||||||
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|
||||||
{
|
|
||||||
INT32 val;
|
|
||||||
UINT32 status;
|
|
||||||
|
|
||||||
do {
|
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
|
||||||
"sub %1, %1, %3\n"
|
|
||||||
"strex %0, %1, [%2]"
|
|
||||||
: "=&r"(status), "=&r"(val)
|
|
||||||
: "r"(v), "r"(subVal)
|
|
||||||
: "cc");
|
|
||||||
} while (__builtin_expect(status != 0, 0));
|
|
||||||
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC INLINE VOID ArchAtomicInc(Atomic *v)
|
STATIC INLINE VOID ArchAtomicInc(Atomic *v)
|
||||||
{
|
{
|
||||||
(VOID)ArchAtomicAdd(v, 1);
|
(VOID)ArchAtomicAdd(v, 1);
|
||||||
@@ -127,91 +60,6 @@ STATIC INLINE INT32 ArchAtomicDecRet(Atomic *v)
|
|||||||
return ArchAtomicSub(v, 1);
|
return ArchAtomicSub(v, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @ingroup los_arch_atomic
|
|
||||||
* @brief Atomic exchange for 32-bit variable.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to implement the atomic exchange for 32-bit variable
|
|
||||||
* and return the previous value of the atomic variable.
|
|
||||||
* @attention
|
|
||||||
* <ul>The pointer v must not be NULL.</ul>
|
|
||||||
*
|
|
||||||
* @param v [IN] The variable pointer.
|
|
||||||
* @param val [IN] The exchange value.
|
|
||||||
*
|
|
||||||
* @retval #INT32 The previous value of the atomic variable
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_atomic.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see
|
|
||||||
*/
|
|
||||||
STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|
||||||
{
|
|
||||||
INT32 prevVal = 0;
|
|
||||||
UINT32 status = 0;
|
|
||||||
|
|
||||||
do {
|
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
|
||||||
"strex %1, %4, [%3]"
|
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
|
||||||
: "r"(v), "r"(val)
|
|
||||||
: "cc");
|
|
||||||
} while (__builtin_expect(status != 0, 0));
|
|
||||||
|
|
||||||
return prevVal;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @ingroup los_arch_atomic
|
|
||||||
* @brief Atomic exchange for 32-bit variable with compare.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to implement the atomic exchange for 32-bit variable, if the value of variable is equal to oldVal.
|
|
||||||
* @attention
|
|
||||||
* <ul>The pointer v must not be NULL.</ul>
|
|
||||||
*
|
|
||||||
* @param v [IN] The variable pointer.
|
|
||||||
* @param val [IN] The new value.
|
|
||||||
* @param oldVal [IN] The old value.
|
|
||||||
*
|
|
||||||
* @retval TRUE The previous value of the atomic variable is not equal to oldVal.
|
|
||||||
* @retval FALSE The previous value of the atomic variable is equal to oldVal.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_atomic.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see
|
|
||||||
*/
|
|
||||||
STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 oldVal)
|
|
||||||
{
|
|
||||||
INT32 prevVal = 0;
|
|
||||||
UINT32 status = 0;
|
|
||||||
|
|
||||||
do {
|
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
|
||||||
" mov %1, #0\n"
|
|
||||||
" cmp %0, %3\n"
|
|
||||||
" bne 2f\n"
|
|
||||||
" strex %1, %4, %2\n"
|
|
||||||
"2:"
|
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
|
||||||
: "r"(oldVal), "r"(val)
|
|
||||||
: "cc");
|
|
||||||
} while (__builtin_expect(status != 0, 0));
|
|
||||||
|
|
||||||
return prevVal != oldVal;
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC INLINE INT64 ArchAtomic64Read(const Atomic64 *v)
|
|
||||||
{
|
|
||||||
INT64 val;
|
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
|
||||||
val = *v;
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC INLINE VOID ArchAtomic64Set(Atomic64 *v, INT64 setVal)
|
STATIC INLINE VOID ArchAtomic64Set(Atomic64 *v, INT64 setVal)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M3 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M3 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
98
arch/arm/cortex-m3/keil/los_atomic.S
Executable file
98
arch/arm/cortex-m3/keil/los_atomic.S
Executable file
@@ -0,0 +1,98 @@
|
|||||||
|
;
|
||||||
|
; Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
;
|
||||||
|
; 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
;
|
||||||
|
|
||||||
|
EXPORT ArchAtomicRead
|
||||||
|
EXPORT ArchAtomicSet
|
||||||
|
EXPORT ArchAtomicAdd
|
||||||
|
EXPORT ArchAtomicSub
|
||||||
|
EXPORT ArchAtomicXchg32bits
|
||||||
|
EXPORT ArchAtomicCmpXchg32bits
|
||||||
|
|
||||||
|
PRESERVE8
|
||||||
|
AREA |.text|, CODE, READONLY
|
||||||
|
THUMB
|
||||||
|
|
||||||
|
|
||||||
|
EXPORT ArchAtomicRead
|
||||||
|
EXPORT ArchAtomicSet
|
||||||
|
EXPORT ArchAtomicAdd
|
||||||
|
EXPORT ArchAtomicSub
|
||||||
|
EXPORT ArchAtomicXchg32bits
|
||||||
|
EXPORT ArchAtomicCmpXchg32bits
|
||||||
|
|
||||||
|
PRESERVE8
|
||||||
|
AREA |.text|, CODE, READONLY
|
||||||
|
THUMB
|
||||||
|
|
||||||
|
ArchAtomicRead
|
||||||
|
ldrex r1, [r0]
|
||||||
|
mov r0, r1
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
ArchAtomicSet
|
||||||
|
ldrex r2, [r0]
|
||||||
|
strex r3, r1, [r0]
|
||||||
|
teq r3, #0
|
||||||
|
bne ArchAtomicSet
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
ArchAtomicAdd
|
||||||
|
ldrex r2, [r0]
|
||||||
|
add r2, r2, r1
|
||||||
|
strex r3, r2, [r0]
|
||||||
|
teq r3, #0
|
||||||
|
bne ArchAtomicAdd
|
||||||
|
mov r0, r2
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
ArchAtomicSub
|
||||||
|
ldrex r2, [r0]
|
||||||
|
sub r2, r2, r1
|
||||||
|
strex r3, r2, [r0]
|
||||||
|
teq r3, #0
|
||||||
|
bne ArchAtomicSub
|
||||||
|
mov r0, r2
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
ArchAtomicXchg32bits
|
||||||
|
ldrex r2, [r0]
|
||||||
|
strex r3, r1, [r0]
|
||||||
|
teq r3, #0
|
||||||
|
bne ArchAtomicXchg32bits
|
||||||
|
mov r0, r2
|
||||||
|
|
||||||
|
ArchAtomicCmpXchg32bits
|
||||||
|
ldrex r3, [r0]
|
||||||
|
cmp r3, r2
|
||||||
|
bne end
|
||||||
|
strex r4, r1, [r0]
|
||||||
|
teq r4, #0
|
||||||
|
bne ArchAtomicCmpXchg32bits
|
||||||
|
end
|
||||||
@@ -76,17 +76,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
|
|||||||
@@ -108,17 +108,85 @@ WEAK VOID SysTick_Handler(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -133,8 +201,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -168,7 +236,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -234,8 +302,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -257,7 +325,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
HwiMask((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
|
|
||||||
@@ -378,6 +446,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -394,6 +463,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -443,7 +513,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ kernel_module(module_name) {
|
|||||||
"los_interrupt.c",
|
"los_interrupt.c",
|
||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
|
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
|
||||||
: "=&r"(val)
|
: "=&r"(val)
|
||||||
: "r"(v)
|
: "r"(v)
|
||||||
: "cc");
|
: "cc");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (__builtin_expect(status != 0, 0));
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,9 +71,9 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -96,9 +88,9 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -151,8 +143,8 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
__asm__ __volatile__("ldrex %0, [%3]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %4, [%3]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -186,12 +178,12 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
__asm__ __volatile__("ldrex %0, %2\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, %2\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M33 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M33 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
27
arch/arm/cortex-m33/gcc/NTZ/los_context.c
Executable file → Normal file
27
arch/arm/cortex-m33/gcc/NTZ/los_context.c
Executable file → Normal file
@@ -75,17 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -146,6 +136,21 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_SIGNAL == 1)
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
24
arch/arm/cortex-m33/gcc/NTZ/los_dispatch.S
Executable file → Normal file
24
arch/arm/cortex-m33/gcc/NTZ/los_dispatch.S
Executable file → Normal file
@@ -47,6 +47,15 @@
|
|||||||
.section .text
|
.section .text
|
||||||
.thumb
|
.thumb
|
||||||
|
|
||||||
|
.macro SIGNAL_CONTEXT_RESTORE
|
||||||
|
push {r12, lr}
|
||||||
|
blx OsSignalTaskContextRestore
|
||||||
|
pop {r12, lr}
|
||||||
|
cmp r0, #0
|
||||||
|
mov r1, r0
|
||||||
|
bne SignalContextRestore
|
||||||
|
.endm
|
||||||
|
|
||||||
.type HalStartToRun, %function
|
.type HalStartToRun, %function
|
||||||
.global HalStartToRun
|
.global HalStartToRun
|
||||||
HalStartToRun:
|
HalStartToRun:
|
||||||
@@ -90,10 +99,8 @@ __DisabledFPU:
|
|||||||
MOV lr, r5
|
MOV lr, r5
|
||||||
cpsie I
|
cpsie I
|
||||||
BX r6
|
BX r6
|
||||||
|
|
||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
|
|
||||||
.type ArchIntLock, %function
|
.type ArchIntLock, %function
|
||||||
.global ArchIntLock
|
.global ArchIntLock
|
||||||
ArchIntLock:
|
ArchIntLock:
|
||||||
@@ -140,9 +147,6 @@ ArchTaskSchedule:
|
|||||||
bx lr
|
bx lr
|
||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.type HalPendSV, %function
|
.type HalPendSV, %function
|
||||||
.global HalPendSV
|
.global HalPendSV
|
||||||
HalPendSV:
|
HalPendSV:
|
||||||
@@ -153,6 +157,8 @@ HalPendSV:
|
|||||||
cpsid I
|
cpsid I
|
||||||
|
|
||||||
HalTaskSwitch:
|
HalTaskSwitch:
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
push {r12, lr}
|
push {r12, lr}
|
||||||
blx OsSchedTaskSwitch
|
blx OsSchedTaskSwitch
|
||||||
pop {r12, lr}
|
pop {r12, lr}
|
||||||
@@ -182,9 +188,11 @@ __DisabledFPU1:
|
|||||||
|
|
||||||
ldr r0, [r5, #4]
|
ldr r0, [r5, #4]
|
||||||
str r0, [r5]
|
str r0, [r5]
|
||||||
|
|
||||||
ldr r1, [r0]
|
ldr r1, [r0]
|
||||||
|
|
||||||
|
SignalContextRestore:
|
||||||
|
ldr.w r3, =OS_FPU_CPACR
|
||||||
|
ldr r3, [r3]
|
||||||
and r3, r3, #OS_FPU_CPACR_ENABLE
|
and r3, r3, #OS_FPU_CPACR_ENABLE
|
||||||
cmp r3, #OS_FPU_CPACR_ENABLE
|
cmp r3, #OS_FPU_CPACR_ENABLE
|
||||||
bne __DisabledFPU2
|
bne __DisabledFPU2
|
||||||
@@ -193,9 +201,7 @@ __DisabledFPU1:
|
|||||||
__DisabledFPU2:
|
__DisabledFPU2:
|
||||||
ldmfd r1!, {r4-r12}
|
ldmfd r1!, {r4-r12}
|
||||||
msr psp, r1
|
msr psp, r1
|
||||||
|
|
||||||
msr PRIMASK, r12
|
msr PRIMASK, r12
|
||||||
|
|
||||||
|
|
||||||
bx lr
|
bx lr
|
||||||
|
|
||||||
.fnend
|
.fnend
|
||||||
|
|||||||
@@ -40,6 +40,7 @@
|
|||||||
#include "los_memory.h"
|
#include "los_memory.h"
|
||||||
#include "los_membox.h"
|
#include "los_membox.h"
|
||||||
|
|
||||||
|
#define DEF_HANDLER_START_INDEX 2
|
||||||
/*lint -save -e40 -e522 -e533*/
|
/*lint -save -e40 -e522 -e533*/
|
||||||
UINT32 g_intCount = 0;
|
UINT32 g_intCount = 0;
|
||||||
|
|
||||||
@@ -98,17 +99,85 @@ VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -123,8 +192,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,7 +227,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -224,8 +293,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -247,7 +316,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
HwiMask((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
|
|
||||||
@@ -368,6 +437,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -384,6 +454,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -433,7 +504,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
@@ -489,7 +562,7 @@ LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
|||||||
UINT32 index;
|
UINT32 index;
|
||||||
g_hwiForm[0] = 0; /* [0] Top of Stack */
|
g_hwiForm[0] = 0; /* [0] Top of Stack */
|
||||||
g_hwiForm[1] = 0; /* [1] reset */
|
g_hwiForm[1] = 0; /* [1] reset */
|
||||||
for (index = 2; index < OS_VECTOR_CNT; index++) {
|
for (index = DEF_HANDLER_START_INDEX; index < OS_VECTOR_CNT; index++) {
|
||||||
g_hwiForm[index] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
g_hwiForm[index] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
||||||
}
|
}
|
||||||
/* Exception handler register */
|
/* Exception handler register */
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ kernel_module(module_name) {
|
|||||||
"non_secure/los_timer.c",
|
"non_secure/los_timer.c",
|
||||||
"non_secure/los_trustzone.c",
|
"non_secure/los_trustzone.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
|
|
||||||
include_dirs = [
|
include_dirs = [
|
||||||
"non_secure",
|
"non_secure",
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
|
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
|
||||||
: "=&r"(val)
|
: "=&r"(val)
|
||||||
: "r"(v)
|
: "r"(v)
|
||||||
: "cc");
|
: "cc");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (__builtin_expect(status != 0, 0));
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,9 +71,9 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -96,9 +88,9 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -151,8 +143,8 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
__asm__ __volatile__("ldrex %0, [%3]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %4, [%3]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -186,12 +178,12 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
__asm__ __volatile__("ldrex %0, %2\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, %2\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M33 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M33 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
26
arch/arm/cortex-m33/gcc/TZ/non_secure/los_context.c
Executable file → Normal file
26
arch/arm/cortex-m33/gcc/TZ/non_secure/los_context.c
Executable file → Normal file
@@ -75,17 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -150,6 +140,20 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->stackLimit = (UINT32)stackTop;
|
||||||
|
context->excReturn = 0xFFFFFFBC;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -45,6 +45,15 @@
|
|||||||
.section .text
|
.section .text
|
||||||
.thumb
|
.thumb
|
||||||
|
|
||||||
|
.macro SIGNAL_CONTEXT_RESTORE
|
||||||
|
PUSH {R12, LR}
|
||||||
|
BLX OsSignalTaskContextRestore
|
||||||
|
POP {R12, LR}
|
||||||
|
CMP R0, #0
|
||||||
|
MOV R1, R0
|
||||||
|
BNE SignalContextRestore
|
||||||
|
.endm
|
||||||
|
|
||||||
.type HalStartFirstTask, %function
|
.type HalStartFirstTask, %function
|
||||||
.global HalStartFirstTask
|
.global HalStartFirstTask
|
||||||
HalStartFirstTask:
|
HalStartFirstTask:
|
||||||
@@ -132,6 +141,8 @@ HalPendSV:
|
|||||||
cpsid I
|
cpsid I
|
||||||
|
|
||||||
HalTaskSwitch:
|
HalTaskSwitch:
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
push {r12, lr}
|
push {r12, lr}
|
||||||
blx OsSchedTaskSwitch
|
blx OsSchedTaskSwitch
|
||||||
pop {r12, lr}
|
pop {r12, lr}
|
||||||
@@ -175,8 +186,9 @@ __DisabledFPU2:
|
|||||||
|
|
||||||
LDR R0, [R5, #4]
|
LDR R0, [R5, #4]
|
||||||
STR R0, [R5]
|
STR R0, [R5]
|
||||||
|
|
||||||
LDR R1, [R0]
|
LDR R1, [R0]
|
||||||
|
|
||||||
|
SignalContextRestore:
|
||||||
LDMIA R1!, {R0, R2-R3} /* Restore secureContext, PSPLIM and LR from the current task stack. */
|
LDMIA R1!, {R0, R2-R3} /* Restore secureContext, PSPLIM and LR from the current task stack. */
|
||||||
MSR PSPLIM, R2
|
MSR PSPLIM, R2
|
||||||
MOV LR, R3
|
MOV LR, R3
|
||||||
@@ -205,7 +217,7 @@ __DisabledFPU3:
|
|||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
.type HalSVCStartSchedule, %function
|
.type HalSVCStartSchedule, %function
|
||||||
.global HalSVCStartSchedule
|
.global HalSVCStartSchedule
|
||||||
HalSVCStartSchedule:
|
HalSVCStartSchedule:
|
||||||
.fnstart
|
.fnstart
|
||||||
.cantunwind
|
.cantunwind
|
||||||
@@ -219,7 +231,7 @@ HalSVCStartSchedule:
|
|||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
.type HalSVCSecureContextAlloc, %function
|
.type HalSVCSecureContextAlloc, %function
|
||||||
.global HalSVCSecureContextAlloc
|
.global HalSVCSecureContextAlloc
|
||||||
HalSVCSecureContextAlloc:
|
HalSVCSecureContextAlloc:
|
||||||
.fnstart
|
.fnstart
|
||||||
.cantunwind
|
.cantunwind
|
||||||
@@ -228,7 +240,7 @@ HalSVCSecureContextAlloc:
|
|||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
.type HalSVCSecureContextFree, %function
|
.type HalSVCSecureContextFree, %function
|
||||||
.global HalSVCSecureContextFree
|
.global HalSVCSecureContextFree
|
||||||
HalSVCSecureContextFree:
|
HalSVCSecureContextFree:
|
||||||
.fnstart
|
.fnstart
|
||||||
.cantunwind
|
.cantunwind
|
||||||
@@ -237,7 +249,7 @@ HalSVCSecureContextFree:
|
|||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
.type HalSVCHandler, %function
|
.type HalSVCHandler, %function
|
||||||
.global HalSVCHandler
|
.global HalSVCHandler
|
||||||
HalSVCHandler:
|
HalSVCHandler:
|
||||||
.fnstart
|
.fnstart
|
||||||
.cantunwind
|
.cantunwind
|
||||||
|
|||||||
@@ -40,6 +40,7 @@
|
|||||||
#include "los_memory.h"
|
#include "los_memory.h"
|
||||||
#include "los_membox.h"
|
#include "los_membox.h"
|
||||||
|
|
||||||
|
#define DEF_HANDLER_START_INDEX 2
|
||||||
/*lint -save -e40 -e522 -e533*/
|
/*lint -save -e40 -e522 -e533*/
|
||||||
UINT32 g_intCount = 0;
|
UINT32 g_intCount = 0;
|
||||||
|
|
||||||
@@ -98,17 +99,85 @@ VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -123,8 +192,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,7 +227,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -224,8 +293,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -368,6 +437,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -384,6 +454,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -433,7 +504,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
@@ -487,9 +560,9 @@ LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
|||||||
{
|
{
|
||||||
#if (LOSCFG_USE_SYSTEM_DEFINED_INTERRUPT == 1)
|
#if (LOSCFG_USE_SYSTEM_DEFINED_INTERRUPT == 1)
|
||||||
UINT32 index;
|
UINT32 index;
|
||||||
g_hwiForm[0] = 0; /* [0] Top of Stack */
|
g_hwiForm[0] = 0; /* [0] Top of Stack */
|
||||||
g_hwiForm[1] = 0; /* [1] reset */
|
g_hwiForm[1] = 0; /* [1] reset */
|
||||||
for (index = 2; index < OS_VECTOR_CNT; index++) {
|
for (index = DEF_HANDLER_START_INDEX; index < OS_VECTOR_CNT; index++) {
|
||||||
g_hwiForm[index] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
g_hwiForm[index] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
||||||
}
|
}
|
||||||
/* Exception handler register */
|
/* Exception handler register */
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
|
: "=&r"(val)
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
: "r"(v)
|
||||||
: "=&r"(val)
|
: "cc");
|
||||||
: "r"(v)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (status != 0);
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,13 +71,13 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -96,13 +88,13 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -151,12 +143,12 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %3, [%2]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal;
|
return prevVal;
|
||||||
}
|
}
|
||||||
@@ -186,16 +178,16 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, [%2]\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal != oldVal;
|
return prevVal != oldVal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M33 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M33 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_hwi
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_hwi.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_hwi
|
* @ingroup los_hwi
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -75,17 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -146,6 +136,19 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
EXPORT ArchTaskSchedule
|
EXPORT ArchTaskSchedule
|
||||||
EXPORT HalPendSV
|
EXPORT HalPendSV
|
||||||
IMPORT OsSchedTaskSwitch
|
IMPORT OsSchedTaskSwitch
|
||||||
|
IMPORT OsSignalTaskContextRestore
|
||||||
IMPORT g_losTask
|
IMPORT g_losTask
|
||||||
|
|
||||||
OS_FPU_CPACR EQU 0xE000ED88
|
OS_FPU_CPACR EQU 0xE000ED88
|
||||||
@@ -52,6 +53,15 @@ OS_TASK_STATUS_RUNNING EQU 0x0010
|
|||||||
THUMB
|
THUMB
|
||||||
REQUIRE8
|
REQUIRE8
|
||||||
|
|
||||||
|
MACRO SIGNAL_CONTEXT_RESTORE
|
||||||
|
PUSH {R12, LR}
|
||||||
|
BLX OsSignalTaskContextRestore
|
||||||
|
POP {R12, LR}
|
||||||
|
CMP R0, #0
|
||||||
|
MOV R1, R0
|
||||||
|
BNE SignalContextRestore
|
||||||
|
ENDM
|
||||||
|
|
||||||
HalStartToRun
|
HalStartToRun
|
||||||
LDR R4, =OS_NVIC_SYSPRI2
|
LDR R4, =OS_NVIC_SYSPRI2
|
||||||
LDR R5, =OS_NVIC_PENDSV_PRI
|
LDR R5, =OS_NVIC_PENDSV_PRI
|
||||||
@@ -145,8 +155,11 @@ __DisabledFPU1
|
|||||||
|
|
||||||
LDR R0, [R5, #4]
|
LDR R0, [R5, #4]
|
||||||
STR R0, [R5]
|
STR R0, [R5]
|
||||||
|
|
||||||
LDR R1, [R0]
|
LDR R1, [R0]
|
||||||
|
|
||||||
|
SignalContextRestore
|
||||||
|
LDR.W R3, =OS_FPU_CPACR
|
||||||
|
LDR R3, [R3]
|
||||||
AND R3, R3, #OS_FPU_CPACR_ENABLE
|
AND R3, R3, #OS_FPU_CPACR_ENABLE
|
||||||
CMP R3, #OS_FPU_CPACR_ENABLE
|
CMP R3, #OS_FPU_CPACR_ENABLE
|
||||||
BNE __DisabledFPU2
|
BNE __DisabledFPU2
|
||||||
|
|||||||
@@ -105,17 +105,85 @@ WEAK VOID SysTick_Handler(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -130,8 +198,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,7 +235,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -233,8 +301,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -376,6 +444,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -392,6 +461,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -441,7 +511,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
|
: "=&r"(val)
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
: "r"(v)
|
||||||
: "=&r"(val)
|
: "cc");
|
||||||
: "r"(v)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (status != 0);
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,13 +71,13 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -96,13 +88,13 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -151,12 +143,12 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %3, [%2]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal;
|
return prevVal;
|
||||||
}
|
}
|
||||||
@@ -186,16 +178,16 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, [%2]\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal != oldVal;
|
return prevVal != oldVal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M33 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M33 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_hwi
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_hwi.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_hwi
|
* @ingroup los_hwi
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -75,17 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -150,6 +140,20 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->stackLimit = (UINT32)stackTop;
|
||||||
|
context->excReturn = 0xFFFFFFBC;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
EXPORT HalSVCStartSchedule
|
EXPORT HalSVCStartSchedule
|
||||||
EXPORT HalSVCSecureContextAlloc
|
EXPORT HalSVCSecureContextAlloc
|
||||||
EXPORT HalSVCSecureContextFree
|
EXPORT HalSVCSecureContextFree
|
||||||
|
IMPORT OsSignalTaskContextRestore
|
||||||
IMPORT OsSchedTaskSwitch
|
IMPORT OsSchedTaskSwitch
|
||||||
IMPORT g_losTask
|
IMPORT g_losTask
|
||||||
|
|
||||||
@@ -62,6 +62,15 @@ OS_TASK_STATUS_RUNNING EQU 0x0010
|
|||||||
THUMB
|
THUMB
|
||||||
REQUIRE8
|
REQUIRE8
|
||||||
|
|
||||||
|
MACRO SIGNAL_CONTEXT_RESTORE
|
||||||
|
PUSH {R12, LR}
|
||||||
|
BLX OsSignalTaskContextRestore
|
||||||
|
POP {R12, LR}
|
||||||
|
CMP R0, #0
|
||||||
|
MOV R1, R0
|
||||||
|
BNE SignalContextRestore
|
||||||
|
ENDM
|
||||||
|
|
||||||
HalStartFirstTask
|
HalStartFirstTask
|
||||||
MOV R0, #2
|
MOV R0, #2
|
||||||
MSR CONTROL, R0
|
MSR CONTROL, R0
|
||||||
@@ -118,6 +127,8 @@ HalPendSV
|
|||||||
CPSID I
|
CPSID I
|
||||||
|
|
||||||
HalTaskSwitch
|
HalTaskSwitch
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
PUSH {R12, LR}
|
PUSH {R12, LR}
|
||||||
BLX OsSchedTaskSwitch
|
BLX OsSchedTaskSwitch
|
||||||
POP {R12, LR}
|
POP {R12, LR}
|
||||||
@@ -161,8 +172,9 @@ __DisabledFPU2
|
|||||||
|
|
||||||
LDR R0, [R5, #4]
|
LDR R0, [R5, #4]
|
||||||
STR R0, [R5]
|
STR R0, [R5]
|
||||||
|
|
||||||
LDR R1, [R0]
|
LDR R1, [R0]
|
||||||
|
|
||||||
|
SignalContextRestore
|
||||||
LDMIA R1!, {R0, R2-R3} /* Restore secureContext, PSPLIM and LR from the current task stack. */
|
LDMIA R1!, {R0, R2-R3} /* Restore secureContext, PSPLIM and LR from the current task stack. */
|
||||||
MSR PSPLIM, R2
|
MSR PSPLIM, R2
|
||||||
MOV LR, R3
|
MOV LR, R3
|
||||||
|
|||||||
@@ -105,17 +105,85 @@ WEAK VOID SysTick_Handler(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -130,8 +198,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,7 +235,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -233,8 +301,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -376,6 +444,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -392,6 +461,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -441,7 +511,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ kernel_module(module_name) {
|
|||||||
"los_mpu.c",
|
"los_mpu.c",
|
||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
|
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
|
||||||
: "=&r"(val)
|
: "=&r"(val)
|
||||||
: "r"(v)
|
: "r"(v)
|
||||||
: "cc");
|
: "cc");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (__builtin_expect(status != 0, 0));
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,9 +71,9 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -96,9 +88,9 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -151,8 +143,8 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
__asm__ __volatile__("ldrex %0, [%3]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %4, [%3]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -186,12 +178,12 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
__asm__ __volatile__("ldrex %0, %2\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, %2\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M4 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M4 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -74,17 +74,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -145,6 +135,19 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -44,6 +44,15 @@
|
|||||||
.section .text
|
.section .text
|
||||||
.thumb
|
.thumb
|
||||||
|
|
||||||
|
.macro SIGNAL_CONTEXT_RESTORE
|
||||||
|
push {r12, lr}
|
||||||
|
blx OsSignalTaskContextRestore
|
||||||
|
pop {r12, lr}
|
||||||
|
cmp r0, #0
|
||||||
|
mov r1, r0
|
||||||
|
bne SignalContextRestore
|
||||||
|
.endm
|
||||||
|
|
||||||
.type HalStartToRun, %function
|
.type HalStartToRun, %function
|
||||||
.global HalStartToRun
|
.global HalStartToRun
|
||||||
HalStartToRun:
|
HalStartToRun:
|
||||||
@@ -88,7 +97,6 @@ __DisabledFPU:
|
|||||||
|
|
||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
|
|
||||||
.type ArchIntLock, %function
|
.type ArchIntLock, %function
|
||||||
.global ArchIntLock
|
.global ArchIntLock
|
||||||
ArchIntLock:
|
ArchIntLock:
|
||||||
@@ -135,9 +143,6 @@ ArchTaskSchedule:
|
|||||||
isb
|
isb
|
||||||
.fnend
|
.fnend
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.type HalPendSV, %function
|
.type HalPendSV, %function
|
||||||
.global HalPendSV
|
.global HalPendSV
|
||||||
HalPendSV:
|
HalPendSV:
|
||||||
@@ -148,6 +153,8 @@ HalPendSV:
|
|||||||
cpsid I
|
cpsid I
|
||||||
|
|
||||||
HalTaskSwitch:
|
HalTaskSwitch:
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
push {r12, lr}
|
push {r12, lr}
|
||||||
blx OsSchedTaskSwitch
|
blx OsSchedTaskSwitch
|
||||||
pop {r12, lr}
|
pop {r12, lr}
|
||||||
@@ -176,8 +183,11 @@ __DisabledFPU1:
|
|||||||
|
|
||||||
ldr r0, [r5, #4]
|
ldr r0, [r5, #4]
|
||||||
str r0, [r5]
|
str r0, [r5]
|
||||||
|
|
||||||
ldr r1, [r0]
|
ldr r1, [r0]
|
||||||
|
|
||||||
|
SignalContextRestore:
|
||||||
|
ldr.w r3, =OS_FPU_CPACR
|
||||||
|
ldr r3, [r3]
|
||||||
and r3, r3, #OS_FPU_CPACR_ENABLE
|
and r3, r3, #OS_FPU_CPACR_ENABLE
|
||||||
cmp r3, #OS_FPU_CPACR_ENABLE
|
cmp r3, #OS_FPU_CPACR_ENABLE
|
||||||
bne __DisabledFPU2
|
bne __DisabledFPU2
|
||||||
|
|||||||
@@ -103,17 +103,85 @@ WEAK VOID SysTick_Handler(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -128,8 +196,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -163,7 +231,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -229,8 +297,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -252,7 +320,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
HwiMask((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
|
|
||||||
@@ -373,6 +441,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -389,6 +458,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -438,7 +508,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
|
: "=&r"(val)
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
: "r"(v)
|
||||||
: "=&r"(val)
|
: "cc");
|
||||||
: "r"(v)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
asm volatile("1:ldrex %0, [%1]\n"
|
||||||
|
" strex %0, %2, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
" teq %0, #0\n"
|
||||||
" strex %0, %3, [%2]\n"
|
" bne 1b"
|
||||||
" teq %0, #0\n"
|
: "=&r"(status)
|
||||||
" beq 1b"
|
: "r"(v), "r"(setVal)
|
||||||
: "=&r"(status), "+m"(*v)
|
: "cc");
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,13 +71,13 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -96,13 +88,13 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -151,12 +143,12 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %3, [%2]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal;
|
return prevVal;
|
||||||
}
|
}
|
||||||
@@ -186,16 +178,16 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, [%2]\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal != oldVal;
|
return prevVal != oldVal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M4 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M4 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -77,17 +77,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -141,13 +131,26 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
context->uwR2 = 0x02020202L;
|
context->uwR2 = 0x02020202L;
|
||||||
context->uwR3 = 0x03030303L;
|
context->uwR3 = 0x03030303L;
|
||||||
context->uwR12 = 0x12121212L;
|
context->uwR12 = 0x12121212L;
|
||||||
context->uwLR = (UINT32)(UINTPTR)ArchSysExit;
|
context->uwLR = (UINTPTR)ArchSysExit;
|
||||||
context->uwPC = (UINT32)(UINTPTR)OsTaskEntry;
|
context->uwPC = (UINTPTR)OsTaskEntry;
|
||||||
context->uwxPSR = 0x01000000L;
|
context->uwxPSR = 0x01000000L;
|
||||||
|
|
||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
EXPORT ArchTaskSchedule
|
EXPORT ArchTaskSchedule
|
||||||
EXPORT HalPendSV
|
EXPORT HalPendSV
|
||||||
IMPORT OsSchedTaskSwitch
|
IMPORT OsSchedTaskSwitch
|
||||||
|
IMPORT OsSignalTaskContextRestore
|
||||||
IMPORT g_losTask
|
IMPORT g_losTask
|
||||||
|
|
||||||
OS_FPU_CPACR EQU 0xE000ED88
|
OS_FPU_CPACR EQU 0xE000ED88
|
||||||
@@ -52,6 +53,15 @@ OS_TASK_STATUS_RUNNING EQU 0x0010
|
|||||||
THUMB
|
THUMB
|
||||||
REQUIRE8
|
REQUIRE8
|
||||||
|
|
||||||
|
MACRO SIGNAL_CONTEXT_RESTORE
|
||||||
|
PUSH {R12, LR}
|
||||||
|
BLX OsSignalTaskContextRestore
|
||||||
|
POP {R12, LR}
|
||||||
|
CMP R0, #0
|
||||||
|
MOV R1, R0
|
||||||
|
BNE SignalContextRestore
|
||||||
|
ENDM
|
||||||
|
|
||||||
HalStartToRun
|
HalStartToRun
|
||||||
LDR R4, =OS_NVIC_SYSPRI2
|
LDR R4, =OS_NVIC_SYSPRI2
|
||||||
LDR R5, =OS_NVIC_PENDSV_PRI
|
LDR R5, =OS_NVIC_PENDSV_PRI
|
||||||
@@ -117,6 +127,8 @@ HalPendSV
|
|||||||
CPSID I
|
CPSID I
|
||||||
|
|
||||||
HalTaskSwitch
|
HalTaskSwitch
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
PUSH {R12, LR}
|
PUSH {R12, LR}
|
||||||
BLX OsSchedTaskSwitch
|
BLX OsSchedTaskSwitch
|
||||||
POP {R12, LR}
|
POP {R12, LR}
|
||||||
@@ -128,8 +140,8 @@ HalTaskSwitch
|
|||||||
|
|
||||||
TaskContextSwitch
|
TaskContextSwitch
|
||||||
MOV LR, R0
|
MOV LR, R0
|
||||||
MRS R0, PSP
|
|
||||||
|
|
||||||
|
MRS R0, PSP
|
||||||
STMFD R0!, {R4-R12}
|
STMFD R0!, {R4-R12}
|
||||||
LDR.W R3, =OS_FPU_CPACR
|
LDR.W R3, =OS_FPU_CPACR
|
||||||
LDR R3, [R3]
|
LDR R3, [R3]
|
||||||
@@ -145,8 +157,11 @@ __DisabledFPU1
|
|||||||
|
|
||||||
LDR R0, [R5, #4]
|
LDR R0, [R5, #4]
|
||||||
STR R0, [R5]
|
STR R0, [R5]
|
||||||
|
|
||||||
LDR R1, [R0]
|
LDR R1, [R0]
|
||||||
|
|
||||||
|
SignalContextRestore
|
||||||
|
LDR.W R3, =OS_FPU_CPACR
|
||||||
|
LDR R3, [R3]
|
||||||
AND R3, R3, #OS_FPU_CPACR_ENABLE
|
AND R3, R3, #OS_FPU_CPACR_ENABLE
|
||||||
CMP R3, #OS_FPU_CPACR_ENABLE
|
CMP R3, #OS_FPU_CPACR_ENABLE
|
||||||
BNE __DisabledFPU2
|
BNE __DisabledFPU2
|
||||||
|
|||||||
@@ -109,17 +109,85 @@ WEAK VOID SysTick_Handler(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -134,8 +202,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -169,7 +237,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -235,8 +303,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -379,6 +447,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -395,6 +464,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -444,7 +514,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
37
arch/arm/cortex-m55/gcc/BUILD.gn
Executable file
37
arch/arm/cortex-m55/gcc/BUILD.gn
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
# Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
#
|
||||||
|
# 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
|
||||||
|
import("//kernel/liteos_m/liteos.gni")
|
||||||
|
|
||||||
|
module_group("gcc") {
|
||||||
|
if (defined(LOSCFG_SECURE_TRUSTZONE)) {
|
||||||
|
modules = [ "TZ" ]
|
||||||
|
} else {
|
||||||
|
modules = [ "NTZ" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
45
arch/arm/cortex-m55/gcc/NTZ/BUILD.gn
Executable file
45
arch/arm/cortex-m55/gcc/NTZ/BUILD.gn
Executable file
@@ -0,0 +1,45 @@
|
|||||||
|
# Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
#
|
||||||
|
# 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
|
||||||
|
import("//kernel/liteos_m/liteos.gni")
|
||||||
|
|
||||||
|
module_name = "arch"
|
||||||
|
kernel_module(module_name) {
|
||||||
|
sources = [
|
||||||
|
"los_context.c",
|
||||||
|
"los_dispatch.S",
|
||||||
|
"los_exc.S",
|
||||||
|
"los_interrupt.c",
|
||||||
|
"los_timer.c",
|
||||||
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
config("public") {
|
||||||
|
include_dirs = [ "." ]
|
||||||
|
}
|
||||||
295
arch/arm/cortex-m55/gcc/NTZ/los_arch_atomic.h
Executable file
295
arch/arm/cortex-m55/gcc/NTZ/los_arch_atomic.h
Executable file
@@ -0,0 +1,295 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _LOS_ARCH_ATOMIC_H
|
||||||
|
#define _LOS_ARCH_ATOMIC_H
|
||||||
|
|
||||||
|
#include "los_compiler.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
|
{
|
||||||
|
INT32 val;
|
||||||
|
|
||||||
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
|
: "=&r"(val)
|
||||||
|
: "r"(v)
|
||||||
|
: "cc");
|
||||||
|
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
|
{
|
||||||
|
UINT32 status;
|
||||||
|
|
||||||
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
|
"strex %0, %2, [%1]\n"
|
||||||
|
: "=&r"(status)
|
||||||
|
: "r"(v), "r"(setVal)
|
||||||
|
: "cc");
|
||||||
|
} while (__builtin_expect(status != 0, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
|
{
|
||||||
|
INT32 val;
|
||||||
|
UINT32 status;
|
||||||
|
|
||||||
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
|
"add %1, %1, %3\n"
|
||||||
|
"strex %0, %1, [%2]"
|
||||||
|
: "=&r"(status), "=&r"(val)
|
||||||
|
: "r"(v), "r"(addVal)
|
||||||
|
: "cc");
|
||||||
|
} while (__builtin_expect(status != 0, 0));
|
||||||
|
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
||||||
|
{
|
||||||
|
INT32 val;
|
||||||
|
UINT32 status;
|
||||||
|
|
||||||
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
|
"sub %1, %1, %3\n"
|
||||||
|
"strex %0, %1, [%2]"
|
||||||
|
: "=&r"(status), "=&r"(val)
|
||||||
|
: "r"(v), "r"(subVal)
|
||||||
|
: "cc");
|
||||||
|
} while (__builtin_expect(status != 0, 0));
|
||||||
|
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE VOID ArchAtomicInc(Atomic *v)
|
||||||
|
{
|
||||||
|
(VOID)ArchAtomicAdd(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE VOID ArchAtomicDec(Atomic *v)
|
||||||
|
{
|
||||||
|
(VOID)ArchAtomicSub(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT32 ArchAtomicIncRet(Atomic *v)
|
||||||
|
{
|
||||||
|
return ArchAtomicAdd(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT32 ArchAtomicDecRet(Atomic *v)
|
||||||
|
{
|
||||||
|
return ArchAtomicSub(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_arch_atomic
|
||||||
|
* @brief Atomic exchange for 32-bit variable.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* This API is used to implement the atomic exchange for 32-bit variable
|
||||||
|
* and return the previous value of the atomic variable.
|
||||||
|
* @attention
|
||||||
|
* <ul>The pointer v must not be NULL.</ul>
|
||||||
|
*
|
||||||
|
* @param v [IN] The variable pointer.
|
||||||
|
* @param val [IN] The exchange value.
|
||||||
|
*
|
||||||
|
* @retval #INT32 The previous value of the atomic variable
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_arch_atomic.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see
|
||||||
|
*/
|
||||||
|
STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
||||||
|
{
|
||||||
|
INT32 prevVal = 0;
|
||||||
|
UINT32 status = 0;
|
||||||
|
|
||||||
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, [%3]\n"
|
||||||
|
"strex %1, %4, [%3]"
|
||||||
|
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
||||||
|
: "r"(v), "r"(val)
|
||||||
|
: "cc");
|
||||||
|
} while (__builtin_expect(status != 0, 0));
|
||||||
|
|
||||||
|
return prevVal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_arch_atomic
|
||||||
|
* @brief Atomic exchange for 32-bit variable with compare.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* This API is used to implement the atomic exchange for 32-bit variable, if the value of variable is equal to oldVal.
|
||||||
|
* @attention
|
||||||
|
* <ul>The pointer v must not be NULL.</ul>
|
||||||
|
*
|
||||||
|
* @param v [IN] The variable pointer.
|
||||||
|
* @param val [IN] The new value.
|
||||||
|
* @param oldVal [IN] The old value.
|
||||||
|
*
|
||||||
|
* @retval TRUE The previous value of the atomic variable is not equal to oldVal.
|
||||||
|
* @retval FALSE The previous value of the atomic variable is equal to oldVal.
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_arch_atomic.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see
|
||||||
|
*/
|
||||||
|
STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 oldVal)
|
||||||
|
{
|
||||||
|
INT32 prevVal = 0;
|
||||||
|
UINT32 status = 0;
|
||||||
|
|
||||||
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, %2\n"
|
||||||
|
"mov %1, #0\n"
|
||||||
|
"cmp %0, %3\n"
|
||||||
|
"bne 1f\n"
|
||||||
|
"strex %1, %4, %2\n"
|
||||||
|
"1:"
|
||||||
|
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
||||||
|
: "r"(oldVal), "r"(val)
|
||||||
|
: "cc");
|
||||||
|
} while (__builtin_expect(status != 0, 0));
|
||||||
|
|
||||||
|
return prevVal != oldVal;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT64 ArchAtomic64Read(const Atomic64 *v)
|
||||||
|
{
|
||||||
|
INT64 val;
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
val = *v;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE VOID ArchAtomic64Set(Atomic64 *v, INT64 setVal)
|
||||||
|
{
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
*v = setVal;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT64 ArchAtomic64Add(Atomic64 *v, INT64 addVal)
|
||||||
|
{
|
||||||
|
INT64 val;
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
*v += addVal;
|
||||||
|
val = *v;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT64 ArchAtomic64Sub(Atomic64 *v, INT64 subVal)
|
||||||
|
{
|
||||||
|
INT64 val;
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
*v -= subVal;
|
||||||
|
val = *v;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE VOID ArchAtomic64Inc(Atomic64 *v)
|
||||||
|
{
|
||||||
|
(VOID)ArchAtomic64Add(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT64 ArchAtomic64IncRet(Atomic64 *v)
|
||||||
|
{
|
||||||
|
return ArchAtomic64Add(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE VOID ArchAtomic64Dec(Atomic64 *v)
|
||||||
|
{
|
||||||
|
(VOID)ArchAtomic64Sub(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT64 ArchAtomic64DecRet(Atomic64 *v)
|
||||||
|
{
|
||||||
|
return ArchAtomic64Sub(v, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE INT64 ArchAtomicXchg64bits(Atomic64 *v, INT64 val)
|
||||||
|
{
|
||||||
|
INT64 prevVal;
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
prevVal = *v;
|
||||||
|
*v = val;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return prevVal;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE BOOL ArchAtomicCmpXchg64bits(Atomic64 *v, INT64 val, INT64 oldVal)
|
||||||
|
{
|
||||||
|
INT64 prevVal;
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
prevVal = *v;
|
||||||
|
if (prevVal == oldVal) {
|
||||||
|
*v = val;
|
||||||
|
}
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return prevVal != oldVal;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
}
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
#endif /* _LOS_ARCH_ATOMIC_H */
|
||||||
129
arch/arm/cortex-m55/gcc/NTZ/los_arch_context.h
Executable file
129
arch/arm/cortex-m55/gcc/NTZ/los_arch_context.h
Executable file
@@ -0,0 +1,129 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _LOS_ARCH_CONTEXT_H
|
||||||
|
#define _LOS_ARCH_CONTEXT_H
|
||||||
|
|
||||||
|
#include "los_config.h"
|
||||||
|
#include "los_compiler.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
typedef struct TagTskContext {
|
||||||
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
|
UINT32 S16;
|
||||||
|
UINT32 S17;
|
||||||
|
UINT32 S18;
|
||||||
|
UINT32 S19;
|
||||||
|
UINT32 S20;
|
||||||
|
UINT32 S21;
|
||||||
|
UINT32 S22;
|
||||||
|
UINT32 S23;
|
||||||
|
UINT32 S24;
|
||||||
|
UINT32 S25;
|
||||||
|
UINT32 S26;
|
||||||
|
UINT32 S27;
|
||||||
|
UINT32 S28;
|
||||||
|
UINT32 S29;
|
||||||
|
UINT32 S30;
|
||||||
|
UINT32 S31;
|
||||||
|
#endif
|
||||||
|
UINT32 uwR4;
|
||||||
|
UINT32 uwR5;
|
||||||
|
UINT32 uwR6;
|
||||||
|
UINT32 uwR7;
|
||||||
|
UINT32 uwR8;
|
||||||
|
UINT32 uwR9;
|
||||||
|
UINT32 uwR10;
|
||||||
|
UINT32 uwR11;
|
||||||
|
UINT32 uwPriMask;
|
||||||
|
UINT32 uwR0;
|
||||||
|
UINT32 uwR1;
|
||||||
|
UINT32 uwR2;
|
||||||
|
UINT32 uwR3;
|
||||||
|
UINT32 uwR12;
|
||||||
|
UINT32 uwLR;
|
||||||
|
UINT32 uwPC;
|
||||||
|
UINT32 uwxPSR;
|
||||||
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
|
UINT32 S0;
|
||||||
|
UINT32 S1;
|
||||||
|
UINT32 S2;
|
||||||
|
UINT32 S3;
|
||||||
|
UINT32 S4;
|
||||||
|
UINT32 S5;
|
||||||
|
UINT32 S6;
|
||||||
|
UINT32 S7;
|
||||||
|
UINT32 S8;
|
||||||
|
UINT32 S9;
|
||||||
|
UINT32 S10;
|
||||||
|
UINT32 S11;
|
||||||
|
UINT32 S12;
|
||||||
|
UINT32 S13;
|
||||||
|
UINT32 S14;
|
||||||
|
UINT32 S15;
|
||||||
|
UINT32 FPSCR;
|
||||||
|
UINT32 NO_NAME;
|
||||||
|
#endif
|
||||||
|
} TaskContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_config
|
||||||
|
* @brief: Task start running function.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* This API is used to start a task.
|
||||||
|
*
|
||||||
|
* @attention:
|
||||||
|
* <ul><li>None.</li></ul>
|
||||||
|
*
|
||||||
|
* @param: None.
|
||||||
|
*
|
||||||
|
* @retval None.
|
||||||
|
*
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_config.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see None.
|
||||||
|
*/
|
||||||
|
extern VOID HalStartToRun(VOID);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
}
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
#endif /* _LOS_ARCH_CONTEXT_H */
|
||||||
676
arch/arm/cortex-m55/gcc/NTZ/los_arch_interrupt.h
Executable file
676
arch/arm/cortex-m55/gcc/NTZ/los_arch_interrupt.h
Executable file
@@ -0,0 +1,676 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _LOS_ARCH_INTERRUPT_H
|
||||||
|
#define _LOS_ARCH_INTERRUPT_H
|
||||||
|
|
||||||
|
#include "los_config.h"
|
||||||
|
#include "los_compiler.h"
|
||||||
|
#include "los_interrupt.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Maximum number of used hardware interrupts.
|
||||||
|
*/
|
||||||
|
#ifndef OS_HWI_MAX_NUM
|
||||||
|
#define OS_HWI_MAX_NUM LOSCFG_PLATFORM_HWI_LIMIT
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Highest priority of a hardware interrupt.
|
||||||
|
*/
|
||||||
|
#ifndef OS_HWI_PRIO_HIGHEST
|
||||||
|
#define OS_HWI_PRIO_HIGHEST 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Lowest priority of a hardware interrupt.
|
||||||
|
*/
|
||||||
|
#ifndef OS_HWI_PRIO_LOWEST
|
||||||
|
#define OS_HWI_PRIO_LOWEST 7
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Define the type of a hardware interrupt vector table function.
|
||||||
|
*/
|
||||||
|
typedef VOID (**HWI_VECTOR_FUNC)(void);
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Count of interrupts.
|
||||||
|
*/
|
||||||
|
extern UINT32 g_intCount;
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Count of M-Core system interrupt vector.
|
||||||
|
*/
|
||||||
|
#define OS_SYS_VECTOR_CNT 16
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Count of M-Core interrupt vector.
|
||||||
|
*/
|
||||||
|
#define OS_VECTOR_CNT (OS_SYS_VECTOR_CNT + OS_HWI_MAX_NUM)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* AIRCR register priority group parameter .
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_AIRCR_PRIGROUP 7
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: Invalid interrupt number.
|
||||||
|
*
|
||||||
|
* Value: 0x02000900
|
||||||
|
*
|
||||||
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M33 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: Null hardware interrupt handling function.
|
||||||
|
*
|
||||||
|
* Value: 0x02000901
|
||||||
|
*
|
||||||
|
* Solution: Pass in a valid non-null hardware interrupt handling function.
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_PROC_FUNC_NULL LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x01)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: Insufficient interrupt resources for hardware interrupt creation.
|
||||||
|
*
|
||||||
|
* Value: 0x02000902
|
||||||
|
*
|
||||||
|
* Solution: Increase the configured maximum number of supported hardware interrupts.
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_CB_UNAVAILABLE LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x02)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: Insufficient memory for hardware interrupt initialization.
|
||||||
|
*
|
||||||
|
* Value: 0x02000903
|
||||||
|
*
|
||||||
|
* Solution: Expand the configured memory.
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_NO_MEMORY LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x03)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: The interrupt has already been created.
|
||||||
|
*
|
||||||
|
* Value: 0x02000904
|
||||||
|
*
|
||||||
|
* Solution: Check whether the interrupt specified by the passed-in interrupt number has already been created.
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_ALREADY_CREATED LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x04)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: Invalid interrupt priority.
|
||||||
|
*
|
||||||
|
* Value: 0x02000905
|
||||||
|
*
|
||||||
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M33 platform is [0,15].
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: Incorrect interrupt creation mode.
|
||||||
|
*
|
||||||
|
* Value: 0x02000906
|
||||||
|
*
|
||||||
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Hardware interrupt error code: The interrupt has already been created as a fast interrupt.
|
||||||
|
*
|
||||||
|
* Value: 0x02000907
|
||||||
|
*
|
||||||
|
* Solution: Check whether the interrupt specified by the passed-in interrupt number has already been created.
|
||||||
|
*/
|
||||||
|
#define OS_ERRNO_HWI_FASTMODE_ALREADY_CREATED LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x07)
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* SysTick control and status register.
|
||||||
|
*/
|
||||||
|
#define OS_SYSTICK_CONTROL_REG 0xE000E010
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_hw
|
||||||
|
* SysTick current value register.
|
||||||
|
*/
|
||||||
|
#define OS_SYSTICK_CURRENT_REG 0xE000E018
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt Priority-Level Registers.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_PRI_BASE 0xE000E400
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt enable register for 0-31.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_SETENA_BASE 0xE000E100
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* interrupt pending register.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_SETPEND_BASE 0xE000E200
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt active register.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_INT_ACT_BASE 0xE000E300
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt disable register for 0-31.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_CLRENA_BASE 0xE000E180
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt control and status register.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_INT_CTRL 0xE000ED04
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Vector table offset register.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_VTOR 0xE000ED08
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Application interrupt and reset control register
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_AIRCR 0xE000ED0C
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* System exception priority register.
|
||||||
|
*/
|
||||||
|
#define OS_NVIC_EXCPRI_BASE 0xE000ED18
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 1 :reset.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_RESET 1
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 2 :Non-Maskable Interrupt.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_NMI 2
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 3 :(hard)fault.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_HARD_FAULT 3
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 4 :MemManage fault.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_MPU_FAULT 4
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 5 :Bus fault.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_BUS_FAULT 5
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 6 :Usage fault.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_USAGE_FAULT 6
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 11 :SVCall.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_SVC_CALL 11
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 12 :Debug monitor.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_DBG_MONITOR 12
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 14 :PendSV.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_PEND_SV 14
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Interrupt No. 15 :SysTick.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_SYS_TICK 15
|
||||||
|
|
||||||
|
#if (LOSCFG_PLATFORM_HWI_WITH_ARG == 1)
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Set interrupt vector table.
|
||||||
|
*/
|
||||||
|
extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector, VOID *arg);
|
||||||
|
#else
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* Set interrupt vector table.
|
||||||
|
*/
|
||||||
|
extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* @brief: Hardware interrupt entry function.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* This API is used as all hardware interrupt handling function entry.
|
||||||
|
*
|
||||||
|
* @attention:
|
||||||
|
* <ul><li>None.</li></ul>
|
||||||
|
*
|
||||||
|
* @param:None.
|
||||||
|
*
|
||||||
|
* @retval:None.
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see None.
|
||||||
|
*/
|
||||||
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* @brief: Default vector handling function.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* This API is used to configure interrupt for null function.
|
||||||
|
*
|
||||||
|
* @attention:
|
||||||
|
* <ul><li>None.</li></ul>
|
||||||
|
*
|
||||||
|
* @param:None.
|
||||||
|
*
|
||||||
|
* @retval:None.
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see None.
|
||||||
|
*/
|
||||||
|
extern VOID HalHwiDefaultHandler(VOID);
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* @brief: Reset the vector table.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* This API is used to reset the vector table.
|
||||||
|
*
|
||||||
|
* @attention:
|
||||||
|
* <ul><li>None.</li></ul>
|
||||||
|
*
|
||||||
|
* @param:None.
|
||||||
|
*
|
||||||
|
* @retval:None.
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see None.
|
||||||
|
*/
|
||||||
|
extern VOID Reset_Handler(VOID);
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_arch_interrupt
|
||||||
|
* @brief: Pended System Call.
|
||||||
|
*
|
||||||
|
* @par Description:
|
||||||
|
* PendSV can be pended and is useful for an OS to pend an exception
|
||||||
|
* so that an action can be performed after other important tasks are completed.
|
||||||
|
*
|
||||||
|
* @attention:
|
||||||
|
* <ul><li>None.</li></ul>
|
||||||
|
*
|
||||||
|
* @param:None.
|
||||||
|
*
|
||||||
|
* @retval:None.
|
||||||
|
* @par Dependency:
|
||||||
|
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
||||||
|
* @see None.
|
||||||
|
*/
|
||||||
|
extern VOID HalPendSV(VOID);
|
||||||
|
|
||||||
|
|
||||||
|
#define OS_EXC_IN_INIT 0
|
||||||
|
#define OS_EXC_IN_TASK 1
|
||||||
|
#define OS_EXC_IN_HWI 2
|
||||||
|
|
||||||
|
#define OS_EXC_MAX_BUF_LEN 25
|
||||||
|
#define OS_EXC_MAX_NEST_DEPTH 1
|
||||||
|
|
||||||
|
#define OS_NVIC_SHCSR 0xE000ED24
|
||||||
|
#define OS_NVIC_CCR 0xE000ED14
|
||||||
|
|
||||||
|
#define OS_NVIC_INT_ENABLE_SIZE 0x20
|
||||||
|
#define OS_NVIC_INT_PRI_SIZE 0xF0
|
||||||
|
#define OS_NVIC_EXCPRI_SIZE 0xC
|
||||||
|
#define OS_NVIC_INT_CTRL_SIZE 4
|
||||||
|
#define OS_NVIC_SHCSR_SIZE 4
|
||||||
|
|
||||||
|
#define OS_NVIC_INT_PEND_SIZE OS_NVIC_INT_ACT_SIZE
|
||||||
|
#define OS_NVIC_INT_ACT_SIZE OS_NVIC_INT_ENABLE_SIZE
|
||||||
|
|
||||||
|
#define OS_EXC_FLAG_NO_FLOAT 0x10000000
|
||||||
|
#define OS_EXC_FLAG_FAULTADDR_VALID 0x01
|
||||||
|
#define OS_EXC_FLAG_IN_HWI 0x02
|
||||||
|
|
||||||
|
#define OS_EXC_IMPRECISE_ACCESS_ADDR 0xABABABAB
|
||||||
|
|
||||||
|
#define OS_EXC_EVENT 0x00000001
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* the struct of register files
|
||||||
|
*
|
||||||
|
* description: the register files that saved when exception triggered
|
||||||
|
*
|
||||||
|
* notes:the following register with prefix 'uw' correspond to the registers in the cpu data sheet.
|
||||||
|
*/
|
||||||
|
typedef struct TagExcContext {
|
||||||
|
#if ((defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
|
(defined (__FPU_USED ) && (__FPU_USED == 1U)) )
|
||||||
|
UINT32 S16;
|
||||||
|
UINT32 S17;
|
||||||
|
UINT32 S18;
|
||||||
|
UINT32 S19;
|
||||||
|
UINT32 S20;
|
||||||
|
UINT32 S21;
|
||||||
|
UINT32 S22;
|
||||||
|
UINT32 S23;
|
||||||
|
UINT32 S24;
|
||||||
|
UINT32 S25;
|
||||||
|
UINT32 S26;
|
||||||
|
UINT32 S27;
|
||||||
|
UINT32 S28;
|
||||||
|
UINT32 S29;
|
||||||
|
UINT32 S30;
|
||||||
|
UINT32 S31;
|
||||||
|
#endif
|
||||||
|
UINT32 uwR4;
|
||||||
|
UINT32 uwR5;
|
||||||
|
UINT32 uwR6;
|
||||||
|
UINT32 uwR7;
|
||||||
|
UINT32 uwR8;
|
||||||
|
UINT32 uwR9;
|
||||||
|
UINT32 uwR10;
|
||||||
|
UINT32 uwR11;
|
||||||
|
UINT32 uwPriMask;
|
||||||
|
/* auto save */
|
||||||
|
UINT32 uwSP;
|
||||||
|
UINT32 uwR0;
|
||||||
|
UINT32 uwR1;
|
||||||
|
UINT32 uwR2;
|
||||||
|
UINT32 uwR3;
|
||||||
|
UINT32 uwR12;
|
||||||
|
UINT32 uwLR;
|
||||||
|
UINT32 uwPC;
|
||||||
|
UINT32 uwxPSR;
|
||||||
|
#if ((defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
|
(defined (__FPU_USED) && (__FPU_USED== 1U)))
|
||||||
|
UINT32 S0;
|
||||||
|
UINT32 S1;
|
||||||
|
UINT32 S2;
|
||||||
|
UINT32 S3;
|
||||||
|
UINT32 S4;
|
||||||
|
UINT32 S5;
|
||||||
|
UINT32 S6;
|
||||||
|
UINT32 S7;
|
||||||
|
UINT32 S8;
|
||||||
|
UINT32 S9;
|
||||||
|
UINT32 S10;
|
||||||
|
UINT32 S11;
|
||||||
|
UINT32 S12;
|
||||||
|
UINT32 S13;
|
||||||
|
UINT32 S14;
|
||||||
|
UINT32 S15;
|
||||||
|
UINT32 FPSCR;
|
||||||
|
UINT32 NO_NAME;
|
||||||
|
#endif
|
||||||
|
} EXC_CONTEXT_S;
|
||||||
|
|
||||||
|
typedef VOID (*EXC_PROC_FUNC)(UINT32, EXC_CONTEXT_S *);
|
||||||
|
VOID HalExcHandleEntry(UINT32 excType, UINT32 faultAddr, UINT32 pid, EXC_CONTEXT_S *excBufAddr);
|
||||||
|
|
||||||
|
VOID HalExcNMI(VOID);
|
||||||
|
VOID HalExcHardFault(VOID);
|
||||||
|
VOID HalExcMemFault(VOID);
|
||||||
|
VOID HalExcBusFault(VOID);
|
||||||
|
VOID HalExcUsageFault(VOID);
|
||||||
|
VOID HalSVCHandler(VOID);
|
||||||
|
VOID HalHwiInit(VOID);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: An error occurred while the bus status register was being pushed.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_BF_STKERR 1
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: An error occurred while the bus status register was out of the stack.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_BF_UNSTKERR 2
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Bus status register imprecise data access violation.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_BF_IMPRECISERR 3
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Bus status register exact data access violation.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_BF_PRECISERR 4
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Bus status register access violation while pointing.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_BF_IBUSERR 5
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: An error occurred while the memory management status register was being pushed.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_MF_MSTKERR 6
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: An error occurred while the memory management status register was out of the stack.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_MF_MUNSTKERR 7
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Memory management status register data access violation.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_MF_DACCVIOL 8
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Memory management status register access violation.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_MF_IACCVIOL 9
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Incorrect usage indicating that the divisor is zero during the division operation.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_UF_DIVBYZERO 10
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Usage error, error caused by unaligned access.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_UF_UNALIGNED 11
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Incorrect usage attempting to execute coprocessor related instruction.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_UF_NOCP 12
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Usage error attempting to load EXC_RETURN to PC illegally on exception return.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_UF_INVPC 13
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Incorrect usage, attempting to cut to ARM state.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_UF_INVSTATE 14
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Incorrect usage. Executed instruction whose code is undefined.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_UF_UNDEFINSTR 15
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: NMI
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define OS_EXC_CAUSE_NMI 16
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: hard fault
|
||||||
|
*/
|
||||||
|
#define OS_EXC_CAUSE_HARDFAULT 17
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: The task handler exits.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_CAUSE_TASK_EXIT 18
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: A fatal error.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_CAUSE_FATAL_ERR 19
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: Hard Fault caused by a debug event.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_CAUSE_DEBUGEVT 20
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Cortex-M exception types: A hard fault that occurs when a quantity is oriented.
|
||||||
|
*/
|
||||||
|
#define OS_EXC_CAUSE_VECTBL 21
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup los_exc
|
||||||
|
* Exception information structure
|
||||||
|
*
|
||||||
|
* Description: Exception information saved when an exception is triggered on the Cortex-M33 platform.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
typedef struct TagExcInfo {
|
||||||
|
/**< Exception occurrence phase: 0 means that an exception occurs in initialization,
|
||||||
|
* 1 means that an exception occurs in a task, and 2 means that an exception occurs in an interrupt */
|
||||||
|
UINT16 phase;
|
||||||
|
/**< Exception type. When exceptions occur, check the numbers 1 - 21 listed above */
|
||||||
|
UINT16 type;
|
||||||
|
/**< If the exact address access error indicates the wrong access address when the exception occurred */
|
||||||
|
UINT32 faultAddr;
|
||||||
|
/**< An exception occurs in an interrupt, indicating the interrupt number.
|
||||||
|
* An exception occurs in the task, indicating the task ID, or 0xFFFFFFFF if it occurs during initialization */
|
||||||
|
UINT32 thrdPid;
|
||||||
|
/**< Number of nested exceptions. Currently only registered hook functions are supported
|
||||||
|
* when an exception is entered for the first time */
|
||||||
|
UINT16 nestCnt;
|
||||||
|
/**< reserve */
|
||||||
|
UINT16 reserved;
|
||||||
|
/**< Hardware context at the time an exception to the automatic stack floating-point register occurs */
|
||||||
|
EXC_CONTEXT_S *context;
|
||||||
|
} ExcInfo;
|
||||||
|
|
||||||
|
extern UINT32 g_curNestCount;
|
||||||
|
extern UINT32 g_intCount;
|
||||||
|
extern UINT8 g_uwExcTbl[32];
|
||||||
|
extern ExcInfo g_excInfo;
|
||||||
|
|
||||||
|
#define MAX_INT_INFO_SIZE (8 + 0x164)
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
}
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
#endif /* _LOS_ARCH_INTERRUPT_H */
|
||||||
50
arch/arm/cortex-m55/gcc/NTZ/los_arch_timer.h
Executable file
50
arch/arm/cortex-m55/gcc/NTZ/los_arch_timer.h
Executable file
@@ -0,0 +1,50 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _LOS_ARCH_TIMER_H
|
||||||
|
#define _LOS_ARCH_TIMER_H
|
||||||
|
|
||||||
|
#include "los_config.h"
|
||||||
|
#include "los_compiler.h"
|
||||||
|
#include "los_timer.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
#if __cplusplus
|
||||||
|
}
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
#endif /* _LOS_ARCH_TIMER_H */
|
||||||
159
arch/arm/cortex-m55/gcc/NTZ/los_context.c
Executable file
159
arch/arm/cortex-m55/gcc/NTZ/los_context.c
Executable file
@@ -0,0 +1,159 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "los_context.h"
|
||||||
|
#include "securec.h"
|
||||||
|
#include "los_arch_context.h"
|
||||||
|
#include "los_arch_interrupt.h"
|
||||||
|
#include "los_task.h"
|
||||||
|
#include "los_sched.h"
|
||||||
|
#include "los_interrupt.h"
|
||||||
|
#include "los_debug.h"
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : ArchInit
|
||||||
|
Description : arch init function
|
||||||
|
Input : None
|
||||||
|
Output : None
|
||||||
|
Return : None
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT_INIT VOID ArchInit(VOID)
|
||||||
|
{
|
||||||
|
HalHwiInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : ArchSysExit
|
||||||
|
Description : Task exit function
|
||||||
|
Input : None
|
||||||
|
Output : None
|
||||||
|
Return : None
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
||||||
|
{
|
||||||
|
LOS_IntLock();
|
||||||
|
while (1) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : ArchTskStackInit
|
||||||
|
Description : Task stack initialization function
|
||||||
|
Input : taskID --- TaskID
|
||||||
|
stackSize --- Total size of the stack
|
||||||
|
topStack --- Top of task's stack
|
||||||
|
Output : None
|
||||||
|
Return : Context pointer
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
|
{
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
|
|
||||||
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
|
context->S16 = 0xAA000010;
|
||||||
|
context->S17 = 0xAA000011;
|
||||||
|
context->S18 = 0xAA000012;
|
||||||
|
context->S19 = 0xAA000013;
|
||||||
|
context->S20 = 0xAA000014;
|
||||||
|
context->S21 = 0xAA000015;
|
||||||
|
context->S22 = 0xAA000016;
|
||||||
|
context->S23 = 0xAA000017;
|
||||||
|
context->S24 = 0xAA000018;
|
||||||
|
context->S25 = 0xAA000019;
|
||||||
|
context->S26 = 0xAA00001A;
|
||||||
|
context->S27 = 0xAA00001B;
|
||||||
|
context->S28 = 0xAA00001C;
|
||||||
|
context->S29 = 0xAA00001D;
|
||||||
|
context->S30 = 0xAA00001E;
|
||||||
|
context->S31 = 0xAA00001F;
|
||||||
|
context->S0 = 0xAA000000;
|
||||||
|
context->S1 = 0xAA000001;
|
||||||
|
context->S2 = 0xAA000002;
|
||||||
|
context->S3 = 0xAA000003;
|
||||||
|
context->S4 = 0xAA000004;
|
||||||
|
context->S5 = 0xAA000005;
|
||||||
|
context->S6 = 0xAA000006;
|
||||||
|
context->S7 = 0xAA000007;
|
||||||
|
context->S8 = 0xAA000008;
|
||||||
|
context->S9 = 0xAA000009;
|
||||||
|
context->S10 = 0xAA00000A;
|
||||||
|
context->S11 = 0xAA00000B;
|
||||||
|
context->S12 = 0xAA00000C;
|
||||||
|
context->S13 = 0xAA00000D;
|
||||||
|
context->S14 = 0xAA00000E;
|
||||||
|
context->S15 = 0xAA00000F;
|
||||||
|
context->FPSCR = 0x00000000;
|
||||||
|
context->NO_NAME = 0xAA000011;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
context->uwR4 = 0x04040404L;
|
||||||
|
context->uwR5 = 0x05050505L;
|
||||||
|
context->uwR6 = 0x06060606L;
|
||||||
|
context->uwR7 = 0x07070707L;
|
||||||
|
context->uwR8 = 0x08080808L;
|
||||||
|
context->uwR9 = 0x09090909L;
|
||||||
|
context->uwR10 = 0x10101010L;
|
||||||
|
context->uwR11 = 0x11111111L;
|
||||||
|
context->uwPriMask = 0;
|
||||||
|
context->uwR0 = taskID;
|
||||||
|
context->uwR1 = 0x01010101L;
|
||||||
|
context->uwR2 = 0x02020202L;
|
||||||
|
context->uwR3 = 0x03030303L;
|
||||||
|
context->uwR12 = 0x12121212L;
|
||||||
|
context->uwLR = (UINT32)(UINTPTR)ArchSysExit;
|
||||||
|
context->uwPC = (UINT32)(UINTPTR)OsTaskEntry;
|
||||||
|
context->uwxPSR = 0x01000000L;
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_SIGNAL == 1)
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
|
{
|
||||||
|
(VOID)LOS_IntLock();
|
||||||
|
OsSchedStart();
|
||||||
|
HalStartToRun();
|
||||||
|
return LOS_OK; /* never return */
|
||||||
|
}
|
||||||
202
arch/arm/cortex-m55/gcc/NTZ/los_dispatch.S
Executable file
202
arch/arm/cortex-m55/gcc/NTZ/los_dispatch.S
Executable file
@@ -0,0 +1,202 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
.syntax unified
|
||||||
|
.arch armv8.1-m.main
|
||||||
|
.fpu vfpv3-d16-fp16
|
||||||
|
.thumb
|
||||||
|
|
||||||
|
.equ OS_FPU_CPACR, 0xE000ED88
|
||||||
|
.equ OS_FPU_CPACR_ENABLE, 0x00F00000
|
||||||
|
.equ OS_NVIC_INT_CTRL, 0xE000ED04
|
||||||
|
.equ OS_NVIC_SYSPRI3, 0xE000ED20
|
||||||
|
.equ OS_NVIC_PENDSV_PRI, 0xF0F00000
|
||||||
|
.equ OS_NVIC_PENDSVSET, 0x10000000
|
||||||
|
.equ OS_TASK_STATUS_RUNNING, 0x0010
|
||||||
|
|
||||||
|
.section .text
|
||||||
|
.thumb
|
||||||
|
|
||||||
|
.macro SIGNAL_CONTEXT_RESTORE
|
||||||
|
push {r12, lr}
|
||||||
|
blx OsSignalTaskContextRestore
|
||||||
|
pop {r12, lr}
|
||||||
|
cmp r0, #0
|
||||||
|
mov r1, r0
|
||||||
|
bne SignalContextRestore
|
||||||
|
.endm
|
||||||
|
|
||||||
|
.type HalStartToRun, %function
|
||||||
|
.global HalStartToRun
|
||||||
|
HalStartToRun:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
|
||||||
|
ldr r4, =OS_NVIC_SYSPRI3
|
||||||
|
ldr r5, =OS_NVIC_PENDSV_PRI
|
||||||
|
str r5, [r4]
|
||||||
|
|
||||||
|
mov r0, #2
|
||||||
|
msr CONTROL, r0
|
||||||
|
|
||||||
|
ldr r1, =g_losTask
|
||||||
|
ldr r0, [r1, #4]
|
||||||
|
ldr r12, [r0]
|
||||||
|
|
||||||
|
ldr.w r1, =OS_FPU_CPACR
|
||||||
|
ldr r1, [r1]
|
||||||
|
and r1, r1, #OS_FPU_CPACR_ENABLE
|
||||||
|
cmp r1, #OS_FPU_CPACR_ENABLE
|
||||||
|
bne __DisabledFPU
|
||||||
|
|
||||||
|
add r12, r12, #100
|
||||||
|
ldmfd r12!, {r0-r7}
|
||||||
|
add r12, r12, #72
|
||||||
|
msr psp, r12
|
||||||
|
vpush {s0}
|
||||||
|
vpop {s0}
|
||||||
|
|
||||||
|
mov lr, r5
|
||||||
|
cpsie I
|
||||||
|
bx r6
|
||||||
|
|
||||||
|
__DisabledFPU:
|
||||||
|
add r12, r12, #36
|
||||||
|
|
||||||
|
ldmfd r12!, {r0-r7}
|
||||||
|
msr psp, r12
|
||||||
|
mov lr, r5
|
||||||
|
cpsie I
|
||||||
|
bx r6
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type ArchIntLock, %function
|
||||||
|
.global ArchIntLock
|
||||||
|
ArchIntLock:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
|
||||||
|
mrs r0, PRIMASK
|
||||||
|
cpsid I
|
||||||
|
bx lr
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type ArchIntUnLock, %function
|
||||||
|
.global ArchIntUnLock
|
||||||
|
ArchIntUnLock:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
|
||||||
|
mrs r0, PRIMASK
|
||||||
|
cpsie I
|
||||||
|
bx lr
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type ArchIntRestore, %function
|
||||||
|
.global ArchIntRestore
|
||||||
|
ArchIntRestore:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
|
||||||
|
msr PRIMASK, r0
|
||||||
|
bx lr
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type ArchTaskSchedule, %function
|
||||||
|
.global ArchTaskSchedule
|
||||||
|
ArchTaskSchedule:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
|
||||||
|
ldr r0, =OS_NVIC_INT_CTRL
|
||||||
|
ldr r1, =OS_NVIC_PENDSVSET
|
||||||
|
str r1, [r0]
|
||||||
|
dsb
|
||||||
|
isb
|
||||||
|
bx lr
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type HalPendSV, %function
|
||||||
|
.global HalPendSV
|
||||||
|
HalPendSV:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
|
||||||
|
mrs r12, PRIMASK
|
||||||
|
cpsid I
|
||||||
|
|
||||||
|
HalTaskSwitch:
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
|
push {r12, lr}
|
||||||
|
blx OsSchedTaskSwitch
|
||||||
|
pop {r12, lr}
|
||||||
|
cmp r0, #0
|
||||||
|
mov r0, lr
|
||||||
|
bne TaskContextSwitch
|
||||||
|
msr PRIMASK, r12
|
||||||
|
bx lr
|
||||||
|
|
||||||
|
TaskContextSwitch:
|
||||||
|
mov lr, r0
|
||||||
|
mrs r0, psp
|
||||||
|
stmfd r0!, {r4-r12}
|
||||||
|
|
||||||
|
ldr.w r3, =OS_FPU_CPACR
|
||||||
|
ldr r3, [r3]
|
||||||
|
and r3, r3, #OS_FPU_CPACR_ENABLE
|
||||||
|
cmp r3, #OS_FPU_CPACR_ENABLE
|
||||||
|
bne __DisabledFPU1
|
||||||
|
vstmdb r0!, {d8-d15}
|
||||||
|
|
||||||
|
__DisabledFPU1:
|
||||||
|
ldr r5, =g_losTask
|
||||||
|
ldr r6, [r5]
|
||||||
|
str r0, [r6]
|
||||||
|
|
||||||
|
ldr r0, [r5, #4]
|
||||||
|
str r0, [r5]
|
||||||
|
ldr r1, [r0]
|
||||||
|
|
||||||
|
SignalContextRestore:
|
||||||
|
ldr.w r3, =OS_FPU_CPACR
|
||||||
|
ldr r3, [r3]
|
||||||
|
and r3, r3, #OS_FPU_CPACR_ENABLE
|
||||||
|
cmp r3, #OS_FPU_CPACR_ENABLE
|
||||||
|
bne __DisabledFPU2
|
||||||
|
VLDMIA r1!, {d8-d15}
|
||||||
|
|
||||||
|
__DisabledFPU2:
|
||||||
|
ldmfd r1!, {r4-r12}
|
||||||
|
msr psp, r1
|
||||||
|
msr PRIMASK, r12
|
||||||
|
|
||||||
|
bx lr
|
||||||
|
.fnend
|
||||||
381
arch/arm/cortex-m55/gcc/NTZ/los_exc.S
Executable file
381
arch/arm/cortex-m55/gcc/NTZ/los_exc.S
Executable file
@@ -0,0 +1,381 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
.syntax unified
|
||||||
|
.arch armv8.1-m.main
|
||||||
|
.fpu vfpv3-d16-fp16
|
||||||
|
.thumb
|
||||||
|
.section .text
|
||||||
|
|
||||||
|
.global HalExcNMI
|
||||||
|
.global HalExcHardFault
|
||||||
|
.global HalExcMemFault
|
||||||
|
.global HalExcBusFault
|
||||||
|
.global HalExcUsageFault
|
||||||
|
.global HalSVCHandler
|
||||||
|
|
||||||
|
.extern HalExcHandleEntry
|
||||||
|
.extern g_uwExcTbl
|
||||||
|
.extern g_taskScheduled
|
||||||
|
|
||||||
|
.equ OS_FLG_BGD_ACTIVE, 0x0002
|
||||||
|
.equ OS_EXC_CAUSE_NMI, 16
|
||||||
|
.equ OS_EXC_CAUSE_HARDFAULT, 17
|
||||||
|
|
||||||
|
.equ HF_DEBUGEVT, 20
|
||||||
|
.equ HF_VECTBL, 21
|
||||||
|
|
||||||
|
.equ FLAG_ADDR_VALID, 0x10000
|
||||||
|
.equ FLAG_HWI_ACTIVE, 0x20000
|
||||||
|
.equ FLAG_NO_FLOAT, 0x10000000
|
||||||
|
|
||||||
|
.equ OS_NVIC_FSR , 0xE000ED28 //include BusFault/MemFault/UsageFault State Register
|
||||||
|
.equ OS_NVIC_HFSR , 0xE000ED2C //HardFault State Register
|
||||||
|
.equ OS_NVIC_BFAR , 0xE000ED38
|
||||||
|
.equ OS_NVIC_MMAR , 0xE000ED34
|
||||||
|
.equ OS_NVIC_ACT_BASE , 0xE000E300
|
||||||
|
.equ OS_NVIC_SHCSRS , 0xE000ED24
|
||||||
|
.equ OS_NVIC_SHCSR_MASK , 0xC00
|
||||||
|
|
||||||
|
.type HalExcNMI, %function
|
||||||
|
.global HalExcNMI
|
||||||
|
HalExcNMI:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
MOV R0, #OS_EXC_CAUSE_NMI
|
||||||
|
MOV R1, #0
|
||||||
|
B osExcDispatch
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type HalExcHardFault, %function
|
||||||
|
.global HalExcHardFault
|
||||||
|
HalExcHardFault:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
MOV R0, #OS_EXC_CAUSE_HARDFAULT
|
||||||
|
LDR R2, =OS_NVIC_HFSR
|
||||||
|
LDR R2, [R2]
|
||||||
|
|
||||||
|
MOV R1, #HF_DEBUGEVT
|
||||||
|
ORR R0, R0, R1, LSL #0x8
|
||||||
|
TST R2, #0x80000000
|
||||||
|
BNE osExcDispatch // DEBUGEVT
|
||||||
|
|
||||||
|
AND R0, R0 , #0x000000FF
|
||||||
|
MOV R1, #HF_VECTBL
|
||||||
|
ORR R0, R0, R1, LSL #0x8
|
||||||
|
TST R2, #0x00000002
|
||||||
|
BNE osExcDispatch // VECTBL
|
||||||
|
|
||||||
|
//if not DEBUGEVT and VECTBL then is FORCED
|
||||||
|
AND R0, R0, #0x000000FF
|
||||||
|
|
||||||
|
LDR R2, =OS_NVIC_FSR
|
||||||
|
LDR R2, [R2]
|
||||||
|
|
||||||
|
TST R2, #0x8000 // BFARVALID
|
||||||
|
BNE _HFBusFault // BusFault
|
||||||
|
|
||||||
|
TST R2, #0x80 // MMARVALID
|
||||||
|
BNE _HFMemFault // MemFault
|
||||||
|
|
||||||
|
MOV R12,#0
|
||||||
|
B osHFExcCommonBMU
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _HFBusFault, %function
|
||||||
|
|
||||||
|
_HFBusFault:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R1, =OS_NVIC_BFAR
|
||||||
|
LDR R1, [R1]
|
||||||
|
MOV R12, #FLAG_ADDR_VALID
|
||||||
|
B osHFExcCommonBMU
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _HFMemFault, %function
|
||||||
|
|
||||||
|
_HFMemFault:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R1, =OS_NVIC_MMAR
|
||||||
|
LDR R1, [R1]
|
||||||
|
MOV R12, #FLAG_ADDR_VALID
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type osHFExcCommonBMU, %function
|
||||||
|
.global osHFExcCommonBMU
|
||||||
|
osHFExcCommonBMU:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
CLZ R2, R2
|
||||||
|
LDR R3, =g_uwExcTbl
|
||||||
|
ADD R3, R3, R2
|
||||||
|
LDRB R2, [R3]
|
||||||
|
ORR R0, R0, R2, LSL #0x8
|
||||||
|
ORR R0, R0 ,R12
|
||||||
|
B osExcDispatch
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type HalSVCHandler, %function
|
||||||
|
.global HalSVCHandler
|
||||||
|
HalSVCHandler:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
TST LR, #0x4
|
||||||
|
ITE EQ
|
||||||
|
MRSEQ R0, MSP
|
||||||
|
MRSNE R0, PSP
|
||||||
|
LDR R1, [R0,#24]
|
||||||
|
LDRB R0, [R1,#-2]
|
||||||
|
MOV R1, #0
|
||||||
|
B osExcDispatch
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type HalExcBusFault, %function
|
||||||
|
.global HalExcBusFault
|
||||||
|
HalExcBusFault:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R0, =OS_NVIC_FSR
|
||||||
|
LDR R0, [R0]
|
||||||
|
|
||||||
|
TST R0, #0x8000 // BFARVALID
|
||||||
|
BEQ _ExcBusNoADDR
|
||||||
|
LDR R1, =OS_NVIC_BFAR
|
||||||
|
LDR R1, [R1]
|
||||||
|
MOV R12, #FLAG_ADDR_VALID
|
||||||
|
AND R0, R0, #0x1F00
|
||||||
|
|
||||||
|
B osExcCommonBMU
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _ExcBusNoADDR, %function
|
||||||
|
.global _ExcBusNoADDR
|
||||||
|
_ExcBusNoADDR:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
MOV R12,#0
|
||||||
|
B osExcCommonBMU
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type HalExcMemFault, %function
|
||||||
|
.global HalExcMemFault
|
||||||
|
HalExcMemFault:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R0, =OS_NVIC_FSR
|
||||||
|
LDR R0, [R0]
|
||||||
|
|
||||||
|
TST R0, #0x80 // MMARVALID
|
||||||
|
BEQ _ExcMemNoADDR
|
||||||
|
LDR R1, =OS_NVIC_MMAR
|
||||||
|
LDR R1, [R1]
|
||||||
|
MOV R12, #FLAG_ADDR_VALID
|
||||||
|
AND R0, R0, #0x1B
|
||||||
|
|
||||||
|
B osExcCommonBMU
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _ExcMemNoADDR, %function
|
||||||
|
.global _ExcMemNoADDR
|
||||||
|
_ExcMemNoADDR:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
MOV R12,#0
|
||||||
|
B osExcCommonBMU
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type HalExcUsageFault, %function
|
||||||
|
.global HalExcUsageFault
|
||||||
|
HalExcUsageFault:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R0, =OS_NVIC_FSR
|
||||||
|
LDR R0, [R0]
|
||||||
|
|
||||||
|
MOVW R1, #0x030F
|
||||||
|
LSL R1, R1, #16
|
||||||
|
AND R0, R0, R1
|
||||||
|
MOV R12, #0
|
||||||
|
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type osExcCommonBMU, %function
|
||||||
|
.global osExcCommonBMU
|
||||||
|
osExcCommonBMU:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
CLZ R0, R0
|
||||||
|
LDR R3, =g_uwExcTbl
|
||||||
|
ADD R3, R3, R0
|
||||||
|
LDRB R0, [R3]
|
||||||
|
ORR R0, R0, R12
|
||||||
|
.fnend
|
||||||
|
// R0 -- EXCCAUSE(bit 16 is 1 if EXCADDR valid), R1 -- EXCADDR
|
||||||
|
|
||||||
|
.type osExcDispatch, %function
|
||||||
|
.global osExcDispatch
|
||||||
|
osExcDispatch:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R2, =OS_NVIC_ACT_BASE
|
||||||
|
MOV R12, #8 // R12 is hwi check loop counter
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _hwiActiveCheck, %function
|
||||||
|
.global _hwiActiveCheck
|
||||||
|
_hwiActiveCheck:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
LDR R3, [R2] // R3 store active hwi register when exc
|
||||||
|
CMP R3, #0
|
||||||
|
BEQ _hwiActiveCheckNext
|
||||||
|
|
||||||
|
// exc occured in IRQ
|
||||||
|
ORR R0, R0, #FLAG_HWI_ACTIVE
|
||||||
|
RBIT R2, R3
|
||||||
|
CLZ R2, R2
|
||||||
|
AND R12, R12, #1
|
||||||
|
ADD R2, R2, R12, LSL #5 // calculate R2 (hwi number) as pid
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _ExcInMSP, %function
|
||||||
|
.global _ExcInMSP
|
||||||
|
_ExcInMSP:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
CMP LR, #0xFFFFFFE9
|
||||||
|
BNE _NoFloatInMsp
|
||||||
|
ADD R3, R13, #104
|
||||||
|
PUSH {R3}
|
||||||
|
MRS R12, PRIMASK // store message-->exc: disable int?
|
||||||
|
PUSH {R4-R12} // store message-->exc: {R4-R12}
|
||||||
|
VPUSH {D8-D15}
|
||||||
|
B _handleEntry
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _NoFloatInMsp, %function
|
||||||
|
.global _NoFloatInMsp
|
||||||
|
_NoFloatInMsp:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
ADD R3, R13, #32
|
||||||
|
PUSH {R3} // save IRQ SP // store message-->exc: MSP(R13)
|
||||||
|
|
||||||
|
MRS R12, PRIMASK // store message-->exc: disable int?
|
||||||
|
PUSH {R4-R12} // store message-->exc: {R4-R12}
|
||||||
|
ORR R0, R0, #FLAG_NO_FLOAT
|
||||||
|
B _handleEntry
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _hwiActiveCheckNext, %function
|
||||||
|
.global _hwiActiveCheckNext
|
||||||
|
_hwiActiveCheckNext:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
ADD R2, R2, #4 // next NVIC ACT ADDR
|
||||||
|
SUBS R12, R12, #1
|
||||||
|
BNE _hwiActiveCheck
|
||||||
|
|
||||||
|
/*NMI interrupt excption*/
|
||||||
|
LDR R2, =OS_NVIC_SHCSRS
|
||||||
|
LDRH R2,[R2]
|
||||||
|
LDR R3,=OS_NVIC_SHCSR_MASK
|
||||||
|
AND R2, R2,R3
|
||||||
|
CMP R2,#0
|
||||||
|
BNE _ExcInMSP
|
||||||
|
// exc occured in Task or Init or exc
|
||||||
|
// reserved for register info from task stack
|
||||||
|
|
||||||
|
LDR R2, =g_taskScheduled
|
||||||
|
LDR R2, [R2]
|
||||||
|
TST R2, #1 // OS_FLG_BGD_ACTIVE
|
||||||
|
BEQ _ExcInMSP // if exc occured in Init then branch
|
||||||
|
|
||||||
|
|
||||||
|
CMP LR, #0xFFFFFFED //auto push floating registers
|
||||||
|
BNE _NoFloatInPsp
|
||||||
|
|
||||||
|
// exc occured in Task
|
||||||
|
MOV R2, R13
|
||||||
|
SUB R13, #96 // add 8 Bytes reg(for STMFD)
|
||||||
|
|
||||||
|
MRS R3, PSP
|
||||||
|
ADD R12, R3, #104
|
||||||
|
PUSH {R12} // save task SP
|
||||||
|
|
||||||
|
MRS R12, PRIMASK
|
||||||
|
PUSH {R4-R12}
|
||||||
|
VPUSH {D8-D15}
|
||||||
|
|
||||||
|
// copy auto saved task register
|
||||||
|
|
||||||
|
LDMFD R3!, {R4-R11} // R4-R11 store PSP reg(auto push when exc in task)
|
||||||
|
VLDMIA R3!, {D8-D15}
|
||||||
|
VSTMDB R2!, {D8-D15}
|
||||||
|
STMFD R2!, {R4-R11}
|
||||||
|
B _handleEntry
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _NoFloatInPsp, %function
|
||||||
|
.global _NoFloatInPsp
|
||||||
|
_NoFloatInPsp:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
MOV R2, R13 // no auto push floating registers
|
||||||
|
SUB R13, #32 // add 8 Bytes reg(for STMFD)
|
||||||
|
|
||||||
|
MRS R3, PSP
|
||||||
|
ADD R12, R3, #32
|
||||||
|
PUSH {R12} // save task SP
|
||||||
|
|
||||||
|
MRS R12, PRIMASK
|
||||||
|
PUSH {R4-R12}
|
||||||
|
|
||||||
|
LDMFD R3, {R4-R11} // R4-R11 store PSP reg(auto push when exc in task)
|
||||||
|
STMFD R2!, {R4-R11}
|
||||||
|
ORR R0, R0, #FLAG_NO_FLOAT
|
||||||
|
.fnend
|
||||||
|
|
||||||
|
.type _handleEntry, %function
|
||||||
|
.global _handleEntry
|
||||||
|
_handleEntry:
|
||||||
|
.fnstart
|
||||||
|
.cantunwind
|
||||||
|
MOV R3, R13 // R13:the 4th param
|
||||||
|
CPSID I
|
||||||
|
CPSID F
|
||||||
|
B HalExcHandleEntry
|
||||||
|
|
||||||
|
NOP
|
||||||
|
.fnend
|
||||||
|
|
||||||
601
arch/arm/cortex-m55/gcc/NTZ/los_interrupt.c
Executable file
601
arch/arm/cortex-m55/gcc/NTZ/los_interrupt.c
Executable file
@@ -0,0 +1,601 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
#include "los_interrupt.h"
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include "securec.h"
|
||||||
|
#include "los_context.h"
|
||||||
|
#include "los_arch_interrupt.h"
|
||||||
|
#include "los_debug.h"
|
||||||
|
#include "los_hook.h"
|
||||||
|
#include "los_task.h"
|
||||||
|
#include "los_sched.h"
|
||||||
|
#include "los_memory.h"
|
||||||
|
#include "los_membox.h"
|
||||||
|
|
||||||
|
#define DEF_HANDLER_START_INDEX 2
|
||||||
|
/*lint -save -e40 -e522 -e533*/
|
||||||
|
UINT32 g_intCount = 0;
|
||||||
|
|
||||||
|
/*lint -restore*/
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_hwi
|
||||||
|
* Hardware interrupt form mapping handling function array.
|
||||||
|
*/
|
||||||
|
STATIC HWI_PROC_FUNC __attribute__((aligned(LOSCFG_ARCH_HWI_VECTOR_ALIGN))) g_hwiForm[OS_VECTOR_CNT] = {0};
|
||||||
|
|
||||||
|
#if (LOSCFG_PLATFORM_HWI_WITH_ARG == 1)
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
HWI_PROC_FUNC pfnHandler;
|
||||||
|
VOID *pParm;
|
||||||
|
} HWI_HANDLER_FUNC;
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_hwi
|
||||||
|
* Hardware interrupt handler form mapping handling function array.
|
||||||
|
*/
|
||||||
|
STATIC HWI_HANDLER_FUNC g_hwiHandlerForm[OS_VECTOR_CNT] = {{ (HWI_PROC_FUNC)0, (HWI_ARG_T)0 }};
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_hwi
|
||||||
|
* Set interrupt vector table.
|
||||||
|
*/
|
||||||
|
VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector, VOID *arg)
|
||||||
|
{
|
||||||
|
if ((num + OS_SYS_VECTOR_CNT) < OS_VECTOR_CNT) {
|
||||||
|
g_hwiForm[num + OS_SYS_VECTOR_CNT] = (HWI_PROC_FUNC)HalInterrupt;
|
||||||
|
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT].pfnHandler = vector;
|
||||||
|
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT].pParm = arg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
/* *
|
||||||
|
* @ingroup los_hwi
|
||||||
|
* hardware interrupt handler form mapping handling function array.
|
||||||
|
*/
|
||||||
|
STATIC HWI_PROC_FUNC g_hwiHandlerForm[OS_VECTOR_CNT] = {0};
|
||||||
|
|
||||||
|
/* *
|
||||||
|
* @ingroup los_hwi
|
||||||
|
* Set interrupt vector table.
|
||||||
|
*/
|
||||||
|
VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector)
|
||||||
|
{
|
||||||
|
if ((num + OS_SYS_VECTOR_CNT) < OS_VECTOR_CNT) {
|
||||||
|
g_hwiForm[num + OS_SYS_VECTOR_CNT] = HalInterrupt;
|
||||||
|
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT] = vector;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
WEAK VOID SysTick_Handler(VOID)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : HwiNumGet
|
||||||
|
Description : Get an interrupt number
|
||||||
|
Input : None
|
||||||
|
Output : None
|
||||||
|
Return : Interrupt Indexes number
|
||||||
|
**************************************************************************** */
|
||||||
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
|
{
|
||||||
|
return __get_IPSR();
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
|
{
|
||||||
|
return (g_intCount > 0);
|
||||||
|
}
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : HalHwiDefaultHandler
|
||||||
|
Description : default handler of the hardware interrupt
|
||||||
|
Input : None
|
||||||
|
Output : None
|
||||||
|
Return : None
|
||||||
|
**************************************************************************** */
|
||||||
|
/*lint -e529*/
|
||||||
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
|
{
|
||||||
|
UINT32 irqNum = HwiNumGet();
|
||||||
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
|
while (1) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
WEAK VOID HalPreInterruptHandler(UINT32 arg)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
WEAK VOID HalAftInterruptHandler(UINT32 arg)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : HalInterrupt
|
||||||
|
Description : Hardware interrupt entry function
|
||||||
|
Input : None
|
||||||
|
Output : None
|
||||||
|
Return : None
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
||||||
|
{
|
||||||
|
UINT32 hwiIndex;
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_RUNSTOP == 1)
|
||||||
|
SCB->SCR &= (UINT32) ~((UINT32)SCB_SCR_SLEEPDEEP_Msk);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
g_intCount++;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
|
HalPreInterruptHandler(hwiIndex);
|
||||||
|
|
||||||
|
#if (LOSCFG_PLATFORM_HWI_WITH_ARG == 1)
|
||||||
|
if (g_hwiHandlerForm[hwiIndex].pfnHandler != 0) {
|
||||||
|
g_hwiHandlerForm[hwiIndex].pfnHandler((VOID *)g_hwiHandlerForm[hwiIndex].pParm);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
if (g_hwiHandlerForm[hwiIndex] != 0) {
|
||||||
|
g_hwiHandlerForm[hwiIndex]();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
HalAftInterruptHandler(hwiIndex);
|
||||||
|
|
||||||
|
OsHookCall(LOS_HOOK_TYPE_ISR_EXIT, hwiIndex);
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
g_intCount--;
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : ArchHwiCreate
|
||||||
|
Description : create hardware interrupt
|
||||||
|
Input : hwiNum --- hwi num to create
|
||||||
|
hwiPrio --- priority of the hwi
|
||||||
|
mode --- unused
|
||||||
|
handler --- hwi handler
|
||||||
|
arg --- param of the hwi handler
|
||||||
|
Output : None
|
||||||
|
Return : LOS_OK on success or error code on failure
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
||||||
|
HWI_PRIOR_T hwiPrio,
|
||||||
|
HWI_MODE_T mode,
|
||||||
|
HWI_PROC_FUNC handler,
|
||||||
|
HWI_ARG_T arg)
|
||||||
|
{
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
if (handler == NULL) {
|
||||||
|
return OS_ERRNO_HWI_PROC_FUNC_NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (g_hwiForm[hwiNum + OS_SYS_VECTOR_CNT] != (HWI_PROC_FUNC)HalHwiDefaultHandler) {
|
||||||
|
return OS_ERRNO_HWI_ALREADY_CREATED;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hwiPrio > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
#if (LOSCFG_PLATFORM_HWI_WITH_ARG == 1)
|
||||||
|
OsSetVector(hwiNum, handler, arg);
|
||||||
|
#else
|
||||||
|
OsSetVector(hwiNum, handler);
|
||||||
|
#endif
|
||||||
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : ArchHwiDelete
|
||||||
|
Description : Delete hardware interrupt
|
||||||
|
Input : hwiNum --- hwi num to delete
|
||||||
|
Output : None
|
||||||
|
Return : LOS_OK on success or error code on failure
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
UINT32 intSave;
|
||||||
|
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiMask((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
intSave = LOS_IntLock();
|
||||||
|
|
||||||
|
g_hwiForm[hwiNum + OS_SYS_VECTOR_CNT] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
||||||
|
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define FAULT_STATUS_REG_BIT 32
|
||||||
|
#define USGFAULT (1 << 18)
|
||||||
|
#define BUSFAULT (1 << 17)
|
||||||
|
#define MEMFAULT (1 << 16)
|
||||||
|
#define DIV0FAULT (1 << 4)
|
||||||
|
#define UNALIGNFAULT (1 << 3)
|
||||||
|
#define HARDFAULT_IRQN (-13)
|
||||||
|
|
||||||
|
ExcInfo g_excInfo = {0};
|
||||||
|
|
||||||
|
UINT8 g_uwExcTbl[FAULT_STATUS_REG_BIT] = {
|
||||||
|
0, 0, 0, 0, 0, 0, OS_EXC_UF_DIVBYZERO, OS_EXC_UF_UNALIGNED,
|
||||||
|
0, 0, 0, 0, OS_EXC_UF_NOCP, OS_EXC_UF_INVPC, OS_EXC_UF_INVSTATE, OS_EXC_UF_UNDEFINSTR,
|
||||||
|
0, 0, 0, OS_EXC_BF_STKERR, OS_EXC_BF_UNSTKERR, OS_EXC_BF_IMPRECISERR, OS_EXC_BF_PRECISERR, OS_EXC_BF_IBUSERR,
|
||||||
|
0, 0, 0, OS_EXC_MF_MSTKERR, OS_EXC_MF_MUNSTKERR, 0, OS_EXC_MF_DACCVIOL, OS_EXC_MF_IACCVIOL
|
||||||
|
};
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_PRINTF != 0)
|
||||||
|
STATIC VOID OsExcNvicDump(VOID)
|
||||||
|
{
|
||||||
|
#define OS_NR_NVIC_EXC_DUMP_TYPES 7
|
||||||
|
UINT32 *base = NULL;
|
||||||
|
UINT32 len, i, j;
|
||||||
|
UINT32 rgNvicBases[OS_NR_NVIC_EXC_DUMP_TYPES] = {
|
||||||
|
OS_NVIC_SETENA_BASE, OS_NVIC_SETPEND_BASE, OS_NVIC_INT_ACT_BASE,
|
||||||
|
OS_NVIC_PRI_BASE, OS_NVIC_EXCPRI_BASE, OS_NVIC_SHCSR, OS_NVIC_INT_CTRL
|
||||||
|
};
|
||||||
|
UINT32 rgNvicLens[OS_NR_NVIC_EXC_DUMP_TYPES] = {
|
||||||
|
OS_NVIC_INT_ENABLE_SIZE, OS_NVIC_INT_PEND_SIZE, OS_NVIC_INT_ACT_SIZE,
|
||||||
|
OS_NVIC_INT_PRI_SIZE, OS_NVIC_EXCPRI_SIZE, OS_NVIC_SHCSR_SIZE,
|
||||||
|
OS_NVIC_INT_CTRL_SIZE
|
||||||
|
};
|
||||||
|
CHAR strRgEnable[] = "enable";
|
||||||
|
CHAR strRgPending[] = "pending";
|
||||||
|
CHAR strRgActive[] = "active";
|
||||||
|
CHAR strRgPriority[] = "priority";
|
||||||
|
CHAR strRgException[] = "exception";
|
||||||
|
CHAR strRgShcsr[] = "shcsr";
|
||||||
|
CHAR strRgIntCtrl[] = "control";
|
||||||
|
CHAR *strRgs[] = {
|
||||||
|
strRgEnable, strRgPending, strRgActive, strRgPriority,
|
||||||
|
strRgException, strRgShcsr, strRgIntCtrl
|
||||||
|
};
|
||||||
|
|
||||||
|
PRINTK("\r\nOS exception NVIC dump:\n");
|
||||||
|
for (i = 0; i < OS_NR_NVIC_EXC_DUMP_TYPES; i++) {
|
||||||
|
base = (UINT32 *)rgNvicBases[i];
|
||||||
|
len = rgNvicLens[i];
|
||||||
|
PRINTK("interrupt %s register, base address: %p, size: 0x%x\n", strRgs[i], base, len);
|
||||||
|
len = (len >> 2); /* 2: Gets the next register offset */
|
||||||
|
for (j = 0; j < len; j++) {
|
||||||
|
PRINTK("0x%x ", *(base + j));
|
||||||
|
if ((j != 0) && ((j % 16) == 0)) { /* 16: print wrap line */
|
||||||
|
PRINTK("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PRINTK("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC VOID OsExcTypeInfo(const ExcInfo *excInfo)
|
||||||
|
{
|
||||||
|
CHAR *phaseStr[] = {"exc in init", "exc in task", "exc in hwi"};
|
||||||
|
|
||||||
|
PRINTK("Type = %d\n", excInfo->type);
|
||||||
|
PRINTK("ThrdPid = %d\n", excInfo->thrdPid);
|
||||||
|
PRINTK("Phase = %s\n", phaseStr[excInfo->phase]);
|
||||||
|
PRINTK("FaultAddr = 0x%x\n", excInfo->faultAddr);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC VOID OsExcCurTaskInfo(const ExcInfo *excInfo)
|
||||||
|
{
|
||||||
|
PRINTK("Current task info:\n");
|
||||||
|
if (excInfo->phase == OS_EXC_IN_TASK) {
|
||||||
|
LosTaskCB *taskCB = OS_TCB_FROM_TID(LOS_CurTaskIDGet());
|
||||||
|
PRINTK("Task name = %s\n", taskCB->taskName);
|
||||||
|
PRINTK("Task ID = %d\n", taskCB->taskID);
|
||||||
|
PRINTK("Task SP = %p\n", taskCB->stackPointer);
|
||||||
|
PRINTK("Task ST = 0x%x\n", taskCB->topOfStack);
|
||||||
|
PRINTK("Task SS = 0x%x\n", taskCB->stackSize);
|
||||||
|
} else if (excInfo->phase == OS_EXC_IN_HWI) {
|
||||||
|
PRINTK("Exception occur in interrupt phase!\n");
|
||||||
|
} else {
|
||||||
|
PRINTK("Exception occur in system init phase!\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
||||||
|
{
|
||||||
|
PRINTK("Exception reg dump:\n");
|
||||||
|
PRINTK("PC = 0x%x\n", excInfo->context->uwPC);
|
||||||
|
PRINTK("LR = 0x%x\n", excInfo->context->uwLR);
|
||||||
|
PRINTK("SP = 0x%x\n", excInfo->context->uwSP);
|
||||||
|
PRINTK("R0 = 0x%x\n", excInfo->context->uwR0);
|
||||||
|
PRINTK("R1 = 0x%x\n", excInfo->context->uwR1);
|
||||||
|
PRINTK("R2 = 0x%x\n", excInfo->context->uwR2);
|
||||||
|
PRINTK("R3 = 0x%x\n", excInfo->context->uwR3);
|
||||||
|
PRINTK("R4 = 0x%x\n", excInfo->context->uwR4);
|
||||||
|
PRINTK("R5 = 0x%x\n", excInfo->context->uwR5);
|
||||||
|
PRINTK("R6 = 0x%x\n", excInfo->context->uwR6);
|
||||||
|
PRINTK("R7 = 0x%x\n", excInfo->context->uwR7);
|
||||||
|
PRINTK("R8 = 0x%x\n", excInfo->context->uwR8);
|
||||||
|
PRINTK("R9 = 0x%x\n", excInfo->context->uwR9);
|
||||||
|
PRINTK("R10 = 0x%x\n", excInfo->context->uwR10);
|
||||||
|
PRINTK("R11 = 0x%x\n", excInfo->context->uwR11);
|
||||||
|
PRINTK("R12 = 0x%x\n", excInfo->context->uwR12);
|
||||||
|
PRINTK("PriMask = 0x%x\n", excInfo->context->uwPriMask);
|
||||||
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
|
{
|
||||||
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
|
UINT32 index;
|
||||||
|
|
||||||
|
OsBackTraceHookCall(LR, LOSCFG_BACKTRACE_DEPTH, 0, excInfo->context->uwSP);
|
||||||
|
|
||||||
|
PRINTK("----- backtrace start -----\n");
|
||||||
|
for (index = 0; index < LOSCFG_BACKTRACE_DEPTH; index++) {
|
||||||
|
if (LR[index] == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
PRINTK("backtrace %d -- lr = 0x%x\n", index, LR[index]);
|
||||||
|
}
|
||||||
|
PRINTK("----- backtrace end -----\n");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
|
{
|
||||||
|
PRINTK("\r\nmemory pools check:\n");
|
||||||
|
#if (LOSCFG_PLATFORM_EXC == 1)
|
||||||
|
MemInfoCB memExcInfo[OS_SYS_MEM_NUM];
|
||||||
|
UINT32 errCnt;
|
||||||
|
UINT32 i;
|
||||||
|
|
||||||
|
(VOID)memset_s(memExcInfo, sizeof(memExcInfo), 0, sizeof(memExcInfo));
|
||||||
|
|
||||||
|
errCnt = OsMemExcInfoGet(OS_SYS_MEM_NUM, memExcInfo);
|
||||||
|
if (errCnt < OS_SYS_MEM_NUM) {
|
||||||
|
errCnt += OsMemboxExcInfoGet(OS_SYS_MEM_NUM - errCnt, memExcInfo + errCnt);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (errCnt == 0) {
|
||||||
|
PRINTK("all memory pool check passed!\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < errCnt; i++) {
|
||||||
|
PRINTK("pool num = %d\n", i);
|
||||||
|
PRINTK("pool type = %d\n", memExcInfo[i].type);
|
||||||
|
PRINTK("pool addr = 0x%x\n", memExcInfo[i].startAddr);
|
||||||
|
PRINTK("pool size = 0x%x\n", memExcInfo[i].size);
|
||||||
|
PRINTK("pool free = 0x%x\n", memExcInfo[i].free);
|
||||||
|
PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
|
||||||
|
PRINTK("pool error node addr = 0x%x\n", memExcInfo[i].errorAddr);
|
||||||
|
PRINTK("pool error node len = 0x%x\n", memExcInfo[i].errorLen);
|
||||||
|
PRINTK("pool error node owner = %d\n", memExcInfo[i].errorOwner);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
UINT32 ret = LOS_MemIntegrityCheck(LOSCFG_SYS_HEAP_ADDR);
|
||||||
|
if (ret == LOS_OK) {
|
||||||
|
PRINTK("system heap memcheck over, all passed!\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
PRINTK("memory pool check end!\n");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
||||||
|
{
|
||||||
|
#if (LOSCFG_KERNEL_PRINTF != 0)
|
||||||
|
PRINTK("*************Exception Information**************\n");
|
||||||
|
OsExcTypeInfo(excInfo);
|
||||||
|
OsExcCurTaskInfo(excInfo);
|
||||||
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
|
OsGetAllTskInfo();
|
||||||
|
OsExcNvicDump();
|
||||||
|
OsExcMemPoolCheckInfo();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
LITE_OS_SEC_TEXT_INIT VOID HalExcHandleEntry(UINT32 excType, UINT32 faultAddr, UINT32 pid, EXC_CONTEXT_S *excBufAddr)
|
||||||
|
{
|
||||||
|
UINT16 tmpFlag = (excType >> 16) & OS_NULL_SHORT; /* 16: Get Exception Type */
|
||||||
|
g_intCount++;
|
||||||
|
g_excInfo.nestCnt++;
|
||||||
|
|
||||||
|
g_excInfo.type = excType & OS_NULL_SHORT;
|
||||||
|
|
||||||
|
if (tmpFlag & OS_EXC_FLAG_FAULTADDR_VALID) {
|
||||||
|
g_excInfo.faultAddr = faultAddr;
|
||||||
|
} else {
|
||||||
|
g_excInfo.faultAddr = OS_EXC_IMPRECISE_ACCESS_ADDR;
|
||||||
|
}
|
||||||
|
if (g_losTask.runTask != NULL) {
|
||||||
|
if (tmpFlag & OS_EXC_FLAG_IN_HWI) {
|
||||||
|
g_excInfo.phase = OS_EXC_IN_HWI;
|
||||||
|
g_excInfo.thrdPid = pid;
|
||||||
|
} else {
|
||||||
|
g_excInfo.phase = OS_EXC_IN_TASK;
|
||||||
|
g_excInfo.thrdPid = g_losTask.runTask->taskID;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
g_excInfo.phase = OS_EXC_IN_INIT;
|
||||||
|
g_excInfo.thrdPid = OS_NULL_INT;
|
||||||
|
}
|
||||||
|
if (excType & OS_EXC_FLAG_NO_FLOAT) {
|
||||||
|
g_excInfo.context = (EXC_CONTEXT_S *)((CHAR *)excBufAddr - LOS_OFF_SET_OF(EXC_CONTEXT_S, uwR4));
|
||||||
|
} else {
|
||||||
|
g_excInfo.context = excBufAddr;
|
||||||
|
}
|
||||||
|
|
||||||
|
OsDoExcHook(EXC_INTERRUPT);
|
||||||
|
OsExcInfoDisplay(&g_excInfo);
|
||||||
|
ArchSysExit();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ****************************************************************************
|
||||||
|
Function : HalHwiInit
|
||||||
|
Description : initialization of the hardware interrupt
|
||||||
|
Input : None
|
||||||
|
Output : None
|
||||||
|
Return : None
|
||||||
|
**************************************************************************** */
|
||||||
|
LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
||||||
|
{
|
||||||
|
#if (LOSCFG_USE_SYSTEM_DEFINED_INTERRUPT == 1)
|
||||||
|
UINT32 index;
|
||||||
|
g_hwiForm[0] = 0; /* [0] Top of Stack */
|
||||||
|
g_hwiForm[1] = 0; /* [1] reset */
|
||||||
|
for (index = DEF_HANDLER_START_INDEX; index < OS_VECTOR_CNT; index++) {
|
||||||
|
g_hwiForm[index] = (HWI_PROC_FUNC)HalHwiDefaultHandler;
|
||||||
|
}
|
||||||
|
/* Exception handler register */
|
||||||
|
g_hwiForm[NonMaskableInt_IRQn + OS_SYS_VECTOR_CNT] = HalExcNMI;
|
||||||
|
g_hwiForm[HARDFAULT_IRQN + OS_SYS_VECTOR_CNT] = HalExcHardFault;
|
||||||
|
g_hwiForm[MemoryManagement_IRQn + OS_SYS_VECTOR_CNT] = HalExcMemFault;
|
||||||
|
g_hwiForm[BusFault_IRQn + OS_SYS_VECTOR_CNT] = HalExcBusFault;
|
||||||
|
g_hwiForm[UsageFault_IRQn + OS_SYS_VECTOR_CNT] = HalExcUsageFault;
|
||||||
|
g_hwiForm[SVCall_IRQn + OS_SYS_VECTOR_CNT] = HalSVCHandler;
|
||||||
|
g_hwiForm[PendSV_IRQn + OS_SYS_VECTOR_CNT] = HalPendSV;
|
||||||
|
g_hwiForm[SysTick_IRQn + OS_SYS_VECTOR_CNT] = OsTickHandler;
|
||||||
|
|
||||||
|
/* Interrupt vector table location */
|
||||||
|
SCB->VTOR = (UINT32)(UINTPTR)g_hwiForm;
|
||||||
|
#endif
|
||||||
|
#if (__CORTEX_M >= 0x03U) /* only for Cortex-M3 and above */
|
||||||
|
NVIC_SetPriorityGrouping(OS_NVIC_AIRCR_PRIGROUP);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Enable USGFAULT, BUSFAULT, MEMFAULT */
|
||||||
|
*(volatile UINT32 *)OS_NVIC_SHCSR |= (USGFAULT | BUSFAULT | MEMFAULT);
|
||||||
|
|
||||||
|
/* Enable DIV 0 and unaligned exception */
|
||||||
|
#ifdef LOSCFG_ARCH_UNALIGNED_EXC
|
||||||
|
*(volatile UINT32 *)OS_NVIC_CCR |= (DIV0FAULT | UNALIGNFAULT);
|
||||||
|
#else
|
||||||
|
*(volatile UINT32 *)OS_NVIC_CCR |= (DIV0FAULT);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
121
arch/arm/cortex-m55/gcc/NTZ/los_timer.c
Executable file
121
arch/arm/cortex-m55/gcc/NTZ/los_timer.c
Executable file
@@ -0,0 +1,121 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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 of the copyright holder 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "los_timer.h"
|
||||||
|
#include "los_config.h"
|
||||||
|
#include "los_tick.h"
|
||||||
|
#include "los_arch_interrupt.h"
|
||||||
|
#include "los_debug.h"
|
||||||
|
|
||||||
|
STATIC UINT32 SysTickStart(HWI_PROC_FUNC handler);
|
||||||
|
STATIC VOID SysTickReload(UINT64 nextResponseTime);
|
||||||
|
STATIC UINT64 SysTickCycleGet(UINT32 *period);
|
||||||
|
STATIC VOID SysTickLock(VOID);
|
||||||
|
STATIC VOID SysTickUnlock(VOID);
|
||||||
|
|
||||||
|
STATIC ArchTickTimer g_archTickTimer = {
|
||||||
|
.freq = 0,
|
||||||
|
.irqNum = SysTick_IRQn,
|
||||||
|
.init = SysTickStart,
|
||||||
|
.getCycle = SysTickCycleGet,
|
||||||
|
.reload = SysTickReload,
|
||||||
|
.lock = SysTickLock,
|
||||||
|
.unlock = SysTickUnlock,
|
||||||
|
.tickHandler = NULL,
|
||||||
|
};
|
||||||
|
|
||||||
|
STATIC UINT32 SysTickStart(HWI_PROC_FUNC handler)
|
||||||
|
{
|
||||||
|
UINT32 ret;
|
||||||
|
ArchTickTimer *tick = &g_archTickTimer;
|
||||||
|
|
||||||
|
tick->freq = OS_SYS_CLOCK;
|
||||||
|
|
||||||
|
#if (LOSCFG_USE_SYSTEM_DEFINED_INTERRUPT == 1)
|
||||||
|
#if (LOSCFG_PLATFORM_HWI_WITH_ARG == 1)
|
||||||
|
OsSetVector(tick->irqNum, handler, NULL);
|
||||||
|
#else
|
||||||
|
OsSetVector(tick->irqNum, handler);
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
ret = SysTick_Config(LOSCFG_BASE_CORE_TICK_RESPONSE_MAX);
|
||||||
|
if (ret == 1) {
|
||||||
|
return LOS_ERRNO_TICK_PER_SEC_TOO_SMALL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC VOID SysTickReload(UINT64 nextResponseTime)
|
||||||
|
{
|
||||||
|
SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk;
|
||||||
|
SysTick->LOAD = (UINT32)(nextResponseTime - 1UL); /* set reload register */
|
||||||
|
SysTick->VAL = 0UL; /* Load the SysTick Counter Value */
|
||||||
|
NVIC_ClearPendingIRQ(SysTick_IRQn);
|
||||||
|
SysTick->CTRL |= SysTick_CTRL_ENABLE_Msk;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT64 SysTickCycleGet(UINT32 *period)
|
||||||
|
{
|
||||||
|
UINT32 hwCycle = 0;
|
||||||
|
UINT32 intSave = LOS_IntLock();
|
||||||
|
UINT32 val = SysTick->VAL;
|
||||||
|
*period = SysTick->LOAD;
|
||||||
|
if (val != 0) {
|
||||||
|
hwCycle = *period - val;
|
||||||
|
}
|
||||||
|
LOS_IntRestore(intSave);
|
||||||
|
return (UINT64)hwCycle;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC VOID SysTickLock(VOID)
|
||||||
|
{
|
||||||
|
SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC VOID SysTickUnlock(VOID)
|
||||||
|
{
|
||||||
|
SysTick->CTRL |= SysTick_CTRL_ENABLE_Msk;
|
||||||
|
}
|
||||||
|
|
||||||
|
ArchTickTimer *ArchSysTickTimerGet(VOID)
|
||||||
|
{
|
||||||
|
return &g_archTickTimer;
|
||||||
|
}
|
||||||
|
|
||||||
|
UINT32 ArchEnterSleep(VOID)
|
||||||
|
{
|
||||||
|
__DSB();
|
||||||
|
__WFI();
|
||||||
|
__ISB();
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
@@ -39,6 +39,7 @@ kernel_module(module_name) {
|
|||||||
"los_mpu.c",
|
"los_mpu.c",
|
||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
|
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
|
||||||
: "=&r"(val)
|
: "=&r"(val)
|
||||||
: "r"(v)
|
: "r"(v)
|
||||||
: "cc");
|
: "cc");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
__asm__ __volatile__("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (__builtin_expect(status != 0, 0));
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,9 +71,9 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -96,9 +88,9 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
__asm__ __volatile__("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -151,8 +143,8 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
__asm__ __volatile__("ldrex %0, [%3]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %4, [%3]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
@@ -186,12 +178,12 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
__asm__ __volatile__("ldrex %0, %2\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, %2\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M7 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -75,17 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -146,6 +136,19 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -35,8 +35,6 @@
|
|||||||
.fpu fpv5-d16
|
.fpu fpv5-d16
|
||||||
//;.arch_extension sec
|
//;.arch_extension sec
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.equ OS_NVIC_INT_CTRL, 0xE000ED04
|
.equ OS_NVIC_INT_CTRL, 0xE000ED04
|
||||||
.equ OS_NVIC_SYSPRI2, 0xE000ED20
|
.equ OS_NVIC_SYSPRI2, 0xE000ED20
|
||||||
.equ OS_NVIC_PENDSV_PRI, 0xF0F00000
|
.equ OS_NVIC_PENDSV_PRI, 0xF0F00000
|
||||||
@@ -46,6 +44,15 @@
|
|||||||
.section .text
|
.section .text
|
||||||
.thumb
|
.thumb
|
||||||
|
|
||||||
|
.macro SIGNAL_CONTEXT_RESTORE
|
||||||
|
push {r12, lr}
|
||||||
|
blx OsSignalTaskContextRestore
|
||||||
|
pop {r12, lr}
|
||||||
|
cmp r0, #0
|
||||||
|
mov r1, r0
|
||||||
|
bne SignalContextRestore
|
||||||
|
.endm
|
||||||
|
|
||||||
.type HalStartToRun, %function
|
.type HalStartToRun, %function
|
||||||
.global HalStartToRun
|
.global HalStartToRun
|
||||||
HalStartToRun:
|
HalStartToRun:
|
||||||
@@ -142,6 +149,8 @@ HalPendSV:
|
|||||||
cpsid I
|
cpsid I
|
||||||
|
|
||||||
HalTaskSwitch:
|
HalTaskSwitch:
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
push {r12, lr}
|
push {r12, lr}
|
||||||
blx OsSchedTaskSwitch
|
blx OsSchedTaskSwitch
|
||||||
pop {r12, lr}
|
pop {r12, lr}
|
||||||
@@ -167,9 +176,9 @@ TaskContextSwitch:
|
|||||||
|
|
||||||
ldr r0, [r5, #4]
|
ldr r0, [r5, #4]
|
||||||
str r0, [r5]
|
str r0, [r5]
|
||||||
|
|
||||||
ldr r1, [r0]
|
ldr r1, [r0]
|
||||||
|
|
||||||
|
SignalContextRestore:
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
vldmia r1!, {d8-d15}
|
vldmia r1!, {d8-d15}
|
||||||
|
|||||||
@@ -98,17 +98,85 @@ VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -123,8 +191,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,7 +226,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -224,8 +292,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -368,6 +436,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -384,6 +453,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -433,7 +503,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
|
: "=&r"(val)
|
||||||
__asm__ __volatile__("ldrex %0, [%1]\n"
|
: "r"(v)
|
||||||
: "=&r"(val)
|
: "cc");
|
||||||
: "r"(v)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,18 +55,14 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
UINT32 status;
|
UINT32 status;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
do {
|
||||||
|
asm volatile("ldrex %0, [%1]\n"
|
||||||
__asm__ __volatile__("1:ldrex %0, [%2]\n"
|
"strex %0, %2, [%1]\n"
|
||||||
" strex %0, %3, [%2]\n"
|
: "=&r"(status)
|
||||||
" teq %0, #0\n"
|
: "r"(v), "r"(setVal)
|
||||||
" beq 1b"
|
: "cc");
|
||||||
: "=&r"(status), "+m"(*v)
|
} while (status != 0);
|
||||||
: "r"(v), "r"(setVal)
|
|
||||||
: "cc");
|
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
@@ -79,13 +71,13 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"add %1, %1, %3\n"
|
"add %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(addVal)
|
: "r"(v), "r"(addVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -96,13 +88,13 @@ STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
|||||||
UINT32 status;
|
UINT32 status;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %1, [%2]\n"
|
asm volatile("ldrex %1, [%2]\n"
|
||||||
"sub %1, %1, %3\n"
|
"sub %1, %1, %3\n"
|
||||||
"strex %0, %1, [%2]"
|
"strex %0, %1, [%2]"
|
||||||
: "=&r"(status), "=&r"(val)
|
: "=&r"(status), "=&r"(val)
|
||||||
: "r"(v), "r"(subVal)
|
: "r"(v), "r"(subVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -151,12 +143,12 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("ldrex %0, [%3]\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
"strex %1, %4, [%3]"
|
"strex %1, %3, [%2]"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+m"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(v), "r"(val)
|
: "r"(v), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal;
|
return prevVal;
|
||||||
}
|
}
|
||||||
@@ -186,16 +178,16 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 status = 0;
|
UINT32 status = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
__asm__ __volatile__("1: ldrex %0, %2\n"
|
asm volatile("ldrex %0, [%2]\n"
|
||||||
" mov %1, #0\n"
|
"mov %1, #0\n"
|
||||||
" cmp %0, %3\n"
|
"cmp %0, %3\n"
|
||||||
" bne 2f\n"
|
"bne 1f\n"
|
||||||
" strex %1, %4, %2\n"
|
"strex %1, %4, [%2]\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal), "=&r"(status), "+Q"(*v)
|
: "=&r"(prevVal), "=&r"(status)
|
||||||
: "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
} while (__builtin_expect(status != 0, 0));
|
} while (status != 0);
|
||||||
|
|
||||||
return prevVal != oldVal;
|
return prevVal != oldVal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -109,7 +109,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000900
|
* Value: 0x02000900
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt number is valid. The value range of the interrupt number applicable for a Cortex-A7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
* Solution: Ensure that the interrupt number is valid.
|
||||||
|
* The value range of the interrupt number applicable for a Cortex-M7 platform is [OS_USER_HWI_MIN,OS_USER_HWI_MAX].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
#define OS_ERRNO_HWI_NUM_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x00)
|
||||||
|
|
||||||
@@ -159,7 +160,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000905
|
* Value: 0x02000905
|
||||||
*
|
*
|
||||||
* Solution: Ensure that the interrupt priority is valid. The value range of the interrupt priority applicable for a Cortex-A7 platform is [0,15].
|
* Solution: Ensure that the interrupt priority is valid.
|
||||||
|
* The value range of the interrupt priority applicable for a Cortex-M7 platform is [0,15].
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
#define OS_ERRNO_HWI_PRIO_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x05)
|
||||||
|
|
||||||
@@ -169,7 +171,8 @@ extern UINT32 _BootVectors[];
|
|||||||
*
|
*
|
||||||
* Value: 0x02000906
|
* Value: 0x02000906
|
||||||
*
|
*
|
||||||
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
* Solution: The interrupt creation mode can be only set to OS_HWI_MODE_COMM or
|
||||||
|
* OS_HWI_MODE_FAST of which the value can be 0 or 1.
|
||||||
*/
|
*/
|
||||||
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
#define OS_ERRNO_HWI_MODE_INVALID LOS_ERRNO_OS_ERROR(LOS_MOD_HWI, 0x06)
|
||||||
|
|
||||||
@@ -342,25 +345,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -75,17 +75,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
#if ((defined(__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
(defined(__FPU_USED) && (__FPU_USED == 1U)))
|
||||||
@@ -146,6 +136,19 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
return (VOID *)context;
|
return (VOID *)context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param)
|
||||||
|
{
|
||||||
|
UNUSED(stackTop);
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)stackPointer - sizeof(TaskContext));
|
||||||
|
(VOID)memset_s((VOID *)context, sizeof(TaskContext), 0, sizeof(TaskContext));
|
||||||
|
|
||||||
|
context->uwR0 = param;
|
||||||
|
context->uwPC = sigHandler;
|
||||||
|
context->uwxPSR = 0x01000000L; /* Thumb flag, always set 1 */
|
||||||
|
|
||||||
|
return (VOID *)context;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
LITE_OS_SEC_TEXT_INIT UINT32 ArchStartSchedule(VOID)
|
||||||
{
|
{
|
||||||
(VOID)LOS_IntLock();
|
(VOID)LOS_IntLock();
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
EXPORT ArchTaskSchedule
|
EXPORT ArchTaskSchedule
|
||||||
EXPORT HalPendSV
|
EXPORT HalPendSV
|
||||||
IMPORT OsSchedTaskSwitch
|
IMPORT OsSchedTaskSwitch
|
||||||
|
IMPORT OsSignalTaskContextRestore
|
||||||
IMPORT g_losTask
|
IMPORT g_losTask
|
||||||
|
|
||||||
OS_FPU_CPACR EQU 0xE000ED88
|
OS_FPU_CPACR EQU 0xE000ED88
|
||||||
@@ -52,6 +53,15 @@ OS_TASK_STATUS_RUNNING EQU 0x0010
|
|||||||
THUMB
|
THUMB
|
||||||
REQUIRE8
|
REQUIRE8
|
||||||
|
|
||||||
|
MACRO SIGNAL_CONTEXT_RESTORE
|
||||||
|
PUSH {R12, LR}
|
||||||
|
BLX OsSignalTaskContextRestore
|
||||||
|
POP {R12, LR}
|
||||||
|
CMP R0, #0
|
||||||
|
MOV R1, R0
|
||||||
|
BNE SignalContextRestore
|
||||||
|
ENDM
|
||||||
|
|
||||||
HalStartToRun
|
HalStartToRun
|
||||||
LDR R4, =OS_NVIC_SYSPRI2
|
LDR R4, =OS_NVIC_SYSPRI2
|
||||||
LDR R5, =OS_NVIC_PENDSV_PRI
|
LDR R5, =OS_NVIC_PENDSV_PRI
|
||||||
@@ -117,6 +127,8 @@ HalPendSV
|
|||||||
CPSID I
|
CPSID I
|
||||||
|
|
||||||
HalTaskSwitch
|
HalTaskSwitch
|
||||||
|
SIGNAL_CONTEXT_RESTORE
|
||||||
|
|
||||||
PUSH {R12, LR}
|
PUSH {R12, LR}
|
||||||
BLX OsSchedTaskSwitch
|
BLX OsSchedTaskSwitch
|
||||||
POP {R12, LR}
|
POP {R12, LR}
|
||||||
@@ -145,8 +157,11 @@ __DisabledFPU1
|
|||||||
|
|
||||||
LDR R0, [R5, #4]
|
LDR R0, [R5, #4]
|
||||||
STR R0, [R5]
|
STR R0, [R5]
|
||||||
|
|
||||||
LDR R1, [R0]
|
LDR R1, [R0]
|
||||||
|
|
||||||
|
SignalContextRestore
|
||||||
|
LDR.W R3, =OS_FPU_CPACR
|
||||||
|
LDR R3, [R3]
|
||||||
AND R3, R3, #OS_FPU_CPACR_ENABLE
|
AND R3, R3, #OS_FPU_CPACR_ENABLE
|
||||||
CMP R3, #OS_FPU_CPACR_ENABLE
|
CMP R3, #OS_FPU_CPACR_ENABLE
|
||||||
BNE __DisabledFPU2
|
BNE __DisabledFPU2
|
||||||
|
|||||||
@@ -105,17 +105,85 @@ WEAK VOID SysTick_Handler(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return __get_IPSR();
|
return __get_IPSR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_DisableIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPriority((IRQn_Type)hwiNum, priority);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_SetPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
NVIC_ClearPendingIRQ((IRQn_Type)hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -130,8 +198,8 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
/*lint -e529*/
|
/*lint -e529*/
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,7 +233,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -231,8 +299,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
NVIC_EnableIRQ((IRQn_Type)hwiNum);
|
HwiUnmask((IRQn_Type)hwiNum);
|
||||||
NVIC_SetPriority((IRQn_Type)hwiNum, hwiPrio);
|
HwiSetPriority((IRQn_Type)hwiNum, hwiPrio);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -375,6 +443,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
PRINTK("xPSR = 0x%x\n", excInfo->context->uwxPSR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -391,6 +460,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -440,7 +510,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcNvicDump();
|
OsExcNvicDump();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ kernel_module(module_name) {
|
|||||||
"los_interrupt.c",
|
"los_interrupt.c",
|
||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -60,9 +60,9 @@ STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
|||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
__asm__ __volatile__("stw %0, (%1, 0)"
|
__asm__ __volatile__("stw %1, (%0, 0)"
|
||||||
: "=&r"(setVal)
|
:
|
||||||
: "r"(v)
|
: "r"(v), "r"(setVal)
|
||||||
: "cc");
|
: "cc");
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
}
|
}
|
||||||
@@ -183,11 +183,11 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
|
|
||||||
__asm__ __volatile__("1: ldw %0, (%1)\n"
|
__asm__ __volatile__("ldw %0, (%1)\n"
|
||||||
" cmpne %0, %2\n"
|
"cmpne %0, %2\n"
|
||||||
" bt 2f\n"
|
"bt 1f\n"
|
||||||
" stw %3, (%1)\n"
|
"stw %3, (%1)\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal)
|
: "=&r"(prevVal)
|
||||||
: "r"(v), "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
|
|||||||
@@ -251,25 +251,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
*/
|
*/
|
||||||
extern VOID HalInterrupt(VOID);
|
extern VOID HalInterrupt(VOID);
|
||||||
|
|
||||||
/* *
|
|
||||||
* @ingroup los_arch_interrupt
|
|
||||||
* @brief: Get an interrupt number.
|
|
||||||
*
|
|
||||||
* @par Description:
|
|
||||||
* This API is used to get the current interrupt number.
|
|
||||||
*
|
|
||||||
* @attention:
|
|
||||||
* <ul><li>None.</li></ul>
|
|
||||||
*
|
|
||||||
* @param: None.
|
|
||||||
*
|
|
||||||
* @retval: Interrupt Indexes number.
|
|
||||||
* @par Dependency:
|
|
||||||
* <ul><li>los_arch_interrupt.h: the header file that contains the API declaration.</li></ul>
|
|
||||||
* @see None.
|
|
||||||
*/
|
|
||||||
extern UINT32 HalIntNumGet(VOID);
|
|
||||||
|
|
||||||
/* *
|
/* *
|
||||||
* @ingroup los_arch_interrupt
|
* @ingroup los_arch_interrupt
|
||||||
* @brief: Default vector handling function.
|
* @brief: Default vector handling function.
|
||||||
|
|||||||
@@ -77,17 +77,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
errno_t result;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
context->R0 = taskID;
|
context->R0 = taskID;
|
||||||
context->R1 = 0x01010101L;
|
context->R1 = 0x01010101L;
|
||||||
|
|||||||
@@ -117,64 +117,79 @@ UINT32 ArchIntLocked(VOID)
|
|||||||
return !(intSave & (1 << INT_OFFSET));
|
return !(intSave & (1 << INT_OFFSET));
|
||||||
}
|
}
|
||||||
|
|
||||||
UINT32 HalIrqUnmask(UINT32 hwiNum)
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
if (!HwiNumValid(hwiNum)) {
|
if (!HwiNumValid(hwiNum)) {
|
||||||
return LOS_ERRNO_HWI_NUM_INVALID;
|
return LOS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
VIC_REG->ISER[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
VIC_REG->ISER[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
||||||
VIC_REG->ISSR[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
VIC_REG->ISSR[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
UINT32 HalIrqSetPriority(UINT32 hwiNum, UINT8 priority)
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
if (!HwiNumValid(hwiNum)) {
|
if (!HwiNumValid(hwiNum)) {
|
||||||
return LOS_ERRNO_HWI_NUM_INVALID;
|
return LOS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!HWI_PRI_VALID(priority)) {
|
if (!HWI_PRI_VALID(priority)) {
|
||||||
return OS_ERRNO_HWI_PRIO_INVALID;
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
VIC_REG->IPR[hwiNum / PRI_PER_REG] |= (((priority << PRI_OFF_IN_REG) << (hwiNum % PRI_PER_REG)) * PRI_OFF_PER_INT);
|
VIC_REG->IPR[hwiNum / PRI_PER_REG] |= (((priority << PRI_OFF_IN_REG) << (hwiNum % PRI_PER_REG)) * PRI_OFF_PER_INT);
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
UINT32 HalIrqMask(HWI_HANDLE_T hwiNum)
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
if (!HwiNumValid(hwiNum)) {
|
if (!HwiNumValid(hwiNum)) {
|
||||||
return LOS_ERRNO_HWI_NUM_INVALID;
|
return LOS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
VIC_REG->ICER[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
VIC_REG->ICER[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
UINT32 HalIrqPending(UINT32 hwiNum)
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
if (!HwiNumValid(hwiNum)) {
|
if (!HwiNumValid(hwiNum)) {
|
||||||
return LOS_ERRNO_HWI_NUM_INVALID;
|
return LOS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
VIC_REG->ISPR[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
VIC_REG->ISPR[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
UINT32 HalIrqClear(UINT32 hwiNum)
|
STATIC UINT32 HwiClear(HWI_HANDLE_T hwiNum)
|
||||||
{
|
{
|
||||||
if (!HwiNumValid(hwiNum)) {
|
if (!HwiNumValid(hwiNum)) {
|
||||||
return LOS_ERRNO_HWI_NUM_INVALID;
|
return LOS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
VIC_REG->ICPR[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
VIC_REG->ICPR[hwiNum / OS_SYS_VECTOR_CNT] = (UINT32)(1UL << (hwiNum % OS_SYS_VECTOR_CNT));
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -207,7 +222,7 @@ VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector, VOID *arg)
|
|||||||
g_hwiForm[num + OS_SYS_VECTOR_CNT] = (HWI_PROC_FUNC)IrqEntry;
|
g_hwiForm[num + OS_SYS_VECTOR_CNT] = (HWI_PROC_FUNC)IrqEntry;
|
||||||
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT].pfnHandler = vector;
|
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT].pfnHandler = vector;
|
||||||
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT].pParm = arg;
|
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT].pParm = arg;
|
||||||
HalIrqUnmask(num);
|
HwiUnmask(num);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -227,23 +242,32 @@ VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector)
|
|||||||
if ((num + OS_SYS_VECTOR_CNT) < OS_VECTOR_CNT) {
|
if ((num + OS_SYS_VECTOR_CNT) < OS_VECTOR_CNT) {
|
||||||
g_hwiForm[num + OS_SYS_VECTOR_CNT] = IrqEntry;
|
g_hwiForm[num + OS_SYS_VECTOR_CNT] = IrqEntry;
|
||||||
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT] = vector;
|
g_hwiHandlerForm[num + OS_SYS_VECTOR_CNT] = vector;
|
||||||
HalIrqUnmask(num);
|
HwiUnmask(num);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
return HalGetPsr();
|
return HalGetPsr();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
inline UINT32 ArchIsIntActive(VOID)
|
inline UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -258,7 +282,7 @@ inline UINT32 ArchIsIntActive(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
LITE_OS_SEC_TEXT_MINOR VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
irqNum = (irqNum >> PSR_VEC_OFFSET) & MASK_8_BITS;
|
irqNum = (irqNum >> PSR_VEC_OFFSET) & MASK_8_BITS;
|
||||||
PRINT_ERR("%s irqnum:%x\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%x\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
@@ -290,7 +314,7 @@ LITE_OS_SEC_TEXT VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
hwiIndex = (hwiIndex >> PSR_VEC_OFFSET) & MASK_8_BITS;
|
hwiIndex = (hwiIndex >> PSR_VEC_OFFSET) & MASK_8_BITS;
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -355,8 +379,8 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
HalIrqUnmask(hwiNum);
|
HwiUnmask(hwiNum);
|
||||||
(VOID)HalIrqSetPriority(hwiNum, (UINT8)hwiPrio);
|
(VOID)HwiSetPriority(hwiNum, (UINT8)hwiPrio);
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
@@ -376,7 +400,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
if (hwiNum >= OS_HWI_MAX_NUM) {
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
HalIrqMask(hwiNum);
|
HwiMask(hwiNum);
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
g_hwiHandlerForm[hwiNum + OS_SYS_VECTOR_CNT] = 0;
|
g_hwiHandlerForm[hwiNum + OS_SYS_VECTOR_CNT] = 0;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
@@ -442,6 +466,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
excContext->EPC);
|
excContext->EPC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -458,6 +483,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -507,7 +533,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -42,8 +42,6 @@ typedef struct {
|
|||||||
UINT32 CALIB;
|
UINT32 CALIB;
|
||||||
} CORE_TIM_TYPE;
|
} CORE_TIM_TYPE;
|
||||||
|
|
||||||
#define OS_CYCLE_PER_TICK (OS_SYS_CLOCK / LOSCFG_BASE_CORE_TICK_PER_SECOND)
|
|
||||||
|
|
||||||
#define CORE_TIM_BASE (0xE000E010UL)
|
#define CORE_TIM_BASE (0xE000E010UL)
|
||||||
#define SysTick ((CORE_TIM_TYPE *)CORE_TIM_BASE)
|
#define SysTick ((CORE_TIM_TYPE *)CORE_TIM_BASE)
|
||||||
|
|
||||||
|
|||||||
1
arch/include/los_context.h
Executable file → Normal file
1
arch/include/los_context.h
Executable file → Normal file
@@ -106,6 +106,7 @@ LITE_OS_SEC_TEXT_MINOR NORETURN VOID ArchSysExit(VOID);
|
|||||||
VOID ArchTaskSchedule(VOID);
|
VOID ArchTaskSchedule(VOID);
|
||||||
|
|
||||||
UINT32 ArchStartSchedule(VOID);
|
UINT32 ArchStartSchedule(VOID);
|
||||||
|
VOID *ArchSignalContextInit(VOID *stackPointer, VOID *stackTop, UINTPTR sigHandler, UINT32 param);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#if __cplusplus
|
#if __cplusplus
|
||||||
|
|||||||
@@ -54,6 +54,17 @@ typedef VOID (*HWI_PROC_FUNC)(VOID *parm);
|
|||||||
typedef VOID (*HWI_PROC_FUNC)(void);
|
typedef VOID (*HWI_PROC_FUNC)(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
UINT32 (*triggerIrq)(HWI_HANDLE_T hwiNum);
|
||||||
|
UINT32 (*clearIrq)(HWI_HANDLE_T hwiNum);
|
||||||
|
UINT32 (*enableIrq)(HWI_HANDLE_T hwiNum);
|
||||||
|
UINT32 (*disableIrq)(HWI_HANDLE_T hwiNum);
|
||||||
|
UINT32 (*setIrqPriority)(HWI_HANDLE_T hwiNum, UINT8 priority);
|
||||||
|
UINT32 (*getCurIrqNum)(VOID);
|
||||||
|
} HwiControllerOps;
|
||||||
|
|
||||||
|
extern HwiControllerOps g_archHwiOps;
|
||||||
|
|
||||||
/* stack protector */
|
/* stack protector */
|
||||||
extern UINT32 __stack_chk_guard;
|
extern UINT32 __stack_chk_guard;
|
||||||
|
|
||||||
@@ -64,6 +75,11 @@ UINT32 ArchIsIntActive(VOID);
|
|||||||
#define OS_INT_INACTIVE (!(OS_INT_ACTIVE))
|
#define OS_INT_INACTIVE (!(OS_INT_ACTIVE))
|
||||||
#define LOS_HwiCreate ArchHwiCreate
|
#define LOS_HwiCreate ArchHwiCreate
|
||||||
#define LOS_HwiDelete ArchHwiDelete
|
#define LOS_HwiDelete ArchHwiDelete
|
||||||
|
#define LOS_HwiTrigger ArchIntTrigger
|
||||||
|
#define LOS_HwiEnable ArchIntEnable
|
||||||
|
#define LOS_HwiDisable ArchIntDisable
|
||||||
|
#define LOS_HwiClear ArchIntClear
|
||||||
|
#define LOS_HwiSetPriority ArchIntSetPriority
|
||||||
|
|
||||||
UINT32 ArchIntLock(VOID);
|
UINT32 ArchIntLock(VOID);
|
||||||
#define LOS_IntLock ArchIntLock
|
#define LOS_IntLock ArchIntLock
|
||||||
@@ -74,6 +90,8 @@ VOID ArchIntRestore(UINT32 intSave);
|
|||||||
UINT32 ArchIntUnLock(VOID);
|
UINT32 ArchIntUnLock(VOID);
|
||||||
#define LOS_IntUnLock ArchIntUnLock
|
#define LOS_IntUnLock ArchIntUnLock
|
||||||
|
|
||||||
|
#define LOS_HwiOpsGet ArchIntOpsGet
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup los_interrupt
|
* @ingroup los_interrupt
|
||||||
* @brief Delete hardware interrupt.
|
* @brief Delete hardware interrupt.
|
||||||
@@ -135,6 +153,51 @@ UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
HWI_PROC_FUNC handler,
|
HWI_PROC_FUNC handler,
|
||||||
HWI_ARG_T arg);
|
HWI_ARG_T arg);
|
||||||
|
|
||||||
|
STATIC INLINE UINT32 ArchIntTrigger(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (g_archHwiOps.triggerIrq == NULL) {
|
||||||
|
return LOS_NOK;
|
||||||
|
}
|
||||||
|
return g_archHwiOps.triggerIrq(hwiNum);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE UINT32 ArchIntEnable(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (g_archHwiOps.enableIrq == NULL) {
|
||||||
|
return LOS_NOK;
|
||||||
|
}
|
||||||
|
return g_archHwiOps.enableIrq(hwiNum);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE UINT32 ArchIntDisable(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (g_archHwiOps.disableIrq == NULL) {
|
||||||
|
return LOS_NOK;
|
||||||
|
}
|
||||||
|
return g_archHwiOps.disableIrq(hwiNum);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE UINT32 ArchIntClear(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (g_archHwiOps.clearIrq == NULL) {
|
||||||
|
return LOS_NOK;
|
||||||
|
}
|
||||||
|
return g_archHwiOps.clearIrq(hwiNum);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE UINT32 ArchIntSetPriority(HWI_HANDLE_T hwiNum, HWI_PRIOR_T priority)
|
||||||
|
{
|
||||||
|
if (g_archHwiOps.setIrqPriority == NULL) {
|
||||||
|
return LOS_NOK;
|
||||||
|
}
|
||||||
|
return g_archHwiOps.setIrqPriority(hwiNum, priority);
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC INLINE HwiControllerOps *ArchIntOpsGet(VOID)
|
||||||
|
{
|
||||||
|
return &g_archHwiOps;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#if __cplusplus
|
#if __cplusplus
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ typedef struct {
|
|||||||
} MPU_CFG_PARA;
|
} MPU_CFG_PARA;
|
||||||
|
|
||||||
VOID ArchMpuEnable(UINT32 defaultRegionEnable);
|
VOID ArchMpuEnable(UINT32 defaultRegionEnable);
|
||||||
VOID ArchMpuDisable();
|
VOID ArchMpuDisable(VOID);
|
||||||
UINT32 ArchMpuSetRegion(UINT32 regionId, MPU_CFG_PARA *para);
|
UINT32 ArchMpuSetRegion(UINT32 regionId, MPU_CFG_PARA *para);
|
||||||
UINT32 ArchMpuDisableRegion(UINT32 regionId);
|
UINT32 ArchMpuDisableRegion(UINT32 regionId);
|
||||||
INT32 ArchMpuUnusedRegionGet(VOID);
|
INT32 ArchMpuUnusedRegionGet(VOID);
|
||||||
|
|||||||
@@ -187,10 +187,10 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
__asm__ __volatile__("1: lw %0, 0(%1)\n"
|
__asm__ __volatile__("lw %0, 0(%1)\n"
|
||||||
" bne %0, %2, 2f\n"
|
"bne %0, %2, 1f\n"
|
||||||
" amoswap.w %0, %3, (%1)\n"
|
"amoswap.w %0, %3, (%1)\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal)
|
: "=&r"(prevVal)
|
||||||
: "r"(v), "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "memory");
|
: "memory");
|
||||||
|
|||||||
@@ -45,10 +45,7 @@ LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VO
|
|||||||
{
|
{
|
||||||
UINT32 index;
|
UINT32 index;
|
||||||
UINT8 *stk = 0;
|
UINT8 *stk = 0;
|
||||||
TaskContext *context = NULL;
|
TaskContext *context = NULL;
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
stk = ((UINT8 *)topStack) + stackSize + sizeof(STACK_TYPE);
|
stk = ((UINT8 *)topStack) + stackSize + sizeof(STACK_TYPE);
|
||||||
stk = (UINT8 *)ALIGN_DOWN((uintptr_t)stk, REGBYTES);
|
stk = (UINT8 *)ALIGN_DOWN((uintptr_t)stk, REGBYTES);
|
||||||
|
|||||||
@@ -39,7 +39,43 @@
|
|||||||
|
|
||||||
UINT32 g_intCount = 0;
|
UINT32 g_intCount = 0;
|
||||||
|
|
||||||
// LosExcInfo g_excInfo;
|
STATIC UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
ECLIC_EnableIRQ(hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
ECLIC_DisableIRQ(hwiNum);
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC UINT32 HwiSetPriority(HWI_HANDLE_T hwiNum, UINT8 priority)
|
||||||
|
{
|
||||||
|
if (hwiNum >= OS_HWI_MAX_NUM) {
|
||||||
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (priority > OS_HWI_PRIO_HIGHEST || priority < OS_HWI_PRIO_LOWEST) {
|
||||||
|
return OS_ERRNO_HWI_PRIO_INVALID;
|
||||||
|
}
|
||||||
|
|
||||||
|
ECLIC_SetPriorityIRQ(hwiNum, (hwiPrio & 0xffff));
|
||||||
|
|
||||||
|
return LOS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
||||||
{
|
{
|
||||||
// already setup interrupt vectors
|
// already setup interrupt vectors
|
||||||
@@ -59,11 +95,11 @@ LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
|||||||
Output : None
|
Output : None
|
||||||
Return : LOS_OK on success or error code on failure
|
Return : LOS_OK on success or error code on failure
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
||||||
HWI_PRIOR_T hwiPrio,
|
HWI_PRIOR_T hwiPrio,
|
||||||
HWI_MODE_T mode,
|
HWI_MODE_T mode,
|
||||||
HWI_PROC_FUNC handler,
|
HWI_PROC_FUNC handler,
|
||||||
HWI_ARG_T arg)
|
HWI_ARG_T arg)
|
||||||
{
|
{
|
||||||
if (hwiNum > SOC_INT_MAX) {
|
if (hwiNum > SOC_INT_MAX) {
|
||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
@@ -93,7 +129,7 @@ LITE_OS_SEC_TEXT_INIT VOID HalHwiInit(VOID)
|
|||||||
ECLIC_SetVector(hwiNum, (rv_csr_t)handler);
|
ECLIC_SetVector(hwiNum, (rv_csr_t)handler);
|
||||||
}
|
}
|
||||||
/* enable interrupt */
|
/* enable interrupt */
|
||||||
ECLIC_EnableIRQ(hwiNum);
|
HwiUnmask(hwiNum);
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -108,7 +144,7 @@ LITE_OS_SEC_TEXT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
// change func to default func
|
// change func to default func
|
||||||
ECLIC_SetVector(hwiNum, (rv_csr_t)HalHwiDefaultHandler);
|
ECLIC_SetVector(hwiNum, (rv_csr_t)HalHwiDefaultHandler);
|
||||||
// disable interrupt
|
// disable interrupt
|
||||||
ECLIC_DisableIRQ(hwiNum);
|
HwiMask(hwiNum);
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -182,3 +218,8 @@ __attribute__((always_inline)) inline UINT32 ArchIsIntActive(VOID)
|
|||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const HwiControllerOps g_archHwiOps = {
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.setIrqPriority = HwiSetPriority,
|
||||||
|
};
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ kernel_module(module_name) {
|
|||||||
"los_interrupt.c",
|
"los_interrupt.c",
|
||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -187,10 +187,10 @@ STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 o
|
|||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
__asm__ __volatile__("1: lw %0, 0(%1)\n"
|
__asm__ __volatile__("lw %0, 0(%1)\n"
|
||||||
" bne %0, %2, 2f\n"
|
"bne %0, %2, 1f\n"
|
||||||
" amoswap.w %0, %3, (%1)\n"
|
"amoswap.w %0, %3, (%1)\n"
|
||||||
"2:"
|
"1:"
|
||||||
: "=&r"(prevVal)
|
: "=&r"(prevVal)
|
||||||
: "r"(v), "r"(oldVal), "r"(val)
|
: "r"(v), "r"(oldVal), "r"(val)
|
||||||
: "memory");
|
: "memory");
|
||||||
|
|||||||
@@ -81,16 +81,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
UINT32 index;
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
TaskContext *context = NULL;
|
|
||||||
|
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
for (index = 1; index < (stackSize / sizeof(UINT32)); index++) {
|
|
||||||
*((UINT32 *)topStack + index) = OS_TASK_STACK_INIT;
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)(((UINTPTR)topStack + stackSize) - sizeof(TaskContext));
|
|
||||||
|
|
||||||
context->mstatus = RISCV_MSTATUS_MPP | RISCV_MSTATUS_MPIE;
|
context->mstatus = RISCV_MSTATUS_MPP | RISCV_MSTATUS_MPIE;
|
||||||
context->mepc = (UINT32)(UINTPTR)OsTaskEntry;
|
context->mepc = (UINT32)(UINTPTR)OsTaskEntry;
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ kernel_module(module_name) {
|
|||||||
"los_timer.c",
|
"los_timer.c",
|
||||||
"los_window.S",
|
"los_window.S",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -43,15 +43,11 @@ extern "C" {
|
|||||||
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
|
||||||
|
|
||||||
__asm__ __volatile__("l32ai %0, %1, 0\n"
|
__asm__ __volatile__("l32ai %0, %1, 0\n"
|
||||||
: "=&a"(val)
|
: "=&a"(val)
|
||||||
: "a"(v)
|
: "a"(v)
|
||||||
: "memory");
|
: "memory");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@@ -59,34 +55,30 @@ STATIC INLINE INT32 ArchAtomicRead(const Atomic *v)
|
|||||||
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
STATIC INLINE VOID ArchAtomicSet(Atomic *v, INT32 setVal)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("1:l32ai %0, %2, 0\n"
|
||||||
|
" wsr %0, SCOMPARE1\n"
|
||||||
__asm__ __volatile__("l32ai %0, %2, 0\n"
|
" s32c1i %3, %1\n"
|
||||||
"wsr %0, SCOMPARE1\n"
|
" bne %3, %0, 1b"
|
||||||
"s32c1i %3, %1"
|
|
||||||
: "=&a"(val), "+m"(*v)
|
: "=&a"(val), "+m"(*v)
|
||||||
: "a"(v), "a"(setVal)
|
: "a"(v), "a"(setVal)
|
||||||
: "memory");
|
: "memory");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
INT32 tmp;
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("1:l32ai %0, %3, 0\n"
|
||||||
|
" wsr %0, SCOMPARE1\n"
|
||||||
__asm__ __volatile__("l32ai %0, %2, 0\n"
|
" mov %1, %0\n"
|
||||||
"wsr %0, SCOMPARE1\n"
|
" add %0, %0, %4\n"
|
||||||
"add %0, %0, %3\n"
|
" s32c1i %0, %2\n"
|
||||||
"s32c1i %0, %1\n"
|
" bne %0, %1, 1b"
|
||||||
: "=&a"(val), "+m"(*v)
|
: "=&a"(val), "=&a"(tmp), "+m"(*v)
|
||||||
: "a"(v), "a"(addVal)
|
: "a"(v), "a"(addVal)
|
||||||
: "memory");
|
: "memory");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return *v;
|
return *v;
|
||||||
}
|
}
|
||||||
@@ -94,18 +86,17 @@ STATIC INLINE INT32 ArchAtomicAdd(Atomic *v, INT32 addVal)
|
|||||||
STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
STATIC INLINE INT32 ArchAtomicSub(Atomic *v, INT32 subVal)
|
||||||
{
|
{
|
||||||
INT32 val;
|
INT32 val;
|
||||||
UINT32 intSave;
|
INT32 tmp;
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("1:l32ai %0, %3, 0\n"
|
||||||
|
" wsr %0, SCOMPARE1\n"
|
||||||
__asm__ __volatile__("l32ai %0, %2, 0\n"
|
" mov %1, %0\n"
|
||||||
"wsr %0, SCOMPARE1\n"
|
" sub %0, %0, %4\n"
|
||||||
"sub %0, %0, %3\n"
|
" s32c1i %0, %2\n"
|
||||||
"s32c1i %0, %1\n"
|
" bne %0, %1, 1b"
|
||||||
: "=&a"(val), "+m"(*v)
|
: "=&a"(val), "=&a"(tmp), "+m"(*v)
|
||||||
: "a"(v), "a"(subVal)
|
: "a"(v), "a"(subVal)
|
||||||
: "memory");
|
: "memory");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
return *v;
|
return *v;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -150,17 +141,16 @@ STATIC INLINE INT32 ArchAtomicDecRet(Atomic *v)
|
|||||||
STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
||||||
{
|
{
|
||||||
INT32 prevVal = 0;
|
INT32 prevVal = 0;
|
||||||
UINT32 intSave;
|
INT32 tmp;
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
__asm__ __volatile__("1:l32ai %0, %3, 0\n"
|
||||||
|
" wsr %0, SCOMPARE1\n"
|
||||||
__asm__ __volatile__("l32ai %0, %2, 0\n"
|
" mov %1, %0\n"
|
||||||
"wsr %0, SCOMPARE1\n"
|
" s32c1i %4, %2\n"
|
||||||
"s32c1i %3, %1\n"
|
" bne %4, %1, 1b"
|
||||||
: "=&a"(prevVal), "+m"(*v)
|
: "=&a"(prevVal), "=&a"(tmp), "+m"(*v)
|
||||||
: "a"(v), "a"(val)
|
: "a"(v), "a"(val)
|
||||||
: "memory");
|
: "memory");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return prevVal;
|
return prevVal;
|
||||||
}
|
}
|
||||||
@@ -187,19 +177,15 @@ STATIC INLINE INT32 ArchAtomicXchg32bits(volatile INT32 *v, INT32 val)
|
|||||||
STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 oldVal)
|
STATIC INLINE BOOL ArchAtomicCmpXchg32bits(volatile INT32 *v, INT32 val, INT32 oldVal)
|
||||||
{
|
{
|
||||||
INT32 prevVal = 0;
|
INT32 prevVal = 0;
|
||||||
UINT32 intSave;
|
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
|
||||||
|
|
||||||
__asm__ __volatile__("l32ai %0, %2, 0\n"
|
__asm__ __volatile__("l32ai %0, %2, 0\n"
|
||||||
"wsr %0, SCOMPARE1\n"
|
"wsr %0, SCOMPARE1\n"
|
||||||
"bne %0, %3, 2f\n"
|
"bne %0, %3, 1f\n"
|
||||||
"s32c1i %4, %1\n"
|
"s32c1i %4, %1\n"
|
||||||
"2:\n"
|
"1:"
|
||||||
: "=&a"(prevVal), "+m"(*v)
|
: "=&a"(prevVal), "+m"(*v)
|
||||||
: "a"(v), "a"(oldVal), "a"(val)
|
: "a"(v), "a"(oldVal), "a"(val)
|
||||||
: "cc");
|
: "cc");
|
||||||
LOS_IntRestore(intSave);
|
|
||||||
|
|
||||||
return prevVal != oldVal;
|
return prevVal != oldVal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -214,7 +214,6 @@ extern VOID OsSetVector(UINT32 num, HWI_PROC_FUNC vector);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
VOID HalInterrupt(VOID);
|
VOID HalInterrupt(VOID);
|
||||||
UINT32 HalIntNumGet(VOID);
|
|
||||||
VOID HalHwiDefaultHandler(VOID);
|
VOID HalHwiDefaultHandler(VOID);
|
||||||
VOID HalExcHandleEntry(UINTPTR faultAddr, EXC_CONTEXT_S *excBufAddr, UINT32 type);
|
VOID HalExcHandleEntry(UINTPTR faultAddr, EXC_CONTEXT_S *excBufAddr, UINT32 type);
|
||||||
VOID HalHwiInit(VOID);
|
VOID HalHwiInit(VOID);
|
||||||
|
|||||||
@@ -142,6 +142,11 @@ extern "C" {
|
|||||||
#else
|
#else
|
||||||
#define CONTEXT_SIZE 112
|
#define CONTEXT_SIZE 112
|
||||||
#endif
|
#endif
|
||||||
|
#define LEVEL1_TINRERRUPT_CAUSE 4
|
||||||
|
#define ALLOC_CAUSE 5
|
||||||
|
#define LOWBIT_CALLNMODE 30
|
||||||
|
#define HIGHBIT_CALLNMODE 31
|
||||||
|
#define PS_OWB_SHIFT 8
|
||||||
#define EXCCAUSE_LEVEL1INTERRUPT 4
|
#define EXCCAUSE_LEVEL1INTERRUPT 4
|
||||||
#define XTENSA_LOGREG_NUM 16
|
#define XTENSA_LOGREG_NUM 16
|
||||||
#define INDEX_OF_SP 1
|
#define INDEX_OF_SP 1
|
||||||
|
|||||||
@@ -110,17 +110,8 @@ LITE_OS_SEC_TEXT_MINOR VOID ArchSysExit(VOID)
|
|||||||
|
|
||||||
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
LITE_OS_SEC_TEXT_INIT VOID *ArchTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack)
|
||||||
{
|
{
|
||||||
TaskContext *context = NULL;
|
|
||||||
errno_t result;
|
errno_t result;
|
||||||
|
TaskContext *context = (TaskContext *)((UINTPTR)topStack + stackSize - sizeof(TaskContext));
|
||||||
/* initialize the task stack, write magic num to stack top */
|
|
||||||
result = memset_s(topStack, stackSize, (INT32)(OS_TASK_STACK_INIT & 0xFF), stackSize);
|
|
||||||
if (result != EOK) {
|
|
||||||
printf("memset_s is failed:%s[%d]\r\n", __FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
*((UINT32 *)(topStack)) = OS_TASK_MAGIC_WORD;
|
|
||||||
|
|
||||||
context = (TaskContext *)((((UINTPTR)topStack + stackSize) - sizeof(TaskContext)));
|
|
||||||
|
|
||||||
/* initialize the task context */
|
/* initialize the task context */
|
||||||
result = memcpy_s(context, sizeof(TaskContext), g_stackDefault, sizeof(TaskContext));
|
result = memcpy_s(context, sizeof(TaskContext), g_stackDefault, sizeof(TaskContext));
|
||||||
|
|||||||
@@ -98,9 +98,6 @@ NMIExceptionHandler:
|
|||||||
.literal_position
|
.literal_position
|
||||||
DoubleExceptionHandler:
|
DoubleExceptionHandler:
|
||||||
|
|
||||||
movi a0, INT_MASK | USER_VECTOR_MODE | WOE_ENABLE
|
|
||||||
wsr a0, PS
|
|
||||||
rsr a2, EXCCAUSE
|
|
||||||
call0 UserException
|
call0 UserException
|
||||||
|
|
||||||
.end literal_prefix
|
.end literal_prefix
|
||||||
@@ -145,11 +142,18 @@ UserExceptionHandler:
|
|||||||
UserException:
|
UserException:
|
||||||
|
|
||||||
rsr a0, EXCCAUSE
|
rsr a0, EXCCAUSE
|
||||||
beqi a0, 4, InterruptEntry1
|
beqi a0, LEVEL1_TINRERRUPT_CAUSE, InterruptEntry1
|
||||||
|
beqi a0, ALLOC_CAUSE, AllocHandel
|
||||||
call0 HandleEntry
|
call0 HandleEntry
|
||||||
1:
|
1:
|
||||||
j 1b
|
j 1b
|
||||||
|
|
||||||
|
.section .iram,"ax"
|
||||||
|
.type AllocHandel,@function
|
||||||
|
.align 4
|
||||||
|
AllocHandel:
|
||||||
|
call0 AllocHandelEntry
|
||||||
|
|
||||||
.section .iram,"ax"
|
.section .iram,"ax"
|
||||||
.type InterruptEntry1,@function
|
.type InterruptEntry1,@function
|
||||||
.align 4
|
.align 4
|
||||||
@@ -361,6 +365,36 @@ UnderFlowGroup3:
|
|||||||
l32i a4, a4, 0
|
l32i a4, a4, 0
|
||||||
rfwu
|
rfwu
|
||||||
|
|
||||||
|
.section .userVector,"ax"
|
||||||
|
.type AllocHandelEntry,@function
|
||||||
|
.align 4
|
||||||
|
AllocHandelEntry:
|
||||||
|
|
||||||
|
addi a1, a1, -(CONTEXT_OFF_A4 - CONTEXT_OFF_A0)
|
||||||
|
s32i a2, a1, (CONTEXT_OFF_A2 - CONTEXT_OFF_A0)
|
||||||
|
s32i a3, a1, (CONTEXT_OFF_A3 - CONTEXT_OFF_A0)
|
||||||
|
|
||||||
|
rsr a0, PS
|
||||||
|
rsr a2, WINDOWBASE
|
||||||
|
extui a3, a0, PS_OWB_SHIFT, WINDOWBASEBITS
|
||||||
|
xor a3, a3, a2
|
||||||
|
slli a3, a3, PS_OWB_SHIFT
|
||||||
|
xor a0, a0, a3
|
||||||
|
wsr a0, PS
|
||||||
|
rsr a0, EXCSAVE1
|
||||||
|
|
||||||
|
l32i a2, a1, (CONTEXT_OFF_A2 - CONTEXT_OFF_A0)
|
||||||
|
l32i a3, a1, (CONTEXT_OFF_A3 - CONTEXT_OFF_A0)
|
||||||
|
addi a1, a1, (CONTEXT_OFF_A4 - CONTEXT_OFF_A0)
|
||||||
|
rsync
|
||||||
|
|
||||||
|
rotw -1
|
||||||
|
bbci a4, HIGHBIT_CALLNMODE, UnderFlowGroup1
|
||||||
|
rotw -1
|
||||||
|
bbci a8, LOWBIT_CALLNMODE, UnderFlowGroup2
|
||||||
|
rotw -1
|
||||||
|
j UnderFlowGroup3
|
||||||
|
|
||||||
.global EnableExceptionInterface
|
.global EnableExceptionInterface
|
||||||
.section .iram,"ax"
|
.section .iram,"ax"
|
||||||
.type EnableExceptionInterface,@function
|
.type EnableExceptionInterface,@function
|
||||||
|
|||||||
@@ -142,6 +142,7 @@ UINT32 ArchIntUnLock(VOID)
|
|||||||
STATIC INLINE UINT32 ArchIntLocked(VOID)
|
STATIC INLINE UINT32 ArchIntLocked(VOID)
|
||||||
{
|
{
|
||||||
UINT32 intSave;
|
UINT32 intSave;
|
||||||
|
|
||||||
__asm__ volatile("rsr %0, ps " : "=r"(intSave) : : "memory");
|
__asm__ volatile("rsr %0, ps " : "=r"(intSave) : : "memory");
|
||||||
|
|
||||||
return (intSave & SPREG_PS_DI_MASK);
|
return (intSave & SPREG_PS_DI_MASK);
|
||||||
@@ -151,7 +152,7 @@ STATIC INLINE UINT32 ArchIntLocked(VOID)
|
|||||||
* @ingroup los_hwi
|
* @ingroup los_hwi
|
||||||
* Trigger the interrupt
|
* Trigger the interrupt
|
||||||
*/
|
*/
|
||||||
UINT32 HalIrqPending(HWI_HANDLE_T hwiNum)
|
STATIC UINT32 HwiPending(HWI_HANDLE_T hwiNum)
|
||||||
{
|
{
|
||||||
if (!HwiNumValid(hwiNum)) {
|
if (!HwiNumValid(hwiNum)) {
|
||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
@@ -162,11 +163,7 @@ UINT32 HalIrqPending(HWI_HANDLE_T hwiNum)
|
|||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* *
|
UINT32 HwiUnmask(HWI_HANDLE_T hwiNum)
|
||||||
* @ingroup los_hwi
|
|
||||||
* Unmask the interrupt
|
|
||||||
*/
|
|
||||||
UINT32 HalIrqUnmask(HWI_HANDLE_T hwiNum)
|
|
||||||
{
|
{
|
||||||
UINT32 ier;
|
UINT32 ier;
|
||||||
|
|
||||||
@@ -180,11 +177,7 @@ UINT32 HalIrqUnmask(HWI_HANDLE_T hwiNum)
|
|||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* *
|
UINT32 HwiMask(HWI_HANDLE_T hwiNum)
|
||||||
* @ingroup los_hwi
|
|
||||||
* Mask the interrupt
|
|
||||||
*/
|
|
||||||
UINT32 HalIrqMask(HWI_HANDLE_T hwiNum)
|
|
||||||
{
|
{
|
||||||
UINT32 ier;
|
UINT32 ier;
|
||||||
|
|
||||||
@@ -199,13 +192,13 @@ UINT32 HalIrqMask(HWI_HANDLE_T hwiNum)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ****************************************************************************
|
/* ****************************************************************************
|
||||||
Function : HalIntNumGet
|
Function : HwiNumGet
|
||||||
Description : Get an interrupt number
|
Description : Get an interrupt number
|
||||||
Input : None
|
Input : None
|
||||||
Output : None
|
Output : None
|
||||||
Return : Interrupt Indexes number
|
Return : Interrupt Indexes number
|
||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
UINT32 HalIntNumGet(VOID)
|
STATIC UINT32 HwiNumGet(VOID)
|
||||||
{
|
{
|
||||||
UINT32 ier;
|
UINT32 ier;
|
||||||
UINT32 intenable;
|
UINT32 intenable;
|
||||||
@@ -223,7 +216,7 @@ UINT32 HalIntNumGet(VOID)
|
|||||||
* @ingroup los_hwi
|
* @ingroup los_hwi
|
||||||
* Clear the interrupt
|
* Clear the interrupt
|
||||||
*/
|
*/
|
||||||
UINT32 HalIrqClear(HWI_HANDLE_T vector)
|
STATIC UINT32 HwiClear(HWI_HANDLE_T vector)
|
||||||
{
|
{
|
||||||
if (!HwiNumValid(vector)) {
|
if (!HwiNumValid(vector)) {
|
||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
@@ -234,6 +227,14 @@ UINT32 HalIrqClear(HWI_HANDLE_T vector)
|
|||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HwiControllerOps g_archHwiOps = {
|
||||||
|
.triggerIrq = HwiPending,
|
||||||
|
.enableIrq = HwiUnmask,
|
||||||
|
.disableIrq = HwiMask,
|
||||||
|
.getCurIrqNum = HwiNumGet,
|
||||||
|
.clearIrq = HwiClear,
|
||||||
|
};
|
||||||
|
|
||||||
INLINE UINT32 ArchIsIntActive(VOID)
|
INLINE UINT32 ArchIsIntActive(VOID)
|
||||||
{
|
{
|
||||||
return (g_intCount > 0);
|
return (g_intCount > 0);
|
||||||
@@ -248,8 +249,8 @@ INLINE UINT32 ArchIsIntActive(VOID)
|
|||||||
**************************************************************************** */
|
**************************************************************************** */
|
||||||
VOID HalHwiDefaultHandler(VOID)
|
VOID HalHwiDefaultHandler(VOID)
|
||||||
{
|
{
|
||||||
UINT32 irqNum = HalIntNumGet();
|
UINT32 irqNum = HwiNumGet();
|
||||||
PRINT_ERR("%s irqnum:%d\n", __FUNCTION__, irqNum);
|
PRINT_ERR("%s irqnum:%u\n", __FUNCTION__, irqNum);
|
||||||
while (1) {}
|
while (1) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -279,8 +280,8 @@ VOID HalInterrupt(VOID)
|
|||||||
g_intCount++;
|
g_intCount++;
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
hwiIndex = HalIntNumGet();
|
hwiIndex = HwiNumGet();
|
||||||
HalIrqClear(hwiIndex);
|
HwiClear(hwiIndex);
|
||||||
|
|
||||||
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
OsHookCall(LOS_HOOK_TYPE_ISR_ENTER, hwiIndex);
|
||||||
|
|
||||||
@@ -347,7 +348,7 @@ UINT32 ArchHwiCreate(HWI_HANDLE_T hwiNum,
|
|||||||
#else
|
#else
|
||||||
OsSetVector(hwiNum, handler);
|
OsSetVector(hwiNum, handler);
|
||||||
#endif
|
#endif
|
||||||
HalIrqUnmask(hwiNum);
|
HwiUnmask(hwiNum);
|
||||||
|
|
||||||
LOS_IntRestore(intSave);
|
LOS_IntRestore(intSave);
|
||||||
|
|
||||||
@@ -369,7 +370,7 @@ LITE_OS_SEC_TEXT_INIT UINT32 ArchHwiDelete(HWI_HANDLE_T hwiNum)
|
|||||||
return OS_ERRNO_HWI_NUM_INVALID;
|
return OS_ERRNO_HWI_NUM_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
HalIrqMask(hwiNum);
|
HwiMask(hwiNum);
|
||||||
|
|
||||||
intSave = LOS_IntLock();
|
intSave = LOS_IntLock();
|
||||||
|
|
||||||
@@ -428,6 +429,7 @@ STATIC VOID OsExcRegInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
||||||
{
|
{
|
||||||
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
UINTPTR LR[LOSCFG_BACKTRACE_DEPTH] = {0};
|
||||||
@@ -444,6 +446,7 @@ STATIC VOID OsExcBackTraceInfo(const ExcInfo *excInfo)
|
|||||||
}
|
}
|
||||||
PRINTK("----- backtrace end -----\n");
|
PRINTK("----- backtrace end -----\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
STATIC VOID OsExcMemPoolCheckInfo(VOID)
|
||||||
{
|
{
|
||||||
@@ -493,7 +496,9 @@ STATIC VOID OsExcInfoDisplay(const ExcInfo *excInfo)
|
|||||||
OsExcTypeInfo(excInfo);
|
OsExcTypeInfo(excInfo);
|
||||||
OsExcCurTaskInfo(excInfo);
|
OsExcCurTaskInfo(excInfo);
|
||||||
OsExcRegInfo(excInfo);
|
OsExcRegInfo(excInfo);
|
||||||
|
#if (LOSCFG_KERNEL_BACKTRACE == 1)
|
||||||
OsExcBackTraceInfo(excInfo);
|
OsExcBackTraceInfo(excInfo);
|
||||||
|
#endif
|
||||||
OsGetAllTskInfo();
|
OsGetAllTskInfo();
|
||||||
OsExcMemPoolCheckInfo();
|
OsExcMemPoolCheckInfo();
|
||||||
#endif
|
#endif
|
||||||
@@ -510,9 +515,9 @@ VOID HalExcHandleEntry(UINTPTR faultAddr, EXC_CONTEXT_S *excBufAddr, UINT32 type
|
|||||||
if ((taskCB == NULL) || (taskCB == OS_TCB_FROM_TID(g_taskMaxNum))) {
|
if ((taskCB == NULL) || (taskCB == OS_TCB_FROM_TID(g_taskMaxNum))) {
|
||||||
g_excInfo.phase = OS_EXC_IN_INIT;
|
g_excInfo.phase = OS_EXC_IN_INIT;
|
||||||
g_excInfo.thrdPid = OS_NULL_INT;
|
g_excInfo.thrdPid = OS_NULL_INT;
|
||||||
} else if (HalIntNumGet() != OS_NULL_INT) {
|
} else if (HwiNumGet() != OS_NULL_INT) {
|
||||||
g_excInfo.phase = OS_EXC_IN_HWI;
|
g_excInfo.phase = OS_EXC_IN_HWI;
|
||||||
g_excInfo.thrdPid = HalIntNumGet();
|
g_excInfo.thrdPid = HwiNumGet();
|
||||||
} else {
|
} else {
|
||||||
g_excInfo.phase = OS_EXC_IN_TASK;
|
g_excInfo.phase = OS_EXC_IN_TASK;
|
||||||
g_excInfo.thrdPid = g_losTask.runTask->taskID;
|
g_excInfo.thrdPid = g_losTask.runTask->taskID;
|
||||||
@@ -547,7 +552,7 @@ VOID HalHwiInit(VOID)
|
|||||||
EnableExceptionInterface();
|
EnableExceptionInterface();
|
||||||
for (UINT32 i = 0; i < OS_HWI_MAX_NUM; i++) {
|
for (UINT32 i = 0; i < OS_HWI_MAX_NUM; i++) {
|
||||||
g_hwiForm[i + OS_SYS_VECTOR_CNT] = HalHwiDefaultHandler;
|
g_hwiForm[i + OS_SYS_VECTOR_CNT] = HalHwiDefaultHandler;
|
||||||
HalIrqMask(i);
|
HwiMask(i);
|
||||||
}
|
}
|
||||||
asm volatile ("wsr %0, vecbase" : : "r"(INIT_VECTOR_START));
|
asm volatile ("wsr %0, vecbase" : : "r"(INIT_VECTOR_START));
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ STATIC UINT32 SysTickStart(HWI_PROC_FUNC handler)
|
|||||||
__asm__ __volatile__("wsr %0, ccompare1; rsync" : : "a"(0));
|
__asm__ __volatile__("wsr %0, ccompare1; rsync" : : "a"(0));
|
||||||
__asm__ __volatile__("wsr %0, ccompare2; rsync" : : "a"(0));
|
__asm__ __volatile__("wsr %0, ccompare2; rsync" : : "a"(0));
|
||||||
|
|
||||||
HalIrqUnmask(tick->irqNum);
|
HwiUnmask(tick->irqNum);
|
||||||
return LOS_OK;
|
return LOS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -109,12 +109,12 @@ STATIC UINT64 SysTickCycleGet(UINT32 *period)
|
|||||||
|
|
||||||
STATIC VOID SysTickLock(VOID)
|
STATIC VOID SysTickLock(VOID)
|
||||||
{
|
{
|
||||||
HalIrqMask(OS_TICK_INT_NUM);
|
HwiMask(OS_TICK_INT_NUM);
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC VOID SysTickUnlock(VOID)
|
STATIC VOID SysTickUnlock(VOID)
|
||||||
{
|
{
|
||||||
HalIrqUnmask(OS_TICK_INT_NUM);
|
HwiUnmask(OS_TICK_INT_NUM);
|
||||||
}
|
}
|
||||||
|
|
||||||
ArchTickTimer *ArchSysTickTimerGet(VOID)
|
ArchTickTimer *ArchSysTickTimerGet(VOID)
|
||||||
|
|||||||
61
bundle.json
Normal file
61
bundle.json
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
{
|
||||||
|
"name": "@ohos/liteos_m",
|
||||||
|
"version": "3.1.0",
|
||||||
|
"description": "liteos-m kernel",
|
||||||
|
"publishAs": "code-segment",
|
||||||
|
"homePage": "https://gitee.com/openharmony",
|
||||||
|
"repository": "https://gitee.com/openharmony/kernel_liteos_m",
|
||||||
|
"license": "BSD 3-clause",
|
||||||
|
"domain": "os",
|
||||||
|
"language": "",
|
||||||
|
"private": false,
|
||||||
|
"scripts": {},
|
||||||
|
"tags": [
|
||||||
|
"kernel"
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"kernel",
|
||||||
|
"liteos-m"
|
||||||
|
],
|
||||||
|
"envs": [],
|
||||||
|
"dirs": [],
|
||||||
|
"author": {},
|
||||||
|
"contributors": [],
|
||||||
|
"segment": {
|
||||||
|
"destPath": "kernel/liteos_m"
|
||||||
|
},
|
||||||
|
"component": {
|
||||||
|
"name": "liteos_m",
|
||||||
|
"subsystem": "kernel",
|
||||||
|
"syscap": [
|
||||||
|
"SystemCapability.Kernel.liteos-m"
|
||||||
|
],
|
||||||
|
"features": [],
|
||||||
|
"adapted_system_type": [
|
||||||
|
"mini"
|
||||||
|
],
|
||||||
|
"rom": "300KB",
|
||||||
|
"ram": "100KB",
|
||||||
|
"deps": {
|
||||||
|
"components": [
|
||||||
|
"utils_lite"
|
||||||
|
],
|
||||||
|
"third_party": [
|
||||||
|
"bounds_checking_function",
|
||||||
|
"cmsis",
|
||||||
|
"fatfs",
|
||||||
|
"littlefs",
|
||||||
|
"lwip",
|
||||||
|
"musl"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"sub_component": [
|
||||||
|
"//kernel/liteos_m:kernel",
|
||||||
|
"//kernel/liteos_m:build_kernel_image"
|
||||||
|
],
|
||||||
|
"inner_kits": [],
|
||||||
|
"test": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -42,6 +42,7 @@ group("components") {
|
|||||||
"net",
|
"net",
|
||||||
"power",
|
"power",
|
||||||
"shell",
|
"shell",
|
||||||
|
"signal",
|
||||||
"trace",
|
"trace",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -60,5 +61,6 @@ config("public") {
|
|||||||
"trace:public",
|
"trace:public",
|
||||||
"lmk:public",
|
"lmk:public",
|
||||||
"lms:public",
|
"lms:public",
|
||||||
|
"signal:public",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ module_switch = defined(LOSCFG_KERNEL_BACKTRACE)
|
|||||||
module_name = get_path_info(rebase_path("."), "name")
|
module_name = get_path_info(rebase_path("."), "name")
|
||||||
kernel_module(module_name) {
|
kernel_module(module_name) {
|
||||||
sources = [ "los_backtrace.c" ]
|
sources = [ "los_backtrace.c" ]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ module_switch = defined(LOSCFG_KERNEL_CPPSUPPORT)
|
|||||||
module_name = get_path_info(rebase_path("."), "name")
|
module_name = get_path_info(rebase_path("."), "name")
|
||||||
kernel_module(module_name) {
|
kernel_module(module_name) {
|
||||||
sources = [ "los_cppsupport.c" ]
|
sources = [ "los_cppsupport.c" ]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ module_switch = defined(LOSCFG_BASE_CORE_CPUP)
|
|||||||
module_name = get_path_info(rebase_path("."), "name")
|
module_name = get_path_info(rebase_path("."), "name")
|
||||||
kernel_module(module_name) {
|
kernel_module(module_name) {
|
||||||
sources = [ "los_cpup.c" ]
|
sources = [ "los_cpup.c" ]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ module_switch = defined(LOSCFG_KERNEL_DYNLINK)
|
|||||||
module_name = get_path_info(rebase_path("."), "name")
|
module_name = get_path_info(rebase_path("."), "name")
|
||||||
kernel_module(module_name) {
|
kernel_module(module_name) {
|
||||||
sources = [ "los_dynlink.c" ]
|
sources = [ "los_dynlink.c" ]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ kernel_module(module_name) {
|
|||||||
"los_exc_info.c",
|
"los_exc_info.c",
|
||||||
"los_exchook.c",
|
"los_exchook.c",
|
||||||
]
|
]
|
||||||
|
configs += [ "$LITEOSTOPDIR:warn_config" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("public") {
|
config("public") {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user