From 57100e2e536d18c97112e65bbaa4e26eed76619d Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Tue, 10 Jan 2023 22:38:28 +0100 Subject: [PATCH] plat-stm32mp1: enable async notif and interrupt notif on stm32mp13 Enables async notif with interrupt notification using GIC PPI 15 as non-secure interrupt notifier for STM32MP13 variants. Enables interrupt notification for STM32MP13 variants that can generate up to 8 interrupt events in non-secure world. Signed-off-by: Etienne Carriere --- core/arch/arm/plat-stm32mp1/conf.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/arch/arm/plat-stm32mp1/conf.mk b/core/arch/arm/plat-stm32mp1/conf.mk index a1966aad9ba..ed66c846f3e 100644 --- a/core/arch/arm/plat-stm32mp1/conf.mk +++ b/core/arch/arm/plat-stm32mp1/conf.mk @@ -91,6 +91,10 @@ $(call force,CFG_STM32_SHARED_IO,y) ifeq ($(CFG_STM32MP13),y) $(call force,CFG_BOOT_SECONDARY_REQUEST,n) +$(call force,CFG_CORE_ASYNC_NOTIF,y) +$(call force,CFG_CORE_ASYNC_NOTIF_GIC_INTID,31) +$(call force,CFG_CORE_ITR_NOTIF,y) +$(call force,CFG_CORE_ITR_NOTIF_MAX,7) $(call force,CFG_CORE_RESERVED_SHM,n) $(call force,CFG_DRIVERS_CLK_FIXED,y) $(call force,CFG_SECONDARY_INIT_CNTFRQ,n)