mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
65cc0e2a65
The rest of the unmigrated CONFIG symbols in the CONFIG_SYS namespace do not easily transition to Kconfig. In many cases they likely should come from the device tree instead. Move these out of CONFIG namespace and in to CFG namespace. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
22 lines
597 B
C
22 lines
597 B
C
/* 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>
|
|
|
|
/* uart with on-board st-link */
|
|
#define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \
|
|
230400, 460800, 921600, \
|
|
1000000, 2000000, 4000000}
|
|
|
|
#endif
|