arch: arm: mach-k3: common: Return a pointer after setting page table
authorNikhil M Jain <n-jain1@ti.com>
Tue, 18 Jul 2023 08:57:28 +0000 (14:27 +0530)
committerTom Rini <trini@konsulko.com>
Fri, 21 Jul 2023 19:32:12 +0000 (15:32 -0400)
In spl_dcache_enable after setting up page table, set gd->relocaddr
pointer to tlb_addr, to get next location to reserve memory. Align
tlb_addr with 64KB address.

Signed-off-by: Nikhil M Jain <n-jain1@ti.com>
Reviewed-by: Devarsh Thakkar <devarsht@ti.com>
arch/arm/mach-k3/common.c

index a38882b..450c7b7 100644 (file)
@@ -538,8 +538,10 @@ void spl_enable_dcache(void)
                ram_top = (phys_addr_t) 0x100000000;
 
        gd->arch.tlb_addr = ram_top - gd->arch.tlb_size;
+       gd->arch.tlb_addr &= ~(0x10000 - 1);
        debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
              gd->arch.tlb_addr + gd->arch.tlb_size);
+       gd->relocaddr = gd->arch.tlb_addr;
 
        dcache_enable();
 #endif