Lines Matching refs:__pgprot

175 #define PAGE_NONE	__pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
178 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
185 #define PAGE_EXECREAD __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
194 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
199 #define PAGE_WRITEONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
204 #define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
213 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
221 __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \
228 #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
235 __pgprot(0)
238 #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
241 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
245 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
248 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
255 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_CACHABLE | \
260 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
264 #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
269 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
274 #define PAGE_NONE __pgprot(0)
275 #define PAGE_SHARED __pgprot(0)
276 #define PAGE_COPY __pgprot(0)
277 #define PAGE_EXECREAD __pgprot(0)
278 #define PAGE_RWX __pgprot(0)
279 #define PAGE_READONLY __pgprot(0)
280 #define PAGE_WRITEONLY __pgprot(0)
281 #define PAGE_KERNEL __pgprot(0)
282 #define PAGE_KERNEL_NOCACHE __pgprot(0)
283 #define PAGE_KERNEL_RO __pgprot(0)
286 __pgprot(0)
379 __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE)