drm/nvc0,nvc4/mc: handle 0xc0's "special" msi rearm
[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_oclass *oclass = (void *)nv_object(pmc)->oclass;
33         const struct nouveau_mc_intr *map = oclass->intr;
34         struct nouveau_device *device = nv_device(pmc);
35         struct nouveau_subdev *unit;
36         u32 intr;
37
38         nv_wr32(pmc, 0x000140, 0x00000000);
39         nv_rd32(pmc, 0x000140);
40
41         intr = nv_rd32(pmc, 0x000100);
42         if (intr == 0xffffffff) /* likely fallen off the bus */
43                 intr = 0x00000000;
44
45         if (pmc->use_msi && oclass->msi_rearm)
46                 oclass->msi_rearm(pmc);
47
48         if (intr) {
49                 u32 stat = nv_rd32(pmc, 0x000100);
50                 while (map->stat) {
51                         if (intr & map->stat) {
52                                 unit = nouveau_subdev(pmc, map->unit);
53                                 if (unit && unit->intr)
54                                         unit->intr(unit);
55                                 stat &= ~map->stat;
56                         }
57                         map++;
58                 }
59
60                 if (stat)
61                         nv_error(pmc, "unknown intr 0x%08x\n", stat);
62         }
63
64         nv_wr32(pmc, 0x000140, 0x00000001);
65         return intr ? IRQ_HANDLED : IRQ_NONE;
66 }
67
68 int
69 _nouveau_mc_fini(struct nouveau_object *object, bool suspend)
70 {
71         struct nouveau_mc *pmc = (void *)object;
72         nv_wr32(pmc, 0x000140, 0x00000000);
73         return nouveau_subdev_fini(&pmc->base, suspend);
74 }
75
76 int
77 _nouveau_mc_init(struct nouveau_object *object)
78 {
79         struct nouveau_mc *pmc = (void *)object;
80         int ret = nouveau_subdev_init(&pmc->base);
81         if (ret)
82                 return ret;
83         nv_wr32(pmc, 0x000140, 0x00000001);
84         return 0;
85 }
86
87 void
88 _nouveau_mc_dtor(struct nouveau_object *object)
89 {
90         struct nouveau_device *device = nv_device(object);
91         struct nouveau_mc *pmc = (void *)object;
92         free_irq(device->pdev->irq, pmc);
93         if (pmc->use_msi)
94                 pci_disable_msi(device->pdev);
95         nouveau_subdev_destroy(&pmc->base);
96 }
97
98 int
99 nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
100                    struct nouveau_oclass *bclass, int length, void **pobject)
101 {
102         const struct nouveau_mc_oclass *oclass = (void *)bclass;
103         struct nouveau_device *device = nv_device(parent);
104         struct nouveau_mc *pmc;
105         int ret;
106
107         ret = nouveau_subdev_create_(parent, engine, bclass, 0, "PMC",
108                                      "master", length, pobject);
109         pmc = *pobject;
110         if (ret)
111                 return ret;
112
113         switch (device->pdev->device & 0x0ff0) {
114         case 0x00f0: /* BR02? */
115         case 0x02e0: /* BR02? */
116                 pmc->use_msi = false;
117                 break;
118         default:
119                 pmc->use_msi = nouveau_boolopt(device->cfgopt, "NvMSI", true);
120                 if (pmc->use_msi) {
121                         pmc->use_msi = pci_enable_msi(device->pdev) == 0;
122                         if (pmc->use_msi) {
123                                 nv_info(pmc, "MSI interrupts enabled\n");
124                                 oclass->msi_rearm(pmc);
125                         }
126                 }
127                 break;
128         }
129
130         ret = request_irq(device->pdev->irq, nouveau_mc_intr,
131                           IRQF_SHARED, "nouveau", pmc);
132         if (ret < 0)
133                 return ret;
134
135         return 0;
136 }