mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
9c71bcdc81
Use DM for the pl01x serial driver on hikey. Also allow UART0 or UART3 to be chosen via Kconfig. By default we now output to UART3 as the latest version of ATF outputs to this UART. Also UART3 comes out on the LS connector, as opposed to UART0 which goes to a unpopulated header. As part of this change we also enable CONFIG_BOARD_EARLY_INIT_F and call the pinmux configuration code for the UART. Before we were relying on ATF having already configured the pin configuration. NB: Upstream Linux kernel doesn't yet support UART3, so serial console will still be output on UART0 when booting a upstream kernel. Signed-off-by: Peter Griffin <peter.griffin@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
22 lines
319 B
Text
22 lines
319 B
Text
if TARGET_HIKEY
|
|
|
|
config SYS_BOARD
|
|
default "hikey"
|
|
|
|
config SYS_VENDOR
|
|
default "hisilicon"
|
|
|
|
config SYS_SOC
|
|
default "hi6220"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "hikey"
|
|
|
|
config CONS_INDEX
|
|
int "UART used for console"
|
|
range 1 4
|
|
default 4
|
|
help
|
|
The hi6220 SoC has 5 UARTs. For example to use UART0 enter 1 here.
|
|
|
|
endif
|