Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2013-2020, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | # Default configuration values |
Andre Przywara | e1cc130 | 2020-03-25 15:50:38 +0000 | [diff] [blame] | 8 | GICV3_SUPPORT_GIC600 ?= 0 |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 9 | GICV3_IMPL_GIC600_MULTICHIP ?= 0 |
| 10 | GICV3_OVERRIDE_DISTIF_PWR_OPS ?= 0 |
Alexei Fedorov | 1970593 | 2020-04-06 19:00:35 +0100 | [diff] [blame] | 11 | GIC_ENABLE_V4_EXTN ?= 0 |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 12 | GIC_EXT_INTID ?= 0 |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 13 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 14 | GICV3_SOURCES += drivers/arm/gic/v3/gicv3_main.c \ |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 15 | drivers/arm/gic/v3/gicv3_helpers.c \ |
| 16 | drivers/arm/gic/v3/gicdv3_helpers.c \ |
| 17 | drivers/arm/gic/v3/gicrv3_helpers.c |
| 18 | |
| 19 | ifeq (${GICV3_OVERRIDE_DISTIF_PWR_OPS}, 0) |
| 20 | GICV3_SOURCES += drivers/arm/gic/v3/arm_gicv3_common.c |
| 21 | endif |
| 22 | |
Andre Przywara | e1cc130 | 2020-03-25 15:50:38 +0000 | [diff] [blame] | 23 | GICV3_SOURCES += drivers/arm/gic/v3/gic-x00.c |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 24 | ifeq (${GICV3_IMPL_GIC600_MULTICHIP}, 1) |
| 25 | GICV3_SOURCES += drivers/arm/gic/v3/gic600_multichip.c |
| 26 | endif |
Andre Przywara | e1cc130 | 2020-03-25 15:50:38 +0000 | [diff] [blame] | 27 | |
| 28 | # Set GIC-600 support |
| 29 | $(eval $(call assert_boolean,GICV3_SUPPORT_GIC600)) |
| 30 | $(eval $(call add_define,GICV3_SUPPORT_GIC600)) |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 31 | |
Alexei Fedorov | 1970593 | 2020-04-06 19:00:35 +0100 | [diff] [blame] | 32 | # Set GICv4 extension |
| 33 | $(eval $(call assert_boolean,GIC_ENABLE_V4_EXTN)) |
| 34 | $(eval $(call add_define,GIC_ENABLE_V4_EXTN)) |
| 35 | |
Alexei Fedorov | a6e6ae0 | 2020-04-06 16:27:54 +0100 | [diff] [blame] | 36 | # Set support for extended PPI and SPI range |
| 37 | $(eval $(call assert_boolean,GIC_EXT_INTID)) |
| 38 | $(eval $(call add_define,GIC_EXT_INTID)) |