diff options
| author | Karol Herbst <[email protected]> | 2017-11-24 02:56:26 +0000 |
|---|---|---|
| committer | Ben Skeggs <[email protected]> | 2017-12-19 00:16:37 +0000 |
| commit | a121027d2747168df0aac0c3da35509eea39f61c (patch) | |
| tree | a97382251dadb6143f45589f804f9ced39d7cfca | |
| parent | drm/nouveau/imem/nv50: fix refcount_t warning (diff) | |
| download | kernel-a121027d2747168df0aac0c3da35509eea39f61c.tar.gz kernel-a121027d2747168df0aac0c3da35509eea39f61c.zip | |
drm/nouveau/pci: do a msi rearm on init
On my GP107 when I load nouveau after unloading it, for some reason the
GPU stopped sending or the CPU stopped receiving interrupts if MSI was
enabled.
Doing a rearm once before getting any interrupts fixes this.
Signed-off-by: Karol Herbst <[email protected]>
Reviewed-by: Thierry Reding <[email protected]>
Signed-off-by: Ben Skeggs <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c b/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c index b1b1f3626b96..deb96de54b00 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c @@ -136,6 +136,13 @@ nvkm_pci_init(struct nvkm_subdev *subdev) return ret; pci->irq = pdev->irq; + + /* Ensure MSI interrupts are armed, for the case where there are + * already interrupts pending (for whatever reason) at load time. + */ + if (pci->msi) + pci->func->msi_rearm(pci); + return ret; } |
