mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-12 02:03:55 +00:00
drm/i915/ehl: Add voltage level requirement table
EHL has it own voltage level requirement depending on cd clock. BSpec: 21809 Cc: Clint Taylor <Clinton.A.Taylor@intel.com> Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190626014053.30541-3-jose.souza@intel.com
This commit is contained in:
parent
6e63790efd
commit
63c9dae71d
1 changed files with 23 additions and 12 deletions
|
@ -1866,14 +1866,23 @@ static void icl_set_cdclk(struct drm_i915_private *dev_priv,
|
||||||
dev_priv->cdclk.hw.voltage_level = cdclk_state->voltage_level;
|
dev_priv->cdclk.hw.voltage_level = cdclk_state->voltage_level;
|
||||||
}
|
}
|
||||||
|
|
||||||
static u8 icl_calc_voltage_level(int cdclk)
|
static u8 icl_calc_voltage_level(struct drm_i915_private *dev_priv, int cdclk)
|
||||||
{
|
{
|
||||||
if (cdclk > 556800)
|
if (IS_ELKHARTLAKE(dev_priv)) {
|
||||||
return 2;
|
if (cdclk > 312000)
|
||||||
else if (cdclk > 312000)
|
return 2;
|
||||||
return 1;
|
else if (cdclk > 180000)
|
||||||
else
|
return 1;
|
||||||
return 0;
|
else
|
||||||
|
return 0;
|
||||||
|
} else {
|
||||||
|
if (cdclk > 556800)
|
||||||
|
return 2;
|
||||||
|
else if (cdclk > 312000)
|
||||||
|
return 1;
|
||||||
|
else
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void icl_get_cdclk(struct drm_i915_private *dev_priv,
|
static void icl_get_cdclk(struct drm_i915_private *dev_priv,
|
||||||
|
@ -1924,7 +1933,7 @@ out:
|
||||||
* at least what the CDCLK frequency requires.
|
* at least what the CDCLK frequency requires.
|
||||||
*/
|
*/
|
||||||
cdclk_state->voltage_level =
|
cdclk_state->voltage_level =
|
||||||
icl_calc_voltage_level(cdclk_state->cdclk);
|
icl_calc_voltage_level(dev_priv, cdclk_state->cdclk);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void icl_init_cdclk(struct drm_i915_private *dev_priv)
|
static void icl_init_cdclk(struct drm_i915_private *dev_priv)
|
||||||
|
@ -1959,7 +1968,8 @@ sanitize:
|
||||||
sanitized_state.vco = icl_calc_cdclk_pll_vco(dev_priv,
|
sanitized_state.vco = icl_calc_cdclk_pll_vco(dev_priv,
|
||||||
sanitized_state.cdclk);
|
sanitized_state.cdclk);
|
||||||
sanitized_state.voltage_level =
|
sanitized_state.voltage_level =
|
||||||
icl_calc_voltage_level(sanitized_state.cdclk);
|
icl_calc_voltage_level(dev_priv,
|
||||||
|
sanitized_state.cdclk);
|
||||||
|
|
||||||
icl_set_cdclk(dev_priv, &sanitized_state, INVALID_PIPE);
|
icl_set_cdclk(dev_priv, &sanitized_state, INVALID_PIPE);
|
||||||
}
|
}
|
||||||
|
@ -1970,7 +1980,8 @@ static void icl_uninit_cdclk(struct drm_i915_private *dev_priv)
|
||||||
|
|
||||||
cdclk_state.cdclk = cdclk_state.bypass;
|
cdclk_state.cdclk = cdclk_state.bypass;
|
||||||
cdclk_state.vco = 0;
|
cdclk_state.vco = 0;
|
||||||
cdclk_state.voltage_level = icl_calc_voltage_level(cdclk_state.cdclk);
|
cdclk_state.voltage_level = icl_calc_voltage_level(dev_priv,
|
||||||
|
cdclk_state.cdclk);
|
||||||
|
|
||||||
icl_set_cdclk(dev_priv, &cdclk_state, INVALID_PIPE);
|
icl_set_cdclk(dev_priv, &cdclk_state, INVALID_PIPE);
|
||||||
}
|
}
|
||||||
|
@ -2561,7 +2572,7 @@ static int icl_modeset_calc_cdclk(struct intel_atomic_state *state)
|
||||||
state->cdclk.logical.vco = vco;
|
state->cdclk.logical.vco = vco;
|
||||||
state->cdclk.logical.cdclk = cdclk;
|
state->cdclk.logical.cdclk = cdclk;
|
||||||
state->cdclk.logical.voltage_level =
|
state->cdclk.logical.voltage_level =
|
||||||
max(icl_calc_voltage_level(cdclk),
|
max(icl_calc_voltage_level(dev_priv, cdclk),
|
||||||
cnl_compute_min_voltage_level(state));
|
cnl_compute_min_voltage_level(state));
|
||||||
|
|
||||||
if (!state->active_crtcs) {
|
if (!state->active_crtcs) {
|
||||||
|
@ -2571,7 +2582,7 @@ static int icl_modeset_calc_cdclk(struct intel_atomic_state *state)
|
||||||
state->cdclk.actual.vco = vco;
|
state->cdclk.actual.vco = vco;
|
||||||
state->cdclk.actual.cdclk = cdclk;
|
state->cdclk.actual.cdclk = cdclk;
|
||||||
state->cdclk.actual.voltage_level =
|
state->cdclk.actual.voltage_level =
|
||||||
icl_calc_voltage_level(cdclk);
|
icl_calc_voltage_level(dev_priv, cdclk);
|
||||||
} else {
|
} else {
|
||||||
state->cdclk.actual = state->cdclk.logical;
|
state->cdclk.actual = state->cdclk.logical;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue