Lines Matching refs:cts
182 static void hdmi_set_cts_n(struct dw_hdmi *hdmi, unsigned int cts, in hdmi_set_cts_n() argument
191 hdmi_writeb(hdmi, ((cts >> 16) & HDMI_AUD_CTS3_AUDCTS19_16_MASK) | in hdmi_set_cts_n()
193 hdmi_writeb(hdmi, (cts >> 8) & 0xff, HDMI_AUD_CTS2); in hdmi_set_cts_n()
194 hdmi_writeb(hdmi, cts & 0xff, HDMI_AUD_CTS1); in hdmi_set_cts_n()
268 unsigned int cts = 0; in hdmi_compute_cts() local
276 cts = 222750; in hdmi_compute_cts()
288 cts = pixel_clk / 1000; in hdmi_compute_cts()
291 cts = 247500; in hdmi_compute_cts()
308 cts = 28000; in hdmi_compute_cts()
311 cts = 30000; in hdmi_compute_cts()
314 cts = 60000; in hdmi_compute_cts()
317 cts = 82500; in hdmi_compute_cts()
320 cts = 165000; in hdmi_compute_cts()
323 cts = 247500; in hdmi_compute_cts()
333 return cts; in hdmi_compute_cts()
334 return (cts * ratio) / 100; in hdmi_compute_cts()