Home
last modified time | relevance | path

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

/linux-6.1.9/arch/arm64/include/asm/
Dpgtable-prot.h59 #define PROT_NORMAL (PROT_DEFAULT | PTE_PXN | PTE_UXN | PTE_WRITE | PTE_ATTRINDX(MT_NORMAL)) macro
68 #define PAGE_KERNEL __pgprot(PROT_NORMAL)
69 #define PAGE_KERNEL_RO __pgprot((PROT_NORMAL & ~PTE_WRITE) | PTE_RDONLY)
70 #define PAGE_KERNEL_ROX __pgprot((PROT_NORMAL & ~(PTE_WRITE | PTE_PXN)) | PTE_RDONLY)
71 #define PAGE_KERNEL_EXEC __pgprot(PROT_NORMAL & ~PTE_PXN)
72 #define PAGE_KERNEL_EXEC_CONT __pgprot((PROT_NORMAL & ~PTE_PXN) | PTE_CONT)
Dio.h171 return ioremap_prot(addr, size, PROT_NORMAL); in ioremap_cache()