Symbol: cpu_pll
arch/mips/ath79/clock.c
239
u32 cpu_pll, ddr_pll;
arch/mips/ath79/clock.c
277
cpu_pll = ar934x_get_pll_freq(ref_rate, ref_div, nint,
arch/mips/ath79/clock.c
315
cpu_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
327
ddr_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
337
ahb_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
357
u32 cpu_pll, ddr_pll;
arch/mips/ath79/clock.c
378
cpu_pll = nint * ref_rate / ref_div;
arch/mips/ath79/clock.c
379
cpu_pll += frac * (ref_rate >> 6) / ref_div;
arch/mips/ath79/clock.c
380
cpu_pll /= (1 << out_div);
arch/mips/ath79/clock.c
404
cpu_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
416
ddr_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
426
ahb_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
440
u32 cpu_pll, ddr_pll;
arch/mips/ath79/clock.c
461
cpu_pll = nint * ref_rate / ref_div;
arch/mips/ath79/clock.c
462
cpu_pll += frac * ref_rate / (ref_div * (1 << 6));
arch/mips/ath79/clock.c
463
cpu_pll /= (1 << out_div);
arch/mips/ath79/clock.c
489
cpu_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
497
ddr_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
509
ahb_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
523
u32 cpu_pll, ddr_pll;
arch/mips/ath79/clock.c
558
cpu_pll = nint * ref_rate / ref_div;
arch/mips/ath79/clock.c
559
cpu_pll += (lfrac * ref_rate) / ((ref_div * 25) << 13);
arch/mips/ath79/clock.c
560
cpu_pll += (hfrac >> 13) * ref_rate / ref_div;
arch/mips/ath79/clock.c
561
cpu_pll /= (1 << out_div);
arch/mips/ath79/clock.c
591
cpu_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
599
ddr_rate = cpu_pll / (postdiv + 1);
arch/mips/ath79/clock.c
611
ahb_rate = cpu_pll / (postdiv + 1);
drivers/clk/mxs/clk-imx23.c
125
clks[cpu_pll] = mxs_clk_div("cpu_pll", "ref_cpu", CPU, 0, 6, 28);
drivers/clk/mxs/clk-imx28.c
190
clks[cpu_pll] = mxs_clk_div("cpu_pll", "ref_cpu", CPU, 0, 6, 28);
drivers/clk/ralink/clk-mtmips.c
567
unsigned long cpu_pll;
drivers/clk/ralink/clk-mtmips.c
574
cpu_pll = parent_rate;
drivers/clk/ralink/clk-mtmips.c
576
cpu_pll = 600000000;
drivers/clk/ralink/clk-mtmips.c
589
cpu_pll = mt7620_calc_rate(parent_rate, mul, clk_divider[div]);
drivers/clk/ralink/clk-mtmips.c
599
return cpu_pll;