mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
198a97a6ab
Split the current clkrst_init() into two functions: - early_clkrst_init(): called from SPL Deassert the reset signals of the memory controller and some other basic cores. - clkrst_init(): called from main U-boot Deassert the reset signals that are necessary for the access to peripherals etc. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
14 lines
365 B
Makefile
14 lines
365 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_DEBUG_LL) += lowlevel_debug.o
|
|
obj-y += bcu_init.o sbc_init.o sg_init.o pll_init.o early_clkrst_init.o \
|
|
pll_spectrum.o umc_init.o ddrphy_init.o
|
|
else
|
|
obj-$(CONFIG_BOARD_EARLY_INIT_F) += pinctrl.o clkrst_init.o
|
|
obj-$(if $(CONFIG_OF_CONTROL),,y) += platdevice.o
|
|
endif
|
|
|
|
obj-y += boot-mode.o
|