mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
f7f390576d
If CONFIG_MICRO_SUPPORT_CARD is enabled, U-Boot initialize SBC (System Bus Controller), which may not be really necessary. Check the "socionext,uniphier-system-bus" node in DT run-time. If and only if it is found and its "status" property is okay, initialize the SBC block. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
15 lines
435 B
Makefile
15 lines
435 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj- += dummy.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += sbc.o
|
|
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD4) += sbc-ld4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_SLD8) += sbc-ld4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PXS2) += sbc-pxs2.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD6B) += sbc-pxs2.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD11) += sbc-ld11.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD20) += sbc-ld11.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PXS3) += sbc-pxs2.o
|
|
endif
|