From: Dario Binacchi Date: Wed, 25 Feb 2026 16:16:59 +0000 (+0100) Subject: spi: stm32: extend support to STM32MP25 X-Git-Tag: v2026.07-rc2~35^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=723e0360ee493b2ca5c88e61704c72c58d5040fe;p=thirdparty%2Fu-boot.git spi: stm32: extend support to STM32MP25 The SPI IP in this platform is fully compatible with the current driver implementation, requiring only a new compatible string. Signed-off-by: Dario Binacchi Reviewed-by: Patrice Chotard --- diff --git a/drivers/spi/stm32_spi.c b/drivers/spi/stm32_spi.c index f5be7b54ead..c93a749cd5b 100644 --- a/drivers/spi/stm32_spi.c +++ b/drivers/spi/stm32_spi.c @@ -684,6 +684,7 @@ static const struct dm_spi_ops stm32_spi_ops = { }; static const struct udevice_id stm32_spi_ids[] = { + { .compatible = "st,stm32mp25-spi", }, { .compatible = "st,stm32h7-spi", }, { } };