Lines Matching refs:vco_freq
181 unsigned long long vco_freq = clock; in phy_get_vco_freq() local
185 while (vco_freq < 3000000000ULL) { in phy_get_vco_freq()
187 vco_freq = clock * _vco_div * 10; in phy_get_vco_freq()
190 if (vco_freq > 4500000000ULL) in phy_get_vco_freq()
196 return vco_freq; in phy_get_vco_freq()
199 static u8 phy_get_cp_current(unsigned long vco_freq) in phy_get_cp_current() argument
201 if (vco_freq < 3700000000ULL) in phy_get_cp_current()
207 static u32 phy_get_rm_offset(unsigned long long vco_freq) in phy_get_rm_offset() argument
213 offset = vco_freq * 2; in phy_get_rm_offset()
221 static u8 phy_get_vco_gain(unsigned long long vco_freq) in phy_get_vco_gain() argument
223 if (vco_freq < 3350000000ULL) in phy_get_vco_gain()
226 if (vco_freq < 3700000000ULL) in phy_get_vco_gain()
229 if (vco_freq < 4050000000ULL) in phy_get_vco_gain()
232 if (vco_freq < 4800000000ULL) in phy_get_vco_gain()
235 if (vco_freq < 5200000000ULL) in phy_get_vco_gain()
369 unsigned long long vco_freq; in vc5_hdmi_phy_init() local
374 vco_freq = phy_get_vco_freq(pixel_freq, &vco_sel, &vco_div); in vc5_hdmi_phy_init()
407 VC4_SET_FIELD(phy_get_rm_offset(vco_freq), in vc5_hdmi_phy_init()
446 VC4_SET_FIELD(phy_get_cp_current(vco_freq), in vc5_hdmi_phy_init()
505 VC4_SET_FIELD(phy_get_vco_gain(vco_freq), in vc5_hdmi_phy_init()