diff options
author | Tom Rini <trini@konsulko.com> | 2019-05-24 08:13:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-24 08:13:27 -0400 |
commit | 866a78dc28411f4c76ba887f439f69f1116d8a6b (patch) | |
tree | e9e7f1255f290783c4f748983debbf832495764e /common | |
parent | afe9e1f197e6d0ee4fa59d56639ca56d5f2ed566 (diff) | |
parent | 187c41d783371dc3b7ecae45f450b330f5e1bb25 (diff) | |
download | u-boot-866a78dc28411f4c76ba887f439f69f1116d8a6b.zip u-boot-866a78dc28411f4c76ba887f439f69f1116d8a6b.tar.gz u-boot-866a78dc28411f4c76ba887f439f69f1116d8a6b.tar.bz2 |
Merge tag 'u-boot-stm32-20190523' of https://github.com/pchotard/u-boot
- Add various STM32MP1 fixes for serial, env, clk, board, i2c ...
- Add STM32MP1 DDR driver update:
These update introduce the DDR interactive mode described in:
https://wiki.st.com/stm32mpu/index.php/U-Boot_SPL:_DDR_interactive_mode
This mode is used by the CubeMX: DDR tuning tool.
https://wiki.st.com/stm32mpu/index.php/STM32CubeMX
The DDR interactive mode is NOT activated by default because
it increase the SPL size and slow down the boot time
(200ms wait added).
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 1 | ||||
-rw-r--r-- | common/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 1a1951f..c759952 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -247,6 +247,7 @@ config USE_PREBOOT config PREBOOT string "preboot default value" depends on USE_PREBOOT + default "" help This is the default of "preboot" environment variable. diff --git a/common/Makefile b/common/Makefile index 8c92feb..c7e41ef 100644 --- a/common/Makefile +++ b/common/Makefile @@ -124,6 +124,7 @@ endif obj-y += cli.o obj-$(CONFIG_FSL_DDR_INTERACTIVE) += cli_simple.o cli_readline.o +obj-$(CONFIG_STM32MP1_DDR_INTERACTIVE) += cli_simple.o cli_readline.o obj-$(CONFIG_DFU_OVER_USB) += dfu.o obj-y += command.o obj-$(CONFIG_$(SPL_TPL_)LOG) += log.o |