mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
7d1a3a67bc
The UniPhier platform is going to enable Driver Model and UART support on SPL. Move UART pin settings to early_pin_init(), which is called from SPL. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
16 lines
452 B
Makefile
16 lines
452 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_DEBUG_LL) += lowlevel_debug.o
|
|
obj-y += sg_init.o pll_init.o early_clkrst_init.o \
|
|
early_pinctrl.o pll_spectrum.o umc_init.o ddrphy_init.o
|
|
obj-$(CONFIG_PFC_MICRO_SUPPORT_CARD) += sbc_init.o
|
|
obj-$(CONFIG_DCC_MICRO_SUPPORT_CARD) += sbc_init_3cs.o
|
|
obj-$(CONFIG_SPL_DM) += platdevice.o
|
|
else
|
|
obj-$(CONFIG_BOARD_EARLY_INIT_F) += pinctrl.o clkrst_init.o
|
|
endif
|
|
|
|
obj-y += boot-mode.o
|