diff options
author | Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com> | 2020-07-26 22:37:33 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-29 10:37:11 -0400 |
commit | 2ae7adc659f7fca9ea65df4318e5bca2b8274310 (patch) | |
tree | 41d2ef5d35c09e393409d18fa329848774580592 /arch/arm/Kconfig | |
parent | a76bfe5693b7657d76b93422ec2dabca8e3a2180 (diff) | |
download | u-boot-2ae7adc659f7fca9ea65df4318e5bca2b8274310.zip u-boot-2ae7adc659f7fca9ea65df4318e5bca2b8274310.tar.gz u-boot-2ae7adc659f7fca9ea65df4318e5bca2b8274310.tar.bz2 |
arch: arm: use dt and UCLASS_SYSCON to get gic lpi details
Use device tree and UCLASS_SYSCON driver to get
Generic Interrupt Controller (GIC) lpi address and
maximum GIC redistributors count.
Also update Kconfig to select REGMAP and SYSCON when
GIC_V3_ITS is enabled.
Signed-off-by: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e04a2c6..3e11ddf 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -64,6 +64,8 @@ endif config GIC_V3_ITS bool "ARM GICV3 ITS" + select REGMAP + select SYSCON help ARM GICV3 Interrupt translation service (ITS). Basic support for programming locality specific peripheral |