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