Searched refs:PROT_NORMAL (Results 1 – 2 of 2) sorted by relevance
59 #define PROT_NORMAL (PROT_DEFAULT | PTE_PXN | PTE_UXN | PTE_WRITE | PTE_ATTRINDX(MT_NORMAL)) macro68 #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)
171 return ioremap_prot(addr, size, PROT_NORMAL); in ioremap_cache()