Home
last modified time | relevance | path

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

/optee_os/core/arch/riscv/mm/
H A Dcore_mmu_arch.c137 static unsigned long core_mmu_pte_create(unsigned long ppn, uint8_t pte_bits) in core_mmu_pte_create() argument
147 return SHIFT_U64(ppn, PTE_PPN_SHIFT) | pte_bits; in core_mmu_pte_create()
223 unsigned long pte_bits = 0; in mattr_to_pte_bits() local
229 pte_bits |= PTE_V; in mattr_to_pte_bits()
232 pte_bits |= PTE_R | PTE_U; in mattr_to_pte_bits()
234 pte_bits |= PTE_W | PTE_U; in mattr_to_pte_bits()
236 pte_bits |= PTE_X | PTE_U; in mattr_to_pte_bits()
239 pte_bits |= PTE_R; in mattr_to_pte_bits()
241 pte_bits |= PTE_W | PTE_R; in mattr_to_pte_bits()
243 pte_bits |= PTE_X | PTE_R; in mattr_to_pte_bits()
[all …]