]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM: zynqmp: Add platform specific arch_get_page_table
authorMichal Simek <michal.simek@xilinx.com>
Wed, 5 Aug 2015 05:50:16 +0000 (07:50 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 08:24:17 +0000 (10:24 +0200)
Based on the patch:
"armv8: caches: Added routine to set non cacheable region"
(sha1: dad17fd51027ad02ac8f02deed186d08109d61fd)
it is necessary to add platform specific hook.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/arm/cpu/armv8/zynqmp/cpu.c

index 60d7d20e17c8492557962dc1891ba55bbe4577d3..f90cca36aa72ab0f30d30af16a87bbc6f37bb8d4 100644 (file)
@@ -191,4 +191,9 @@ void enable_caches(void)
 
        set_sctlr(get_sctlr() | CR_C);
 }
+
+u64 *arch_get_page_table(void)
+{
+       return (u64 *)(gd->arch.tlb_addr + 0x3000);
+}
 #endif