1 /* SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause */ 2 /* 3 * Copyright (C) 2022, STMicroelectronics - All Rights Reserved 4 * 5 * Configuration settings for the STMicroelectronics STM32MP13x boards 6 */ 7 8 #ifndef __CONFIG_STM32MP13_ST_COMMON_H__ 9 #define __CONFIG_STM32MP13_ST_COMMON_H__ 10 11 #define STM32MP_BOARD_EXTRA_ENV \ 12 "usb_pgood_delay=2000\0" \ 13 "console=ttySTM0\0" 14 15 #include <configs/stm32mp13_common.h> 16 17 /* uart with on-board st-link */ 18 #define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \ 19 230400, 460800, 921600, \ 20 1000000, 2000000, 4000000} 21 22 #endif 23