]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Introduce vlv_invert_wm_value()
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Mon, 28 Nov 2016 17:37:09 +0000 (19:37 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Mon, 5 Dec 2016 14:23:26 +0000 (16:23 +0200)
Add a small helper to do invert the vlv/chv values. Less fragile
perhaps, and let's us clearly mark all overlarge wateramarks as
disabled (by just making them all USHRT_MAX).

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1480354637-14209-8-git-send-email-ville.syrjala@linux.intel.com
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
drivers/gpu/drm/i915/intel_pm.c

index 0a3c26ab9205274cf6a70156db89fd3c59fa0d1a..a23253ce9199a9a9627f518b6199813f3b871313 100644 (file)
@@ -1053,6 +1053,14 @@ static void vlv_compute_fifo(struct intel_crtc *crtc)
        WARN_ON(fifo_left != 0);
 }
 
+static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
+{
+       if (wm > fifo_size)
+               return USHRT_MAX;
+       else
+               return fifo_size - wm;
+}
+
 static void vlv_invert_wms(struct intel_crtc *crtc)
 {
        struct vlv_wm_state *wm_state = &crtc->wm_state;
@@ -1064,12 +1072,17 @@ static void vlv_invert_wms(struct intel_crtc *crtc)
                        INTEL_INFO(to_i915(dev))->num_pipes * 512 - 1;
                struct intel_plane *plane;
 
-               wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
-               wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
+               wm_state->sr[level].plane =
+                       vlv_invert_wm_value(wm_state->sr[level].plane,
+                                           sr_fifo_size);
+               wm_state->sr[level].cursor =
+                       vlv_invert_wm_value(wm_state->sr[level].cursor,
+                                           63);
 
                for_each_intel_plane_on_crtc(dev, crtc, plane) {
-                       wm_state->wm[level].plane[plane->id] = plane->wm.fifo_size -
-                               wm_state->wm[level].plane[plane->id];
+                       wm_state->wm[level].plane[plane->id] =
+                               vlv_invert_wm_value(wm_state->wm[level].plane[plane->id],
+                                                   plane->wm.fifo_size);
                }
        }
 }