Home
last modified time | relevance | path

Searched refs:tagmem (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/hal/esp32s3/
Drtc_cntl_hal.c72 if (!retent->tagmem.dcache.enable) { in rtc_cntl_hal_enable_cpu_retention()
93 if (!retent->tagmem.icache.enable) { in rtc_cntl_hal_disable_cpu_retention()
96 if (!retent->tagmem.dcache.enable) { in rtc_cntl_hal_disable_cpu_retention()
117 if (retent->tagmem.link_addr) { in rtc_cntl_hal_enable_tagmem_retention()
118 rtc_cntl_ll_set_tagmem_retention_link_addr((uint32_t)(retent->tagmem.link_addr)); in rtc_cntl_hal_enable_tagmem_retention()
120 if (retent->tagmem.icache.enable) { in rtc_cntl_hal_enable_tagmem_retention()
122 retent->tagmem.icache.start_point, in rtc_cntl_hal_enable_tagmem_retention()
123 retent->tagmem.icache.vld_size, in rtc_cntl_hal_enable_tagmem_retention()
124 retent->tagmem.icache.size in rtc_cntl_hal_enable_tagmem_retention()
127 if (retent->tagmem.dcache.enable) { in rtc_cntl_hal_enable_tagmem_retention()
[all …]
/hal_espressif-latest/components/esp_hw_support/
Dsleep_cpu.c112 s_cpu_retention.retent.tagmem.icache.start_point = index; in cache_tagmem_retention_setup()
113 s_cpu_retention.retent.tagmem.icache.size = (sets * waysgrp) & 0xff; in cache_tagmem_retention_setup()
114 s_cpu_retention.retent.tagmem.icache.vld_size = s_cpu_retention.retent.tagmem.icache.size; in cache_tagmem_retention_setup()
116 … s_cpu_retention.retent.tagmem.icache.vld_size = (code_seg_size / imode.cache_line_size) * waysgrp; in cache_tagmem_retention_setup()
118 s_cpu_retention.retent.tagmem.icache.enable = (code_seg_size != 0) ? 1 : 0; in cache_tagmem_retention_setup()
119 …icache_tagmem_blk_gs = s_cpu_retention.retent.tagmem.icache.vld_size ? s_cpu_retention.retent.tagm… in cache_tagmem_retention_setup()
132 s_cpu_retention.retent.tagmem.dcache.start_point = index; in cache_tagmem_retention_setup()
133 s_cpu_retention.retent.tagmem.dcache.size = (sets * waysgrp) & 0x1ff; in cache_tagmem_retention_setup()
134 s_cpu_retention.retent.tagmem.dcache.vld_size = s_cpu_retention.retent.tagmem.dcache.size; in cache_tagmem_retention_setup()
137 … s_cpu_retention.retent.tagmem.dcache.vld_size = (data_seg_size / dmode.cache_line_size) * waysgrp; in cache_tagmem_retention_setup()
[all …]
/hal_espressif-latest/components/hal/include/hal/
Drtc_hal.h36 } tagmem; member