Skip to content

Commit a3005c2

Browse files
ideakjlahtine-intel
authored andcommitted
drm/i915/icl+: Fix hotplug interrupt disabling after storm detection
Atm, hotplug interrupts on TypeC ports are left enabled after detecting an interrupt storm, fix this. Reported-by: Kunal Joshi <[email protected]> References: https://gitlab.freedesktop.org/drm/intel/-/issues/351 Bugzilla: https://gitlab.freedesktop.org/drm/intel/-/issues/1964 Cc: Kunal Joshi <[email protected]> Cc: [email protected] Signed-off-by: Imre Deak <[email protected]> Reviewed-by: Ville Syrjälä <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] (cherry picked from commit 587a87b) Signed-off-by: Joonas Lahtinen <[email protected]>
1 parent 27582a9 commit a3005c2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/gpu/drm/i915/i915_irq.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3125,6 +3125,7 @@ static void gen11_hpd_irq_setup(struct drm_i915_private *dev_priv)
31253125

31263126
val = I915_READ(GEN11_DE_HPD_IMR);
31273127
val &= ~hotplug_irqs;
3128+
val |= ~enabled_irqs & hotplug_irqs;
31283129
I915_WRITE(GEN11_DE_HPD_IMR, val);
31293130
POSTING_READ(GEN11_DE_HPD_IMR);
31303131

0 commit comments

Comments
 (0)