Lines Matching refs:prot
113 #define __pgprot_modify(prot,mask,bits) \ argument
114 __pgprot((pgprot_val(prot) & ~(mask)) | (bits))
116 #define pgprot_noncached(prot) \ argument
117 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED)
119 #define pgprot_writecombine(prot) \ argument
120 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE)
122 #define pgprot_stronglyordered(prot) \ argument
123 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED)
126 #define pgprot_dmacoherent(prot) \ argument
127 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE | L_PTE_XN)
133 #define pgprot_dmacoherent(prot) \ argument
134 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED | L_PTE_XN)
210 #define pfn_pte(pfn,prot) __pte(__pfn_to_phys(pfn) | pgprot_val(prot)) argument
213 #define mk_pte(page,prot) pfn_pte(page_to_pfn(page), prot) argument
255 static inline pte_t clear_pte_bit(pte_t pte, pgprot_t prot) in clear_pte_bit() argument
257 pte_val(pte) &= ~pgprot_val(prot); in clear_pte_bit()
261 static inline pte_t set_pte_bit(pte_t pte, pgprot_t prot) in set_pte_bit() argument
263 pte_val(pte) |= pgprot_val(prot); in set_pte_bit()