fix(freertos): workaround a hardware bug related to HWLP coprocessor

This commit manually sets the HWLP context to dirty when a Task that needs it is scheduled it.
This commit is contained in:
Omar Chebib
2025-02-18 11:57:10 +08:00
committed by BOT
parent 796ca12684
commit d973153488
4 changed files with 108 additions and 86 deletions

View File

@@ -511,6 +511,10 @@ config SOC_CPU_HAS_HWLOOP
bool
default y
config SOC_CPU_HAS_HWLOOP_STATE_BUG
bool
default y
config SOC_CPU_HAS_PIE
bool
default y

View File

@@ -176,6 +176,7 @@
#define SOC_CPU_HAS_FPU 1
#define SOC_CPU_HAS_FPU_EXT_ILL_BUG 1 // EXT_ILL CSR doesn't support FLW/FSW
#define SOC_CPU_HAS_HWLOOP 1
#define SOC_CPU_HAS_HWLOOP_STATE_BUG 1 // HWLOOP state doesn't go to DIRTY after executing the last instruction of a loop
/* PIE coprocessor assembly is only supported with GCC compiler */
#define SOC_CPU_HAS_PIE 1