2020-07-10 01:51:16

by Peng Fan

[permalink] [raw]
Subject: [PATCH V2] soc: imx: select ARM_GIC_V3 for i.MX8M

From: Peng Fan <[email protected]>

Select ARM_GIC_V3, then it is able to use gic v3 driver in aarch32
mode linux on aarch64 hardware. For aarch64 mode, it not hurts
to select ARM_GIC_V3.

Acked-by: Arnd Bergmann <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
---

V2:
Select GIC V3 when ARCH_MXC is selected to avoid compile test error
https://patchwork.kernel.org/patch/11516553/#23321403

drivers/soc/imx/Kconfig | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/soc/imx/Kconfig b/drivers/soc/imx/Kconfig
index d515d2cc20ed..7da10bc99d21 100644
--- a/drivers/soc/imx/Kconfig
+++ b/drivers/soc/imx/Kconfig
@@ -22,6 +22,7 @@ config SOC_IMX8M
depends on ARCH_MXC || COMPILE_TEST
default ARCH_MXC && ARM64
select SOC_BUS
+ select ARM_GIC_V3 if ARCH_MXC
help
If you say yes here you get support for the NXP i.MX8M family
support, it will provide the SoC info like SoC family,
--
2.16.4


2020-07-13 08:43:46

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH V2] soc: imx: select ARM_GIC_V3 for i.MX8M

On Fri, Jul 10, 2020 at 09:43:53AM +0800, [email protected] wrote:
> From: Peng Fan <[email protected]>
>
> Select ARM_GIC_V3, then it is able to use gic v3 driver in aarch32
> mode linux on aarch64 hardware. For aarch64 mode, it not hurts
> to select ARM_GIC_V3.
>
> Acked-by: Arnd Bergmann <[email protected]>
> Signed-off-by: Peng Fan <[email protected]>

Applied, thanks.