fix(morello): change the AP runtime UART address

SoC UART1 is internally connected to MCP UART1 so this
cannot be used as AP runtime UART instead we use the
IOFPGA UART0 as the AP runtime UART.

Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com>
Change-Id: Iecefb0d2cb875b3ecf97e0983b06f6e914835021
This commit is contained in:
Chandni Cherukuri 2021-12-02 11:22:59 +05:30
parent 6ad6465e5c
commit 07302a23ec
1 changed files with 3 additions and 2 deletions

View File

@ -15,8 +15,9 @@
#define PLAT_ARM_BOOT_UART_BASE ULL(0x2A400000)
#define PLAT_ARM_BOOT_UART_CLK_IN_HZ U(50000000)
#define PLAT_ARM_RUN_UART_BASE ULL(0x2A410000)
#define PLAT_ARM_RUN_UART_CLK_IN_HZ U(50000000)
/* IOFPGA UART0 */
#define PLAT_ARM_RUN_UART_BASE ULL(0x1C090000)
#define PLAT_ARM_RUN_UART_CLK_IN_HZ U(24000000)
#define PLAT_ARM_CRASH_UART_BASE PLAT_ARM_RUN_UART_BASE
#define PLAT_ARM_CRASH_UART_CLK_IN_HZ PLAT_ARM_RUN_UART_CLK_IN_HZ