Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 1 | # |
Andre Przywara | 50bb417 | 2021-01-20 00:09:44 +0000 | [diff] [blame] | 2 | # Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved. |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | include lib/xlat_tables_v2/xlat_tables.mk |
Andre Przywara | 92b4c9b | 2020-08-03 00:25:03 +0100 | [diff] [blame] | 8 | include lib/libfdt/libfdt.mk |
| 9 | include drivers/arm/gic/v2/gicv2.mk |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 10 | |
| 11 | AW_PLAT := plat/allwinner |
| 12 | |
Samuel Holland | 4a02471 | 2019-11-27 13:09:40 -0600 | [diff] [blame] | 13 | PLAT_INCLUDES := -Iinclude/plat/arm/common/aarch64 \ |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 14 | -I${AW_PLAT}/common/include \ |
| 15 | -I${AW_PLAT}/${PLAT}/include |
| 16 | |
Julius Werner | 6b88b65 | 2018-11-27 17:50:28 -0800 | [diff] [blame] | 17 | PLAT_BL_COMMON_SOURCES := drivers/ti/uart/${ARCH}/16550_console.S \ |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 18 | ${XLAT_TABLES_LIB_SRCS} \ |
| 19 | ${AW_PLAT}/common/plat_helpers.S \ |
| 20 | ${AW_PLAT}/common/sunxi_common.c |
| 21 | |
Samuel Holland | 1dad265 | 2019-10-20 21:34:38 -0500 | [diff] [blame] | 22 | BL31_SOURCES += drivers/allwinner/axp/common.c \ |
Andre Przywara | 92b4c9b | 2020-08-03 00:25:03 +0100 | [diff] [blame] | 23 | ${GICV2_SOURCES} \ |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 24 | drivers/delay_timer/delay_timer.c \ |
| 25 | drivers/delay_timer/generic_delay_timer.c \ |
| 26 | lib/cpus/${ARCH}/cortex_a53.S \ |
| 27 | plat/common/plat_gicv2.c \ |
| 28 | plat/common/plat_psci_common.c \ |
| 29 | ${AW_PLAT}/common/sunxi_bl31_setup.c \ |
Samuel Holland | 365966c | 2022-01-22 23:37:12 -0600 | [diff] [blame] | 30 | ${AW_PLAT}/${PLAT}/sunxi_idle_states.c \ |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 31 | ${AW_PLAT}/common/sunxi_pm.c \ |
| 32 | ${AW_PLAT}/${PLAT}/sunxi_power.c \ |
| 33 | ${AW_PLAT}/common/sunxi_security.c \ |
| 34 | ${AW_PLAT}/common/sunxi_topology.c |
| 35 | |
Andre Przywara | 50bb417 | 2021-01-20 00:09:44 +0000 | [diff] [blame] | 36 | # By default, attempt to use SCPI to the ARISC management processor. If SCPI |
| 37 | # is not enabled or SCP firmware is not loaded, fall back to a simpler native |
| 38 | # implementation that does not support CPU or system suspend. |
| 39 | # |
| 40 | # If SCP firmware will always be present (or absent), the unused implementation |
| 41 | # can be compiled out. |
| 42 | SUNXI_PSCI_USE_NATIVE ?= 1 |
| 43 | SUNXI_PSCI_USE_SCPI ?= 1 |
| 44 | |
| 45 | $(eval $(call assert_boolean,SUNXI_PSCI_USE_NATIVE)) |
| 46 | $(eval $(call assert_boolean,SUNXI_PSCI_USE_SCPI)) |
| 47 | $(eval $(call add_define,SUNXI_PSCI_USE_NATIVE)) |
| 48 | $(eval $(call add_define,SUNXI_PSCI_USE_SCPI)) |
| 49 | |
| 50 | ifeq (${SUNXI_PSCI_USE_NATIVE}${SUNXI_PSCI_USE_SCPI},00) |
| 51 | $(error "At least one of SCPI or native PSCI ops must be enabled") |
| 52 | endif |
| 53 | |
| 54 | ifeq (${SUNXI_PSCI_USE_NATIVE},1) |
| 55 | BL31_SOURCES += ${AW_PLAT}/common/sunxi_cpu_ops.c \ |
| 56 | ${AW_PLAT}/common/sunxi_native_pm.c |
| 57 | endif |
| 58 | |
| 59 | ifeq (${SUNXI_PSCI_USE_SCPI},1) |
| 60 | BL31_SOURCES += drivers/allwinner/sunxi_msgbox.c \ |
| 61 | drivers/arm/css/scpi/css_scpi.c \ |
| 62 | ${AW_PLAT}/common/sunxi_scpi_pm.c |
| 63 | endif |
| 64 | |
Andre Przywara | 71b5a1d | 2021-11-01 00:17:37 +0000 | [diff] [blame] | 65 | SUNXI_SETUP_REGULATORS ?= 1 |
| 66 | $(eval $(call assert_boolean,SUNXI_SETUP_REGULATORS)) |
| 67 | $(eval $(call add_define,SUNXI_SETUP_REGULATORS)) |
| 68 | |
Andre Przywara | 9de1222 | 2021-12-19 13:39:40 +0000 | [diff] [blame] | 69 | SUNXI_BL31_IN_DRAM ?= 0 |
| 70 | $(eval $(call assert_boolean,SUNXI_BL31_IN_DRAM)) |
| 71 | |
| 72 | ifeq (${SUNXI_BL31_IN_DRAM},1) |
| 73 | SUNXI_AMEND_DTB := 1 |
| 74 | $(eval $(call add_define,SUNXI_BL31_IN_DRAM)) |
| 75 | endif |
| 76 | |
| 77 | SUNXI_AMEND_DTB ?= 0 |
| 78 | $(eval $(call assert_boolean,SUNXI_AMEND_DTB)) |
| 79 | $(eval $(call add_define,SUNXI_AMEND_DTB)) |
| 80 | |
| 81 | ifeq (${SUNXI_AMEND_DTB},1) |
| 82 | BL31_SOURCES += common/fdt_fixup.c \ |
| 83 | ${AW_PLAT}/common/sunxi_prepare_dtb.c |
| 84 | endif |
| 85 | |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 86 | # The bootloader is guaranteed to only run on CPU 0 by the boot ROM. |
| 87 | COLD_BOOT_SINGLE_CPU := 1 |
| 88 | |
Samuel Holland | c47f00e | 2019-06-08 16:03:32 -0500 | [diff] [blame] | 89 | # Do not enable SPE (not supported on ARM v8.0). |
Andre Przywara | 30661a9 | 2023-02-03 15:30:14 +0000 | [diff] [blame] | 90 | ENABLE_SPE_FOR_NS := 0 |
Samuel Holland | c47f00e | 2019-06-08 16:03:32 -0500 | [diff] [blame] | 91 | |
| 92 | # Do not enable SVE (not supported on ARM v8.0). |
| 93 | ENABLE_SVE_FOR_NS := 0 |
| 94 | |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 95 | # Enable workarounds for Cortex-A53 errata. Allwinner uses at least r0p4. |
| 96 | ERRATA_A53_835769 := 1 |
| 97 | ERRATA_A53_843419 := 1 |
| 98 | ERRATA_A53_855873 := 1 |
Samuel Holland | 3784ec9 | 2020-12-13 22:22:17 -0600 | [diff] [blame] | 99 | ERRATA_A53_1530924 := 1 |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 100 | |
Samuel Holland | afe2173 | 2020-12-13 20:05:11 -0600 | [diff] [blame] | 101 | # The traditional U-Boot load address is 160MB into DRAM. |
| 102 | PRELOADED_BL33_BASE ?= 0x4a000000 |
| 103 | |
Andre Przywara | 452b2b6 | 2018-09-28 00:37:19 +0100 | [diff] [blame] | 104 | # The reset vector can be changed for each CPU. |
| 105 | PROGRAMMABLE_RESET_ADDRESS := 1 |
| 106 | |
| 107 | # Allow mapping read-only data as execute-never. |
| 108 | SEPARATE_CODE_AND_RODATA := 1 |
| 109 | |
| 110 | # BL31 gets loaded alongside BL33 (U-Boot) by U-Boot's SPL |
| 111 | RESET_TO_BL31 := 1 |
Andre Przywara | 647a2e1 | 2018-10-11 22:14:30 +0100 | [diff] [blame] | 112 | |
Samuel Holland | c47f00e | 2019-06-08 16:03:32 -0500 | [diff] [blame] | 113 | # This platform is single-cluster and does not require coherency setup. |
| 114 | WARMBOOT_ENABLE_DCACHE_EARLY := 1 |