Lines Matching refs:pte
96 unsigned long offs, u32 pte) in gart_set_pte() argument
99 writel(pte, gart->regs + GART_ENTRY_DATA); in gart_set_pte()
102 pte ? "map" : "unmap", offs, pte & GART_PAGE_MASK); in gart_set_pte()
108 unsigned long pte; in gart_read_pte() local
111 pte = readl(gart->regs + GART_ENTRY_DATA); in gart_read_pte()
113 return pte; in gart_read_pte()
135 unsigned long pte; in gart_dump_table() local
137 pte = gart_read_pte(gart, iova); in gart_dump_table()
140 (GART_ENTRY_PHYS_ADDR_VALID & pte) ? "v" : " ", in gart_dump_table()
141 iova, pte & GART_PAGE_MASK); in gart_dump_table()
313 unsigned long pte; in gart_iommu_iova_to_phys() local
321 pte = gart_read_pte(gart, iova); in gart_iommu_iova_to_phys()
324 pa = (pte & GART_PAGE_MASK); in gart_iommu_iova_to_phys()