Lines Matching refs:__pgprot
67 #define PAGE_NONE __pgprot(_PAGE_CACHABLE | _PAGE_ACCESSED)
68 #define PAGE_SHARED __pgprot(_PAGE_COMMON | _PAGE_READ | _PAGE_WRITE | _PAGE_SHARED)
69 #define PAGE_EXECREAD __pgprot(_PAGE_COMMON | _PAGE_READ | _PAGE_EXECUTE)
71 #define PAGE_READONLY __pgprot(_PAGE_COMMON | _PAGE_READ)
72 #define PAGE_WRITEONLY __pgprot(_PAGE_COMMON | _PAGE_WRITE)
73 #define PAGE_RWX __pgprot(_PAGE_COMMON | _PAGE_READ | _PAGE_WRITE | _PAGE_EXECUTE)
74 #define PAGE_KERNEL __pgprot(_KERNPG_TABLE)
75 #define PAGE_KERNEL_NOCACHE __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | _PAGE_EXECUTE | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_SHARED)
76 #define pgprot_noncached(x) __pgprot(((x).pgprot & ~(_PAGE_CACHABLE)) | _PAGE_DEVICE)
77 #define pgprot_writecombine(prot) __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE)