| 
									
										
										
										
											2021-11-06 17:24:45 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-01-18 10:32:56 +08:00
										 |  |  |  * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD | 
					
						
							| 
									
										
										
										
											2021-11-06 17:24:45 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // The HAL layer for RTC CNTL (common part)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "soc/soc_caps.h"
 | 
					
						
							|  |  |  | #include "soc/lldesc.h"
 | 
					
						
							|  |  |  | #include "hal/rtc_hal.h"
 | 
					
						
							|  |  |  | #include "hal/assert.h"
 | 
					
						
							| 
									
										
										
										
											2022-01-04 19:46:53 +08:00
										 |  |  | #include "esp_attr.h"
 | 
					
						
							| 
									
										
										
										
											2021-11-06 17:24:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define RTC_CNTL_HAL_LINK_BUF_SIZE_MIN  (SOC_RTC_CNTL_CPU_PD_DMA_BLOCK_SIZE) /* The minimum size of dma link buffer */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rtc_cntl_link_buf_conf { | 
					
						
							|  |  |  |     uint32_t cfg[4];    /* 4 word for dma link buffer configuration */ | 
					
						
							|  |  |  | } rtc_cntl_link_buf_conf_t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void * rtc_cntl_hal_dma_link_init(void *elem, void *buff, int size, void *next) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     HAL_ASSERT(elem != NULL); | 
					
						
							|  |  |  |     HAL_ASSERT(buff != NULL); | 
					
						
							|  |  |  |     HAL_ASSERT(size >= RTC_CNTL_HAL_LINK_BUF_SIZE_MIN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     lldesc_t *plink = (lldesc_t *)elem; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     plink->eof    = next ? 0 : 1; | 
					
						
							|  |  |  |     plink->owner  = 1; | 
					
						
							|  |  |  |     plink->size   = size >> 4;  /* in unit of 16 bytes */ | 
					
						
							|  |  |  |     plink->length = size >> 4; | 
					
						
							|  |  |  |     plink->buf    = buff; | 
					
						
							|  |  |  |     plink->offset = 0; | 
					
						
							|  |  |  |     plink->sosf   = 0; | 
					
						
							|  |  |  |     STAILQ_NEXT(plink, qe) = next; | 
					
						
							|  |  |  |     return (void *)plink; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-04 19:46:53 +08:00
										 |  |  | #if SOC_PM_SUPPORT_CPU_PD
 | 
					
						
							| 
									
										
										
										
											2021-11-06 17:24:45 +08:00
										 |  |  | void rtc_cntl_hal_enable_cpu_retention(void *addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (addr) { | 
					
						
							|  |  |  |         lldesc_t *plink = (lldesc_t *)addr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* dma link buffer configure */ | 
					
						
							|  |  |  |         rtc_cntl_link_buf_conf_t *pbuf = (rtc_cntl_link_buf_conf_t *)plink->buf; | 
					
						
							|  |  |  |         pbuf->cfg[0] = 0; | 
					
						
							|  |  |  |         pbuf->cfg[1] = 0; | 
					
						
							|  |  |  |         pbuf->cfg[2] = 0; | 
					
						
							|  |  |  |         pbuf->cfg[3] = (uint32_t)-1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         rtc_cntl_ll_enable_cpu_retention((uint32_t)addr); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-01-04 19:46:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void IRAM_ATTR rtc_cntl_hal_disable_cpu_retention(void *addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     rtc_cntl_sleep_retent_t *retent = (rtc_cntl_sleep_retent_t *)addr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (addr) { | 
					
						
							|  |  |  |         if (retent->cpu_pd_mem) { | 
					
						
							|  |  |  |             rtc_cntl_ll_disable_cpu_retention(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // SOC_PM_SUPPORT_CPU_PD
 |