mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
830fd095a3
Perform a simple rename of CONFIG_PHY_IRAM_BASE to CFG_PHY_IRAM_BASE Signed-off-by: Tom Rini <trini@konsulko.com>
21 lines
426 B
C
21 lines
426 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2013 Samsung Electronics
|
|
*
|
|
* Configuration settings for the SAMSUNG EXYNOS5420 SoC
|
|
*/
|
|
|
|
#ifndef __CONFIG_EXYNOS5420_H
|
|
#define __CONFIG_EXYNOS5420_H
|
|
|
|
#define CFG_IRAM_TOP 0x02074000
|
|
|
|
#define CFG_PHY_IRAM_BASE 0x02020000
|
|
|
|
/*
|
|
* Low Power settings
|
|
*/
|
|
#define CFG_LOWPOWER_FLAG 0x02020028
|
|
#define CFG_LOWPOWER_ADDR 0x0202002C
|
|
|
|
#endif /* __CONFIG_EXYNOS5420_H */
|