/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/clk/ |
D | pllgt215.c | 42 lM = (info->refclk + info->vco1.max_inputfreq) / info->vco1.max_inputfreq; in gt215_pll_calc() 44 hM = (info->refclk + info->vco1.min_inputfreq) / info->vco1.min_inputfreq; in gt215_pll_calc() 50 N = tmp / info->refclk; in gt215_pll_calc() 51 fN = tmp % info->refclk; in gt215_pll_calc() 54 if (fN >= info->refclk / 2) in gt215_pll_calc() 57 if (fN < info->refclk / 2) in gt215_pll_calc() 59 fN = tmp - (N * info->refclk); in gt215_pll_calc() 67 err = abs(freq - (info->refclk * N / M / *P)); in gt215_pll_calc() 75 *pfN = ((fN << 13) + info->refclk / 2) / info->refclk; in gt215_pll_calc() 86 return info->refclk * *pN / *pM / *P; in gt215_pll_calc()
|
D | nv04.c | 38 pv->refclk = info->refclk; in nv04_clk_pll_calc()
|
D | pllnv04.c | 48 int crystal = info->refclk; in getMNP_single() 149 int crystal = info->refclk; in getMNP_double()
|
D | mcp77.c | 177 pll.refclk = nvkm_clk_read(&clk->base, nv_clk_src_href); in calc_pll() 178 if (!pll.refclk) in calc_pll()
|
D | gf100.c | 253 limits.refclk = read_div(clk, idx, 0x137120, 0x137140); in calc_pll() 254 if (!limits.refclk) in calc_pll()
|
D | gt215.c | 256 ret = gt215_clk_info(&clk->base, idx - 0x10, limits.refclk, info); in gt215_pll_info() 257 if (ret != limits.refclk) in gt215_pll_info()
|
D | gk104.c | 274 limits.refclk = read_div(clk, idx, 0x137120, 0x137140); in calc_pll() 275 if (!limits.refclk) in calc_pll()
|
D | nv50.c | 336 pll.refclk = read_pll_ref(clk, reg); in calc_pll() 337 if (!pll.refclk) in calc_pll()
|
/linux-4.4.14/drivers/net/ethernet/arc/ |
D | emac_rockchip.c | 46 struct clk *refclk; member 137 priv->refclk = devm_clk_get(dev, "macref"); in emac_rockchip_probe() 138 if (IS_ERR(priv->refclk)) { in emac_rockchip_probe() 139 dev_err(dev, "failed to retrieve reference clock (%ld)\n", PTR_ERR(priv->refclk)); in emac_rockchip_probe() 140 err = PTR_ERR(priv->refclk); in emac_rockchip_probe() 144 err = clk_prepare_enable(priv->refclk); in emac_rockchip_probe() 184 err = clk_set_rate(priv->refclk, 50000000); in emac_rockchip_probe() 193 clk_disable_unprepare(priv->refclk); in emac_rockchip_probe() 207 clk_disable_unprepare(priv->refclk); in emac_rockchip_remove()
|
/linux-4.4.14/drivers/phy/ |
D | phy-dm816x-usb.c | 56 struct clk *refclk; member 87 if (clk_get_rate(phy->refclk) != 24000000) in dm816x_usb_phy_init() 134 clk_disable(phy->refclk); in dm816x_usb_phy_runtime_suspend() 145 error = clk_enable(phy->refclk); in dm816x_usb_phy_runtime_resume() 162 clk_disable(phy->refclk); in dm816x_usb_phy_runtime_resume() 240 phy->refclk = devm_clk_get(phy->dev, "refclk"); in dm816x_usb_phy_probe() 241 if (IS_ERR(phy->refclk)) in dm816x_usb_phy_probe() 242 return PTR_ERR(phy->refclk); in dm816x_usb_phy_probe() 243 error = clk_prepare(phy->refclk); in dm816x_usb_phy_probe() 270 clk_unprepare(phy->refclk); in dm816x_usb_phy_remove()
|
D | phy-ti-pipe3.c | 86 struct clk *refclk; member 353 phy->refclk = devm_clk_get(phy->dev, "refclk"); in ti_pipe3_probe() 354 if (IS_ERR(phy->refclk)) { in ti_pipe3_probe() 360 return PTR_ERR(phy->refclk); in ti_pipe3_probe() 443 if (!IS_ERR(phy->refclk)) { in ti_pipe3_probe() 444 clk_prepare_enable(phy->refclk); in ti_pipe3_probe() 473 if (!IS_ERR(phy->refclk)) { in ti_pipe3_enable_clocks() 474 ret = clk_prepare_enable(phy->refclk); in ti_pipe3_enable_clocks() 504 if (!IS_ERR(phy->refclk)) in ti_pipe3_enable_clocks() 505 clk_disable_unprepare(phy->refclk); in ti_pipe3_enable_clocks() [all …]
|
D | phy-pistachio-usb.c | 41 unsigned int refclk; member 71 p_phy->refclk << USB_PHY_STRAP_CONTROL_REFCLK_SHIFT); in pistachio_usb_phy_power_on() 74 if (p_phy->refclk == REFCLK_XO_CRYSTAL && rate != 12000000) { in pistachio_usb_phy_power_on() 164 &p_phy->refclk); in pistachio_usb_phy_probe()
|
/linux-4.4.14/drivers/gpu/drm/gma500/ |
D | gma_display.h | 52 int target, int refclk, 57 void (*clock)(int refclk, struct gma_clock_t *clock); 58 const struct gma_limit_t *(*limit)(struct drm_crtc *crtc, int refclk); 98 extern const struct gma_limit_t *gma_limit(struct drm_crtc *crtc, int refclk); 99 extern void gma_clock(int refclk, struct gma_clock_t *clock); 104 struct drm_crtc *crtc, int target, int refclk,
|
D | cdv_intel_display.c | 34 int refclk, struct gma_clock_t *best_clock); 374 int refclk) in cdv_intel_limit() argument 382 if (refclk == 96000) in cdv_intel_limit() 388 if (refclk == 27000) in cdv_intel_limit() 393 if (refclk == 27000) in cdv_intel_limit() 402 static void cdv_intel_clock(int refclk, struct gma_clock_t *clock) in cdv_intel_clock() argument 406 clock->vco = (refclk * clock->m) / clock->n; in cdv_intel_clock() 412 int refclk, in cdv_intel_find_dp_pll() argument 418 switch (refclk) { in cdv_intel_find_dp_pll() 455 gma_crtc->clock_funcs->clock(refclk, &clock); in cdv_intel_find_dp_pll() [all …]
|
D | oaktrail_crtc.c | 48 int refclk, struct gma_clock_t *best_clock); 52 int refclk, struct gma_clock_t *best_clock); 91 int refclk) in mrst_limit() argument 121 static void mrst_lvds_clock(int refclk, struct gma_clock_t *clock) in mrst_lvds_clock() argument 123 clock->dot = (refclk * clock->m) / (14 * clock->p1); in mrst_lvds_clock() 135 int refclk, struct gma_clock_t *best_clock) in mrst_sdvo_find_best_pll() argument 159 actual_freq = (refclk * clock.m) / in mrst_sdvo_find_best_pll() 192 int refclk, struct gma_clock_t *best_clock) in mrst_lvds_find_best_pll() argument 204 mrst_lvds_clock(refclk, &clock); in mrst_lvds_find_best_pll() 375 int refclk = 0; in oaktrail_crtc_mode_set() local [all …]
|
D | psb_intel_display.c | 66 int refclk) in psb_intel_limit() argument 77 static void psb_intel_clock(int refclk, struct gma_clock_t *clock) in psb_intel_clock() argument 81 clock->vco = refclk * clock->m / (clock->n + 2); in psb_intel_clock() 114 int refclk; in psb_intel_crtc_mode_set() local 149 refclk = 96000; in psb_intel_crtc_mode_set() 151 limit = gma_crtc->clock_funcs->limit(crtc, refclk); in psb_intel_crtc_mode_set() 153 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, in psb_intel_crtc_mode_set()
|
D | mdfld_intel_display.c | 629 static void mdfld_clock(int refclk, struct mrst_clock_t *clock) in mdfld_clock() argument 631 clock->dot = (refclk * clock->m) / clock->p1; in mdfld_clock() 639 mdfldFindBestPLL(struct drm_crtc *crtc, int target, int refclk, in mdfldFindBestPLL() argument 653 mdfld_clock(refclk, &clock); in mdfldFindBestPLL() 676 int refclk = 0; in mdfld_crtc_mode_set() local 871 refclk = 19200; in mdfld_crtc_mode_set() 878 refclk = 25000; in mdfld_crtc_mode_set() 886 refclk = 83000; in mdfld_crtc_mode_set() 895 refclk = 100000; in mdfld_crtc_mode_set() 914 ok = mdfldFindBestPLL(crtc, clk_tmp, refclk, &clock); in mdfld_crtc_mode_set()
|
D | oaktrail_hdmi.c | 175 int refclk, struct oaktrail_hdmi_clock *best_clock) in oaktrail_hdmi_find_dpll() argument 187 nr_min = DIV_ROUND_UP((refclk * 1000), (target * 10 * np_max)); in oaktrail_hdmi_find_dpll() 188 nr_max = DIV_ROUND_UP((refclk * 1000), (target * 10 * np_min)); in oaktrail_hdmi_find_dpll() 194 np = DIV_ROUND_UP((refclk * 1000), (target * 10 * nr_max)); in oaktrail_hdmi_find_dpll() 195 nr = DIV_ROUND_UP((refclk * 1000), (target * 10 * np)); in oaktrail_hdmi_find_dpll() 196 nf = DIV_ROUND_CLOSEST((target * 10 * np * nr), refclk); in oaktrail_hdmi_find_dpll() 279 int refclk; in oaktrail_crtc_hdmi_mode_set() local 303 refclk = 25000; in oaktrail_crtc_hdmi_mode_set() 304 oaktrail_hdmi_find_dpll(crtc, adjusted_mode->clock, refclk, &clock); in oaktrail_crtc_hdmi_mode_set()
|
D | gma_display.c | 731 struct drm_crtc *crtc, int target, int refclk, in gma_find_best_pll() argument 774 clock_funcs->clock(refclk, &clock); in gma_find_best_pll()
|
/linux-4.4.14/Documentation/devicetree/bindings/mips/cavium/ |
D | uctl.txt | 16 - refclk-frequency: A single cell containing the reference clock 19 - refclk-type: A string describing the reference clock connection 30 refclk-frequency = <24000000>; 32 refclk-type = "crystal";
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | k2hk-evm.dts | 25 clock-output-names = "refclk-sys"; 32 clock-output-names = "refclk-pass"; 39 clock-output-names = "refclk-arm"; 46 clock-output-names = "refclk-ddr3a"; 53 clock-output-names = "refclk-ddr3b";
|
D | k2e-evm.dts | 26 clock-output-names = "refclk-sys"; 33 clock-output-names = "refclk-pass"; 40 clock-output-names = "refclk-ddr3a";
|
D | exynos4412-odroidu3.dts | 81 clock-names = "refclk"; 83 refclk-frequency = <24000000>;
|
D | berlin2.dtsi | 86 refclk: oscillator { label 404 clocks = <&refclk>; 405 clock-names = "refclk"; 477 clocks = <&refclk>; 489 clocks = <&refclk>; 501 clocks = <&refclk>;
|
D | berlin2q.dtsi | 96 refclk: oscillator { label 415 clocks = <&refclk>; 416 clock-names = "refclk"; 535 clocks = <&refclk>; 548 clocks = <&refclk>; 559 clocks = <&refclk>; 571 clocks = <&refclk>;
|
D | berlin2cd.dtsi | 75 refclk: oscillator { label 345 clocks = <&refclk>; 346 clock-names = "refclk"; 435 clocks = <&refclk>; 447 clocks = <&refclk>;
|
D | armada-xp.dtsi | 172 clocks = <&coreclk 2>, <&refclk>; 178 clocks = <&coreclk 2>, <&refclk>; 298 refclk: oscillator { label
|
D | k2l-evm.dts | 25 clock-output-names = "refclk-sys";
|
D | armada-38x.dtsi | 401 clocks = <&coreclk 2>, <&refclk>; 408 clocks = <&coreclk 2>, <&refclk>; 632 refclk: oscillator { label
|
D | armada-375.dtsi | 75 refclk: oscillator { label 427 clocks = <&coreclk 0>, <&refclk>; 434 clocks = <&coreclk 0>, <&refclk>;
|
D | dm816x.dtsi | 111 clock-names = "refclk"; 121 clock-names = "refclk";
|
D | dra7.dtsi | 1192 clock-names = "sysclk", "refclk"; 1210 "wkupclk", "refclk", 1228 "wkupclk", "refclk", 1305 "refclk"; 1316 "refclk"; 1332 "refclk";
|
D | am437x-gp-evm.dts | 109 refclk: oscillator { label 572 clocks = <&refclk 0>; 615 clocks = <&refclk 0>;
|
D | omap5.dtsi | 902 clock-names = "wkupclk", "refclk"; 918 "refclk"; 992 clock-names = "sysclk", "refclk";
|
D | vexpress-v2m-rs1.dtsi | 101 clock-names = "refclk", "timclk", "apb_pclk";
|
D | vexpress-v2m.dtsi | 100 clock-names = "refclk", "timclk", "apb_pclk";
|
D | am4372.dtsi | 881 clock-names = "wkupclk", "refclk"; 900 clock-names = "wkupclk", "refclk";
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | marvell,berlin.txt | 18 "refclk" for the SoCs oscillator input on all SoCs, 29 clocks = <&refclk>; 30 clock-names = "refclk";
|
D | xgene.txt | 53 clocks = <&refclk 0>; 63 clocks = <&refclk 0>;
|
D | mvebu-core-clock.txt | 32 5 = refclk (Reference Clock)
|
/linux-4.4.14/drivers/spi/ |
D | spi-zynqmp-gqspi.c | 160 struct clk *refclk; member 361 ret = clk_enable(xqspi->refclk); in zynqmp_prepare_transfer_hardware() 389 clk_disable(xqspi->refclk); in zynqmp_unprepare_transfer_hardware() 478 clk_rate = clk_get_rate(xqspi->refclk); in zynqmp_qspi_setup_transfer() 956 ret = clk_enable(xqspi->refclk); in zynqmp_qspi_resume() 1016 xqspi->refclk = devm_clk_get(&pdev->dev, "ref_clk"); in zynqmp_qspi_probe() 1017 if (IS_ERR(xqspi->refclk)) { in zynqmp_qspi_probe() 1019 ret = PTR_ERR(xqspi->refclk); in zynqmp_qspi_probe() 1023 ret = clk_prepare_enable(xqspi->refclk); in zynqmp_qspi_probe() 1054 master->max_speed_hz = clk_get_rate(xqspi->refclk) / 2; in zynqmp_qspi_probe() [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
D | pll.h | 19 int refclk; member 46 u32 refclk; member
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | pll.c | 320 info->refclk = nvbios_rd32(bios, data + 31); in nvbios_pll_parse() 343 info->refclk = nvbios_rd32(bios, data + 28); in nvbios_pll_parse() 346 info->refclk = nvbios_rd16(bios, data + 9) * 1000; in nvbios_pll_parse() 365 if (!info->refclk) { in nvbios_pll_parse() 366 info->refclk = device->crystal; in nvbios_pll_parse() 372 info->refclk = 200000; in nvbios_pll_parse() 374 info->refclk = 25000; in nvbios_pll_parse()
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | stv6110x.h | 28 u32 refclk; member 51 int (*tuner_set_refclk) (struct dvb_frontend *fe, u32 refclk);
|
D | stv6110x_priv.h | 65 #define REFCLOCK_kHz (stv6110x->config->refclk / 1000) 66 #define REFCLOCK_MHz (stv6110x->config->refclk / 1000000)
|
D | stv090x.h | 101 int (*tuner_set_refclk)(struct dvb_frontend *fe, u32 refclk);
|
/linux-4.4.14/drivers/net/ethernet/ti/ |
D | cpts.c | 235 cpts->refclk = devm_clk_get(dev, "cpts"); in cpts_clk_init() 236 if (IS_ERR(cpts->refclk)) { in cpts_clk_init() 238 cpts->refclk = NULL; in cpts_clk_init() 241 clk_prepare_enable(cpts->refclk); in cpts_clk_init() 246 clk_disable(cpts->refclk); in cpts_clk_release() 405 if (cpts->refclk) in cpts_unregister()
|
D | cpts.h | 123 struct clk *refclk; member
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | ti-phy.txt | 41 * "refclk" - reference clock (optional). 55 clock-names = "wkupclk", "refclk"; 73 * "refclk" - reference clock. 104 "refclk"; 115 clock-names = "sysclk", "refclk";
|
D | pistachio-usb-phy.txt | 12 - img,refclk: Indicates the reference clock source for the USB PHY. 26 img,refclk = <REFCLK_CLK_CORE>;
|
D | dm816x-phy.txt | 21 clock-names = "refclk";
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | sp810.txt | 16 should be: "refclk", "timclk", "apb_pclk" 40 clock-names = "refclk", "timclk", "apb_pclk";
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | clock.c | 569 struct clk *refclk; in davinci_set_refclk_rate() local 571 refclk = clk_get(NULL, "ref"); in davinci_set_refclk_rate() 572 if (IS_ERR(refclk)) { in davinci_set_refclk_rate() 574 return PTR_ERR(refclk); in davinci_set_refclk_rate() 577 clk_set_rate(refclk, rate); in davinci_set_refclk_rate() 579 clk_put(refclk); in davinci_set_refclk_rate()
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | usb3503.txt | 18 - refclk: Clock used for driving REFCLK signal (optional, if not provided 22 - refclk-frequency: Frequency of the REFCLK signal as defined by REF_SEL
|
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/ |
D | tc358743.txt | 10 source, the clock input is named "refclk". 34 clock-names = "refclk";
|
/linux-4.4.14/arch/arm64/boot/dts/apm/ |
D | apm-shadowcat.dtsi | 119 refclk: refclk { label 123 clock-output-names = "refclk"; 129 clocks = <&refclk 0>;
|
D | apm-storm.dtsi | 116 refclk: refclk { label 120 clock-output-names = "refclk"; 126 clocks = <&refclk 0>; 136 clocks = <&refclk 0>;
|
/linux-4.4.14/sound/soc/codecs/ |
D | tlv320dac33.c | 101 unsigned int refclk; member 853 #define CALC_OSCSET(rate, refclk) ( \ argument 854 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000) 855 #define CALC_RATIOSET(rate, refclk) ( \ argument 856 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000) 873 oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk); in dac33_prepare_chip() 875 dac33->refclk); in dac33_prepare_chip() 1316 dac33->refclk = freq; in dac33_set_dai_sysclk()
|
D | arizona.c | 1046 int ref, div, refclk; in arizona_set_opclk() local 1051 refclk = priv->sysclk; in arizona_set_opclk() 1055 refclk = priv->asyncclk; in arizona_set_opclk() 1061 if (refclk % 8000) in arizona_set_opclk() 1067 rates[ref] <= refclk; ref++) { in arizona_set_opclk()
|
/linux-4.4.14/drivers/video/fbdev/mb862xx/ |
D | mb862xxfb.h | 79 unsigned int refclk; /* disp. reference clock */ member
|
D | mb862xxfbdrv.c | 222 sc = par->refclk / (1000000 / fbi->var.pixclock) - 1; in mb862xxfb_set_par() 452 fbi->var.pixclock = (sc * 1000000) / par->refclk; in mb862xxfb_init_fbinfo() 643 par->refclk = GC_DISP_REFCLK_400; in mb862xx_gdc_init() 859 par->refclk = GC_DISP_REFCLK_400; in coralp_init() 942 par->refclk = GC_DISP_REFCLK_533; in carmine_init()
|
/linux-4.4.14/Documentation/devicetree/bindings/timer/ |
D | marvell,armada-370-xp-timer.txt | 42 clocks = <&coreclk 2>, <&refclk>;
|
/linux-4.4.14/drivers/media/i2c/ |
D | tc358743.c | 1697 struct clk *refclk; in tc358743_probe_of() local 1701 refclk = devm_clk_get(dev, "refclk"); in tc358743_probe_of() 1702 if (IS_ERR(refclk)) { in tc358743_probe_of() 1703 if (PTR_ERR(refclk) != -EPROBE_DEFER) in tc358743_probe_of() 1705 PTR_ERR(refclk)); in tc358743_probe_of() 1706 return PTR_ERR(refclk); in tc358743_probe_of() 1730 clk_prepare_enable(refclk); in tc358743_probe_of() 1732 state->pdata.refclk_hz = clk_get_rate(refclk); in tc358743_probe_of() 1801 clk_disable_unprepare(refclk); in tc358743_probe_of()
|
/linux-4.4.14/arch/mips/boot/dts/cavium-octeon/ |
D | octeon_3xxx.dts | 536 refclk-frequency = <12000000>; 538 refclk-type = "crystal"; 561 refclk-frequency = <12000000>; 563 refclk-type = "crystal";
|
D | octeon_68xx.dts | 591 refclk-frequency = <12000000>; 593 refclk-type = "crystal";
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
D | nv04.c | 374 pv.refclk = info.refclk; in nv04_devinit_pll_set()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_display.c | 554 intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk) in intel_ironlake_limit() argument 561 if (refclk == 100000) in intel_ironlake_limit() 566 if (refclk == 100000) in intel_ironlake_limit() 600 intel_limit(struct intel_crtc_state *crtc_state, int refclk) in intel_limit() argument 608 limit = intel_ironlake_limit(crtc_state, refclk); in intel_limit() 645 static int pnv_calc_dpll_params(int refclk, intel_clock_t *clock) in pnv_calc_dpll_params() argument 651 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n); in pnv_calc_dpll_params() 662 static int i9xx_calc_dpll_params(int refclk, intel_clock_t *clock) in i9xx_calc_dpll_params() argument 668 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2); in i9xx_calc_dpll_params() 674 static int vlv_calc_dpll_params(int refclk, intel_clock_t *clock) in vlv_calc_dpll_params() argument [all …]
|
D | intel_dsi_pll.c | 332 int refclk = 25000; in vlv_get_dsi_pclk() local 377 dsi_clock = (m * refclk) / (p * n); in vlv_get_dsi_pclk()
|
D | intel_ddi.c | 944 int refclk = LC_FREQ; in hsw_ddi_calc_wrpll_link() local 957 refclk = 135; in hsw_ddi_calc_wrpll_link() 960 refclk = LC_FREQ; in hsw_ddi_calc_wrpll_link() 972 return (refclk * n * 100) / (p * r); in hsw_ddi_calc_wrpll_link()
|
D | intel_drv.h | 1164 int chv_calc_dpll_params(int refclk, intel_clock_t *pll_clock);
|
D | i915_drv.h | 631 int target, int refclk,
|
/linux-4.4.14/drivers/media/platform/sti/c8sectpfe/ |
D | c8sectpfe-dvb.c | 78 .refclk = 16000000,
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/samsung/ |
D | pmu.txt | 66 clock-names = "refclk";
|
/linux-4.4.14/drivers/media/pci/ngene/ |
D | ngene-cards.c | 606 .refclk = 27000000, 612 .refclk = 27000000,
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramgk104.c | 1039 int refclk, i; in gk104_ram_calc_xits() local 1057 refclk = next->freq; in gk104_ram_calc_xits() 1062 fuc->mempll.refclk = ret; in gk104_ram_calc_xits() 1071 ret = gt215_pll_calc(subdev, &fuc->refpll, refclk, &ram->N1, in gk104_ram_calc_xits() 1073 fuc->mempll.refclk = ret; in gk104_ram_calc_xits()
|
D | ramgf100.c | 216 ret = gt215_pll_calc(subdev, &ram->refpll, ram->mempll.refclk, in gf100_ram_calc()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/ |
D | hw.c | 200 pllvals->refclk = pll_lim.refclk; in nouveau_hw_get_pllvals() 211 return pv->N1 * pv->N2 * pv->refclk / (pv->M1 * pv->M2) >> pv->log2P; in nouveau_hw_pllvals_to_clk()
|
/linux-4.4.14/arch/arm64/boot/dts/arm/ |
D | rtsm_ve-motherboard.dtsi | 74 clock-names = "refclk", "timclk", "apb_pclk";
|
D | juno-motherboard.dtsi | 151 clock-names = "refclk", "timclk", "apb_pclk";
|
D | vexpress-v2m-rs1.dtsi | 101 clock-names = "refclk", "timclk", "apb_pclk";
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | currituck.dts | 100 clock-frequency = <1851851>; // PCIe refclk/MCGC0_CTL[UART]
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
D | technisat-usb2.c | 502 .refclk = 16000000,
|
/linux-4.4.14/arch/arm64/boot/dts/exynos/ |
D | exynos7-pinctrl.dtsi | 678 ufs_refclk_out: ufs-refclk-out {
|
/linux-4.4.14/drivers/media/pci/ttpci/ |
D | budget.c | 483 .refclk = 27000000,
|
/linux-4.4.14/drivers/media/pci/ddbridge/ |
D | ddbridge-core.c | 656 .refclk = 27000000, 662 .refclk = 27000000,
|