mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
freertos/xtensa: make vportYIELD_FROM_ISR compatible with version that both takes argument or not
This commit is contained in:
@@ -29,9 +29,7 @@ static void software_isr(void *arg) {
|
|||||||
xt_set_intclear(1 << SW_ISR_LEVEL_1);
|
xt_set_intclear(1 << SW_ISR_LEVEL_1);
|
||||||
|
|
||||||
xSemaphoreGiveFromISR(sync, &yield);
|
xSemaphoreGiveFromISR(sync, &yield);
|
||||||
if(yield) {
|
portYIELD_FROM_ISR(yield);
|
||||||
portYIELD_FROM_ISR();
|
|
||||||
}
|
|
||||||
|
|
||||||
cycle_before_exit = portGET_RUN_TIME_COUNTER_VALUE();
|
cycle_before_exit = portGET_RUN_TIME_COUNTER_VALUE();
|
||||||
}
|
}
|
||||||
|
@@ -75,7 +75,7 @@ extern "C" {
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <stdarg.h>
|
||||||
#include <xtensa/hal.h>
|
#include <xtensa/hal.h>
|
||||||
#include <xtensa/config/core.h>
|
#include <xtensa/config/core.h>
|
||||||
#include <xtensa/config/system.h> /* required for XSHAL_CLIB */
|
#include <xtensa/config/system.h> /* required for XSHAL_CLIB */
|
||||||
@@ -321,13 +321,17 @@ static inline void __attribute__((always_inline)) uxPortCompareSet(volatile uint
|
|||||||
#define portALT_GET_RUN_TIME_COUNTER_VALUE(x) x = (uint32_t)esp_timer_get_time()
|
#define portALT_GET_RUN_TIME_COUNTER_VALUE(x) x = (uint32_t)esp_timer_get_time()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Kernel utilities. */
|
|
||||||
void vPortYield( void );
|
void vPortYield( void );
|
||||||
|
void xEvaluateYieldFromISR(int argc, ...);
|
||||||
void _frxt_setup_switch( void );
|
void _frxt_setup_switch( void );
|
||||||
#define portYIELD() vPortYield()
|
|
||||||
#define portYIELD_FROM_ISR() {traceISR_EXIT_TO_SCHEDULER(); _frxt_setup_switch();}
|
|
||||||
|
|
||||||
|
//Macro to count number of arguments of a __VA_ARGS__ used to support portYIELD_FROM_ISR with,
|
||||||
|
//or without arguments.
|
||||||
|
#define GET_ARGUMENT_COUNT(...) GET_ARGUMENT_COUNT_INNER(0, ##__VA_ARGS__,1,0)
|
||||||
|
#define GET_ARGUMENT_COUNT_INNER(zero, one, count, ...) count
|
||||||
|
|
||||||
|
#define portYIELD() vPortYield()
|
||||||
|
#define portYIELD_FROM_ISR(...) xEvaluateYieldFromISR(GET_ARGUMENT_COUNT(__VA_ARGS__), ##__VA_ARGS__)
|
||||||
|
|
||||||
/* Yielding within an API call (when interrupts are off), means the yield should be delayed
|
/* Yielding within an API call (when interrupts are off), means the yield should be delayed
|
||||||
until interrupts are re-enabled.
|
until interrupts are re-enabled.
|
||||||
|
@@ -387,6 +387,30 @@ BaseType_t IRAM_ATTR xPortInterruptedFromISRContext(void)
|
|||||||
return (port_interruptNesting[xPortGetCoreID()] != 0);
|
return (port_interruptNesting[xPortGetCoreID()] != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void IRAM_ATTR xEvaluateYieldFromISR(int argc, ...)
|
||||||
|
{
|
||||||
|
BaseType_t xYield;
|
||||||
|
va_list ap;
|
||||||
|
va_start(ap, argc);
|
||||||
|
|
||||||
|
if(argc) {
|
||||||
|
xYield = (BaseType_t)va_arg(ap, int);
|
||||||
|
va_end(ap);
|
||||||
|
} else {
|
||||||
|
//Yield does not exist, it is a empty vPortYieldFromISR macro:
|
||||||
|
va_end(ap);
|
||||||
|
traceISR_EXIT_TO_SCHEDULER();
|
||||||
|
_frxt_setup_switch();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Yield exists, so need evaluate it first then switch:
|
||||||
|
if(xYield) {
|
||||||
|
traceISR_EXIT_TO_SCHEDULER();
|
||||||
|
_frxt_setup_switch();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void vPortAssertIfInISR(void)
|
void vPortAssertIfInISR(void)
|
||||||
{
|
{
|
||||||
configASSERT(xPortInIsrContext());
|
configASSERT(xPortInIsrContext());
|
||||||
|
@@ -75,6 +75,4 @@
|
|||||||
#define portVALID_STACK_MEM(ptr) esp_ptr_byte_accessible(ptr)
|
#define portVALID_STACK_MEM(ptr) esp_ptr_byte_accessible(ptr)
|
||||||
#else
|
#else
|
||||||
#define portVALID_STACK_MEM(ptr) (esp_ptr_internal(ptr) && esp_ptr_byte_accessible(ptr))
|
#define portVALID_STACK_MEM(ptr) (esp_ptr_internal(ptr) && esp_ptr_byte_accessible(ptr))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user