mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
abba59f115
This converts the following to Kconfig: CONFIG_USB_XHCI_EXYNOS CONFIG_USB_EHCI_EXYNOS Signed-off-by: Tom Rini <trini@konsulko.com>
23 lines
467 B
C
23 lines
467 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 CONFIG_VAR_SIZE_SPL
|
|
|
|
#define CONFIG_IRAM_TOP 0x02074000
|
|
|
|
#define CONFIG_PHY_IRAM_BASE 0x02020000
|
|
|
|
/*
|
|
* Low Power settings
|
|
*/
|
|
#define CONFIG_LOWPOWER_FLAG 0x02020028
|
|
#define CONFIG_LOWPOWER_ADDR 0x0202002C
|
|
|
|
#endif /* __CONFIG_EXYNOS5420_H */
|