mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 06:26:07 +01:00
This adds a new PSCI implementation which communicates with SCP firmware running on the AR100 using the SCPI protocol. This allows it to support the full set of PSCI v1.1 features, including CPU idle states, system suspend, and multiple reset methods. Signed-off-by: Samuel Holland <samuel@sholland.org>
26 lines
560 B
Makefile
26 lines
560 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (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.
|
|
|
|
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
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
ifdef CONFIG_MACH_SUN8I_H3
|
|
obj-$(CONFIG_ARMV7_PSCI) += psci-scpi.o
|
|
else
|
|
obj-$(CONFIG_ARMV7_PSCI) += psci.o
|
|
endif
|
|
endif
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += fel_utils.o
|
|
endif
|