diff options
author | Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> | 2017-05-12 09:34:11 (GMT) |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2017-06-20 14:41:44 (GMT) |
commit | d84bd9284ea05412928e5b95d4aaebfce18fef7c (patch) | |
tree | d712d01be1809b0046e66be214923a5233b6bd27 /arch/arm/mach-zynq/Kconfig | |
parent | 6a1d91be318b44365dfe095a9ca7df1619abefc9 (diff) | |
download | u-boot-d84bd9284ea05412928e5b95d4aaebfce18fef7c.tar.xz |
arm: zynq: Add Kconfig option for any DDR specific initialization
Add Kconfig option for ddr init as this might be required
in cases like ddr less systems where we want to skip ddrc
init and this option is useful for it.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/arm/mach-zynq/Kconfig')
-rw-r--r-- | arch/arm/mach-zynq/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-zynq/Kconfig b/arch/arm/mach-zynq/Kconfig index 2529c9f..c428ce5 100644 --- a/arch/arm/mach-zynq/Kconfig +++ b/arch/arm/mach-zynq/Kconfig @@ -24,6 +24,14 @@ config SPL_SPI_FLASH_SUPPORT config SPL_SPI_SUPPORT default y if ZYNQ_QSPI +config ZYNQ_DDRC_INIT + bool "Zynq DDRC initialization" + default y + help + This option used to perform DDR specific initialization + if required. There might be cases like ddr less where we + want to skip ddr init and this option is useful for it. + config SYS_BOARD default "zynq" |