Lines Matching refs:pde
584 pd_entry_t *pde; in pmap_gpu_enter() local
616 pde = smmu_pmap_pde(pmap, va, &lvl); in pmap_gpu_enter()
617 if (pde != NULL && lvl == 2) { in pmap_gpu_enter()
618 l3 = smmu_pmap_l2_to_l3(pde, va); in pmap_gpu_enter()
665 pd_entry_t *pde; in pmap_gpu_remove() local
674 pde = smmu_pmap_pde(pmap, va, &lvl); in pmap_gpu_remove()
675 if (pde == NULL || lvl != 2) { in pmap_gpu_remove()
680 pte = smmu_pmap_l2_to_l3(pde, va); in pmap_gpu_remove()
700 pd_entry_t *pde; in smmu_pmap_enter() local
728 pde = smmu_pmap_pde(pmap, va, &lvl); in smmu_pmap_enter()
729 if (pde != NULL && lvl == 2) { in smmu_pmap_enter()
730 l3 = smmu_pmap_l2_to_l3(pde, va); in smmu_pmap_enter()