struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host);
        struct mmc_ios curr_ios = host->mmc->ios;
        struct clk *core_clk = msm_host->bulk_clks[0].clk;
+       unsigned long achieved_rate;
        int rc;
 
        clock = msm_get_clock_rate_for_bus_mode(host, clock);
                       curr_ios.timing);
                return;
        }
+
+       /*
+        * Qualcomm clock drivers by default round clock _up_ if they can't
+        * make the requested rate.  This is not good for SD.  Yell if we
+        * encounter it.
+        */
+       achieved_rate = clk_get_rate(core_clk);
+       if (achieved_rate > clock)
+               pr_warn("%s: Card appears overclocked; req %u Hz, actual %lu Hz\n",
+                       mmc_hostname(host->mmc), clock, achieved_rate);
+
        msm_host->clk_rate = clock;
        pr_debug("%s: Setting clock at rate %lu at timing %d\n",
-                mmc_hostname(host->mmc), clk_get_rate(core_clk),
-                curr_ios.timing);
+                mmc_hostname(host->mmc), achieved_rate, curr_ios.timing);
 }
 
 /* Platform specific tuning */