Searched refs:f_max (Results 1 – 25 of 36) sorted by relevance
12
/drivers/cpufreq/ |
D | longhaul.c | 412 int f_max, f_min; in guess_fsb() local 415 f_max = ((speeds[i] * mult) + 50) / 100; in guess_fsb() 416 f_max += (ROUNDING / 2); in guess_fsb() 417 f_min = f_max - ROUNDING; in guess_fsb() 418 if ((speed <= f_max) && (speed >= f_min)) in guess_fsb()
|
/drivers/mmc/host/ |
D | mmci.c | 1286 of_property_read_u32(np, "max-frequency", &pdata->f_max); in mmci_dt_populate_generic_pdata() 1287 if (!pdata->f_max) in mmci_dt_populate_generic_pdata() 1417 if (plat->f_max) in mmci_probe() 1418 mmc->f_max = min(host->mclk, plat->f_max); in mmci_probe() 1420 mmc->f_max = min(host->mclk, fmax); in mmci_probe() 1421 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max); in mmci_probe()
|
D | wmt-sdmmc.c | 179 unsigned int f_max; member 753 .f_max = 50000000, 806 mmc->f_max = wmt_caps->f_max; in wmt_mci_probe()
|
D | tmio_mmc_pio.c | 766 ret = pdata->clk_enable(host->pdev, &mmc->f_max); in tmio_mmc_clk_update() 768 mmc->f_min = mmc->f_max / 512; in tmio_mmc_clk_update() 1035 mmc->f_max = pdata->hclk; in tmio_mmc_host_probe() 1036 mmc->f_min = mmc->f_max / 512; in tmio_mmc_host_probe()
|
D | omap.c | 1259 mmc->f_max = 48000000; in mmc_omap_new_slot() 1261 mmc->f_max = 24000000; in mmc_omap_new_slot() 1263 mmc->f_max = min(host->pdata->max_freq, mmc->f_max); in mmc_omap_new_slot()
|
D | bfin_sdh.c | 559 mmc->f_max = get_sclk(); in sdh_probe() 560 mmc->f_min = mmc->f_max >> 9; in sdh_probe()
|
D | sh_mobile_sdhi.c | 275 host->mmc->f_max / 1000000); in sh_mobile_sdhi_probe()
|
D | sdricoh_cs.c | 443 mmc->f_max = 24000000; in sdricoh_init_mmc()
|
D | android-goldfish.c | 498 mmc->f_max = 24000000; in goldfish_mmc_probe()
|
D | mmc_spi.c | 1385 mmc->f_max = spi->max_speed_hz; in mmc_spi_probe() 1512 spi->max_speed_hz = mmc->f_max; in mmc_spi_remove()
|
D | au1xmmc.c | 995 mmc->f_max = 24000000; in au1xmmc_probe() 1016 mmc->f_max = 52000000; in au1xmmc_probe()
|
D | ushc.c | 452 mmc->f_max = 50000000; in ushc_probe()
|
D | davinci_mmc.c | 1322 mmc->f_max = 25000000; in davinci_mmcsd_probe() 1324 mmc->f_max = pdata->max_freq; in davinci_mmcsd_probe()
|
D | cb710-mmc.c | 715 mmc->f_max = val; in cb710_mmc_init()
|
D | vub300.c | 2152 mmc->f_max = 24000000; in vub300_probe() 2157 mmc->f_max = 48000000; in vub300_probe() 2309 mmc->f_max / 1000000, in vub300_probe()
|
D | mxs-mmc.c | 666 mmc->f_max = 288000000; in mxs_mmc_probe()
|
D | sdhci.c | 2866 mmc->f_max = host->max_clk; in sdhci_add_host() 2872 mmc->f_max = host->max_clk * host->clk_mul; in sdhci_add_host() 2894 host->timeout_clk = mmc->f_max / 1000; in sdhci_add_host()
|
D | pxamci.c | 691 mmc->f_max = (mmc_has_26MHz()) ? 26000000 : host->clkrate; in pxamci_probe()
|
D | omap_hsmmc.c | 1850 mmc->f_max = pdata->max_freq; in omap_hsmmc_probe() 1852 mmc->f_max = OMAP_MMC_MAX_CLOCK; in omap_hsmmc_probe()
|
D | jz4740_mmc.c | 871 mmc->f_max = JZ_MMC_CLK_RATE; in jz4740_mmc_probe()
|
D | mvsdio.c | 750 mmc->f_max = maxfreq; in mvsd_probe()
|
/drivers/media/tuners/ |
D | mt2063.c | 435 u32 f_min, u32 f_max) in MT2063_AddExclZone() argument 444 if ((f_max > (pAS_Info->f_if1_Center - (pAS_Info->f_if1_bw / 2))) in MT2063_AddExclZone() 446 && (f_min < f_max)) { in MT2063_AddExclZone() 461 if ((pNode != NULL) && (pNode->min_ < f_max)) { in MT2063_AddExclZone() 465 if (f_max > pNode->max_) in MT2063_AddExclZone() 466 pNode->max_ = f_max; in MT2063_AddExclZone() 470 pNode->max_ = f_max; in MT2063_AddExclZone()
|
/drivers/mmc/core/ |
D | debugfs.c | 192 if (val > host->f_max) in mmc_clock_opt_set()
|
D | host.c | 342 of_property_read_u32(np, "max-frequency", &host->f_max); in mmc_of_parse()
|
/drivers/staging/csr/ |
D | sdio_mmc.c | 413 if (max_hz > host->f_max) { in CsrSdioMaxBusClockFrequencySet() 414 max_hz = host->f_max; in CsrSdioMaxBusClockFrequencySet()
|
12