drm/nouveau/mc: fetch NV_PMC_INTR again after re-arming MSI
[cascardo/linux.git] / drivers / gpu / drm / nouveau / core / subdev / mc / base.c
1 /*
2  * Copyright 2012 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24
25 #include <subdev/mc.h>
26 #include <core/option.h>
27
28 static irqreturn_t
29 nouveau_mc_intr(int irq, void *arg)
30 {
31         struct nouveau_mc *pmc = arg;
32         const struct nouveau_mc_intr *map = pmc->intr_map;
33         struct nouveau_subdev *unit;
34         u32 intr;
35
36         nv_wr32(pmc, 0x000140, 0x00000000);
37         nv_rd32(pmc, 0x000140);
38
39         intr = nv_rd32(pmc, 0x000100);
40         if (intr == 0xffffffff) /* likely fallen off the bus */
41                 intr = 0x00000000;
42
43         if (pmc->use_msi)
44                 nv_wr08(pmc, 0x088068, 0xff);
45
46         if (intr) {
47                 u32 stat = nv_rd32(pmc, 0x000100);
48                 while (map->stat) {
49                         if (intr & map->stat) {
50                                 unit = nouveau_subdev(pmc, map->unit);
51                                 if (unit && unit->intr)
52                                         unit->intr(unit);
53                                 stat &= ~map->stat;
54                         }
55                         map++;
56                 }
57
58                 if (stat)
59                         nv_error(pmc, "unknown intr 0x%08x\n", stat);
60         }
61
62         nv_wr32(pmc, 0x000140, 0x00000001);
63         return intr ? IRQ_HANDLED : IRQ_NONE;
64 }
65
66 int
67 _nouveau_mc_fini(struct nouveau_object *object, bool suspend)
68 {
69         struct nouveau_mc *pmc = (void *)object;
70         nv_wr32(pmc, 0x000140, 0x00000000);
71         return nouveau_subdev_fini(&pmc->base, suspend);
72 }
73
74 int
75 _nouveau_mc_init(struct nouveau_object *object)
76 {
77         struct nouveau_mc *pmc = (void *)object;
78         int ret = nouveau_subdev_init(&pmc->base);
79         if (ret)
80                 return ret;
81         nv_wr32(pmc, 0x000140, 0x00000001);
82         return 0;
83 }
84
85 void
86 _nouveau_mc_dtor(struct nouveau_object *object)
87 {
88         struct nouveau_device *device = nv_device(object);
89         struct nouveau_mc *pmc = (void *)object;
90         free_irq(device->pdev->irq, pmc);
91         if (pmc->use_msi)
92                 pci_disable_msi(device->pdev);
93         nouveau_subdev_destroy(&pmc->base);
94 }
95
96 int
97 nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
98                    struct nouveau_oclass *oclass,
99                    const struct nouveau_mc_intr *intr_map,
100                    int length, void **pobject)
101 {
102         struct nouveau_device *device = nv_device(parent);
103         struct nouveau_mc *pmc;
104         int ret;
105
106         ret = nouveau_subdev_create_(parent, engine, oclass, 0, "PMC",
107                                      "master", length, pobject);
108         pmc = *pobject;
109         if (ret)
110                 return ret;
111
112         pmc->intr_map = intr_map;
113
114         switch (device->pdev->device & 0x0ff0) {
115         case 0x00f0: /* BR02? */
116         case 0x02e0: /* BR02? */
117                 pmc->use_msi = false;
118                 break;
119         default:
120                 pmc->use_msi = nouveau_boolopt(device->cfgopt, "NvMSI", true);
121                 if (pmc->use_msi) {
122                         pmc->use_msi = pci_enable_msi(device->pdev) == 0;
123                         if (pmc->use_msi) {
124                                 nv_info(pmc, "MSI interrupts enabled\n");
125                                 nv_wr08(pmc, 0x088068, 0xff);
126                         }
127                 }
128                 break;
129         }
130
131         ret = request_irq(device->pdev->irq, nouveau_mc_intr,
132                           IRQF_SHARED, "nouveau", pmc);
133         if (ret < 0)
134                 return ret;
135
136         return 0;
137 }