diff options
author | Wasim Khan <wasim.khan@nxp.com> | 2021-03-08 16:48:14 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-20 07:31:12 -0400 |
commit | 504f8648f036fe2ddf8a65a93d0d27871e32c71d (patch) | |
tree | 2d7e32c5bc054f3df3a976c1d8a15be532411457 | |
parent | 182c5f1efbec12419ef458db5565101647ff5911 (diff) | |
download | u-boot-504f8648f036fe2ddf8a65a93d0d27871e32c71d.zip u-boot-504f8648f036fe2ddf8a65a93d0d27871e32c71d.tar.gz u-boot-504f8648f036fe2ddf8a65a93d0d27871e32c71d.tar.bz2 |
arch: arm: update Kconfig to select IRQ when GIC_V3_ITS is enabled
GIC_V3_ITS uses UCLASS_IRQ driver. Update Kconfig to select
IRQ when GIC_V3_ITS is enabled.
Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
Reviewed-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Vladimir Oltean <vladimir.oltean@nxp.com>
-rw-r--r-- | arch/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b39b043..15b8454 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -67,6 +67,7 @@ config GIC_V3_ITS bool "ARM GICV3 ITS" select REGMAP select SYSCON + select IRQ help ARM GICV3 Interrupt translation service (ITS). Basic support for programming locality specific peripheral |