diff options
author | Adam Ford <aford173@gmail.com> | 2017-09-12 15:27:33 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-13 09:24:27 -0400 |
commit | 34330a362f9ae89abfa5be312296e03f723704dd (patch) | |
tree | d3235c62fa568ddb038364b6161afe3c406a951e /arch/arm/mach-omap2 | |
parent | f0333b4c2e642df54f210e4506c4e1de216b4969 (diff) | |
download | u-boot-34330a362f9ae89abfa5be312296e03f723704dd.tar.gz u-boot-34330a362f9ae89abfa5be312296e03f723704dd.tar.xz u-boot-34330a362f9ae89abfa5be312296e03f723704dd.zip |
Convert CONFIG_EMIF4 et al to Kconfig
This converts the following to Kconfig:
CONFIG_EMIF4
CONFIG_SDRC
Signed-off-by: Adam Ford <aford173@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/omap3/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap3/Kconfig b/arch/arm/mach-omap2/omap3/Kconfig index cc2c4cd124..11f5f058b9 100644 --- a/arch/arm/mach-omap2/omap3/Kconfig +++ b/arch/arm/mach-omap2/omap3/Kconfig @@ -150,6 +150,21 @@ config TARGET_SNIPER endchoice +choice + prompt "Memory Controller" + default SDRC + +config SDRC + bool "SDRC controller" + help + The default memory controller on most OMAP3 boards is SDRC. + +config EMIF4 + bool "EMIF4 controller" + help + Enable this on boards like AM3517 which use EMIF4 controller +endchoice + config SPL_OMAP3_ID_NAND bool "Support OMAP3-specific ID and MFR function" help |