aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2024-02-09 00:59:50 +0100
committerFabio Estevam <festevam@denx.de>2024-02-10 15:15:55 -0300
commit05d3602737769765ff0c1e71914d521bddedfb2c (patch)
tree1e134bdc3fa4aceef13ccbfab52efa1339b10b26
parent0fa60e3c2a6dfe20da6cd4466c5cf3fb6149e26c (diff)
downloadu-boot-05d3602737769765ff0c1e71914d521bddedfb2c.zip
u-boot-05d3602737769765ff0c1e71914d521bddedfb2c.tar.gz
u-boot-05d3602737769765ff0c1e71914d521bddedfb2c.tar.bz2
spi: mxc_spi: Add imx6ul-ecspi compatible string
Recent i.MX8MP DTs use new fsl,imx6ul-ecspi compatible string instead of the fsl,imx51-ecspi compatible string. Add the new compatible string to fix ECSPI operation on i.MX8MP. For details, see Linux: 48d74376fb68 ("arm64: dts: imx8mp: update ecspi compatible and clk") 8eb1252bbedf ("spi: imx: remove ERR009165 workaround on i.mx6ul") Fixes: 451799a6ceac ("arm: dts: imx8mp: Sync the DT with kernel 6.4-rc4") Reviewed-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Marek Vasut <marex@denx.de>
-rw-r--r--drivers/spi/mxc_spi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/mxc_spi.c b/drivers/spi/mxc_spi.c
index 33360a1..e291092 100644
--- a/drivers/spi/mxc_spi.c
+++ b/drivers/spi/mxc_spi.c
@@ -670,6 +670,7 @@ static const struct dm_spi_ops mxc_spi_ops = {
static const struct udevice_id mxc_spi_ids[] = {
{ .compatible = "fsl,imx51-ecspi" },
+ { .compatible = "fsl,imx6ul-ecspi" },
{ }
};