Home
last modified time | relevance | path

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

/openbmc/linux/arch/arm64/include/asm/
H A Dpgtable-prot.h54 #define _PAGE_SHARED (_PAGE_DEFAULT | PTE_USER | PTE_RDONLY | PTE_NG | PTE_PXN | PTE_UXN | PTE_WRI…
55 #define _PAGE_SHARED_EXEC (_PAGE_DEFAULT | PTE_USER | PTE_RDONLY | PTE_NG | PTE_PXN | PTE_WRITE)
56 #define _PAGE_READONLY (_PAGE_DEFAULT | PTE_USER | PTE_RDONLY | PTE_NG | PTE_PXN | PTE_UXN)
57 #define _PAGE_READONLY_EXEC (_PAGE_DEFAULT | PTE_USER | PTE_RDONLY | PTE_NG | PTE_PXN)
58 #define _PAGE_EXECONLY (_PAGE_DEFAULT | PTE_RDONLY | PTE_NG | PTE_PXN)
71 #define PTE_MAYBE_NG (arm64_use_ng_mappings ? PTE_NG : 0)
100 #define PAGE_NONE __pgprot(((_PAGE_DEFAULT) & ~PTE_VALID) | PTE_PROT_NONE | PTE_RDONLY | PTE_NG | …
H A Dpgtable-hwdef.h151 #define PTE_NG (_AT(pteval_t, 1) << 11) /* nG */ macro
/openbmc/linux/arch/arm64/mm/
H A Dptdump.c126 .mask = PTE_NG,
127 .val = PTE_NG,
H A Dmmu.c140 pteval_t mask = PTE_PXN | PTE_RDONLY | PTE_WRITE | PTE_NG; in pgattr_change_is_safe()
155 if (old & ~new & PTE_NG) in pgattr_change_is_safe()
681 pgprot_val(prot) &= ~PTE_NG; in map_entry_trampoline()
H A Dproc.S212 orr \type, \type, #PTE_NG // Same bit for blocks and pages
/openbmc/linux/arch/arm64/kernel/
H A Defi.c97 __pgprot(prot_val | PTE_NG), page_mappings_only); in efi_create_mapping()