summaryrefslogtreecommitdiff
path: root/include/configs
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2022-06-30 10:20:19 +0200
committerPatrick Delaunay <patrick.delaunay@foss.st.com>2022-07-12 11:48:15 +0200
commiteb67e63da4468195276c889a1866b43821128b25 (patch)
tree7eeeaa62c6dbce02e832b6401dffdf0f5b026eb1 /include/configs
parent6d647676ead2caecade3a7145302e98bfbc436f9 (diff)
downloadu-boot-eb67e63da4468195276c889a1866b43821128b25.tar.gz
u-boot-eb67e63da4468195276c889a1866b43821128b25.tar.bz2
u-boot-eb67e63da4468195276c889a1866b43821128b25.zip
configs: stm32mp13: Add support for baudrates higher than 115200
On STM32MP13x STMicroelectronics boards, the UART can reliably go up to 4000000 bauds when connected to the external ST-LINKV3. This patch adds the support of higher baudrates on STMicroelectronics STM32MP13x boards with ST-LINKV3. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'include/configs')
-rw-r--r--include/configs/stm32mp13_st_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/stm32mp13_st_common.h b/include/configs/stm32mp13_st_common.h
index ec64b12f7a..c51022b40d 100644
--- a/include/configs/stm32mp13_st_common.h
+++ b/include/configs/stm32mp13_st_common.h
@@ -14,4 +14,9 @@
#include <configs/stm32mp13_common.h>
+/* uart with on-board st-link */
+#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \
+ 230400, 460800, 921600, \
+ 1000000, 2000000, 4000000}
+
#endif