diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2014-05-29 18:57:12 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-06 17:46:14 -0400 |
commit | afee59cd49449e7b7d538d919b6e8ab5184e5b93 (patch) | |
tree | ba2daffdd1bc4c7d0f18168d39b7aa7425971ae5 /include/configs | |
parent | 196311dc728bbb9484356547b9daa731ca2feb8d (diff) | |
download | u-boot-imx-afee59cd49449e7b7d538d919b6e8ab5184e5b93.zip u-boot-imx-afee59cd49449e7b7d538d919b6e8ab5184e5b93.tar.gz u-boot-imx-afee59cd49449e7b7d538d919b6e8ab5184e5b93.tar.bz2 |
keystone: init: enable UART1 to be able use it from kernel
Currently PWREMU_MGMT is not configured in the Linux generic UART
driver as this register seems to be specific TI UART IP. So this
needs to be enabled in u-boot to use UART1 from kernel space.
Acked-By: Vitaly Andrianov <vitalya@ti.com>
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/k2hk_evm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/k2hk_evm.h b/include/configs/k2hk_evm.h index dde7329..998390e 100644 --- a/include/configs/k2hk_evm.h +++ b/include/configs/k2hk_evm.h @@ -71,7 +71,8 @@ #define CONFIG_SYS_NS16550_SERIAL #define CONFIG_SYS_NS16550_MEM32 #define CONFIG_SYS_NS16550_REG_SIZE -4 -#define CONFIG_SYS_NS16550_COM1 K2HK_UART0_BASE +#define CONFIG_SYS_NS16550_COM1 KS2_UART0_BASE +#define CONFIG_SYS_NS16550_COM2 KS2_UART1_BASE #define CONFIG_SYS_NS16550_CLK clk_get_rate(K2HK_CLK1_6) #define CONFIG_CONS_INDEX 1 #define CONFIG_BAUDRATE 115200 |