diff options
| author | Dario Binacchi <[email protected]> | 2026-02-25 17:16:59 +0100 |
|---|---|---|
| committer | Patrice Chotard <[email protected]> | 2026-04-30 08:01:11 +0200 |
| commit | 723e0360ee493b2ca5c88e61704c72c58d5040fe (patch) | |
| tree | 858fbf59f1e077ae8fe2bf6fbe8d15592db461fa /drivers | |
| parent | 011feb002888e1fb76326aa8564eb559fe684818 (diff) | |
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 <[email protected]>
Reviewed-by: Patrice Chotard <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/spi/stm32_spi.c | 1 |
1 files changed, 1 insertions, 0 deletions
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", }, { } }; |
