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 */
105 (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
109 (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
251 #define PAGE_NONE __pgprot(_PAGE_BASE)
252 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
253 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
254 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
256 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
257 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
258 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
260 #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
261 #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_SHARED)
262 #define PAGE_KERNEL_CI __pgprot(_PAGE_IO)