]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: exynos_dw_mmc: Set requested freq in get_mmc_clk() callback
authorSam Protsenko <semen.protsenko@linaro.org>
Thu, 8 Aug 2024 03:14:36 +0000 (22:14 -0500)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 19 Aug 2024 07:09:06 +0000 (16:09 +0900)
By now exynos_dw_mmc driver was relying on the correct CIU clock
frequency being set on driver init. But dw_mmc core is actually trying
to change CIU clock rate dynamically, on init and in set_ios() callback,
which it's requesting via host->get_mmc_clk() callback (the name is
misleading: although it's called "get_mmc_clk()", it can actually
request both get and set operations). Implement setting the requested
rate for CIU clock in Exynos driver to achieve the correct dw_mmc core
driver operation at all times. DDR mode requires the clock to be twice
as fast (when 8 bit bus is used), so handle this too, to make DDR
function properly.

This change makes the eMMC throughput on E850-96 board twice as fast.
That's because "clock-frequency" is set to 800 MHz in E850-96 device
tree, but for DDR52 mode it should be 416 MHz (and TRM states it should
be 400 MHz for DDR50/8bit mode). The dw_mmc core is requesting 52 MHz
bus_hz for DDR52 mode, and DDR+8bit mode means it should be x2 fast, so:

    f_ciu = 2 * ciu_div * f_bus = 2 * 4 * 52e6 = 416 MHz,

where f_ciu   - freq of clock fed to DW MMC block from CMU (SDCLKIN), Hz
      f_bus   - freq of clock fed to the card (CCLKIN), Hz
      ciu_div - value of internal divider (in DW MMC block).

Another way to work that around would be overriding the
"clock-frequency" property in corresponding dts. But setting the clock
frequency dynamically as it's done here looks much neater.

This implementation follows what's done in Linux kernel dw_mmc-exynos
driver in .set_ios() callback for MMC_TIMING_MMC_DDR52 case.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/mmc/exynos_dw_mmc.c

index 32f3ea168b6c068609abe1cc33cad2a2d39ff31d..ee3ae9f5e65064323ca19a53270c5f5aa5b5027e 100644 (file)
@@ -169,7 +169,17 @@ unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
        u8 clk_div;
        int err;
 
+       /* Should be double rate for DDR mode */
+       if (host->mmc->selected_mode == MMC_DDR_52 && host->mmc->bus_width == 8)
+               freq *= 2;
+
        clk_div = exynos_dwmmc_get_ciu_div(host);
+       err = exynos_dwmmc_set_sclk(host, freq * clk_div);
+       if (err) {
+               printf("DWMMC%d: failed to set clock rate (%d); "
+                      "continue anyway\n", host->dev_index, err);
+       }
+
        err = exynos_dwmmc_get_sclk(host, &sclk);
        if (err) {
                printf("DWMMC%d: failed to get clock rate (%d)\n",