diff options
author | Roan van Dijk <roan@protonic.nl> | 2023-03-28 12:33:11 +0300 |
---|---|---|
committer | Alexandre Torgue <alexandre.torgue@foss.st.com> | 2023-03-28 17:39:36 +0300 |
commit | 76afff432f262712044864e3835841b1b41835a9 (patch) | |
tree | d0f38b345678b11cdc471892c65279175c611000 | |
parent | 1b9f0ec81af0012aae30aa3b4c711ad71d42e246 (diff) | |
download | linux-76afff432f262712044864e3835841b1b41835a9.tar.xz |
ARM: stm32: add support for STM32MP151
This patch adds initial support of STM32MP151 microprocessor (MPU)
based on Arm Cortex-A7. New Cortex-A infrastructure (gic, timer,...)
are selected if ARCH_MULTI_V7 is defined.
Signed-off-by: David Jander <david@protonic.nl>
Signed-off-by: Roan van Dijk <roan@protonic.nl>
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
-rw-r--r-- | arch/arm/mach-stm32/board-dt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32/board-dt.c b/arch/arm/mach-stm32/board-dt.c index 2ccaa11aaa56..5dcc4ddd1a56 100644 --- a/arch/arm/mach-stm32/board-dt.c +++ b/arch/arm/mach-stm32/board-dt.c @@ -21,6 +21,7 @@ static const char *const stm32_compat[] __initconst = { "st,stm32mp131", "st,stm32mp133", "st,stm32mp135", + "st,stm32mp151", "st,stm32mp157", NULL }; |