mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
960debbe3c
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>
17 lines
423 B
C
17 lines
423 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>
|
|
|
|
#endif
|