blob: 20ec11477d6866a12d162748a09221ca177d4a2d [file] [log] [blame]
Patrick Delaunay960debb2022-05-20 18:24:46 +02001/* 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 \
Patrice Chotardac316632023-03-16 08:03:43 +010012 "usb_pgood_delay=2000\0" \
Patrick Delaunay960debb2022-05-20 18:24:46 +020013 "console=ttySTM0\0"
14
15#include <configs/stm32mp13_common.h>
16
Patrick Delaunayeb67e632022-06-30 10:20:19 +020017/* uart with on-board st-link */
Tom Rini65cc0e22022-11-16 13:10:41 -050018#define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \
Patrick Delaunayeb67e632022-06-30 10:20:19 +020019 230400, 460800, 921600, \
20 1000000, 2000000, 4000000}
21
Patrick Delaunay960debb2022-05-20 18:24:46 +020022#endif