diff options
| author | Tom Rini <[email protected]> | 2023-04-22 18:30:56 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-04-22 18:30:56 -0400 |
| commit | f2db24556f33e8dfb8865fbc1c75e48f96be4fbf (patch) | |
| tree | 798b5ec26a35d52f30bcd302c2265027bd7b9bc9 /include | |
| parent | 03972a10acad1d4aca0db20c4744b56dfc145e8a (diff) | |
| parent | 0d5bd362f61dd3dc54f9a32fd38541b8d5c5d869 (diff) | |
Merge tag 'u-boot-stm32-20230419' of https://source.denx.de/u-boot/custodians/u-boot-stm
configs:
_ Add usb_pgood_delay for ST boards
_ increase malloc size for pre-reloc for stm32mp15
_ Set CONFIG_USB_HUB_DEBOUNCE_TIMEOUT=2s for stm32mp15
dts:
_ Add QSPI support on STM32MP13x SoC family
_ Add FMC support on STM32MP13x SoC family
drivers/machine:
_ pinctrl_stm32: Add slew rate support for stm32_pinctrl_get_pin_muxing()
_ spi: stm32_qspi: Remove useless struct stm32_qspi_flash
_ rawnand: stm32_fmc2: remove unsupported EDO mode
_ stm32mp: fix various array bounds checks
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/stm32mp13_st_common.h | 2 | ||||
| -rw-r--r-- | include/configs/stm32mp15_st_common.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/stm32mp13_st_common.h b/include/configs/stm32mp13_st_common.h index ad8126f6103..20ec11477d6 100644 --- a/include/configs/stm32mp13_st_common.h +++ b/include/configs/stm32mp13_st_common.h @@ -9,7 +9,7 @@ #define __CONFIG_STM32MP13_ST_COMMON_H__ #define STM32MP_BOARD_EXTRA_ENV \ - "usb_pgood_delay=1000\0" \ + "usb_pgood_delay=2000\0" \ "console=ttySTM0\0" #include <configs/stm32mp13_common.h> diff --git a/include/configs/stm32mp15_st_common.h b/include/configs/stm32mp15_st_common.h index d0cd4130cec..866cd7a719f 100644 --- a/include/configs/stm32mp15_st_common.h +++ b/include/configs/stm32mp15_st_common.h @@ -9,6 +9,7 @@ #define __CONFIG_STM32MP15_ST_COMMON_H__ #define STM32MP_BOARD_EXTRA_ENV \ + "usb_pgood_delay=2000\0" \ "console=ttySTM0\0" #include <configs/stm32mp15_common.h> |
