# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2012 Henrik Nordstrom # # Based on some other Makefile # (C) Copyright 2000-2003 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. ifndef CONFIG_MACH_SUN8I_T113 obj-$(CONFIG_MACH_SUN6I) += tzpc.o obj-$(CONFIG_MACH_SUN8I_H3) += tzpc.o obj-$(CONFIG_MACH_SUN6I) += sram.o obj-$(CONFIG_MACH_SUN8I) += sram.o endif ifndef CONFIG_SPL_BUILD ifneq ($(CONFIG_MACH_SUN8I_A33)$(CONFIG_MACH_SUN8I_H3),) obj-$(CONFIG_ARMV7_PSCI) += psci-scpi.o else obj-$(CONFIG_ARMV7_PSCI) += psci.o endif endif ifdef CONFIG_SPL_BUILD ifndef CONFIG_MACH_SUN8I_T113 obj-y += fel_utils.o else obj-y += dummy.o endif endif