aboutsummaryrefslogtreecommitdiff
path: root/include/configs/stm32mp13_st_common.h
diff options
context:
space:
mode:
authorPatrick Delaunay2022-05-20 18:24:46 +0200
committerPatrick Delaunay2022-06-17 09:58:21 +0200
commit960debbe3c55b111f95a60fa69f47c233a960666 (patch)
tree721203ed9af727f4f0a67c612bafb0fcfd40a618 /include/configs/stm32mp13_st_common.h
parent741090c5107c798ce3b8cd8e62edaf4727e93c6f (diff)
arm: stm32mp: add support of STM32MP13x
Introduce the code in mach-stm32mp and the configuration file stm32mp13_defconfig for the new STM32MP family. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'include/configs/stm32mp13_st_common.h')
-rw-r--r--include/configs/stm32mp13_st_common.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/configs/stm32mp13_st_common.h b/include/configs/stm32mp13_st_common.h
new file mode 100644
index 00000000000..ec64b12f7ab
--- /dev/null
+++ b/include/configs/stm32mp13_st_common.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause */
+/*
+ * Copyright (C) 2022, STMicroelectronics - All Rights Reserved
+ *
+ * Configuration settings for the STMicroelectronics STM32MP13x boards
+ */
+
+#ifndef __CONFIG_STM32MP13_ST_COMMON_H__
+#define __CONFIG_STM32MP13_ST_COMMON_H__
+
+#define STM32MP_BOARD_EXTRA_ENV \
+ "usb_pgood_delay=1000\0" \
+ "console=ttySTM0\0"
+
+#include <configs/stm32mp13_common.h>
+
+#endif