Skip to content

Commit e030263

Browse files
author
Alexandre Torgue
committed
ARM: stm32: add initial support for STM32MP13 family
This patch adds initial support of STM32MP13 microprocessor family based on Arm Cortex-A7. New Cortex-A infrastructure (gic, timer,...) are selected if ARCH_MULTI_V7 is defined. Signed-off-by: Alexandre Torgue <[email protected]> Acked-by: Arnd Bergmann <[email protected]>
1 parent 02c0dc0 commit e030263

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

arch/arm/mach-stm32/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ config MACH_STM32MP157
4848
select ARM_ERRATA_814220
4949
default y
5050

51+
config MACH_STM32MP13
52+
bool "STMicroelectronics STM32MP13x"
53+
select ARM_ERRATA_814220
54+
default y
55+
help
56+
Support for STM32MP13 SoCs:
57+
STM32MP131, STM32MP133, STM32MP135
58+
5159
endif # ARMv7-A
5260

5361
endif

arch/arm/mach-stm32/board-dt.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ static const char *const stm32_compat[] __initconst = {
1818
"st,stm32f769",
1919
"st,stm32h743",
2020
"st,stm32h750",
21+
"st,stm32mp131",
22+
"st,stm32mp133",
23+
"st,stm32mp135",
2124
"st,stm32mp157",
2225
NULL
2326
};

0 commit comments

Comments
 (0)