Home
last modified time | relevance | path

Searched refs:WDT_RWDT (Results 1 – 23 of 23) sorted by relevance

/hal_espressif-3.6.0/components/hal/
Dwdt_hal_iram.c35 if (hal->inst == WDT_RWDT) { in wdt_hal_init()
91 if (hal->inst == WDT_RWDT) { in wdt_hal_deinit()
118 if (hal->inst == WDT_RWDT) { in wdt_hal_config_stage()
129 if (hal->inst == WDT_RWDT) { in wdt_hal_write_protect_disable()
138 if (hal->inst == WDT_RWDT) { in wdt_hal_write_protect_enable()
147 if (hal->inst == WDT_RWDT) { in wdt_hal_enable()
158 if (hal->inst == WDT_RWDT) { in wdt_hal_disable()
167 if (hal->inst == WDT_RWDT) { in wdt_hal_handle_intr()
178 if (hal->inst == WDT_RWDT) { in wdt_hal_feed()
187 if (hal->inst == WDT_RWDT) { in wdt_hal_set_flashboot_en()
[all …]
/hal_espressif-3.6.0/zephyr/esp_shared/src/boot/
Dbootloader_wdt.c13 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in bootloader_wdt_feed()
21 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in bootloader_config_wdt()
27 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in bootloader_config_wdt()
/hal_espressif-3.6.0/components/bootloader_support/src/
Dbootloader_init.c62 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in bootloader_config_wdt()
70 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in bootloader_config_wdt()
/hal_espressif-3.6.0/components/esp_system/
Dpanic.c69 static wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL};
295 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_panic_handler()
Dstartup.c412 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in start_cpu0_default()
/hal_espressif-3.6.0/components/hal/include/hal/
Dwdt_types.h22 WDT_RWDT = 0, /*!< RTC Watchdog Timer (RWDT) */ enumerator
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32s2/
Dsystem_internal.c49 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_restart_noos()
Dclk.c95 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_clk_init()
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32h2/
Dsystem_internal.c49 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_restart_noos()
Dclk.c86 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_clk_init()
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32/
Dsystem_internal.c51 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_restart_noos()
Dclk.c149 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_clk_init()
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32c3/
Dsystem_internal.c50 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_restart_noos()
Dclk.c92 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_clk_init()
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32s3/
Dsystem_internal.c48 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_restart_noos()
Dclk.c95 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_clk_init()
/hal_espressif-3.6.0/components/esp_system/test/
Dtest_reset_reason.c247 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in do_rtc_wdt()
/hal_espressif-3.6.0/components/bootloader_support/src/esp32h2/
Dflash_encrypt.c321 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_flash_encrypt_region()
/hal_espressif-3.6.0/components/bootloader_support/src/flash_encryption/
Dflash_encrypt.c354 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_flash_encrypt_region()
/hal_espressif-3.6.0/components/esp_system/port/
Dcpu_start.c308 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL};
/hal_espressif-3.6.0/components/esp_hw_support/
Dsleep_modes.c700 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_light_sleep_start()
703 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_light_sleep_start()
/hal_espressif-3.6.0/zephyr/esp_shared/components/esp_hw_support/
Dsleep_modes.c730 wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; in esp_light_sleep_start()
733 wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false); in esp_light_sleep_start()
/hal_espressif-3.6.0/components/esp_gdbstub/src/
Dgdbstub.c114 static wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL};