Commit 6897b4b5 authored by Daniel Vetter's avatar Daniel Vetter

drm/i915: Track hdmi mode in the pipe config

Also add state readout and cross-check support. The only invasive change
is wiring up the new flag to the ->set_infoframes callbacks.
Reviewed-by: default avatarNaresh Kumar Kachhi <naresh.kumar.kachhi@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent abac6a00
...@@ -409,7 +409,9 @@ static void intel_ddi_mode_set(struct intel_encoder *encoder) ...@@ -409,7 +409,9 @@ static void intel_ddi_mode_set(struct intel_encoder *encoder)
intel_write_eld(&encoder->base, adjusted_mode); intel_write_eld(&encoder->base, adjusted_mode);
} }
intel_hdmi->set_infoframes(&encoder->base, adjusted_mode); intel_hdmi->set_infoframes(&encoder->base,
crtc->config.has_hdmi_sink,
adjusted_mode);
} }
} }
...@@ -1062,9 +1064,7 @@ void intel_ddi_enable_transcoder_func(struct drm_crtc *crtc) ...@@ -1062,9 +1064,7 @@ void intel_ddi_enable_transcoder_func(struct drm_crtc *crtc)
} }
if (type == INTEL_OUTPUT_HDMI) { if (type == INTEL_OUTPUT_HDMI) {
struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder); if (intel_crtc->config.has_hdmi_sink)
if (intel_hdmi->has_hdmi_sink)
temp |= TRANS_DDI_MODE_SELECT_HDMI; temp |= TRANS_DDI_MODE_SELECT_HDMI;
else else
temp |= TRANS_DDI_MODE_SELECT_DVI; temp |= TRANS_DDI_MODE_SELECT_DVI;
...@@ -1580,6 +1580,7 @@ void intel_ddi_get_config(struct intel_encoder *encoder, ...@@ -1580,6 +1580,7 @@ void intel_ddi_get_config(struct intel_encoder *encoder,
switch (temp & TRANS_DDI_MODE_SELECT_MASK) { switch (temp & TRANS_DDI_MODE_SELECT_MASK) {
case TRANS_DDI_MODE_SELECT_HDMI: case TRANS_DDI_MODE_SELECT_HDMI:
pipe_config->has_hdmi_sink = true;
case TRANS_DDI_MODE_SELECT_DVI: case TRANS_DDI_MODE_SELECT_DVI:
case TRANS_DDI_MODE_SELECT_FDI: case TRANS_DDI_MODE_SELECT_FDI:
break; break;
......
...@@ -9883,6 +9883,7 @@ intel_pipe_config_compare(struct drm_device *dev, ...@@ -9883,6 +9883,7 @@ intel_pipe_config_compare(struct drm_device *dev,
PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end); PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
PIPE_CONF_CHECK_I(pixel_multiplier); PIPE_CONF_CHECK_I(pixel_multiplier);
PIPE_CONF_CHECK_I(has_hdmi_sink);
PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
DRM_MODE_FLAG_INTERLACE); DRM_MODE_FLAG_INTERLACE);
......
...@@ -273,6 +273,9 @@ struct intel_crtc_config { ...@@ -273,6 +273,9 @@ struct intel_crtc_config {
* accordingly. */ * accordingly. */
bool has_dp_encoder; bool has_dp_encoder;
/* Whether we should send NULL infoframes. Required for audio. */
bool has_hdmi_sink;
/* /*
* Enable dithering, used when the selected pipe bpp doesn't match the * Enable dithering, used when the selected pipe bpp doesn't match the
* plane bpp. * plane bpp.
...@@ -486,6 +489,7 @@ struct intel_hdmi { ...@@ -486,6 +489,7 @@ struct intel_hdmi {
enum hdmi_infoframe_type type, enum hdmi_infoframe_type type,
const void *frame, ssize_t len); const void *frame, ssize_t len);
void (*set_infoframes)(struct drm_encoder *encoder, void (*set_infoframes)(struct drm_encoder *encoder,
bool enable,
struct drm_display_mode *adjusted_mode); struct drm_display_mode *adjusted_mode);
}; };
......
...@@ -418,6 +418,7 @@ intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder, ...@@ -418,6 +418,7 @@ intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
} }
static void g4x_set_infoframes(struct drm_encoder *encoder, static void g4x_set_infoframes(struct drm_encoder *encoder,
bool enable,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
{ {
struct drm_i915_private *dev_priv = encoder->dev->dev_private; struct drm_i915_private *dev_priv = encoder->dev->dev_private;
...@@ -440,7 +441,7 @@ static void g4x_set_infoframes(struct drm_encoder *encoder, ...@@ -440,7 +441,7 @@ static void g4x_set_infoframes(struct drm_encoder *encoder,
* either. */ * either. */
val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC; val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
if (!intel_hdmi->has_hdmi_sink) { if (!enable) {
if (!(val & VIDEO_DIP_ENABLE)) if (!(val & VIDEO_DIP_ENABLE))
return; return;
val &= ~VIDEO_DIP_ENABLE; val &= ~VIDEO_DIP_ENABLE;
...@@ -471,6 +472,7 @@ static void g4x_set_infoframes(struct drm_encoder *encoder, ...@@ -471,6 +472,7 @@ static void g4x_set_infoframes(struct drm_encoder *encoder,
} }
static void ibx_set_infoframes(struct drm_encoder *encoder, static void ibx_set_infoframes(struct drm_encoder *encoder,
bool enable,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
{ {
struct drm_i915_private *dev_priv = encoder->dev->dev_private; struct drm_i915_private *dev_priv = encoder->dev->dev_private;
...@@ -486,7 +488,7 @@ static void ibx_set_infoframes(struct drm_encoder *encoder, ...@@ -486,7 +488,7 @@ static void ibx_set_infoframes(struct drm_encoder *encoder,
/* See the big comment in g4x_set_infoframes() */ /* See the big comment in g4x_set_infoframes() */
val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC; val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
if (!intel_hdmi->has_hdmi_sink) { if (!enable) {
if (!(val & VIDEO_DIP_ENABLE)) if (!(val & VIDEO_DIP_ENABLE))
return; return;
val &= ~VIDEO_DIP_ENABLE; val &= ~VIDEO_DIP_ENABLE;
...@@ -518,6 +520,7 @@ static void ibx_set_infoframes(struct drm_encoder *encoder, ...@@ -518,6 +520,7 @@ static void ibx_set_infoframes(struct drm_encoder *encoder,
} }
static void cpt_set_infoframes(struct drm_encoder *encoder, static void cpt_set_infoframes(struct drm_encoder *encoder,
bool enable,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
{ {
struct drm_i915_private *dev_priv = encoder->dev->dev_private; struct drm_i915_private *dev_priv = encoder->dev->dev_private;
...@@ -531,7 +534,7 @@ static void cpt_set_infoframes(struct drm_encoder *encoder, ...@@ -531,7 +534,7 @@ static void cpt_set_infoframes(struct drm_encoder *encoder,
/* See the big comment in g4x_set_infoframes() */ /* See the big comment in g4x_set_infoframes() */
val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC; val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
if (!intel_hdmi->has_hdmi_sink) { if (!enable) {
if (!(val & VIDEO_DIP_ENABLE)) if (!(val & VIDEO_DIP_ENABLE))
return; return;
val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI); val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
...@@ -554,6 +557,7 @@ static void cpt_set_infoframes(struct drm_encoder *encoder, ...@@ -554,6 +557,7 @@ static void cpt_set_infoframes(struct drm_encoder *encoder,
} }
static void vlv_set_infoframes(struct drm_encoder *encoder, static void vlv_set_infoframes(struct drm_encoder *encoder,
bool enable,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
{ {
struct drm_i915_private *dev_priv = encoder->dev->dev_private; struct drm_i915_private *dev_priv = encoder->dev->dev_private;
...@@ -569,7 +573,7 @@ static void vlv_set_infoframes(struct drm_encoder *encoder, ...@@ -569,7 +573,7 @@ static void vlv_set_infoframes(struct drm_encoder *encoder,
/* See the big comment in g4x_set_infoframes() */ /* See the big comment in g4x_set_infoframes() */
val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC; val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
if (!intel_hdmi->has_hdmi_sink) { if (!enable) {
if (!(val & VIDEO_DIP_ENABLE)) if (!(val & VIDEO_DIP_ENABLE))
return; return;
val &= ~VIDEO_DIP_ENABLE; val &= ~VIDEO_DIP_ENABLE;
...@@ -601,6 +605,7 @@ static void vlv_set_infoframes(struct drm_encoder *encoder, ...@@ -601,6 +605,7 @@ static void vlv_set_infoframes(struct drm_encoder *encoder,
} }
static void hsw_set_infoframes(struct drm_encoder *encoder, static void hsw_set_infoframes(struct drm_encoder *encoder,
bool enable,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
{ {
struct drm_i915_private *dev_priv = encoder->dev->dev_private; struct drm_i915_private *dev_priv = encoder->dev->dev_private;
...@@ -611,7 +616,7 @@ static void hsw_set_infoframes(struct drm_encoder *encoder, ...@@ -611,7 +616,7 @@ static void hsw_set_infoframes(struct drm_encoder *encoder,
assert_hdmi_port_disabled(intel_hdmi); assert_hdmi_port_disabled(intel_hdmi);
if (!intel_hdmi->has_hdmi_sink) { if (!enable) {
I915_WRITE(reg, 0); I915_WRITE(reg, 0);
POSTING_READ(reg); POSTING_READ(reg);
return; return;
...@@ -650,11 +655,11 @@ static void intel_hdmi_mode_set(struct intel_encoder *encoder) ...@@ -650,11 +655,11 @@ static void intel_hdmi_mode_set(struct intel_encoder *encoder)
else else
hdmi_val |= SDVO_COLOR_FORMAT_8bpc; hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
if (intel_hdmi->has_hdmi_sink) if (crtc->config.has_hdmi_sink)
hdmi_val |= HDMI_MODE_SELECT_HDMI; hdmi_val |= HDMI_MODE_SELECT_HDMI;
if (intel_hdmi->has_audio) { if (intel_hdmi->has_audio) {
WARN_ON(!intel_hdmi->has_hdmi_sink); WARN_ON(!crtc->config.has_hdmi_sink);
DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n", DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
pipe_name(crtc->pipe)); pipe_name(crtc->pipe));
hdmi_val |= SDVO_AUDIO_ENABLE; hdmi_val |= SDVO_AUDIO_ENABLE;
...@@ -718,6 +723,9 @@ static void intel_hdmi_get_config(struct intel_encoder *encoder, ...@@ -718,6 +723,9 @@ static void intel_hdmi_get_config(struct intel_encoder *encoder,
else else
flags |= DRM_MODE_FLAG_NVSYNC; flags |= DRM_MODE_FLAG_NVSYNC;
if (tmp & HDMI_MODE_SELECT_HDMI)
pipe_config->has_hdmi_sink = true;
pipe_config->adjusted_mode.flags |= flags; pipe_config->adjusted_mode.flags |= flags;
if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc) if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
...@@ -894,9 +902,11 @@ bool intel_hdmi_compute_config(struct intel_encoder *encoder, ...@@ -894,9 +902,11 @@ bool intel_hdmi_compute_config(struct intel_encoder *encoder,
int portclock_limit = hdmi_portclock_limit(intel_hdmi, false); int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
int desired_bpp; int desired_bpp;
pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
if (intel_hdmi->color_range_auto) { if (intel_hdmi->color_range_auto) {
/* See CEA-861-E - 5.1 Default Encoding Parameters */ /* See CEA-861-E - 5.1 Default Encoding Parameters */
if (intel_hdmi->has_hdmi_sink && if (pipe_config->has_hdmi_sink &&
drm_match_cea_mode(adjusted_mode) > 1) drm_match_cea_mode(adjusted_mode) > 1)
intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235; intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
else else
...@@ -915,7 +925,7 @@ bool intel_hdmi_compute_config(struct intel_encoder *encoder, ...@@ -915,7 +925,7 @@ bool intel_hdmi_compute_config(struct intel_encoder *encoder,
* outputs. We also need to check that the higher clock still fits * outputs. We also need to check that the higher clock still fits
* within limits. * within limits.
*/ */
if (pipe_config->pipe_bpp > 8*3 && intel_hdmi->has_hdmi_sink && if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
clock_12bpc <= portclock_limit && clock_12bpc <= portclock_limit &&
hdmi_12bpc_possible(encoder->new_crtc)) { hdmi_12bpc_possible(encoder->new_crtc)) {
DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n"); DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
...@@ -1122,7 +1132,9 @@ static void intel_hdmi_pre_enable(struct intel_encoder *encoder) ...@@ -1122,7 +1132,9 @@ static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
struct drm_display_mode *adjusted_mode = struct drm_display_mode *adjusted_mode =
&intel_crtc->config.adjusted_mode; &intel_crtc->config.adjusted_mode;
intel_hdmi->set_infoframes(&encoder->base, adjusted_mode); intel_hdmi->set_infoframes(&encoder->base,
intel_crtc->config.has_hdmi_sink,
adjusted_mode);
} }
static void vlv_hdmi_pre_enable(struct intel_encoder *encoder) static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
...@@ -1168,7 +1180,9 @@ static void vlv_hdmi_pre_enable(struct intel_encoder *encoder) ...@@ -1168,7 +1180,9 @@ static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888); vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
mutex_unlock(&dev_priv->dpio_lock); mutex_unlock(&dev_priv->dpio_lock);
intel_hdmi->set_infoframes(&encoder->base, adjusted_mode); intel_hdmi->set_infoframes(&encoder->base,
intel_crtc->config.has_hdmi_sink,
adjusted_mode);
intel_enable_hdmi(encoder); intel_enable_hdmi(encoder);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment