summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Przywara <[email protected]>2026-05-08 12:31:22 +0200
committerAndre Przywara <[email protected]>2026-07-26 23:20:07 +0200
commit4b5a1e0283aec9048d9e12cf137d969a203b5f62 (patch)
treed56f45f271cf656bddfdf358eddc93f58c8c8852
parentc83594e844931ac2db1da19597119c2309b88f2c (diff)
spi: sunxi: add support for A523 SPI controller
The SPI controllers in the Allwinner A523/A527/T527 SoCs is very close to the one used in the R329 and D1 generation, definitely as far as our driver is concerned. Add the new compatible string, but use the existing config section from the previous SoC generation. Signed-off-by: Andre Przywara <[email protected]> Acked-by: Jernej Skrabec <[email protected]>
-rw-r--r--drivers/spi/spi-sunxi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/spi/spi-sunxi.c b/drivers/spi/spi-sunxi.c
index 08b603f04a2..4e91cf6b7fd 100644
--- a/drivers/spi/spi-sunxi.c
+++ b/drivers/spi/spi-sunxi.c
@@ -587,6 +587,10 @@ static const struct udevice_id sun4i_spi_ids[] = {
.compatible = "allwinner,sun50i-r329-spi",
.data = (ulong)&sun50i_r329_spi_variant,
},
+ {
+ .compatible = "allwinner,sun55i-a523-spi",
+ .data = (ulong)&sun50i_r329_spi_variant,
+ },
{ /* sentinel */ }
};