drm/i915: replace intel_infoframe_freq with VIDEO_DIP_FREQ_VSYNC
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 8 May 2012 12:41:00 +0000 (14:41 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 8 May 2012 13:32:33 +0000 (15:32 +0200)
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: Paulo Zanoni <przanoni@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_hdmi.c

index 9902904de2ce7af9151ef710e859fa302e71590a..4c822e19d960ac22f45bdcdae2cd64060352d19d 100644 (file)
@@ -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);
 }
This page took 0.027404 seconds and 5 git commands to generate.