Lines Matching refs:pte
94 unsigned long offs, u32 pte) in gart_set_pte() argument
97 writel(pte, gart->regs + GART_ENTRY_DATA); in gart_set_pte()
100 pte ? "map" : "unmap", offs, pte & GART_PAGE_MASK); in gart_set_pte()
106 unsigned long pte; in gart_read_pte() local
109 pte = readl(gart->regs + GART_ENTRY_DATA); in gart_read_pte()
111 return pte; in gart_read_pte()
133 unsigned long pte; in gart_dump_table() local
135 pte = gart_read_pte(gart, iova); in gart_dump_table()
138 (GART_ENTRY_PHYS_ADDR_VALID & pte) ? "v" : " ", in gart_dump_table()
139 iova, pte & GART_PAGE_MASK); in gart_dump_table()
311 unsigned long pte; in gart_iommu_iova_to_phys() local
319 pte = gart_read_pte(gart, iova); in gart_iommu_iova_to_phys()
322 pa = (pte & GART_PAGE_MASK); in gart_iommu_iova_to_phys()