• Home
  • Raw
  • Download

Lines Matching refs:pipe_config

905 				  struct intel_crtc_state *pipe_config)  in intel_hdmi_get_config()  argument
926 pipe_config->has_hdmi_sink = true; in intel_hdmi_get_config()
929 pipe_config->has_infoframe = true; in intel_hdmi_get_config()
932 pipe_config->has_audio = true; in intel_hdmi_get_config()
936 pipe_config->limited_color_range = true; in intel_hdmi_get_config()
938 pipe_config->base.adjusted_mode.flags |= flags; in intel_hdmi_get_config()
941 dotclock = pipe_config->port_clock * 2 / 3; in intel_hdmi_get_config()
943 dotclock = pipe_config->port_clock; in intel_hdmi_get_config()
945 if (pipe_config->pixel_multiplier) in intel_hdmi_get_config()
946 dotclock /= pipe_config->pixel_multiplier; in intel_hdmi_get_config()
949 ironlake_check_encoder_dotclock(pipe_config, dotclock); in intel_hdmi_get_config()
951 pipe_config->base.adjusted_mode.crtc_clock = dotclock; in intel_hdmi_get_config()
1246 struct intel_crtc_state *pipe_config) in intel_hdmi_compute_config() argument
1250 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; in intel_hdmi_compute_config()
1251 int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock; in intel_hdmi_compute_config()
1255 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink; in intel_hdmi_compute_config()
1257 if (pipe_config->has_hdmi_sink) in intel_hdmi_compute_config()
1258 pipe_config->has_infoframe = true; in intel_hdmi_compute_config()
1262 pipe_config->limited_color_range = in intel_hdmi_compute_config()
1263 pipe_config->has_hdmi_sink && in intel_hdmi_compute_config()
1266 pipe_config->limited_color_range = in intel_hdmi_compute_config()
1271 pipe_config->pixel_multiplier = 2; in intel_hdmi_compute_config()
1277 pipe_config->has_pch_encoder = true; in intel_hdmi_compute_config()
1279 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio) in intel_hdmi_compute_config()
1280 pipe_config->has_audio = true; in intel_hdmi_compute_config()
1288 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink && in intel_hdmi_compute_config()
1290 hdmi_12bpc_possible(pipe_config)) { in intel_hdmi_compute_config()
1295 pipe_config->port_clock = clock_12bpc; in intel_hdmi_compute_config()
1300 pipe_config->port_clock = clock_8bpc; in intel_hdmi_compute_config()
1303 if (!pipe_config->bw_constrained) { in intel_hdmi_compute_config()
1305 pipe_config->pipe_bpp = desired_bpp; in intel_hdmi_compute_config()
1308 if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock, in intel_hdmi_compute_config()