blob: fc09af7c14691209cec85efa5483bcca816d4017 [file] [log] [blame]
Andre Przywara2d42e5f2020-11-28 01:39:17 +00001#
2# Copyright (c) 2017-2020, ARM Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# Without a management processor there is no SCPI support.
8SUNXI_PSCI_USE_SCPI := 0
9SUNXI_PSCI_USE_NATIVE := 1
10
11# The differences between the platforms are covered by the include files.
12include plat/allwinner/common/allwinner-common.mk
13
14# the above could be overwritten on the command line
15ifeq (${SUNXI_PSCI_USE_SCPI}, 1)
16 $(error "H616 does not support SCPI PSCI ops")
17endif
18
19BL31_SOURCES += drivers/allwinner/axp/axp805.c \
Andre Przywarafb838332020-12-14 12:06:24 +000020 drivers/allwinner/sunxi_rsb.c \
21 common/fdt_fixup.c \
22 ${AW_PLAT}/${PLAT}/prepare_dtb.c
Andre Przywara2d42e5f2020-11-28 01:39:17 +000023
24$(eval $(call add_define,SUNXI_BL31_IN_DRAM))