Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1fd527cc authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Daniel Vetter
Browse files

drm/i915: Rename hsw_lp_wm_result to intel_wm_level



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: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent a9786a11
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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;
+6 −14
Original line number Diff line number Diff line
@@ -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];
@@ -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;

@@ -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];
@@ -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]);
@@ -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;

@@ -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)