2021-11-06 05:24:45 -04:00
|
|
|
/*
|
2024-01-29 20:40:10 -05:00
|
|
|
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 05:24:45 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2016-10-26 09:09:55 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "esp_attr.h"
|
|
|
|
#include "esp_err.h"
|
2022-07-21 07:24:42 -04:00
|
|
|
#include "esp_cpu.h"
|
2019-03-26 04:30:43 -04:00
|
|
|
#include "esp_intr_alloc.h"
|
2020-03-27 05:58:12 -04:00
|
|
|
#include "esp_debug_helpers.h"
|
2021-02-23 07:06:41 -05:00
|
|
|
#include "soc/periph_defs.h"
|
2023-12-11 06:37:30 -05:00
|
|
|
#include "hal/crosscore_int_ll.h"
|
2022-07-21 07:24:42 -04:00
|
|
|
|
2016-10-26 09:09:55 -04:00
|
|
|
#include "freertos/FreeRTOS.h"
|
2021-02-23 07:06:41 -05:00
|
|
|
#include "freertos/portmacro.h"
|
2016-10-26 09:09:55 -04:00
|
|
|
|
2021-06-07 15:54:09 -04:00
|
|
|
#if CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME
|
|
|
|
#include "esp_gdbstub.h"
|
|
|
|
#endif
|
|
|
|
|
2017-08-21 10:29:08 -04:00
|
|
|
#define REASON_YIELD BIT(0)
|
|
|
|
#define REASON_FREQ_SWITCH BIT(1)
|
2020-03-27 05:58:12 -04:00
|
|
|
#define REASON_PRINT_BACKTRACE BIT(2)
|
2023-08-31 00:19:49 -04:00
|
|
|
#define REASON_GDB_CALL BIT(3)
|
2022-07-13 05:27:37 -04:00
|
|
|
#define REASON_TWDT_ABORT BIT(4)
|
2023-08-31 00:19:49 -04:00
|
|
|
|
2017-08-21 10:29:08 -04:00
|
|
|
static portMUX_TYPE reason_spinlock = portMUX_INITIALIZER_UNLOCKED;
|
2021-02-23 07:06:41 -05:00
|
|
|
static volatile uint32_t reason[portNUM_PROCESSORS];
|
2016-10-26 09:09:55 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
ToDo: There is a small chance the CPU already has yielded when this ISR is serviced. In that case, it's running the intended task but
|
|
|
|
the ISR will cause it to switch _away_ from it. portYIELD_FROM_ISR will probably just schedule the task again, but have to check that.
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
static inline void IRAM_ATTR esp_crosscore_isr_handle_yield(void)
|
2017-08-21 10:29:08 -04:00
|
|
|
{
|
|
|
|
portYIELD_FROM_ISR();
|
|
|
|
}
|
|
|
|
|
2024-01-29 20:40:10 -05:00
|
|
|
static void IRAM_ATTR esp_crosscore_isr(void *arg)
|
|
|
|
{
|
2017-08-21 10:29:08 -04:00
|
|
|
uint32_t my_reason_val;
|
2016-10-27 04:07:47 -04:00
|
|
|
//A pointer to the correct reason array item is passed to this ISR.
|
2024-01-29 20:40:10 -05:00
|
|
|
volatile uint32_t *my_reason = arg;
|
2016-11-10 04:59:46 -05:00
|
|
|
|
2016-10-27 04:07:47 -04:00
|
|
|
//Clear the interrupt first.
|
2023-12-11 06:37:30 -05:00
|
|
|
crosscore_int_ll_clear_interrupt(esp_cpu_get_core_id());
|
2021-02-23 07:06:41 -05:00
|
|
|
|
2016-10-27 04:07:47 -04:00
|
|
|
//Grab the reason and clear it.
|
2018-01-29 08:40:38 -05:00
|
|
|
portENTER_CRITICAL_ISR(&reason_spinlock);
|
2024-01-29 20:40:10 -05:00
|
|
|
my_reason_val = *my_reason;
|
|
|
|
*my_reason = 0;
|
2018-01-29 08:40:38 -05:00
|
|
|
portEXIT_CRITICAL_ISR(&reason_spinlock);
|
2016-10-26 09:09:55 -04:00
|
|
|
|
2016-10-27 04:07:47 -04:00
|
|
|
//Check what we need to do.
|
2017-08-21 10:29:08 -04:00
|
|
|
if (my_reason_val & REASON_YIELD) {
|
|
|
|
esp_crosscore_isr_handle_yield();
|
|
|
|
}
|
|
|
|
if (my_reason_val & REASON_FREQ_SWITCH) {
|
|
|
|
/* Nothing to do here; the frequency switch event was already
|
|
|
|
* handled by a hook in xtensa_vectors.S. Could be used in the future
|
|
|
|
* to allow DFS features without the extra latency of the ISR hook.
|
|
|
|
*/
|
2016-10-27 04:07:47 -04:00
|
|
|
}
|
2021-06-07 15:54:09 -04:00
|
|
|
#if CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME
|
|
|
|
if (my_reason_val & REASON_GDB_CALL) {
|
|
|
|
update_breakpoints();
|
|
|
|
}
|
|
|
|
#endif // !CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME
|
2023-08-31 00:19:49 -04:00
|
|
|
|
2020-03-27 05:58:12 -04:00
|
|
|
if (my_reason_val & REASON_PRINT_BACKTRACE) {
|
|
|
|
esp_backtrace_print(100);
|
|
|
|
}
|
2022-07-13 05:27:37 -04:00
|
|
|
|
2022-08-23 05:58:14 -04:00
|
|
|
#if CONFIG_ESP_TASK_WDT_EN
|
2022-07-13 05:27:37 -04:00
|
|
|
if (my_reason_val & REASON_TWDT_ABORT) {
|
2023-08-31 00:19:49 -04:00
|
|
|
extern void task_wdt_timeout_abort(bool);
|
2022-07-13 05:27:37 -04:00
|
|
|
/* Called from a crosscore interrupt, thus, we are not the core that received
|
|
|
|
* the TWDT interrupt, call the function with `false` as a parameter. */
|
2023-08-31 00:19:49 -04:00
|
|
|
task_wdt_timeout_abort(false);
|
2022-07-13 05:27:37 -04:00
|
|
|
}
|
2022-08-23 05:58:14 -04:00
|
|
|
#endif // CONFIG_ESP_TASK_WDT_EN
|
2023-08-31 00:19:49 -04:00
|
|
|
|
2016-10-26 09:09:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
//Initialize the crosscore interrupt on this core. Call this once
|
|
|
|
//on each active core.
|
2024-01-29 20:40:10 -05:00
|
|
|
void esp_crosscore_int_init(void)
|
|
|
|
{
|
2017-08-21 10:29:08 -04:00
|
|
|
portENTER_CRITICAL(&reason_spinlock);
|
2024-01-29 20:40:10 -05:00
|
|
|
reason[esp_cpu_get_core_id()] = 0;
|
2017-08-21 10:29:08 -04:00
|
|
|
portEXIT_CRITICAL(&reason_spinlock);
|
2021-02-23 07:06:41 -05:00
|
|
|
esp_err_t err __attribute__((unused)) = ESP_OK;
|
|
|
|
#if portNUM_PROCESSORS > 1
|
2024-01-29 20:40:10 -05:00
|
|
|
if (esp_cpu_get_core_id() == 0) {
|
2017-08-21 10:29:08 -04:00
|
|
|
err = esp_intr_alloc(ETS_FROM_CPU_INTR0_SOURCE, ESP_INTR_FLAG_IRAM, esp_crosscore_isr, (void*)&reason[0], NULL);
|
2016-10-27 04:07:47 -04:00
|
|
|
} else {
|
2017-08-21 10:29:08 -04:00
|
|
|
err = esp_intr_alloc(ETS_FROM_CPU_INTR1_SOURCE, ESP_INTR_FLAG_IRAM, esp_crosscore_isr, (void*)&reason[1], NULL);
|
2016-10-27 04:07:47 -04:00
|
|
|
}
|
2021-02-23 07:06:41 -05:00
|
|
|
#else
|
|
|
|
err = esp_intr_alloc(ETS_FROM_CPU_INTR0_SOURCE, ESP_INTR_FLAG_IRAM, esp_crosscore_isr, (void*)&reason[0], NULL);
|
|
|
|
#endif
|
|
|
|
ESP_ERROR_CHECK(err);
|
2016-10-26 09:09:55 -04:00
|
|
|
}
|
|
|
|
|
2024-01-29 20:40:10 -05:00
|
|
|
static void IRAM_ATTR esp_crosscore_int_send(int core_id, uint32_t reason_mask)
|
|
|
|
{
|
|
|
|
assert(core_id < portNUM_PROCESSORS);
|
2016-10-27 04:07:47 -04:00
|
|
|
//Mark the reason we interrupt the other CPU
|
2019-03-25 06:39:21 -04:00
|
|
|
portENTER_CRITICAL_ISR(&reason_spinlock);
|
2017-08-21 10:29:08 -04:00
|
|
|
reason[core_id] |= reason_mask;
|
2019-03-25 06:39:21 -04:00
|
|
|
portEXIT_CRITICAL_ISR(&reason_spinlock);
|
2016-10-27 04:07:47 -04:00
|
|
|
//Poke the other CPU.
|
2023-12-11 06:37:30 -05:00
|
|
|
crosscore_int_ll_trigger_interrupt(core_id);
|
2016-10-26 09:09:55 -04:00
|
|
|
}
|
|
|
|
|
2017-08-21 10:29:08 -04:00
|
|
|
void IRAM_ATTR esp_crosscore_int_send_yield(int core_id)
|
|
|
|
{
|
|
|
|
esp_crosscore_int_send(core_id, REASON_YIELD);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRAM_ATTR esp_crosscore_int_send_freq_switch(int core_id)
|
|
|
|
{
|
|
|
|
esp_crosscore_int_send(core_id, REASON_FREQ_SWITCH);
|
|
|
|
}
|
|
|
|
|
2021-06-07 15:54:09 -04:00
|
|
|
void IRAM_ATTR esp_crosscore_int_send_gdb_call(int core_id)
|
|
|
|
{
|
|
|
|
esp_crosscore_int_send(core_id, REASON_GDB_CALL);
|
|
|
|
}
|
|
|
|
|
2020-03-27 05:58:12 -04:00
|
|
|
void IRAM_ATTR esp_crosscore_int_send_print_backtrace(int core_id)
|
|
|
|
{
|
|
|
|
esp_crosscore_int_send(core_id, REASON_PRINT_BACKTRACE);
|
|
|
|
}
|
2022-07-13 05:27:37 -04:00
|
|
|
|
2022-08-23 05:58:14 -04:00
|
|
|
#if CONFIG_ESP_TASK_WDT_EN
|
2024-01-29 20:40:10 -05:00
|
|
|
void IRAM_ATTR esp_crosscore_int_send_twdt_abort(int core_id)
|
|
|
|
{
|
2022-07-13 05:27:37 -04:00
|
|
|
esp_crosscore_int_send(core_id, REASON_TWDT_ABORT);
|
|
|
|
}
|
2022-08-23 05:58:14 -04:00
|
|
|
#endif // CONFIG_ESP_TASK_WDT_EN
|