Icenowy Zheng | 61da756 | 2021-07-22 09:41:16 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2021 Sipeed |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | # Without a management processor there is no SCPI support. |
| 8 | SUNXI_PSCI_USE_SCPI := 0 |
| 9 | SUNXI_PSCI_USE_NATIVE := 1 |
| 10 | |
| 11 | # The differences between the platforms are covered by the include files. |
| 12 | include plat/allwinner/common/allwinner-common.mk |
| 13 | |
| 14 | # the above could be overwritten on the command line |
| 15 | ifeq (${SUNXI_PSCI_USE_SCPI}, 1) |
| 16 | $(error "R329 does not support SCPI PSCI ops") |
| 17 | endif |
| 18 | |
| 19 | # Put NOBITS memory in the first 64K of SRAM A2, overwriting U-Boot's SPL. |
| 20 | SEPARATE_NOBITS_REGION := 1 |