]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
mmc: msm_sdhci: Use max-frequency to get clock rate 958/head
authorVaradarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
Thu, 16 Apr 2026 05:11:51 +0000 (10:41 +0530)
committerPeng Fan <peng.fan@nxp.com>
Wed, 6 May 2026 02:20:30 +0000 (10:20 +0800)
msm_sdc_clk_init() uses clock-frequency to get the clock rate for SDC
clocks. However, the DT files seem to use max-frequency for the same.
Since msm_sdc_clk_init() doesn't find clock-frequency in the DT, it sets
201500000 as the clock rate and this results in timeout errors on IPQ
platforms.

Additionally, clock-frequency is not DT bindings compliant. Hence, get
clock rate using DT bindings compliant max-frequency.

Signed-off-by: Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
drivers/mmc/msm_sdhci.c

index 66f3cf2de4f0d71aa34df03447ee37e1ced043d3..aaa87923604b1cf43d4d6919f909a9c1fcb97a87 100644 (file)
@@ -71,8 +71,7 @@ static int msm_sdc_clk_init(struct udevice *dev)
 
        var_info = (void *)dev_get_driver_data(dev);
 
-       ret = ofnode_read_u32(node, "clock-frequency", (uint *)(&clk_rate));
-       if (ret)
+       if (ofnode_read_u32(node, "max-frequency", (uint *)(&clk_rate)))
                clk_rate = 201500000;
 
        ret = clk_get_bulk(dev, &prv->clks);