diff options
author | Pali Rohár <pali@kernel.org> | 2022-05-06 11:05:17 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2022-05-17 06:44:06 +0200 |
commit | 2418c1f56f0f39b86e81defb391d7d05bfc43ba4 (patch) | |
tree | d3a6885d9ecd11e60ae711a902567a8b05cca369 | |
parent | d293759d55cce9c3efccf96ca8423008c9d0293b (diff) | |
download | u-boot-2418c1f56f0f39b86e81defb391d7d05bfc43ba4.zip u-boot-2418c1f56f0f39b86e81defb391d7d05bfc43ba4.tar.gz u-boot-2418c1f56f0f39b86e81defb391d7d05bfc43ba4.tar.bz2 |
arm: mvebu: turris_omnia: Fix DEBUG_UART_BASE
Internal registers in SPL are at address 0xd0000000 and in proper U-Boot at
address 0xf1000000. UART base address is located in internal registers.
Fix DEBUG_UART_BASE option to correct value for both SPL and proper U-Boot.
This change fixes hangup of proper U-Boot when it is trying to print
something via debug UART.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | configs/turris_omnia_defconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig index 217e260..62c9be2 100644 --- a/configs/turris_omnia_defconfig +++ b/configs/turris_omnia_defconfig @@ -18,7 +18,7 @@ CONFIG_DEFAULT_DEVICE_TREE="armada-385-turris-omnia" CONFIG_SPL_TEXT_BASE=0x40000030 CONFIG_SPL_SERIAL=y CONFIG_SPL=y -CONFIG_DEBUG_UART_BASE=0xd0012000 +CONFIG_DEBUG_UART_BASE=0xf1012000 CONFIG_DEBUG_UART_CLOCK=250000000 CONFIG_SYS_LOAD_ADDR=0x800000 CONFIG_DEBUG_UART=y @@ -93,6 +93,7 @@ CONFIG_PCI_MVEBU=y CONFIG_DM_RTC=y CONFIG_RTC_ARMADA38X=y CONFIG_SCSI=y +CONFIG_SPL_DEBUG_UART_BASE=0xd0012000 CONFIG_DEBUG_UART_SHIFT=2 CONFIG_SYS_NS16550=y CONFIG_KIRKWOOD_SPI=y |