Lines Matching refs:max_clk
1881 if ((host->max_clk * host->clk_mul / div) in sdhci_calc_clk()
1885 if ((host->max_clk * host->clk_mul / div) <= clock) { in sdhci_calc_clk()
1905 if (host->max_clk <= clock) in sdhci_calc_clk()
1910 if ((host->max_clk / div) <= clock) in sdhci_calc_clk()
1917 && !div && host->max_clk <= 25000000) in sdhci_calc_clk()
1923 if ((host->max_clk / div) <= clock) in sdhci_calc_clk()
1932 *actual_clock = (host->max_clk * clk_mul) / real_div; in sdhci_calc_clk()
4131 u32 max_clk; in sdhci_setup_host() local
4284 host->max_clk = FIELD_GET(SDHCI_CLOCK_V3_BASE_MASK, host->caps); in sdhci_setup_host()
4286 host->max_clk = FIELD_GET(SDHCI_CLOCK_BASE_MASK, host->caps); in sdhci_setup_host()
4288 host->max_clk *= 1000000; in sdhci_setup_host()
4289 if (host->max_clk == 0 || host->quirks & in sdhci_setup_host()
4297 host->max_clk = host->ops->get_max_clock(host); in sdhci_setup_host()
4318 max_clk = host->max_clk; in sdhci_setup_host()
4324 max_clk = host->max_clk * host->clk_mul; in sdhci_setup_host()
4329 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300; in sdhci_setup_host()
4331 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200; in sdhci_setup_host()
4333 if (!mmc->f_max || mmc->f_max > max_clk) in sdhci_setup_host()
4334 mmc->f_max = max_clk; in sdhci_setup_host()