Lines Matching refs:prot
111 #define __pgprot_modify(prot,mask,bits) \ argument
112 __pgprot((pgprot_val(prot) & ~(mask)) | (bits))
114 #define pgprot_noncached(prot) \ argument
115 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED)
117 #define pgprot_writecombine(prot) \ argument
118 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE)
120 #define pgprot_stronglyordered(prot) \ argument
121 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED)
123 #define pgprot_device(prot) \ argument
124 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_DEV_SHARED | L_PTE_SHARED | L_PTE_DIRTY | L_PTE_XN)
127 #define pgprot_dmacoherent(prot) \ argument
128 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE | L_PTE_XN)
134 #define pgprot_dmacoherent(prot) \ argument
135 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED | L_PTE_XN)
168 #define pfn_pte(pfn,prot) __pte(__pfn_to_phys(pfn) | pgprot_val(prot)) argument
216 static inline pte_t clear_pte_bit(pte_t pte, pgprot_t prot) in clear_pte_bit() argument
218 pte_val(pte) &= ~pgprot_val(prot); in clear_pte_bit()
222 static inline pte_t set_pte_bit(pte_t pte, pgprot_t prot) in set_pte_bit() argument
224 pte_val(pte) |= pgprot_val(prot); in set_pte_bit()