Commit 4b24c933 authored by Daniel Vetter's avatar Daniel Vetter

drm/i915: replace intel_infoframe_freq with VIDEO_DIP_FREQ_VSYNC

Simplifies things because for all the infoframes we care about,
we always send them on each vblank. Also, this gets rid of one
of the hw specific functions mislabelled with the intel_ prefix -
hsw will completely change how this works!
Acked-by: default avatarPaulo Zanoni <przanoni@gmail.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent acb87dfb
......@@ -113,23 +113,6 @@ static u32 intel_infoframe_enable(struct dip_infoframe *frame)
return flags;
}
static u32 intel_infoframe_frequency(struct dip_infoframe *frame)
{
u32 flags = 0;
switch (frame->type) {
case DIP_TYPE_AVI:
case DIP_TYPE_SPD:
flags |= VIDEO_DIP_FREQ_VSYNC;
break;
default:
DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
break;
}
return flags;
}
static void i9xx_write_infoframe(struct drm_encoder *encoder,
struct dip_infoframe *frame)
{
......@@ -165,7 +148,7 @@ static void i9xx_write_infoframe(struct drm_encoder *encoder,
val |= intel_infoframe_enable(frame);
val &= ~VIDEO_DIP_FREQ_MASK;
val |= intel_infoframe_frequency(frame);
val |= VIDEO_DIP_FREQ_VSYNC;
I915_WRITE(VIDEO_DIP_CTL, val);
}
......@@ -215,7 +198,7 @@ static void ibx_write_infoframe(struct drm_encoder *encoder,
val |= intel_infoframe_enable(frame);
val &= ~VIDEO_DIP_FREQ_MASK;
val |= intel_infoframe_frequency(frame);
val |= VIDEO_DIP_FREQ_VSYNC;
I915_WRITE(reg, val);
}
......@@ -255,7 +238,7 @@ static void cpt_write_infoframe(struct drm_encoder *encoder,
val |= intel_infoframe_enable(frame);
val &= ~VIDEO_DIP_FREQ_MASK;
val |= intel_infoframe_frequency(frame);
val |= VIDEO_DIP_FREQ_VSYNC;
I915_WRITE(reg, val);
}
......@@ -289,7 +272,7 @@ static void vlv_write_infoframe(struct drm_encoder *encoder,
val |= intel_infoframe_enable(frame);
val &= ~VIDEO_DIP_FREQ_MASK;
val |= intel_infoframe_frequency(frame);
val |= VIDEO_DIP_FREQ_VSYNC;
I915_WRITE(reg, val);
}
......
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