diff options
author | Adam Ford <aford173@gmail.com> | 2025-03-24 21:54:47 -0500 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-03-25 08:32:16 -0300 |
commit | 9dc3ae5ab85fe1bc78edad3037be1f18ee7a4423 (patch) | |
tree | f15ca561f5ccedf07664beb6e81f604ec222921e | |
parent | c2397b7c8213c30fcf1f7e3ca9e2356ed9e6b4df (diff) |
imx: imx8: Imply CPU_IMX by default
The imx8_cpu driver is a CPU Driver that supports the i.MX8Q
family. When it is enabled, it acts as an alternative to
arch/arm/mach-imx/cpu.c, but the imx8_cpu supports the driver
model where cpu.c does not. Imply this newer driver by default.
Signed-off-by: Adam Ford <aford173@gmail.com>
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
-rw-r--r-- | arch/arm/mach-imx/imx8/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx8/Kconfig b/arch/arm/mach-imx/imx8/Kconfig index 9a43beda6fa..257c14e61b6 100644 --- a/arch/arm/mach-imx/imx8/Kconfig +++ b/arch/arm/mach-imx/imx8/Kconfig @@ -9,6 +9,8 @@ config AHAB_BOOT config IMX8 bool select HAS_CAAM + imply CPU + imply CPU_IMX config MU_BASE_SPL hex "MU base address used in SPL" |