1
6
7
13
14
18
19
20
26
27
33
34
40
41
47
48
49
50
64
65
69
70
/* ... */
#include "esp_attr.h"
#include "esp_sleep.h"
#include "esp_private/pm_trace.h"
#include "driver/gpio.h"
#include "soc/soc.h"
#include "soc/gpio_reg.h"6 includes
/* ... */
static const int DRAM_ATTR s_trace_io[] = {
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
BIT(4), BIT(5),
BIT(16), BIT(17),
BIT(18), BIT(18),
BIT(19), BIT(19),
BIT(25), BIT(26),
BIT(27), BIT(27), /* ... */
#elif CONFIG_IDF_TARGET_ESP32S3
BIT(4), BIT(5),
BIT(6), BIT(7),
BIT(14), BIT(14),
BIT(15), BIT(15),
BIT(16), BIT(17),
BIT(18), BIT(18), /* ... */
#elif CONFIG_IDF_TARGET_ESP32H2
BIT(2), BIT(3),
BIT(4), BIT(5),
BIT(6), BIT(6),
BIT(7), BIT(7),
BIT(8), BIT(9),
BIT(10), BIT(10), /* ... */
#else
BIT(2), BIT(3),
BIT(4), BIT(5),
BIT(6), BIT(6),
BIT(7), BIT(7),
BIT(8), BIT(9),
BIT(18), BIT(18), /* ... */
#endif
}{...};
void esp_pm_trace_init(void)
{
for (size_t i = 0; i < sizeof(s_trace_io) / sizeof(s_trace_io[0]); ++i) {
int io = __builtin_ffs(s_trace_io[i]);
if (io == 0) {
continue;
}{...}
gpio_set_direction(io - 1, GPIO_MODE_OUTPUT);
}{...}
#if SOC_PM_SUPPORT_RTC_PERIPH_PD
esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);/* ... */
#endif
}{ ... }
void IRAM_ATTR esp_pm_trace_enter(esp_pm_trace_event_t event, int core_id)
{
REG_WRITE(GPIO_OUT_W1TS_REG, s_trace_io[2 * event + core_id]);
}{ ... }
void IRAM_ATTR esp_pm_trace_exit(esp_pm_trace_event_t event, int core_id)
{
REG_WRITE(GPIO_OUT_W1TC_REG, s_trace_io[2 * event + core_id]);
}{ ... }