Lines Matching refs:__pgprot
29 #define PAGE_NONE __pgprot(0) /* these mean nothing to non MMU */
30 #define PAGE_SHARED __pgprot(0) /* these mean nothing to non MMU */
31 #define PAGE_COPY __pgprot(0) /* these mean nothing to non MMU */
32 #define PAGE_READONLY __pgprot(0) /* these mean nothing to non MMU */
33 #define PAGE_KERNEL __pgprot(0) /* these mean nothing to non MMU */
107 (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
111 (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
254 #define PAGE_NONE __pgprot(_PAGE_BASE)
255 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
256 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
257 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
259 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
260 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
261 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
263 #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
264 #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_SHARED)
265 #define PAGE_KERNEL_CI __pgprot(_PAGE_IO)