333553caf2
fix(hal/include): fix header violations in hal component fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Add comment for a far away `#endif` fix(hal/include): change scope for cpp guard ci: Remove components/hal/ comment from public headers check exceptions Add missing include macro sdkconfig.h for header files Add missing include macro stdbool.h for header files Add missing include macro stdint.h for header files Add missing capability guard macro for header files Add missing cpp guard macro for header files Remove some useless include macros Add some missing `inline` attribute for functions defined in header files Remove components/hal/ from public headers check exceptions fix(hal/include): fix invalid licenses fix(hal/include): fix invalid licenses fix(hal/include): add missing soc_caps.h fix(hal): include soc_caps.h before cap macro is used fix(hal): Remove unnecessary target check fix(hal): fix header and macro problems Add missing include macro Remove loop dependency in hal Add comment for far-away endif fix(hal): Add missing soc_caps.h ci: update check_copyright_ignore.txt Change the sequence of `#include` macro, cpp guard macro Change the wrap scope of capacity macro fix(hal): Change position of C++ guard to pass test
101 lines
3.1 KiB
C
101 lines
3.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
#include "hal/gpio_types.h"
|
|
|
|
#if !SOC_LP_TIMER_SUPPORTED
|
|
#include "hal/rtc_cntl_ll.h"
|
|
#endif
|
|
#if SOC_RTCIO_INPUT_OUTPUT_SUPPORTED
|
|
#include "hal/rtc_io_ll.h"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct rtc_cntl_sleep_retent {
|
|
#if SOC_PM_SUPPORT_CPU_PD
|
|
void *cpu_pd_mem; /* Internal ram address for cpu retention */
|
|
#endif // SOC_PM_SUPPORT_CPU_PD
|
|
#if SOC_PM_SUPPORT_TAGMEM_PD
|
|
struct {
|
|
void *link_addr; /* Internal ram address for tagmem retention */
|
|
struct {
|
|
uint32_t start_point: 8, /* the row of start for i-cache tag memory */
|
|
vld_size: 8, /* valid size of i-cache tag memory, unit: 4 i-cache tagmem blocks */
|
|
size: 8, /* i-cache tag memory size, unit: 4 i-cache tagmem blocks */
|
|
enable: 1; /* enable or disable i-cache tagmem retention */
|
|
} icache;
|
|
struct {
|
|
uint32_t start_point: 9, /* the row of start for d-cache tag memory */
|
|
vld_size: 9, /* valid size of d-cache tag memory, unit: 4 d-cache tagmem blocks */
|
|
size: 9, /* d-cache tag memory size, unit: 4 d-cache tagmem blocks */
|
|
enable: 1; /* enable or disable d-cache tagmem retention */
|
|
} dcache;
|
|
} tagmem;
|
|
#endif // SOC_PM_SUPPORT_TAGMEM_PD
|
|
} rtc_cntl_sleep_retent_t;
|
|
|
|
#define RTC_HAL_DMA_LINK_NODE_SIZE (16)
|
|
|
|
#if SOC_PM_SUPPORT_EXT1_WAKEUP
|
|
|
|
#define rtc_hal_ext1_get_wakeup_status() rtc_cntl_ll_ext1_get_wakeup_status()
|
|
|
|
#define rtc_hal_ext1_clear_wakeup_status() rtc_cntl_ll_ext1_clear_wakeup_status()
|
|
|
|
#define rtc_hal_ext1_set_wakeup_pins(mask, mode) rtc_cntl_ll_ext1_set_wakeup_pins(mask, mode)
|
|
|
|
#define rtc_hal_ext1_clear_wakeup_pins() rtc_cntl_ll_ext1_clear_wakeup_pins()
|
|
|
|
#define rtc_hal_ext1_get_wakeup_pins() rtc_cntl_ll_ext1_get_wakeup_pins()
|
|
|
|
#endif // SOC_PM_SUPPORT_EXT1_WAKEUP
|
|
|
|
#if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP && (SOC_RTCIO_PIN_COUNT == 0)
|
|
|
|
#define rtc_hal_gpio_get_wakeup_status() rtc_cntl_ll_gpio_get_wakeup_status()
|
|
|
|
#define rtc_hal_gpio_clear_wakeup_status() rtc_cntl_ll_gpio_clear_wakeup_status()
|
|
|
|
#endif
|
|
|
|
#define rtc_hal_set_wakeup_timer(ticks) rtc_cntl_ll_set_wakeup_timer(ticks)
|
|
|
|
void * rtc_cntl_hal_dma_link_init(void *elem, void *buff, int size, void *next);
|
|
|
|
#if SOC_PM_SUPPORT_CPU_PD
|
|
|
|
void rtc_cntl_hal_enable_cpu_retention(void *addr);
|
|
|
|
void rtc_cntl_hal_disable_cpu_retention(void *addr);
|
|
|
|
#endif
|
|
|
|
#if SOC_PM_SUPPORT_TAGMEM_PD
|
|
|
|
void rtc_cntl_hal_enable_tagmem_retention(void *addr);
|
|
|
|
void rtc_cntl_hal_disable_tagmem_retention(void *addr);
|
|
|
|
#endif
|
|
|
|
/*
|
|
* Enable wakeup from ULP coprocessor.
|
|
*/
|
|
#define rtc_hal_ulp_wakeup_enable() rtc_cntl_ll_ulp_wakeup_enable()
|
|
|
|
#define rtc_hal_ulp_int_clear() rtc_cntl_ll_ulp_int_clear()
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|