iommu/rockchip: add ARM64 cache flush operation for iommu
authorSimon <xxm@rock-chips.com>
Wed, 30 Mar 2016 01:34:35 +0000 (09:34 +0800)
committerSimon <xxm@rock-chips.com>
Wed, 30 Mar 2016 03:14:40 +0000 (11:14 +0800)
Change-Id: I5848ca01a38e902a436b5b4abccfe235e2746cc1
Signed-off-by: Simon <xxm@rock-chips.com>
drivers/iommu/rockchip-iommu.c

index e9db6badd5cb3cf8b36fc6e20519213da9ad0d4c..a34e459f560d71be090a6ecc03d9f1625fddb0dc 100644 (file)
@@ -95,12 +95,16 @@ struct rk_iommu {
 
 static inline void rk_table_flush(u32 *va, unsigned int count)
 {
+#if defined(CONFIG_ARM)
        phys_addr_t pa_start = virt_to_phys(va);
        phys_addr_t pa_end = virt_to_phys(va + count);
        size_t size = pa_end - pa_start;
 
        __cpuc_flush_dcache_area(va, size);
        outer_flush_range(pa_start, pa_end);
+#elif defined(CONFIG_ARM64)
+       __dma_flush_range(va, va + count);
+#endif
 }
 
 static struct rk_iommu_domain *to_rk_domain(struct iommu_domain *dom)