Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame^] | 1 | From 9fe529a146f4528ec80a3d04588e387f3651dc22 Mon Sep 17 00:00:00 2001 |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 2 | From: Ryan Harkin <ryan.harkin@linaro.org> |
| 3 | Date: Wed, 16 Nov 2016 14:43:02 +0000 |
| 4 | Subject: [PATCH] ARM: vexpress: enable GICv3 |
| 5 | |
| 6 | Upstream-Status: Pending |
| 7 | |
| 8 | ARMv8 targets such as ARM's FVP Cortex-A32 model can run the 32-bit |
| 9 | ARMv7 kernel. And these targets often contain GICv3. |
| 10 | |
| 11 | Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org> |
| 12 | Signed-off-by: Jon Medhurst <tixy@linaro.org> |
| 13 | --- |
Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame^] | 14 | arch/arm/mach-versatile/Kconfig | 1 + |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 15 | 1 file changed, 1 insertion(+) |
| 16 | |
Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame^] | 17 | diff --git a/arch/arm/mach-versatile/Kconfig b/arch/arm/mach-versatile/Kconfig |
| 18 | index 2ef226194c3a..3d54877fe339 100644 |
| 19 | --- a/arch/arm/mach-versatile/Kconfig |
| 20 | +++ b/arch/arm/mach-versatile/Kconfig |
| 21 | @@ -251,6 +251,7 @@ menuconfig ARCH_VEXPRESS |
| 22 | depends on ARCH_MULTI_V7 |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 23 | select ARM_AMBA |
| 24 | select ARM_GIC |
| 25 | + select ARM_GIC_V3 |
| 26 | select ARM_GLOBAL_TIMER |
| 27 | select ARM_TIMER_SP804 |
Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame^] | 28 | select GPIOLIB |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 29 | -- |
Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame^] | 30 | 2.30.2 |
Brad Bishop | bec4ebc | 2022-08-03 09:55:16 -0400 | [diff] [blame] | 31 | |