| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- /*
- * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef _ROM_CACHE_H_
- #define _ROM_CACHE_H_
- #include "esp_attr.h"
- #if __has_include("dport_access.h")
- #include "dport_access.h"
- #else
- #pragma message("For ESP32 with ECO version < 2, you need to use a DPORT workaround that stalls the other CPU")
- #define DPORT_STALL_OTHER_CPU_START()
- #define DPORT_STALL_OTHER_CPU_END()
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** \defgroup uart_apis, uart configuration and communication related apis
- * @brief uart apis
- */
- /** @addtogroup uart_apis
- * @{
- */
- /**
- * @brief Initialise cache mmu, mark all entries as invalid.
- * Please do not call this function in your SDK application.
- *
- * @param int cpu_no : 0 for PRO cpu, 1 for APP cpu.
- *
- * @return None
- */
- void mmu_init(int cpu_no);
- /**
- * @brief Set Flash-Cache mmu mapping.
- * Please do not call this function in your SDK application.
- *
- * @param int cpu_no : CPU number, 0 for PRO cpu, 1 for APP cpu.
- *
- * @param int pod : process identifier. Range 0~7.
- *
- * @param unsigned int vaddr : virtual address in CPU address space.
- * Can be IRam0, IRam1, IRom0 and DRom0 memory address.
- * Should be aligned by psize.
- *
- * @param unsigned int paddr : physical address in Flash.
- * Should be aligned by psize.
- *
- * @param int psize : page size of flash, in kilobytes. Should be 64 here.
- *
- * @param int num : pages to be set.
- *
- * @return unsigned int: error status
- * 0 : mmu set success
- * 1 : vaddr or paddr is not aligned
- * 2 : pid error
- * 3 : psize error
- * 4 : mmu table to be written is out of range
- * 5 : vaddr is out of range
- */
- static inline __attribute__((always_inline)) unsigned int IRAM_ATTR cache_flash_mmu_set(int cpu_no, int pid, unsigned int vaddr, unsigned int paddr, int psize, int num)
- {
- extern unsigned int cache_flash_mmu_set_rom(int cpu_no, int pid, unsigned int vaddr, unsigned int paddr, int psize, int num);
- unsigned int ret;
- DPORT_STALL_OTHER_CPU_START();
- ret = cache_flash_mmu_set_rom(cpu_no, pid, vaddr, paddr, psize, num);
- DPORT_STALL_OTHER_CPU_END();
- return ret;
- }
- /**
- * @brief Set Ext-SRAM-Cache mmu mapping.
- * Please do not call this function in your SDK application.
- *
- * Note that this code lives in IRAM and has a bugfix in respect to the ROM version
- * of this function (which erroneously refused a vaddr > 2MiB
- *
- * @param int cpu_no : CPU number, 0 for PRO cpu, 1 for APP cpu.
- *
- * @param int pod : process identifier. Range 0~7.
- *
- * @param unsigned int vaddr : virtual address in CPU address space.
- * Can be IRam0, IRam1, IRom0 and DRom0 memory address.
- * Should be aligned by psize.
- *
- * @param unsigned int paddr : physical address in Ext-SRAM.
- * Should be aligned by psize.
- *
- * @param int psize : page size of flash, in kilobytes. Should be 32 here.
- *
- * @param int num : pages to be set.
- *
- * @return unsigned int: error status
- * 0 : mmu set success
- * 1 : vaddr or paddr is not aligned
- * 2 : pid error
- * 3 : psize error
- * 4 : mmu table to be written is out of range
- * 5 : vaddr is out of range
- */
- unsigned int IRAM_ATTR cache_sram_mmu_set(int cpu_no, int pid, unsigned int vaddr, unsigned int paddr, int psize, int num);
- /**
- * @brief Initialise cache access for the cpu.
- * Please do not call this function in your SDK application.
- *
- * @param int cpu_no : 0 for PRO cpu, 1 for APP cpu.
- *
- * @return None
- */
- static inline __attribute__((always_inline)) void IRAM_ATTR Cache_Read_Init(int cpu_no)
- {
- extern void Cache_Read_Init_rom(int cpu_no);
- DPORT_STALL_OTHER_CPU_START();
- Cache_Read_Init_rom(cpu_no);
- DPORT_STALL_OTHER_CPU_END();
- }
- /**
- * @brief Flush the cache value for the cpu.
- * Please do not call this function in your SDK application.
- *
- * @param int cpu_no : 0 for PRO cpu, 1 for APP cpu.
- *
- * @return None
- */
- static inline __attribute__((always_inline)) void IRAM_ATTR Cache_Flush(int cpu_no)
- {
- extern void Cache_Flush_rom(int cpu_no);
- DPORT_STALL_OTHER_CPU_START();
- Cache_Flush_rom(cpu_no);
- DPORT_STALL_OTHER_CPU_END();
- }
- /**
- * @brief Disable Cache access for the cpu.
- * Please do not call this function in your SDK application.
- *
- * @param int cpu_no : 0 for PRO cpu, 1 for APP cpu.
- *
- * @return None
- */
- static inline __attribute__((always_inline)) void IRAM_ATTR Cache_Read_Disable(int cpu_no)
- {
- extern void Cache_Read_Disable_rom(int cpu_no);
- DPORT_STALL_OTHER_CPU_START();
- Cache_Read_Disable_rom(cpu_no);
- DPORT_STALL_OTHER_CPU_END();
- }
- /**
- * @brief Enable Cache access for the cpu.
- * Please do not call this function in your SDK application.
- *
- * @param int cpu_no : 0 for PRO cpu, 1 for APP cpu.
- *
- * @return None
- */
- static inline __attribute__((always_inline)) void IRAM_ATTR Cache_Read_Enable(int cpu_no)
- {
- extern void Cache_Read_Enable_rom(int cpu_no);
- DPORT_STALL_OTHER_CPU_START();
- Cache_Read_Enable_rom(cpu_no);
- DPORT_STALL_OTHER_CPU_END();
- }
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* _ROM_CACHE_H_ */
|