mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
e6e505b93c
Some of the code in arch/arm/cpu/armv7/sunxi is actually armv7 specific, while most of it is just generic code that could as well be used on an AArch64 SoC. Move all files that are not really tied to armv7 into a new mach-sunxi directory. Signed-off-by: Alexander Graf <agraf@suse.de> Acked-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
25 lines
550 B
Makefile
25 lines
550 B
Makefile
#
|
|
# (C) Copyright 2012 Henrik Nordstrom <henrik@henriknordstrom.net>
|
|
#
|
|
# Based on some other Makefile
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
obj-y += timer.o
|
|
|
|
obj-$(CONFIG_MACH_SUN6I) += tzpc.o
|
|
obj-$(CONFIG_MACH_SUN8I_H3) += tzpc.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
ifdef CONFIG_ARMV7_PSCI
|
|
obj-$(CONFIG_MACH_SUN6I) += psci_sun6i.o
|
|
obj-$(CONFIG_MACH_SUN7I) += psci_sun7i.o
|
|
obj-$(CONFIG_MACH_SUN8I) += psci_sun6i.o
|
|
endif
|
|
endif
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += fel_utils.o
|
|
endif
|