diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2019-08-26 20:02:00 +0200 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2019-08-26 20:02:36 +0200 |
commit | e43e3a26e1b74af86ad80dfdfc3d7b6672d9a676 (patch) | |
tree | 65632af70744399c27be1e331ece90b20bcec31e | |
parent | 6323404478d7b19af6ccfc6be667f77e28fc5082 (diff) |
ARM: dts: imx6q: follow addition of sata_ext clkColibri-iMX8X_Console-Image_3.0b2.65-20190830Colibri-iMX7_Console-Image_3.0b2.65-20190830Colibri-iMX6_Console-Image_3.0b2.65-20190830Colibri-iMX6ULL_Console-Image_3.0b2.65-20190830Apalis-iMX8_Console-Image_3.0b2.65-20190830Apalis-iMX6_Console-Image_3.0b2.65-20190830
Commit f014b5b3b3ab added an additional clock to ahci_imx.c used
on i.MX8. Add a dummy clock to imx6q.dtsi so that i.MX6 which doesn't
need the clock the driver keeps working.
Fixes:
[ 2.053942] ahci-imx 2200000.sata: can't get sata_ext clock.
[ 2.053962] ahci-imx: probe of 2200000.sata failed with error -2
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r-- | arch/arm/boot/dts/imx6q.dtsi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi index 8fc6df17c3f5..3e7cc62a7084 100644 --- a/arch/arm/boot/dts/imx6q.dtsi +++ b/arch/arm/boot/dts/imx6q.dtsi @@ -186,8 +186,9 @@ interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>; clocks = <&clks IMX6QDL_CLK_SATA>, <&clks IMX6QDL_CLK_SATA_REF_100M>, - <&clks IMX6QDL_CLK_AHB>; - clock-names = "sata", "sata_ref", "ahb"; + <&clks IMX6QDL_CLK_AHB>, + <&clks IMX6QDL_CLK_DUMMY>; + clock-names = "sata", "sata_ref", "ahb", "sata_ext"; status = "disabled"; }; |