Lines Matching refs:max_clk
1894 if ((host->max_clk * host->clk_mul / div) in sdhci_calc_clk()
1898 if ((host->max_clk * host->clk_mul / div) <= clock) { in sdhci_calc_clk()
1918 if (host->max_clk <= clock) in sdhci_calc_clk()
1923 if ((host->max_clk / div) <= clock) in sdhci_calc_clk()
1930 && !div && host->max_clk <= 25000000) in sdhci_calc_clk()
1936 if ((host->max_clk / div) <= clock) in sdhci_calc_clk()
1945 *actual_clock = (host->max_clk * clk_mul) / real_div; in sdhci_calc_clk()
4134 u32 max_clk; in sdhci_setup_host() local
4287 host->max_clk = FIELD_GET(SDHCI_CLOCK_V3_BASE_MASK, host->caps); in sdhci_setup_host()
4289 host->max_clk = FIELD_GET(SDHCI_CLOCK_BASE_MASK, host->caps); in sdhci_setup_host()
4291 host->max_clk *= 1000000; in sdhci_setup_host()
4292 if (host->max_clk == 0 || host->quirks & in sdhci_setup_host()
4300 host->max_clk = host->ops->get_max_clock(host); in sdhci_setup_host()
4321 max_clk = host->max_clk; in sdhci_setup_host()
4327 max_clk = host->max_clk * host->clk_mul; in sdhci_setup_host()
4332 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300; in sdhci_setup_host()
4334 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200; in sdhci_setup_host()
4336 if (!mmc->f_max || mmc->f_max > max_clk) in sdhci_setup_host()
4337 mmc->f_max = max_clk; in sdhci_setup_host()