]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/etnaviv: mmuv2: support 40 bit phys address
authorLucas Stach <l.stach@pengutronix.de>
Fri, 4 May 2018 09:58:45 +0000 (11:58 +0200)
committerLucas Stach <l.stach@pengutronix.de>
Fri, 18 May 2018 13:27:56 +0000 (15:27 +0200)
MMUv2 supports up to 40 bits of physical address by folding the upper
8 bits into bits [4:11] of the PTE.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c

index 6336fdc70433da3581502c9082d53616d3a92cc5..72bd0107a00c51b81d5daf59ae8ea6c966759968 100644 (file)
@@ -87,11 +87,14 @@ static int etnaviv_iommuv2_map(struct etnaviv_iommu_domain *domain,
        struct etnaviv_iommuv2_domain *etnaviv_domain =
                        to_etnaviv_domain(domain);
        int mtlb_entry, stlb_entry, ret;
-       u32 entry = (u32)paddr | MMUv2_PTE_PRESENT;
+       u32 entry = lower_32_bits(paddr) | MMUv2_PTE_PRESENT;
 
        if (size != SZ_4K)
                return -EINVAL;
 
+       if (IS_ENABLED(CONFIG_PHYS_ADDR_T_64BIT))
+               entry |= (upper_32_bits(paddr) & 0xff) << 4;
+
        if (prot & ETNAVIV_PROT_WRITE)
                entry |= MMUv2_PTE_WRITEABLE;