mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
105 lines
3.1 KiB
C
105 lines
3.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
#include "soc/regdma.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#if SOC_PAU_SUPPORTED // TODO: [ESP32C5] IDF-8640
|
|
/**
|
|
* @brief Provide access to interrupt matrix configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define INT_MTX_RETENTION_LINK_LEN 1
|
|
extern const regdma_entries_config_t intr_matrix_regs_retention[INT_MTX_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to hp_system configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define HP_SYSTEM_RETENTION_LINK_LEN 1
|
|
extern const regdma_entries_config_t hp_system_regs_retention[HP_SYSTEM_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to TEE_APM configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define TEE_APM_RETENTION_LINK_LEN 2
|
|
extern const regdma_entries_config_t tee_apm_regs_retention[TEE_APM_RETENTION_LINK_LEN];
|
|
#define TEE_APM_HIGH_PRI_RETENTION_LINK_LEN 1
|
|
extern const regdma_entries_config_t tee_apm_highpri_regs_retention[TEE_APM_HIGH_PRI_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to uart configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define UART_RETENTION_LINK_LEN 3
|
|
extern const regdma_entries_config_t uart_regs_retention[UART_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to timer group configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define TIMG_RETENTION_LINK_LEN 8
|
|
extern const regdma_entries_config_t tg_regs_retention[TIMG_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to IOMUX configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define IOMUX_RETENTION_LINK_LEN 4
|
|
extern const regdma_entries_config_t iomux_regs_retention[IOMUX_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to spimem configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define SPIMEM_RETENTION_LINK_LEN 8
|
|
extern const regdma_entries_config_t spimem_regs_retention[SPIMEM_RETENTION_LINK_LEN];
|
|
|
|
/**
|
|
* @brief Provide access to systimer configuration registers retention
|
|
* context defination.
|
|
*
|
|
* This is an internal function of the sleep retention driver, and is not
|
|
* useful for external use.
|
|
*/
|
|
#define SYSTIMER_RETENTION_LINK_LEN 19
|
|
extern const regdma_entries_config_t systimer_regs_retention[SYSTIMER_RETENTION_LINK_LEN];
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|