mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
d5cf32977f
For ARM32 architecture, CONFIG_DEBUG_LL is available for early low-level debugging (and actually UniPhier 32bit SoCs use it), but ARM64 architecture does not support it. Instead, CONFIG_DEBUG_UART is available as an architecture-independent debug facility. This commit supports it on all the UniPhier SoCs (including the new ARMv8 SoCs), which is very useful for new SoC bringups. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
33 lines
735 B
Makefile
33 lines
735 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
obj-y += init/ bcu/ memconf/ pll/ early-clk/ early-pinctrl/
|
|
obj-$(CONFIG_MICRO_SUPPORT_CARD) += sbc/
|
|
|
|
else
|
|
|
|
obj-$(CONFIG_BOARD_EARLY_INIT_F) += board_early_init_f.o
|
|
obj-$(CONFIG_DISPLAY_CPUINFO) += cpu_info.o
|
|
obj-$(CONFIG_MISC_INIT_F) += print_misc_info.o
|
|
obj-y += dram_init.o
|
|
obj-y += board_common.o
|
|
obj-$(CONFIG_BOARD_EARLY_INIT_R) += board_early_init_r.o
|
|
obj-$(CONFIG_BOARD_LATE_INIT) += board_late_init.o
|
|
obj-y += reset.o
|
|
|
|
obj-y += pinctrl/ clk/
|
|
|
|
endif
|
|
|
|
obj-y += boards.o
|
|
obj-y += soc_info.o
|
|
obj-y += boot-mode/
|
|
obj-y += dram/
|
|
|
|
obj-$(CONFIG_MICRO_SUPPORT_CARD) += micro-support-card.o
|
|
obj-$(CONFIG_DEBUG_UART_UNIPHIER) += debug-uart/
|
|
|
|
obj-$(CONFIG_CPU_V7) += arm32/
|