Prepare v2023.10
[platform/kernel/u-boot.git] / arch / arm / mach-sunxi / dram_helpers.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * DRAM init helper functions
4  *
5  * (C) Copyright 2015 Hans de Goede <hdegoede@redhat.com>
6  */
7
8 #include <common.h>
9 #include <time.h>
10 #include <asm/barriers.h>
11 #include <asm/io.h>
12 #include <asm/arch/dram.h>
13
14 /*
15  * Wait up to 1s for value to be set in given part of reg.
16  */
17 void mctl_await_completion(u32 *reg, u32 mask, u32 val)
18 {
19         unsigned long tmo = timer_get_us() + 1000000;
20
21         while ((readl(reg) & mask) != val) {
22                 if (timer_get_us() > tmo)
23                         panic("Timeout initialising DRAM\n");
24         }
25 }
26
27 /*
28  * Test if memory at offset offset matches memory at begin of DRAM
29  *
30  * Note: dsb() is not available on ARMv5 in Thumb mode
31  */
32 #ifndef CONFIG_MACH_SUNIV
33 bool mctl_mem_matches(u32 offset)
34 {
35         /* Try to write different values to RAM at two addresses */
36         writel(0, CFG_SYS_SDRAM_BASE);
37         writel(0xaa55aa55, (ulong)CFG_SYS_SDRAM_BASE + offset);
38         dsb();
39         /* Check if the same value is actually observed when reading back */
40         return readl(CFG_SYS_SDRAM_BASE) ==
41                readl((ulong)CFG_SYS_SDRAM_BASE + offset);
42 }
43 #endif