mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 05:58:49 +00:00
global: Migrate CONFIG_PHY_IRAM_BASE to CFG
Perform a simple rename of CONFIG_PHY_IRAM_BASE to CFG_PHY_IRAM_BASE Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
52d596eabb
commit
830fd095a3
2 changed files with 4 additions and 4 deletions
|
@ -77,10 +77,10 @@ static void low_power_start(void)
|
|||
branch_bx(0x0);
|
||||
}
|
||||
|
||||
reg_val = readl(CONFIG_PHY_IRAM_BASE + 0x4);
|
||||
reg_val = readl(CFG_PHY_IRAM_BASE + 0x4);
|
||||
if (reg_val != (uint32_t)&low_power_start) {
|
||||
/* Store jump address as low_power_start if not present */
|
||||
writel((uint32_t)&low_power_start, CONFIG_PHY_IRAM_BASE + 0x4);
|
||||
writel((uint32_t)&low_power_start, CFG_PHY_IRAM_BASE + 0x4);
|
||||
dsb();
|
||||
sev();
|
||||
}
|
||||
|
@ -164,7 +164,7 @@ static void secondary_cores_configure(void)
|
|||
writel((uint32_t)&low_power_start, CFG_LOWPOWER_ADDR);
|
||||
writel(CPU_RST_FLAG_VAL, EXYNOS5420_SPARE_BASE);
|
||||
/* Store jump address for power down */
|
||||
writel((uint32_t)&power_down_core, CONFIG_PHY_IRAM_BASE + 0x4);
|
||||
writel((uint32_t)&power_down_core, CFG_PHY_IRAM_BASE + 0x4);
|
||||
|
||||
/* Need all core power down check */
|
||||
dsb();
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#define CFG_IRAM_TOP 0x02074000
|
||||
|
||||
#define CONFIG_PHY_IRAM_BASE 0x02020000
|
||||
#define CFG_PHY_IRAM_BASE 0x02020000
|
||||
|
||||
/*
|
||||
* Low Power settings
|
||||
|
|
Loading…
Add table
Reference in a new issue