asic_pll          529 drivers/video/fbdev/smscufx.c static void ufx_calc_pll_values(const u32 clk_pixel_pll, struct pll_values *asic_pll)
asic_pll          591 drivers/video/fbdev/smscufx.c 								asic_pll->div_r0 = div_r0 - 1;
asic_pll          592 drivers/video/fbdev/smscufx.c 								asic_pll->div_f0 = div_f0 - 1;
asic_pll          593 drivers/video/fbdev/smscufx.c 								asic_pll->div_q0 = div_q0;
asic_pll          594 drivers/video/fbdev/smscufx.c 								asic_pll->div_r1 = div_r1 - 1;
asic_pll          595 drivers/video/fbdev/smscufx.c 								asic_pll->div_f1 = div_f1 - 1;
asic_pll          596 drivers/video/fbdev/smscufx.c 								asic_pll->div_q1 = div_q1;
asic_pll          598 drivers/video/fbdev/smscufx.c 								asic_pll->range0 = ufx_calc_range(ref_freq0);
asic_pll          599 drivers/video/fbdev/smscufx.c 								asic_pll->range1 = ufx_calc_range(ref_freq1);
asic_pll          615 drivers/video/fbdev/smscufx.c 	struct pll_values asic_pll = {0};
asic_pll          626 drivers/video/fbdev/smscufx.c 	ufx_calc_pll_values(clk_pixel_pll, &asic_pll);
asic_pll          632 drivers/video/fbdev/smscufx.c 	value = (asic_pll.div_f1 | (asic_pll.div_r1 << 8) |
asic_pll          633 drivers/video/fbdev/smscufx.c 		(asic_pll.div_q1 << 16) | (asic_pll.range1 << 20));
asic_pll          637 drivers/video/fbdev/smscufx.c 	value = (asic_pll.div_f0 | (asic_pll.div_r0 << 8) |
asic_pll          638 drivers/video/fbdev/smscufx.c 		(asic_pll.div_q0 << 16) | (asic_pll.range0 << 20));