Lines Matching refs:new_l3
585 pt_entry_t new_l3; in pmap_gpu_enter() local
598 new_l3 = (pt_entry_t)(pa | ATTR_SH(ATTR_SH_IS) | IOMMU_L3_BLOCK); in pmap_gpu_enter()
601 new_l3 |= ATTR_S2_S2AP(ATTR_S2_S2AP_WRITE); in pmap_gpu_enter()
603 new_l3 |= ATTR_S2_S2AP(ATTR_S2_S2AP_READ); in pmap_gpu_enter()
605 new_l3 |= ATTR_S2_XN(ATTR_S2_XN_ALL); in pmap_gpu_enter()
645 smmu_pmap_store(l3, new_l3); in pmap_gpu_enter()
701 pt_entry_t new_l3; in smmu_pmap_enter() local
711 new_l3 = (pt_entry_t)(pa | ATTR_AF | ATTR_SH(ATTR_SH_IS) | in smmu_pmap_enter()
714 new_l3 |= ATTR_S1_AP(ATTR_S1_AP_RO); in smmu_pmap_enter()
715 new_l3 |= ATTR_S1_XN; /* Execute never. */ in smmu_pmap_enter()
716 new_l3 |= ATTR_S1_AP(ATTR_S1_AP_USER); in smmu_pmap_enter()
717 new_l3 |= ATTR_S1_nG; /* Non global. */ in smmu_pmap_enter()
745 smmu_pmap_store(l3, new_l3); in smmu_pmap_enter()