| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- /*
- * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- // The LL layer for Cache register operations
- #pragma once
- #include <stdbool.h>
- #include "soc/extmem_reg.h"
- #include "soc/ext_mem_defs.h"
- #include "hal/cache_types.h"
- #include "hal/assert.h"
- #include "esp32s2/rom/cache.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define CACHE_LL_DEFAULT_IBUS_MASK CACHE_BUS_IBUS0
- #define CACHE_LL_DEFAULT_DBUS_MASK CACHE_BUS_IBUS2
- #define CACHE_LL_L1_ICACHE_AUTOLOAD (1<<0)
- #define CACHE_LL_L1_DCACHE_AUTOLOAD (1<<0)
- /**
- * @brief Check if ICache auto preload is enabled or not
- *
- * @return true: enabled; false: disabled
- */
- __attribute__((always_inline))
- static inline bool cache_ll_l1_is_icache_autoload_enabled(void)
- {
- bool enabled = false;
- if (REG_GET_BIT(EXTMEM_PRO_ICACHE_CTRL_REG, EXTMEM_PRO_ICACHE_AUTOLOAD_ENA)) {
- enabled = true;
- }
- return enabled;
- }
- /**
- * @brief Check if DCache auto preload is enabled or not
- *
- * @return true: enabled; false: disabled
- */
- __attribute__((always_inline))
- static inline bool cache_ll_l1_is_dcache_autoload_enabled(void)
- {
- bool enabled = false;
- if (REG_GET_BIT(EXTMEM_PRO_DCACHE_CTRL_REG, EXTMEM_PRO_DCACHE_AUTOLOAD_ENA)) {
- enabled = true;
- }
- return enabled;
- }
- /**
- * @brief Check if ICache or DCache auto preload is enabled or not
- *
- * @param type see `cache_type_t`
- *
- * @return true: enabled; false: disabled
- */
- __attribute__((always_inline))
- static inline bool cache_ll_is_cache_autoload_enabled(cache_type_t type)
- {
- bool enabled = false;
- switch (type)
- {
- case CACHE_TYPE_INSTRUCTION:
- enabled = cache_ll_l1_is_icache_autoload_enabled();
- break;
- case CACHE_TYPE_DATA:
- enabled = cache_ll_l1_is_dcache_autoload_enabled();
- break;
- default: //CACHE_TYPE_ALL
- enabled = cache_ll_l1_is_icache_autoload_enabled() && cache_ll_l1_is_dcache_autoload_enabled();
- break;
- }
- return enabled;
- }
- /**
- * @brief Disable ICache
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_disable_icache(void)
- {
- Cache_Disable_ICache();
- }
- /**
- * @brief Disable DCache
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_disable_dcache(void)
- {
- Cache_Disable_DCache();
- }
- /**
- * @brief Disable ICache or DCache or both
- *
- * @param type see `cache_type_t`
- */
- __attribute__((always_inline))
- static inline void cache_ll_disable_cache(cache_type_t type)
- {
- switch (type)
- {
- case CACHE_TYPE_INSTRUCTION:
- cache_ll_l1_disable_icache();
- break;
- case CACHE_TYPE_DATA:
- cache_ll_l1_disable_dcache();
- break;
- default: //CACHE_TYPE_ALL
- cache_ll_l1_disable_icache();
- cache_ll_l1_disable_dcache();
- break;
- }
- }
- /**
- * @brief Enable ICache
- *
- * @param inst_autoload_en ICache auto preload enabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_enable_icache(bool inst_autoload_en)
- {
- Cache_Enable_ICache(inst_autoload_en ? CACHE_LL_L1_ICACHE_AUTOLOAD : 0);
- }
- /**
- * @brief Enable DCache
- *
- * @param data_autoload_en DCache auto preload enabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_enable_dcache(bool data_autoload_en)
- {
- Cache_Enable_DCache(data_autoload_en ? CACHE_LL_L1_DCACHE_AUTOLOAD : 0);
- }
- /**
- * @brief Enable ICache or DCache or both
- *
- * @param type see `cache_type_t`
- *
- * @param data_autoload_en Dcache auto preload enabled
- *
- * @param inst_autoload_en Icache auto preload enabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_enable_cache(cache_type_t type, bool inst_autoload_en, bool data_autoload_en)
- {
- switch (type)
- {
- case CACHE_TYPE_INSTRUCTION:
- cache_ll_l1_enable_icache(inst_autoload_en);
- break;
- case CACHE_TYPE_DATA:
- cache_ll_l1_enable_dcache(data_autoload_en);
- break;
- default: //CACHE_TYPE_ALL
- cache_ll_l1_enable_icache(inst_autoload_en);
- cache_ll_l1_enable_dcache(data_autoload_en);
- break;
- }
- }
- /**
- * @brief Suspend ICache
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_suspend_icache(void)
- {
- Cache_Suspend_ICache();
- }
- /**
- * @brief Suspend DCache
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_suspend_dcache(void)
- {
- Cache_Suspend_DCache();
- }
- /**
- * @brief Suspend ICache or DCache or both
- *
- * @param type see `cache_type_t`
- */
- __attribute__((always_inline))
- static inline void cache_ll_suspend_cache(cache_type_t type)
- {
- switch (type)
- {
- case CACHE_TYPE_INSTRUCTION:
- cache_ll_l1_suspend_icache();
- break;
- case CACHE_TYPE_DATA:
- cache_ll_l1_suspend_dcache();
- break;
- default: //CACHE_TYPE_ALL
- cache_ll_l1_suspend_icache();
- cache_ll_l1_suspend_dcache();
- break;
- }
- }
- /**
- * @brief Resume ICache
- *
- * @param inst_autoload_en ICache auto preload enabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_resume_icache(bool inst_autoload_en)
- {
- Cache_Resume_ICache(inst_autoload_en ? CACHE_LL_L1_ICACHE_AUTOLOAD : 0);
- }
- /**
- * @brief Resume DCache
- *
- * @param data_autoload_en DCache auto preload enabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_resume_dcache(bool data_autoload_en)
- {
- Cache_Resume_DCache(data_autoload_en ? CACHE_LL_L1_DCACHE_AUTOLOAD : 0);
- }
- /**
- * @brief Resume ICache or DCache or both
- *
- * @param type see `cache_type_t`
- *
- * @param data_autoload_en Dcache auto preload enabled
- *
- * @param inst_autoload_en Icache auto preload enabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_resume_cache(cache_type_t type, bool inst_autoload_en, bool data_autoload_en)
- {
- switch (type)
- {
- case CACHE_TYPE_INSTRUCTION:
- cache_ll_l1_resume_icache(inst_autoload_en);
- break;
- case CACHE_TYPE_DATA:
- cache_ll_l1_resume_dcache(data_autoload_en);
- break;
- default: //CACHE_TYPE_ALL
- cache_ll_l1_resume_icache(inst_autoload_en);
- cache_ll_l1_resume_dcache(data_autoload_en);
- break;
- }
- }
- /**
- * @brief Check if ICache is enabled or not
- *
- * @param cache_id cache ID (when l1 cache is per core)
- *
- * @return true: enabled; false: disabled
- */
- __attribute__((always_inline))
- static inline bool cache_ll_l1_is_icache_enabled(uint32_t cache_id){
- HAL_ASSERT(cache_id == 0);
- bool enabled;
- enabled = REG_GET_BIT(EXTMEM_PRO_ICACHE_CTRL_REG, EXTMEM_PRO_ICACHE_ENABLE);
- return enabled;
- }
- /**
- * @brief Check if DCache is enabled or not
- *
- * @param cache_id cache ID (when l1 cache is per core)
- *
- * @return true: enabled; false: disabled
- */
- __attribute__((always_inline))
- static inline bool cache_ll_l1_is_dcache_enabled(uint32_t cache_id)
- {
- HAL_ASSERT(cache_id == 0);
- bool enabled;
- enabled = REG_GET_BIT(EXTMEM_PRO_DCACHE_CTRL_REG, EXTMEM_PRO_DCACHE_ENABLE);
- return enabled;
- }
- /**
- * @brief Check if ICache or DCache or both is enabled or not
- *
- * @param type see `cache_type_t`
- *
- * @return true: enabled; false: disabled
- */
- __attribute__((always_inline))
- static inline bool cache_ll_is_cache_enabled(cache_type_t type)
- {
- bool enabled = false;
- switch (type)
- {
- case CACHE_TYPE_DATA:
- enabled = cache_ll_l1_is_dcache_enabled(0);
- break;
- case CACHE_TYPE_INSTRUCTION:
- enabled = cache_ll_l1_is_icache_enabled(0);
- break;
- default: //CACHE_TYPE_ALL
- enabled = cache_ll_l1_is_dcache_enabled(0) && cache_ll_l1_is_icache_enabled(0);
- break;
- }
- return enabled;
- }
- /**
- * @brief Invalidate cache supported addr
- *
- * Invalidate a Cache item for either ICache or DCache.
- *
- * @param vaddr Start address of the region to be invalidated
- * @param size Size of the region to be invalidated
- */
- __attribute__((always_inline))
- static inline void cache_ll_invalidate_addr(uint32_t vaddr, uint32_t size)
- {
- Cache_Invalidate_Addr(vaddr, size);
- }
- /**
- * @brief Writeback cache supported addr
- *
- * Writeback the DCache item to external memory
- *
- * @param vaddr Start address of the region to writeback
- * @param size Size of the region to writeback
- */
- __attribute__((always_inline))
- static inline void cache_ll_writeback_addr(uint32_t vaddr, uint32_t size)
- {
- Cache_WriteBack_Addr(vaddr, size);
- }
- /**
- * @brief Get ICache line size, in bytes
- *
- * @return ICache line size, in bytes
- */
- __attribute__((always_inline))
- static inline uint32_t cache_ll_l1_icache_get_line_size(void)
- {
- uint32_t size = 0;
- size = Cache_Get_ICache_Line_Size();
- return size;
- }
- /**
- * @brief Get DCache line size, in bytes
- *
- * @return DCache line size, in bytes
- */
- __attribute__((always_inline))
- static inline uint32_t cache_ll_l1_dcache_get_line_size(void)
- {
- uint32_t size = 0;
- size = Cache_Get_DCache_Line_Size();
- return size;
- }
- /**
- * @brief Get ICache or DCache line size, in bytes
- *
- * @param type see `cache_type_t`
- *
- * @return ICache/DCache line size, in bytes
- */
- __attribute__((always_inline))
- static inline uint32_t cache_ll_get_line_size(cache_type_t type)
- {
- uint32_t size = 0;
- switch (type)
- {
- case CACHE_TYPE_INSTRUCTION:
- size = cache_ll_l1_icache_get_line_size();
- break;
- case CACHE_TYPE_DATA:
- size = cache_ll_l1_dcache_get_line_size();
- break;
- default: //CACHE_TYPE_ALL
- HAL_ASSERT(false);
- break;
- }
- return size;
- }
- /**
- * @brief Get the buses of a particular cache that are mapped to a virtual address range
- *
- * External virtual address can only be accessed when the involved cache buses are enabled.
- * This API is to get the cache buses where the memory region (from `vaddr_start` to `vaddr_start + len`) reside.
- *
- * @param cache_id cache ID (when l1 cache is per core)
- * @param vaddr_start virtual address start
- * @param len vaddr length
- */
- #if !BOOTLOADER_BUILD
- __attribute__((always_inline))
- #endif
- static inline cache_bus_mask_t cache_ll_l1_get_bus(uint32_t cache_id, uint32_t vaddr_start, uint32_t len)
- {
- (void)cache_id;
- cache_bus_mask_t mask = 0;
- uint32_t vaddr_end = vaddr_start + len - 1;
- if (vaddr_start >= IRAM1_ADDRESS_LOW) {
- mask |= CACHE_BUS_IBUS1;
- } else if (vaddr_start >= IRAM0_CACHE_ADDRESS_LOW) {
- mask |= CACHE_BUS_IBUS0;
- mask |= (vaddr_end >= IRAM1_ADDRESS_LOW) ? CACHE_BUS_IBUS1 : 0;
- } else if (vaddr_start >= DRAM0_CACHE_ADDRESS_LOW) {
- mask |= CACHE_BUS_DBUS0;
- mask |= (vaddr_end >= IRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_IBUS0 : 0;
- mask |= (vaddr_end >= IRAM1_ADDRESS_LOW) ? CACHE_BUS_IBUS1 : 0;
- } else if (vaddr_start >= DRAM1_ADDRESS_LOW) {
- mask |= CACHE_BUS_DBUS1;
- mask |= (vaddr_end >= DRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_DBUS0 : 0;
- mask |= (vaddr_end >= IRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_IBUS0 : 0;
- mask |= (vaddr_end >= IRAM1_ADDRESS_LOW) ? CACHE_BUS_IBUS1 : 0;
- } else if (vaddr_start >= DPORT_CACHE_ADDRESS_LOW) {
- mask |= CACHE_BUS_DBUS2;
- mask |= (vaddr_end >= DRAM1_ADDRESS_LOW) ? CACHE_BUS_DBUS1 : 0;
- mask |= (vaddr_end >= DRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_DBUS0 : 0;
- mask |= (vaddr_end >= IRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_IBUS0 : 0;
- mask |= (vaddr_end >= IRAM1_ADDRESS_LOW) ? CACHE_BUS_IBUS1 : 0;
- } else if (vaddr_start >= DROM0_ADDRESS_LOW) {
- mask |= CACHE_BUS_IBUS2;
- mask |= (vaddr_end >= DPORT_CACHE_ADDRESS_LOW) ? CACHE_BUS_DBUS2 : 0;
- mask |= (vaddr_end >= DRAM1_ADDRESS_LOW) ? CACHE_BUS_DBUS1 : 0;
- mask |= (vaddr_end >= DRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_DBUS0 : 0;
- mask |= (vaddr_end >= IRAM0_CACHE_ADDRESS_LOW) ? CACHE_BUS_IBUS0 : 0;
- mask |= (vaddr_end >= IRAM1_ADDRESS_LOW) ? CACHE_BUS_IBUS1 : 0;
- } else {
- abort();
- }
- return mask;
- }
- /**
- * Enable the Cache Buses
- *
- * @param cache_id cache ID (when l1 cache is per core)
- * @param mask To know which buses should be enabled
- */
- #if !BOOTLOADER_BUILD
- __attribute__((always_inline))
- #endif
- static inline void cache_ll_l1_enable_bus(uint32_t cache_id, cache_bus_mask_t mask)
- {
- (void)cache_id;
- uint32_t ibus_mask = 0;
- ibus_mask |= (mask & CACHE_BUS_IBUS0) ? EXTMEM_PRO_ICACHE_MASK_IRAM0 : 0;
- ibus_mask |= (mask & CACHE_BUS_IBUS1) ? EXTMEM_PRO_ICACHE_MASK_IRAM1 : 0;
- ibus_mask |= (mask & CACHE_BUS_IBUS2) ? EXTMEM_PRO_ICACHE_MASK_DROM0 : 0;
- REG_CLR_BIT(EXTMEM_PRO_ICACHE_CTRL1_REG, ibus_mask);
- uint32_t dbus_mask = 0;
- dbus_mask |= (mask & CACHE_BUS_DBUS0) ? EXTMEM_PRO_DCACHE_MASK_DRAM0 : 0;
- dbus_mask |= (mask & CACHE_BUS_DBUS1) ? EXTMEM_PRO_DCACHE_MASK_DRAM1 : 0;
- dbus_mask |= (mask & CACHE_BUS_DBUS2) ? EXTMEM_PRO_DCACHE_MASK_DPORT : 0;
- REG_CLR_BIT(EXTMEM_PRO_DCACHE_CTRL1_REG, dbus_mask);
- }
- /**
- * Disable the Cache Buses
- *
- * @param cache_id cache ID (when l1 cache is per core)
- * @param mask To know which buses should be disabled
- */
- __attribute__((always_inline))
- static inline void cache_ll_l1_disable_bus(uint32_t cache_id, cache_bus_mask_t mask)
- {
- (void)cache_id;
- uint32_t ibus_mask = 0;
- ibus_mask |= (mask & CACHE_BUS_IBUS0) ? EXTMEM_PRO_ICACHE_MASK_IRAM0 : 0;
- ibus_mask |= (mask & CACHE_BUS_IBUS1) ? EXTMEM_PRO_ICACHE_MASK_IRAM1 : 0;
- ibus_mask |= (mask & CACHE_BUS_IBUS2) ? EXTMEM_PRO_ICACHE_MASK_DROM0 : 0;
- REG_SET_BIT(EXTMEM_PRO_ICACHE_CTRL1_REG, ibus_mask);
- uint32_t dbus_mask = 0;
- dbus_mask |= (mask & CACHE_BUS_DBUS0) ? EXTMEM_PRO_DCACHE_MASK_DRAM0 : 0;
- dbus_mask |= (mask & CACHE_BUS_DBUS1) ? EXTMEM_PRO_DCACHE_MASK_DRAM1 : 0;
- dbus_mask |= (mask & CACHE_BUS_DBUS2) ? EXTMEM_PRO_DCACHE_MASK_DPORT : 0;
- REG_SET_BIT(EXTMEM_PRO_DCACHE_CTRL1_REG, dbus_mask);
- }
- #ifdef __cplusplus
- }
- #endif
|