Skip to content

Commit

Permalink
drm/i915: Rename hsw_lp_wm_result to intel_wm_level
Browse files Browse the repository at this point in the history
Let's call hsw_lp_wm_result intel_wm_level from now on and move it to
i915_drv.h for later use.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Ville Syrjälä authored and Daniel Vetter committed Aug 8, 2013
1 parent a9786a1 commit 1fd527c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 8 additions & 0 deletions drivers/gpu/drm/i915/i915_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,14 @@ enum intel_ddb_partitioning {
INTEL_DDB_PART_5_6, /* IVB+ */
};

struct intel_wm_level {
bool enable;
uint32_t pri_val;
uint32_t spr_val;
uint32_t cur_val;
uint32_t fbc_val;
};

typedef struct drm_i915_private {
struct drm_device *dev;
struct kmem_cache *slab;
Expand Down
20 changes: 6 additions & 14 deletions drivers/gpu/drm/i915/intel_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2180,14 +2180,6 @@ struct hsw_wm_maximums {
uint16_t fbc;
};

struct hsw_lp_wm_result {
bool enable;
uint32_t pri_val;
uint32_t spr_val;
uint32_t cur_val;
uint32_t fbc_val;
};

struct hsw_wm_values {
uint32_t wm_pipe[3];
uint32_t wm_lp[3];
Expand Down Expand Up @@ -2280,7 +2272,7 @@ static uint32_t ilk_compute_fbc_wm(struct hsw_pipe_wm_parameters *params,

static bool ilk_check_wm(int level,
const struct hsw_wm_maximums *max,
struct hsw_lp_wm_result *result)
struct intel_wm_level *result)
{
bool ret;

Expand Down Expand Up @@ -2324,7 +2316,7 @@ static bool ilk_check_wm(int level,
static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
int level,
struct hsw_pipe_wm_parameters *p,
struct hsw_lp_wm_result *result)
struct intel_wm_level *result)
{
uint16_t pri_latency = dev_priv->wm.pri_latency[level];
uint16_t spr_latency = dev_priv->wm.spr_latency[level];
Expand All @@ -2347,10 +2339,10 @@ static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
static bool hsw_compute_lp_wm(struct drm_i915_private *dev_priv,
int level, struct hsw_wm_maximums *max,
struct hsw_pipe_wm_parameters *params,
struct hsw_lp_wm_result *result)
struct intel_wm_level *result)
{
enum pipe pipe;
struct hsw_lp_wm_result res[3];
struct intel_wm_level res[3];

for (pipe = PIPE_A; pipe <= PIPE_C; pipe++)
ilk_compute_wm_level(dev_priv, level, &params[pipe], &res[pipe]);
Expand Down Expand Up @@ -2584,7 +2576,7 @@ static void hsw_compute_wm_results(struct drm_device *dev,
{
struct drm_i915_private *dev_priv = dev->dev_private;
struct drm_crtc *crtc;
struct hsw_lp_wm_result lp_results[4] = {};
struct intel_wm_level lp_results[4] = {};
enum pipe pipe;
int level, max_level, wm_lp;

Expand All @@ -2607,7 +2599,7 @@ static void hsw_compute_wm_results(struct drm_device *dev,

memset(results, 0, sizeof(*results));
for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
const struct hsw_lp_wm_result *r;
const struct intel_wm_level *r;

level = (max_level == 4 && wm_lp > 1) ? wm_lp + 1 : wm_lp;
if (level > max_level)
Expand Down

0 comments on commit 1fd527c

Please sign in to comment.