Messages in this thread Patch in this message |  | | From | peng.fan@nxp ... | Subject | [PATCH V2] soc: imx: select ARM_GIC_V3 for i.MX8M | Date | Fri, 10 Jul 2020 09:43:53 +0800 |
| |
From: Peng Fan <peng.fan@nxp.com>
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 <arnd@arndb.de> Signed-off-by: Peng Fan <peng.fan@nxp.com> ---
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
|  |