]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spi: mxc_spi: Add imx6ul-ecspi compatible string
authorMarek Vasut <marex@denx.de>
Thu, 8 Feb 2024 23:59:50 +0000 (00:59 +0100)
committerFabio Estevam <festevam@denx.de>
Sat, 10 Feb 2024 18:15:55 +0000 (15:15 -0300)
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>
drivers/spi/mxc_spi.c

index 33360a1832948059b823f92a5edc22faf61b6c49..e291092c481ab71bf57cd5453b5d2bc61e2203e3 100644 (file)
@@ -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" },
        { }
 };