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) | \
253 #define PAGE_NONE __pgprot(_PAGE_BASE)
254 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
255 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
256 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
258 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
259 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
260 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
262 #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
263 #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_SHARED)
264 #define PAGE_KERNEL_CI __pgprot(_PAGE_IO)