2021-11-06 05:24:45 -04:00
|
|
|
/*
|
2022-01-17 21:32:56 -05:00
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 05:24:45 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-05-09 23:34:06 -04:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
2020-09-03 06:17:24 -04:00
|
|
|
|
|
|
|
#include "esp_private/system_internal.h"
|
2022-04-29 01:40:23 -04:00
|
|
|
#include "esp_private/rtc_ctrl.h"
|
2022-05-30 04:49:19 -04:00
|
|
|
#include "esp_private/spi_flash_os.h"
|
2020-09-03 06:17:24 -04:00
|
|
|
|
|
|
|
#include "esp_rom_sys.h"
|
|
|
|
|
2019-05-09 23:34:06 -04:00
|
|
|
#include "soc/soc.h"
|
2021-12-13 23:38:15 -05:00
|
|
|
#include "esp_cpu.h"
|
2020-01-21 10:32:28 -05:00
|
|
|
#include "soc/rtc_periph.h"
|
2020-09-03 06:17:24 -04:00
|
|
|
#include "hal/cpu_hal.h"
|
2022-05-30 04:49:19 -04:00
|
|
|
#include "esp_attr.h"
|
|
|
|
#include "bootloader_flash.h"
|
|
|
|
#include "esp_intr_alloc.h"
|
2020-09-03 06:17:24 -04:00
|
|
|
|
2020-01-21 10:32:28 -05:00
|
|
|
#include "hal/brownout_hal.h"
|
2020-09-03 06:17:24 -04:00
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2022-01-06 23:22:56 -05:00
|
|
|
#if defined(CONFIG_ESP_BROWNOUT_DET_LVL)
|
|
|
|
#define BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
|
2019-05-09 23:34:06 -04:00
|
|
|
#else
|
|
|
|
#define BROWNOUT_DET_LVL 0
|
2020-01-21 10:41:39 -05:00
|
|
|
#endif
|
|
|
|
|
2022-05-30 04:49:19 -04:00
|
|
|
#if CONFIG_ESP_SYSTEM_BROWNOUT_INTR
|
|
|
|
IRAM_ATTR static void rtc_brownout_isr_handler(void *arg)
|
2019-05-09 23:34:06 -04:00
|
|
|
{
|
|
|
|
/* Normally RTC ISR clears the interrupt flag after the application-supplied
|
|
|
|
* handler returns. Since restart is called here, the flag needs to be
|
|
|
|
* cleared manually.
|
|
|
|
*/
|
2020-01-21 10:41:39 -05:00
|
|
|
brownout_hal_intr_clear();
|
2022-05-30 04:49:19 -04:00
|
|
|
// Stop the other core.
|
2020-09-03 06:17:24 -04:00
|
|
|
esp_cpu_stall(!cpu_hal_get_core_id());
|
2020-01-21 10:32:28 -05:00
|
|
|
esp_reset_reason_set_hint(ESP_RST_BROWNOUT);
|
2022-05-30 04:49:19 -04:00
|
|
|
#if CONFIG_SPI_FLASH_BROWNOUT_RESET
|
|
|
|
if (spi_flash_brownout_need_reset()) {
|
|
|
|
bootloader_flash_reset_chip();
|
|
|
|
} else
|
|
|
|
#endif // CONFIG_SPI_FLASH_BROWNOUT_RESET
|
|
|
|
{
|
|
|
|
esp_rom_printf("\r\nBrownout detector was triggered\r\n\r\n");
|
|
|
|
}
|
|
|
|
|
2019-05-09 23:34:06 -04:00
|
|
|
esp_restart_noos();
|
|
|
|
}
|
2022-05-30 04:49:19 -04:00
|
|
|
#endif // CONFIG_ESP_SYSTEM_BROWNOUT_INTR
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2019-08-11 22:06:07 -04:00
|
|
|
void esp_brownout_init(void)
|
2019-05-09 23:34:06 -04:00
|
|
|
{
|
2022-05-30 04:49:19 -04:00
|
|
|
#if CONFIG_ESP_SYSTEM_BROWNOUT_INTR
|
2020-01-21 10:32:28 -05:00
|
|
|
brownout_hal_config_t cfg = {
|
|
|
|
.threshold = BROWNOUT_DET_LVL,
|
|
|
|
.enabled = true,
|
2022-05-30 04:49:19 -04:00
|
|
|
.reset_enabled = false,
|
2020-01-21 10:32:28 -05:00
|
|
|
.flash_power_down = true,
|
|
|
|
.rf_power_down = true,
|
|
|
|
};
|
|
|
|
|
|
|
|
brownout_hal_config(&cfg);
|
2022-05-30 04:49:19 -04:00
|
|
|
brownout_hal_intr_clear();
|
|
|
|
rtc_isr_register(rtc_brownout_isr_handler, NULL, RTC_CNTL_BROWN_OUT_INT_ENA_M, RTC_INTR_FLAG_IRAM);
|
|
|
|
brownout_hal_intr_enable(true);
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2022-05-30 04:49:19 -04:00
|
|
|
#else // brownout without interrupt
|
2021-03-24 07:58:12 -04:00
|
|
|
|
2022-05-30 04:49:19 -04:00
|
|
|
brownout_hal_config_t cfg = {
|
|
|
|
.threshold = BROWNOUT_DET_LVL,
|
|
|
|
.enabled = true,
|
|
|
|
.reset_enabled = true,
|
|
|
|
.flash_power_down = true,
|
|
|
|
.rf_power_down = true,
|
|
|
|
};
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2022-05-30 04:49:19 -04:00
|
|
|
brownout_hal_config(&cfg);
|
|
|
|
#endif
|
2019-05-09 23:34:06 -04:00
|
|
|
}
|
2021-02-09 06:30:43 -05:00
|
|
|
|
|
|
|
void esp_brownout_disable(void)
|
|
|
|
{
|
|
|
|
brownout_hal_config_t cfg = {
|
|
|
|
.enabled = false,
|
|
|
|
};
|
|
|
|
|
|
|
|
brownout_hal_config(&cfg);
|
2022-05-30 04:49:19 -04:00
|
|
|
#if CONFIG_ESP_SYSTEM_BROWNOUT_INTR
|
2021-02-09 06:30:43 -05:00
|
|
|
brownout_hal_intr_enable(false);
|
|
|
|
rtc_isr_deregister(rtc_brownout_isr_handler, NULL);
|
2022-05-30 04:49:19 -04:00
|
|
|
#endif // CONFIG_ESP_SYSTEM_BROWNOUT_INTR
|
2021-02-09 06:30:43 -05:00
|
|
|
}
|