Zephyr API 3.6.99
|
Data Structures | |
struct | xtensa_mmu_range |
Struct used to map a memory region. More... | |
Macros | |
#define | XTENSA_MMU_MAP_USER BIT(4) |
Software only bit to indicate a memory region can be accessed by user thread(s). | |
#define | XTENSA_MMU_MAP_SHARED BIT(30) |
Software only bit to indicate a memory region is shared by all threads. | |
Functions | |
void | xtensa_mmu_init (void) |
Initialize hardware MMU. | |
void | xtensa_mmu_reinit (void) |
Re-initialize hardware MMU. | |
void | xtensa_mmu_tlb_ipi (void) |
Tell other processors to flush TLBs. | |
void | xtensa_mmu_tlb_shootdown (void) |
Invalidate cache to page tables and flush TLBs. | |
Variables | |
const struct xtensa_mmu_range | xtensa_soc_mmu_ranges [] |
Additional memory regions required by SoC. | |
int | xtensa_soc_mmu_ranges_num |
Number of SoC additional memory regions. | |
Memory domain and partitions | |
typedef uint32_t | k_mem_partition_attr_t |
#define | K_MEM_PARTITION_IS_EXECUTABLE(attr) |
#define | K_MEM_PARTITION_IS_WRITABLE(attr) |
#define | K_MEM_PARTITION_IS_USER(attr) |
#define | K_MEM_PARTITION_P_RW_U_RW ((k_mem_partition_attr_t) {XTENSA_MMU_PERM_W | XTENSA_MMU_MAP_USER}) |
#define | K_MEM_PARTITION_P_RW_U_NA ((k_mem_partition_attr_t) {0}) |
#define | K_MEM_PARTITION_P_RO_U_RO ((k_mem_partition_attr_t) {XTENSA_MMU_MAP_USER}) |
#define | K_MEM_PARTITION_P_RO_U_NA ((k_mem_partition_attr_t) {0}) |
#define | K_MEM_PARTITION_P_NA_U_NA ((k_mem_partition_attr_t) {0}) |
#define | K_MEM_PARTITION_P_RX_U_RX ((k_mem_partition_attr_t) {XTENSA_MMU_PERM_X}) |
Memory region permission and caching mode. | |
#define | XTENSA_MMU_PERM_X BIT(0) |
Memory region is executable. | |
#define | XTENSA_MMU_PERM_W BIT(1) |
Memory region is writable. | |
#define | XTENSA_MMU_PERM_WX (XTENSA_MMU_PERM_W | XTENSA_MMU_PERM_X) |
Memory region is both executable and writable. | |
#define | XTENSA_MMU_CACHED_WB BIT(2) |
Memory region has write-back cache. | |
#define | XTENSA_MMU_CACHED_WT BIT(3) |
Memory region has write-through cache. | |
#define K_MEM_PARTITION_IS_EXECUTABLE | ( | attr | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_IS_USER | ( | attr | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_IS_WRITABLE | ( | attr | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_P_NA_U_NA ((k_mem_partition_attr_t) {0}) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_P_RO_U_NA ((k_mem_partition_attr_t) {0}) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_P_RO_U_RO ((k_mem_partition_attr_t) {XTENSA_MMU_MAP_USER}) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_P_RW_U_NA ((k_mem_partition_attr_t) {0}) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_P_RW_U_RW ((k_mem_partition_attr_t) {XTENSA_MMU_PERM_W | XTENSA_MMU_MAP_USER}) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define K_MEM_PARTITION_P_RX_U_RX ((k_mem_partition_attr_t) {XTENSA_MMU_PERM_X}) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
#define XTENSA_MMU_CACHED_WB BIT(2) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Memory region has write-back cache.
#define XTENSA_MMU_CACHED_WT BIT(3) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Memory region has write-through cache.
#define XTENSA_MMU_MAP_SHARED BIT(30) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Software only bit to indicate a memory region is shared by all threads.
This BIT tells the mapping code whether the memory region should be shared between all threads. That is not used in the HW, it is just for the implementation.
The PTE mapping this memory will use an ASID that is set in the ring 4 spot in RASID.
#define XTENSA_MMU_MAP_USER BIT(4) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Software only bit to indicate a memory region can be accessed by user thread(s).
This BIT tells the mapping code which ring PTE entries to use.
#define XTENSA_MMU_PERM_W BIT(1) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Memory region is writable.
#define XTENSA_MMU_PERM_WX (XTENSA_MMU_PERM_W | XTENSA_MMU_PERM_X) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Memory region is both executable and writable.
#define XTENSA_MMU_PERM_X BIT(0) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Memory region is executable.
typedef uint32_t k_mem_partition_attr_t |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
void xtensa_mmu_init | ( | void | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Initialize hardware MMU.
This initializes the MMU hardware and setup the memory regions at boot.
void xtensa_mmu_reinit | ( | void | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Re-initialize hardware MMU.
This configures the MMU hardware when the cpu lost context and has re-started.
It assumes that the page table is already created and accessible in memory.
void xtensa_mmu_tlb_ipi | ( | void | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Tell other processors to flush TLBs.
This sends IPI to other processors to telling them to invalidate cache to page tables and flush TLBs. This is needed when one processor is updating page tables that may affect threads running on other processors.
void xtensa_mmu_tlb_shootdown | ( | void | ) |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Invalidate cache to page tables and flush TLBs.
This invalidates cache to all page tables and flush TLBs as they may have been modified by other processors.
|
extern |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Additional memory regions required by SoC.
These memory regions will be setup by MMU initialization code at boot.
|
extern |
#include <zephyr/arch/xtensa/xtensa_mmu.h>
Number of SoC additional memory regions.