Lines Matching refs:__pgprot
25 #define PAGE_NONE __pgprot(0) /* these mean nothing to non MMU */
26 #define PAGE_SHARED __pgprot(0) /* these mean nothing to non MMU */
27 #define PAGE_COPY __pgprot(0) /* these mean nothing to non MMU */
28 #define PAGE_READONLY __pgprot(0) /* these mean nothing to non MMU */
29 #define PAGE_KERNEL __pgprot(0) /* these mean nothing to non MMU */
95 (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
99 (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
233 #define PAGE_NONE __pgprot(_PAGE_BASE)
234 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
235 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
236 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
238 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
239 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
240 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
242 #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
243 #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_SHARED)
244 #define PAGE_KERNEL_CI __pgprot(_PAGE_IO)