ARM: zynqmp: Add platform specific arch_get_page_table
[oweals/u-boot.git] / arch / arm / cpu / armv8 / cache_v8.c
index c22f7b6a51e6c6b8209a08a8998c1e3eb314cfec..835f6a6525ea08e8c3a1473d78fa7dbf1428c681 100644 (file)
@@ -180,14 +180,6 @@ void flush_dcache_all(void)
 {
 }
 
-void invalidate_dcache_range(unsigned long start, unsigned long stop)
-{
-}
-
-void flush_dcache_range(unsigned long start, unsigned long stop)
-{
-}
-
 void dcache_enable(void)
 {
 }
@@ -261,11 +253,3 @@ void __weak enable_caches(void)
        icache_enable();
        dcache_enable();
 }
-
-/*
- * Flush range from all levels of d-cache/unified-cache
- */
-void flush_cache(unsigned long start, unsigned long size)
-{
-       flush_dcache_range(start, start + size);
-}