mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
rockchip: rk3399: remove TPL_BOARD_INIT
RK3399 TPL do not need a dedicate board init, print the firmware info when debug init instead. Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
87ac550862
commit
682a99c634
2 changed files with 2 additions and 8 deletions
|
@ -173,7 +173,6 @@ config ROCKCHIP_RK3399
|
||||||
imply TPL_LIBCOMMON_SUPPORT
|
imply TPL_LIBCOMMON_SUPPORT
|
||||||
imply TPL_LIBGENERIC_SUPPORT
|
imply TPL_LIBGENERIC_SUPPORT
|
||||||
imply TPL_SYS_MALLOC_SIMPLE
|
imply TPL_SYS_MALLOC_SIMPLE
|
||||||
imply TPL_BOARD_INIT
|
|
||||||
imply TPL_BOOTROM_SUPPORT
|
imply TPL_BOOTROM_SUPPORT
|
||||||
imply TPL_DRIVERS_MISC_SUPPORT
|
imply TPL_DRIVERS_MISC_SUPPORT
|
||||||
imply TPL_OF_CONTROL
|
imply TPL_OF_CONTROL
|
||||||
|
|
|
@ -31,7 +31,8 @@ void board_init_f(ulong dummy)
|
||||||
* printhex8(0x1234);
|
* printhex8(0x1234);
|
||||||
* printascii("string");
|
* printascii("string");
|
||||||
*/
|
*/
|
||||||
debug("U-Boot TPL board init\n");
|
printascii("\nU-Boot TPL " PLAIN_VERSION " (" U_BOOT_DATE " - "
|
||||||
|
U_BOOT_TIME " " U_BOOT_TZ ")\n");
|
||||||
#endif
|
#endif
|
||||||
ret = spl_early_init();
|
ret = spl_early_init();
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
@ -58,12 +59,6 @@ u32 spl_boot_device(void)
|
||||||
return BOOT_DEVICE_BOOTROM;
|
return BOOT_DEVICE_BOOTROM;
|
||||||
}
|
}
|
||||||
|
|
||||||
void spl_board_init(void)
|
|
||||||
{
|
|
||||||
puts("\nU-Boot TPL " PLAIN_VERSION " (" U_BOOT_DATE " - "
|
|
||||||
U_BOOT_TIME " " U_BOOT_TZ ")\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef CONFIG_SPL_LOAD_FIT
|
#ifdef CONFIG_SPL_LOAD_FIT
|
||||||
int board_fit_config_name_match(const char *name)
|
int board_fit_config_name_match(const char *name)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue