mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
3365b4eb55
The init code for UMC (Unified Memory Controller) and PLL has not been mainlined yet, but U-boot proper should work. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
16 lines
459 B
Makefile
16 lines
459 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_DEBUG_LL) += lowlevel_debug.o
|
|
obj-y += bcu_init.o memconf.o sg_init.o pll_init.o early_clkrst_init.o \
|
|
early_pinctrl.o pll_spectrum.o umc_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
|