drm/i915: Use HPLLVCO_MOBILE for all PNVs
To allow unsetting .is_mobile for the desktop variant of PNV fix up the cdclk code to select the mobile HPLLVCO register for both PNV variants. Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190318165633.28924-5-ville.syrjala@linux.intel.com Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
This commit is contained in:
parent
f3e3048522
commit
4677faf65f
1 changed files with 2 additions and 1 deletions
|
|
@ -234,7 +234,8 @@ static unsigned int intel_hpll_vco(struct drm_i915_private *dev_priv)
|
|||
else
|
||||
return 0;
|
||||
|
||||
tmp = I915_READ(IS_MOBILE(dev_priv) ? HPLLVCO_MOBILE : HPLLVCO);
|
||||
tmp = I915_READ(IS_PINEVIEW(dev_priv) || IS_MOBILE(dev_priv) ?
|
||||
HPLLVCO_MOBILE : HPLLVCO);
|
||||
|
||||
vco = vco_table[tmp & 0x7];
|
||||
if (vco == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue