mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +00:00
84ccd791af
Currently, I/O pin settings are not necessary for SPL. The board_early_init_f() seems a suitable place to call pin_init(). Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
12 lines
409 B
Makefile
12 lines
409 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_DISPLAY_BOARDINFO) += board_info.o
|
|
obj-$(if $(CONFIG_OF_CONTROL),,y) += platdevice.o
|
|
obj-y += boot-mode.o
|
|
obj-$(CONFIG_DEBUG_LL) += lowlevel_debug.o
|
|
obj-$(CONFIG_SOC_INIT) += bcu_init.o sbc_init.o sg_init.o pll_init.o \
|
|
clkrst_init.o
|
|
obj-$(CONFIG_BOARD_EARLY_INIT_F) += pinctrl.o
|
|
obj-$(CONFIG_DRAM_INIT) += pll_spectrum.o umc_init.o ddrphy_init.o
|