FreeBSD Bugzilla – Attachment 147359 Details for
Bug 193500
Interrupt storm after loading i915kms module on Gen4 Intel GPU
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Reset gmbus interrupt mask register explicitely
1.patch (text/plain), 514 bytes, created by
Konstantin Belousov
on 2014-09-15 18:40:39 UTC
(
hide
)
Description:
Reset gmbus interrupt mask register explicitely
Filename:
MIME Type:
Creator:
Konstantin Belousov
Created:
2014-09-15 18:40:39 UTC
Size:
514 bytes
patch
obsolete
>diff --git a/sys/dev/drm2/i915/intel_iic.c b/sys/dev/drm2/i915/intel_iic.c >index 412349c..3a1b34d 100644 >--- a/sys/dev/drm2/i915/intel_iic.c >+++ b/sys/dev/drm2/i915/intel_iic.c >@@ -128,10 +128,13 @@ intel_iic_reset(struct drm_device *dev) > struct drm_i915_private *dev_priv; > > dev_priv = dev->dev_private; >- if (HAS_PCH_SPLIT(dev)) >+ if (HAS_PCH_SPLIT(dev)) { > I915_WRITE(PCH_GMBUS0, 0); >- else >+ I915_WRITE(PCH_GMBUS4, 0); >+ } else { > I915_WRITE(GMBUS0, 0); >+ I915_WRITE(GMBUS4, 0); >+ } > } > > static int
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 193500
:
147134
|
147135
|
147255
|
147358
| 147359 |
147363
|
147377