mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
b8cd7f439a
When we added Allwinner SoC support to ARMv8, we needed to pull in an implementation of lowlevel_init() calling the C function s_init(), as sunxi required it as this time. The last few patches got rid of this bogus requirement, and as sunxi was still the only user, we can now remove this lowlevel_init.S from ARMv8 altogether. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Samuel Holland <samuel@sholland.org> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
extra-y := start.o
|
|
|
|
obj-y += cpu.o
|
|
ifndef CONFIG_$(SPL_TPL_)TIMER
|
|
obj-$(CONFIG_SYS_ARCH_TIMER) += generic_timer.o
|
|
endif
|
|
ifndef CONFIG_$(SPL_)SYS_DCACHE_OFF
|
|
obj-y += cache_v8.o
|
|
obj-y += cache.o
|
|
endif
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) += exceptions.o
|
|
else
|
|
obj-y += exceptions.o
|
|
obj-y += exception_level.o
|
|
endif
|
|
obj-y += tlb.o
|
|
obj-y += transition.o
|
|
ifndef CONFIG_ARMV8_PSCI
|
|
obj-y += fwcall.o
|
|
endif
|
|
obj-y += cpu-dt.o
|
|
obj-$(CONFIG_ARM_SMCCC) += smccc-call.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_ARMV8_SPIN_TABLE) += spin_table.o spin_table_v8.o
|
|
else
|
|
obj-$(CONFIG_ARCH_SUNXI) += fel_utils.o
|
|
endif
|
|
obj-$(CONFIG_$(SPL_)ARMV8_SEC_FIRMWARE_SUPPORT) += sec_firmware.o sec_firmware_asm.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_SPL_RECOVER_DATA_SECTION) += spl_data.o
|
|
endif
|
|
|
|
obj-$(CONFIG_FSL_LAYERSCAPE) += fsl-layerscape/
|
|
obj-$(CONFIG_S32V234) += s32v234/
|
|
obj-$(CONFIG_TARGET_HIKEY) += hisilicon/
|
|
obj-$(CONFIG_ARMV8_PSCI) += psci.o
|
|
obj-$(CONFIG_TARGET_BCMNS3) += bcmns3/
|
|
obj-$(CONFIG_XEN) += xen/
|