/Linux-v4.19/drivers/cpufreq/ |
D | s3c2412-cpufreq.c | 38 static struct clk *hclk; variable 46 unsigned long hclk, fclk, armclk, armdiv_clk; in s3c2412_cpufreq_calcdivs() local 51 hclk_max = cfg->max.hclk; in s3c2412_cpufreq_calcdivs() 63 cfg->freq.hclk, cfg->freq.pclk); in s3c2412_cpufreq_calcdivs() 79 cfg->freq.hclk = hclk = armdiv_clk / hdiv; in s3c2412_cpufreq_calcdivs() 85 cfg->freq.armclk = dvs ? hclk : armdiv_clk; in s3c2412_cpufreq_calcdivs() 88 __func__, armclk, hclk, armdiv, hdiv, cfg->divs.dvs); in s3c2412_cpufreq_calcdivs() 93 pdiv = (hclk > cfg->max.pclk) ? 2 : 1; in s3c2412_cpufreq_calcdivs() 95 if ((hclk / pdiv) > cfg->max.pclk) in s3c2412_cpufreq_calcdivs() 98 cfg->freq.pclk = hclk / pdiv; in s3c2412_cpufreq_calcdivs() [all …]
|
D | s3c2440-cpufreq.c | 37 static struct clk *hclk; variable 60 unsigned long hclk, fclk, armclk; in s3c2440_cpufreq_calcdivs() local 65 hclk_max = cfg->max.hclk; in s3c2440_cpufreq_calcdivs() 83 hclk = (fclk / hdiv); in s3c2440_cpufreq_calcdivs() 84 if (hclk <= hclk_max || within_khz(hclk, hclk_max)) in s3c2440_cpufreq_calcdivs() 88 s3c_freq_dbg("%s: hclk %lu, div %d\n", __func__, hclk, hdiv); in s3c2440_cpufreq_calcdivs() 93 pdiv = (hclk > cfg->max.pclk) ? 2 : 1; in s3c2440_cpufreq_calcdivs() 95 if ((hclk / pdiv) > cfg->max.pclk) in s3c2440_cpufreq_calcdivs() 107 if (armclk < hclk) in s3c2440_cpufreq_calcdivs() 108 armclk = hclk; in s3c2440_cpufreq_calcdivs() [all …]
|
D | s3c2410-cpufreq.c | 48 unsigned long hclk, fclk, pclk; in s3c2410_cpufreq_calcdivs() local 53 hclk_max = cfg->max.hclk; in s3c2410_cpufreq_calcdivs() 60 hdiv = (fclk > cfg->max.hclk) ? 2 : 1; in s3c2410_cpufreq_calcdivs() 61 hclk = fclk / hdiv; in s3c2410_cpufreq_calcdivs() 63 if (hclk > cfg->max.hclk) { in s3c2410_cpufreq_calcdivs() 68 pdiv = (hclk > cfg->max.pclk) ? 2 : 1; in s3c2410_cpufreq_calcdivs() 69 pclk = hclk / pdiv; in s3c2410_cpufreq_calcdivs() 88 .hclk = 100000000, 141 s3c2410_cpufreq_info.max.hclk = 133000000; in s3c2410a_cpufreq_add()
|
D | s3c2416-cpufreq.c | 30 struct clk *hclk; member 134 clk_get_rate(s3c_freq->hclk) / 1000); in s3c2416_cpufreq_enter_dvs() 135 ret = clk_set_parent(s3c_freq->armclk, s3c_freq->hclk); in s3c2416_cpufreq_enter_dvs() 192 if (clk_get_rate(s3c_freq->armdiv) > clk_get_rate(s3c_freq->hclk)) { in s3c2416_cpufreq_leave_dvs() 194 clk_get_rate(s3c_freq->hclk) / 1000); in s3c2416_cpufreq_leave_dvs() 196 clk_get_rate(s3c_freq->hclk) / 1000); in s3c2416_cpufreq_leave_dvs() 199 clk_get_rate(s3c_freq->hclk) / 1000, ret); in s3c2416_cpufreq_leave_dvs() 245 ? clk_get_rate(s3c_freq->hclk) / 1000 in s3c2416_cpufreq_set_target() 390 s3c_freq->hclk = clk_get(NULL, "hclk"); in s3c2416_cpufreq_driver_init() 391 if (IS_ERR(s3c_freq->hclk)) { in s3c2416_cpufreq_driver_init() [all …]
|
D | s3c24xx-cpufreq.c | 67 unsigned long fclk, pclk, hclk, armclk; in s3c_cpufreq_getcur() local 70 cfg->freq.hclk = hclk = clk_get_rate(clk_hclk); in s3c_cpufreq_getcur() 77 cfg->freq.hclk_tns = 1000000000 / (cfg->freq.hclk / 10); in s3c_cpufreq_getcur() 79 cfg->divs.h_divisor = fclk / hclk; in s3c_cpufreq_getcur() 88 cfg->freq.hclk = pll / cfg->divs.h_divisor; in s3c_cpufreq_calc() 92 cfg->freq.hclk_tns = 1000000000 / (cfg->freq.hclk / 10); in s3c_cpufreq_calc() 108 cfg->freq.hclk, cfg->divs.h_divisor, in s3c_cpufreq_show() 190 if (cpu_new.freq.hclk != cpu_cur.freq.hclk) { in s3c_cpufreq_settarget() 213 s3c_cpufreq_updateclk(clk_hclk, cpu_new.freq.hclk); in s3c_cpufreq_settarget() 226 if (cpu_new.freq.hclk < cpu_cur.freq.hclk) { in s3c_cpufreq_settarget() [all …]
|
D | highbank-cpufreq.c | 37 unsigned long action, void *hclk) in hb_cpufreq_clk_notify() argument 39 struct clk_notifier_data *clk_data = hclk; in hb_cpufreq_clk_notify()
|
D | s3c24xx-cpufreq-debugfs.c | 36 f->fclk, f->hclk, f->pclk, f->armclk); in show_max() 91 cfg->freq.hclk, print_ns(cfg->freq.hclk_tns)); in info_show() 92 seq_printf(seq, " PCLK %ld Hz\n", cfg->freq.hclk); in info_show()
|
/Linux-v4.19/arch/arm/mach-s3c24xx/ |
D | iotiming-s3c2410.c | 132 int calc_tacp(unsigned int cyc, unsigned long hclk, unsigned long *v) in calc_tacp() argument 216 unsigned long hclk = cfg->freq.hclk_tns; in s3c2410_calc_bank() local 230 ret = calc_0124(bt->tacs, hclk, &res, S3C2410_BANKCON_Tacs_SHIFT); in s3c2410_calc_bank() 231 ret |= calc_0124(bt->tcos, hclk, &res, S3C2410_BANKCON_Tcos_SHIFT); in s3c2410_calc_bank() 232 ret |= calc_0124(bt->tcah, hclk, &res, S3C2410_BANKCON_Tcah_SHIFT); in s3c2410_calc_bank() 233 ret |= calc_0124(bt->tcoh, hclk, &res, S3C2410_BANKCON_Tcoh_SHIFT); in s3c2410_calc_bank() 238 ret |= calc_tacp(bt->tacp, hclk, &res); in s3c2410_calc_bank() 239 ret |= calc_tacc(bt->tacc, bt->nwait_en, hclk, &res); in s3c2410_calc_bank() 295 unsigned long hclk = cfg->freq.hclk_tns; in s3c2410_iotiming_getbank() local 297 bt->tcah = get_0124(hclk, bankcon >> S3C2410_BANKCON_Tcah_SHIFT); in s3c2410_iotiming_getbank() [all …]
|
D | iotiming-s3c2412.c | 94 unsigned int hclk = cfg->freq.hclk_tns; in s3c2412_calc_bank() local 97 bt->smbidcyr = calc_timing(bt->idcy, hclk, &err); in s3c2412_calc_bank() 98 bt->smbwstrd = calc_timing(bt->wstrd, hclk, &err); in s3c2412_calc_bank() 99 bt->smbwstwr = calc_timing(bt->wstwr, hclk, &err); in s3c2412_calc_bank() 100 bt->smbwstoen = calc_timing(bt->wstoen, hclk, &err); in s3c2412_calc_bank() 101 bt->smbwstwen = calc_timing(bt->wstwen, hclk, &err); in s3c2412_calc_bank() 102 bt->smbwstbrd = calc_timing(bt->wstbrd, hclk, &err); in s3c2412_calc_bank() 271 refresh = (cfg->freq.hclk / 100) * (board->refresh / 10); in s3c2412_cpufreq_setrefresh()
|
D | mach-osiris-dvs.c | 44 return f->armclk == f->hclk; in is_dvs() 63 freqs->old.armclk, freqs->old.hclk, in osiris_dvs_notify() 64 freqs->new.armclk, freqs->new.hclk); in osiris_dvs_notify()
|
/Linux-v4.19/arch/arm/mach-mv78xx0/ |
D | common.c | 49 int hclk; in get_hclk() local 56 hclk = 166666667; in get_hclk() 59 hclk = 200000000; in get_hclk() 62 hclk = 266666667; in get_hclk() 65 hclk = 333333333; in get_hclk() 68 hclk = 400000000; in get_hclk() 75 return hclk; in get_hclk() 78 static void get_pclk_l2clk(int hclk, int core_index, int *pclk, int *l2clk) in get_pclk_l2clk() argument 96 *pclk = ((u64)hclk * (2 + (cfg & 0xf))) >> 1; in get_pclk_l2clk() 387 int hclk; in mv78xx0_init() local [all …]
|
/Linux-v4.19/sound/soc/rockchip/ |
D | rockchip_spdif.c | 40 struct clk *hclk; member 74 clk_disable_unprepare(spdif->hclk); in rk_spdif_runtime_suspend() 90 ret = clk_prepare_enable(spdif->hclk); in rk_spdif_runtime_resume() 102 clk_disable_unprepare(spdif->hclk); in rk_spdif_runtime_resume() 311 spdif->hclk = devm_clk_get(&pdev->dev, "hclk"); in rk_spdif_probe() 312 if (IS_ERR(spdif->hclk)) { in rk_spdif_probe() 314 return PTR_ERR(spdif->hclk); in rk_spdif_probe() 316 ret = clk_prepare_enable(spdif->hclk); in rk_spdif_probe() 383 clk_disable_unprepare(spdif->hclk); in rk_spdif_probe() 397 clk_disable_unprepare(spdif->hclk); in rk_spdif_remove()
|
D | rockchip_pdm.c | 32 struct clk *hclk; member 286 clk_disable_unprepare(pdm->hclk); in rockchip_pdm_runtime_suspend() 302 ret = clk_prepare_enable(pdm->hclk); in rockchip_pdm_runtime_resume() 406 pdm->hclk = devm_clk_get(&pdev->dev, "pdm_hclk"); in rockchip_pdm_probe() 407 if (IS_ERR(pdm->hclk)) in rockchip_pdm_probe() 408 return PTR_ERR(pdm->hclk); in rockchip_pdm_probe() 410 ret = clk_prepare_enable(pdm->hclk); in rockchip_pdm_probe() 444 clk_disable_unprepare(pdm->hclk); in rockchip_pdm_probe() 458 clk_disable_unprepare(pdm->hclk); in rockchip_pdm_remove()
|
/Linux-v4.19/drivers/soc/qcom/ |
D | qcom_gsbi.c | 119 struct clk *hclk; member 191 gsbi->hclk = devm_clk_get(&pdev->dev, "iface"); in gsbi_probe() 192 if (IS_ERR(gsbi->hclk)) in gsbi_probe() 193 return PTR_ERR(gsbi->hclk); in gsbi_probe() 195 clk_prepare_enable(gsbi->hclk); in gsbi_probe() 231 clk_disable_unprepare(gsbi->hclk); in gsbi_remove()
|
/Linux-v4.19/drivers/net/ethernet/cadence/ |
D | macb_pci.c | 81 plat_data.hclk = clk_register_fixed_rate(&pdev->dev, "hclk", NULL, 0, in macb_probe() 83 if (IS_ERR(plat_data.hclk)) { in macb_probe() 84 err = PTR_ERR(plat_data.hclk); in macb_probe() 112 clk_unregister(plat_data.hclk); in macb_probe() 128 clk_unregister(plat_data->hclk); in macb_remove()
|
/Linux-v4.19/drivers/clk/samsung/ |
D | clk-s5pv210-audss.c | 74 struct clk *hclk, *pll_ref, *pll_in, *cdclk, *sclk_audio; in s5pv210_audss_clk_probe() local 93 hclk = devm_clk_get(&pdev->dev, "hclk"); in s5pv210_audss_clk_probe() 94 if (IS_ERR(hclk)) { in s5pv210_audss_clk_probe() 96 return PTR_ERR(hclk); in s5pv210_audss_clk_probe() 147 hclk_p = __clk_get_name(hclk); in s5pv210_audss_clk_probe()
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | ste-nomadik-stn8815.dtsi | 227 hclk: hclk@0 { label 229 compatible = "st,nomadik-hclk-clock"; 238 clocks = <&hclk>; 302 clocks = <&hclk>; 308 clocks = <&hclk>; 314 clocks = <&hclk>; 320 clocks = <&hclk>; 326 clocks = <&hclk>; 380 clocks = <&hclk>; 386 clocks = <&hclk>; [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/media/ |
D | rockchip-rga.txt | 14 - clocks: phandle to RGA sclk/hclk/aclk clocks 16 - clock-names: should be "aclk", "hclk" and "sclk" 29 clock-names = "aclk", "hclk", "sclk";
|
/Linux-v4.19/Documentation/devicetree/bindings/usb/ |
D | atmel-usb.txt | 13 "hclk" for the host clock 25 clock-names = "ohci_clk", "hclk", "uhpck"; 63 "hclk" for the AHB clock 74 clock-names = "pclk", "hclk"; 90 "hclk" for the host clock 113 clock-names = "hclk", "pclk";
|
/Linux-v4.19/drivers/mmc/host/ |
D | tmio_mmc.c | 71 if (!pdata || !pdata->hclk) in tmio_mmc_probe() 104 host->mmc->f_max = pdata->hclk; in tmio_mmc_probe() 105 host->mmc->f_min = pdata->hclk / 512; in tmio_mmc_probe()
|
/Linux-v4.19/drivers/spi/ |
D | spi-sun4i.c | 84 struct clk *hclk; member 397 ret = clk_prepare_enable(sspi->hclk); in sun4i_spi_runtime_resume() 415 clk_disable_unprepare(sspi->hclk); in sun4i_spi_runtime_resume() 426 clk_disable_unprepare(sspi->hclk); in sun4i_spi_runtime_suspend() 480 sspi->hclk = devm_clk_get(&pdev->dev, "ahb"); in sun4i_spi_probe() 481 if (IS_ERR(sspi->hclk)) { in sun4i_spi_probe() 483 ret = PTR_ERR(sspi->hclk); in sun4i_spi_probe()
|
D | spi-sun6i.c | 94 struct clk *hclk; member 395 ret = clk_prepare_enable(sspi->hclk); in sun6i_spi_runtime_resume() 421 clk_disable_unprepare(sspi->hclk); in sun6i_spi_runtime_resume() 433 clk_disable_unprepare(sspi->hclk); in sun6i_spi_runtime_suspend() 489 sspi->hclk = devm_clk_get(&pdev->dev, "ahb"); in sun6i_spi_probe() 490 if (IS_ERR(sspi->hclk)) { in sun6i_spi_probe() 492 ret = PTR_ERR(sspi->hclk); in sun6i_spi_probe()
|
/Linux-v4.19/Documentation/devicetree/bindings/clock/ |
D | clk-s5pv210-audss.txt | 14 - hclk: AHB bus clock of the Audio Subsystem. 23 - clock-names: Aliases for the above clocks. They should be "hclk", 36 clock-names = "hclk", "xxti",
|
/Linux-v4.19/drivers/crypto/rockchip/ |
D | rk3288_crypto.c | 39 err = clk_prepare_enable(dev->hclk); in rk_crypto_enable_clk() 53 clk_disable_unprepare(dev->hclk); in rk_crypto_enable_clk() 65 clk_disable_unprepare(dev->hclk); in rk_crypto_disable_clk() 358 crypto_info->hclk = devm_clk_get(&pdev->dev, "hclk"); in rk_crypto_probe() 359 if (IS_ERR(crypto_info->hclk)) { in rk_crypto_probe() 360 err = PTR_ERR(crypto_info->hclk); in rk_crypto_probe()
|
/Linux-v4.19/Documentation/devicetree/bindings/crypto/ |
D | rockchip-crypto.txt | 10 "hclk" used to clock data 25 clock-names = "aclk", "hclk", "sclk", "apb_pclk";
|