OSDN Git Service

drm/i915: Introduce skl_plane_wm_level accessor.
authorStanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Wed, 13 May 2020 09:38:11 +0000 (12:38 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 13 May 2020 12:54:41 +0000 (15:54 +0300)
For future Gen12 SAGV implementation we need to
seemlessly alter wm levels calculated, depending
on whether we are allowed to enable SAGV or not.

So this accessor will give additional flexibility
to do that.

Currently this accessor is still simply working
as "pass-through" function. This will be changed
in next coming patches from this series.

v2: - plane_id -> plane->id(Ville Syrjälä)
    - Moved wm_level var to have more local scope
      (Ville Syrjälä)
    - Renamed yuv to color_plane(Ville Syrjälä) in
      skl_plane_wm_level

v3: - plane->id -> plane_id(this time for real, Ville Syrjälä)
    - Changed colorplane id type from boolean to int as index
      (Ville Syrjälä)
    - Moved crtc_state param so that it is first now
      (Ville Syrjälä)
    - Moved wm_level declaration to tigher scope in
      skl_write_plane_wm(Ville Syrjälä)

v4: - Started to use enum values for color plane
    - Do sizeof for a type what we are memset'ing
    - Zero out wm_uv as well(Ville Syrjälä)

v5: - Fixed rebase conflict caused by COLOR_PLANE_*
      enum removal

v6: - Do not use skl_plane_wm_level accessor in skl_allocate_pipe_ddb

v7: - Get rid of wm_uv, which is not used in skl_plane_write_wm(Ville)

Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200513093816.11466-2-stanislav.lisovskiy@intel.com
drivers/gpu/drm/i915/intel_pm.c

index 0e53e27..24f1ef8 100644 (file)
@@ -4632,6 +4632,17 @@ icl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
        return total_data_rate;
 }
 
+static const struct skl_wm_level *
+skl_plane_wm_level(const struct intel_crtc_state *crtc_state,
+                  enum plane_id plane_id,
+                  int level)
+{
+       const struct skl_plane_wm *wm =
+               &crtc_state->wm.skl.optimal.planes[plane_id];
+
+       return &wm->wm[level];
+}
+
 static int
 skl_allocate_pipe_ddb(struct intel_crtc_state *crtc_state)
 {
@@ -5440,8 +5451,12 @@ void skl_write_plane_wm(struct intel_plane *plane,
                &crtc_state->wm.skl.plane_ddb_uv[plane_id];
 
        for (level = 0; level <= max_level; level++) {
+               const struct skl_wm_level *wm_level;
+
+               wm_level = skl_plane_wm_level(crtc_state, plane_id, level);
+
                skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
-                                  &wm->wm[level]);
+                                  wm_level);
        }
        skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
                           &wm->trans_wm);
@@ -5474,8 +5489,12 @@ void skl_write_cursor_wm(struct intel_plane *plane,
                &crtc_state->wm.skl.plane_ddb_y[plane_id];
 
        for (level = 0; level <= max_level; level++) {
+               const struct skl_wm_level *wm_level;
+
+               wm_level = skl_plane_wm_level(crtc_state, plane_id, level);
+
                skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
-                                  &wm->wm[level]);
+                                  wm_level);
        }
        skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);