Home
last modified time | relevance | path

Searched refs:pll_ref (Results 1 – 6 of 6) sorted by relevance

/drivers/clk/samsung/
Dclk-s5pv210-audss.c71 struct clk *hclk, *pll_ref, *pll_in, *cdclk, *sclk_audio; in s5pv210_audss_clk_probe() local
108 pll_ref = devm_clk_get(&pdev->dev, "xxti"); in s5pv210_audss_clk_probe()
110 if (!IS_ERR(pll_ref)) in s5pv210_audss_clk_probe()
111 mout_audss_p[0] = __clk_get_name(pll_ref); in s5pv210_audss_clk_probe()
Dclk-exynos-audss.c129 struct clk *pll_ref, *pll_in, *cdclk, *sclk_audio, *sclk_pcm_in; in exynos_audss_clk_probe() local
157 pll_ref = devm_clk_get(dev, "pll_ref"); in exynos_audss_clk_probe()
159 if (!IS_ERR(pll_ref)) in exynos_audss_clk_probe()
160 mout_audss_p[0] = __clk_get_name(pll_ref); in exynos_audss_clk_probe()
/drivers/media/tuners/
Dr820t.c527 u32 pll_ref; in r820t_set_pll() local
539 pll_ref = priv->cfg->xtal / 1000; in r820t_set_pll()
548 pll_ref /= 2; in r820t_set_pll()
554 pll_ref /= 2; in r820t_set_pll()
613 nint = vco_freq / (2 * pll_ref); in r820t_set_pll()
614 vco_fra = vco_freq - 2 * pll_ref * nint; in r820t_set_pll()
617 if (vco_fra < pll_ref / 64) { in r820t_set_pll()
619 } else if (vco_fra > pll_ref * 127 / 64) { in r820t_set_pll()
622 } else if ((vco_fra > pll_ref * 127 / 128) && (vco_fra < pll_ref)) { in r820t_set_pll()
623 vco_fra = pll_ref * 127 / 128; in r820t_set_pll()
[all …]
/drivers/clk/xilinx/
Dxlnx_vcu.c62 struct clk *pll_ref; member
539 "vcu_pll", __clk_get_name(xvcu->pll_ref), in xvcu_register_clock_provider()
662 xvcu->pll_ref = devm_clk_get(&pdev->dev, "pll_ref"); in xvcu_probe()
663 if (IS_ERR(xvcu->pll_ref)) { in xvcu_probe()
665 return PTR_ERR(xvcu->pll_ref); in xvcu_probe()
/drivers/pinctrl/qcom/
Dpinctrl-sdx55.c826 FUNCTION(pll_ref),
893 [32] = PINGROUP(32, nav_gpio, pll_ref, _, _, _, _, _, _, _),
/drivers/clk/tegra/
Dclk-pll.c1119 struct clk_hw *pll_ref = clk_hw_get_parent(hw); in clk_pllu_enable() local
1120 struct clk_hw *osc = clk_hw_get_parent(pll_ref); in clk_pllu_enable()