mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 22:33:18 +00:00
15e20e4bdf
The USB hub on STM32MP1 DHCOM boards needs to wait a bit longer until the USB Vbus is stable. Increase the USB power-good delay to 1 s. This adds default-undefined STM32MP_BOARD_EXTRA_ENV variable into stm32mp15_common.h to reduce duplication in board-specific config files adding custom environment. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Patrice Chotard <patrice.chotard@foss.st.com> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
18 lines
399 B
C
18 lines
399 B
C
/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
|
|
/*
|
|
* Copyright (C) 2020 Marek Vasut <marex@denx.de>
|
|
*
|
|
* Configuration settings for the DH STM32MP15x SoMs
|
|
*/
|
|
|
|
#ifndef __CONFIG_STM32MP15_DH_DHSOM_H__
|
|
#define __CONFIG_STM32MP15_DH_DHSOM_H__
|
|
|
|
#define STM32MP_BOARD_EXTRA_ENV \
|
|
"usb_pgood_delay=1000\0"
|
|
|
|
#include <configs/stm32mp15_common.h>
|
|
|
|
#define CONFIG_SPL_TARGET "u-boot.itb"
|
|
|
|
#endif
|