diff options
author | Imre Deak <imre.deak@intel.com> | 2018-11-06 18:06:17 +0200 |
---|---|---|
committer | Imre Deak <imre.deak@intel.com> | 2018-11-08 19:23:57 +0200 |
commit | 1e0e9c8a85afcfb96650fe1236358bdf0722b242 (patch) | |
tree | e2e5609a79e9a221686ebb458abe6529a77269b2 /drivers | |
parent | 987abd5c62f92ee4970b45aa077f47949974e615 (diff) | |
download | kernel_replicant_linux-1e0e9c8a85afcfb96650fe1236358bdf0722b242.tar.gz kernel_replicant_linux-1e0e9c8a85afcfb96650fe1236358bdf0722b242.tar.bz2 kernel_replicant_linux-1e0e9c8a85afcfb96650fe1236358bdf0722b242.zip |
drm/i915/icl: Fix combo PHY uninit
BSpec says to clear the comp init HW flag too during combo PHY uninit,
so do that. The lack of this could badly interact with the PHY reinit
after a DC6/9 transition at least, where (after a follow-up patch fixing
the init code) we'd skip the initialization incorrectly due to this flag
being set.
BSpec: 21257
Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181106160621.23057-2-imre.deak@intel.com
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/i915/intel_runtime_pm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_runtime_pm.c b/drivers/gpu/drm/i915/intel_runtime_pm.c index cda73bf05ed9..bd05d30733a4 100644 --- a/drivers/gpu/drm/i915/intel_runtime_pm.c +++ b/drivers/gpu/drm/i915/intel_runtime_pm.c @@ -3668,6 +3668,10 @@ void icl_display_core_uninit(struct drm_i915_private *dev_priv) val = I915_READ(ICL_PHY_MISC(port)); val |= ICL_PHY_MISC_DE_IO_COMP_PWR_DOWN; I915_WRITE(ICL_PHY_MISC(port), val); + + val = I915_READ(ICL_PORT_COMP_DW0(port)); + val &= ~COMP_INIT; + I915_WRITE(ICL_PORT_COMP_DW0(port), val); } } |