Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[firefly-linux-kernel-4.4.55.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 "priv.h"
26 #include <core/option.h>
27
28 static inline void
29 nouveau_mc_unk260(struct nouveau_mc *pmc, u32 data)
30 {
31         const struct nouveau_mc_oclass *impl = (void *)nv_oclass(pmc);
32         if (impl->unk260)
33                 impl->unk260(pmc, data);
34 }
35
36 static inline u32
37 nouveau_mc_intr_mask(struct nouveau_mc *pmc)
38 {
39         u32 intr = nv_rd32(pmc, 0x000100);
40         if (intr == 0xffffffff) /* likely fallen off the bus */
41                 intr = 0x00000000;
42         return intr;
43 }
44
45 static irqreturn_t
46 nouveau_mc_intr(int irq, void *arg)
47 {
48         struct nouveau_mc *pmc = arg;
49         const struct nouveau_mc_oclass *oclass = (void *)nv_object(pmc)->oclass;
50         const struct nouveau_mc_intr *map = oclass->intr;
51         struct nouveau_subdev *unit;
52         u32 intr;
53
54         nv_wr32(pmc, 0x000140, 0x00000000);
55         nv_rd32(pmc, 0x000140);
56         intr = nouveau_mc_intr_mask(pmc);
57         if (pmc->use_msi)
58                 oclass->msi_rearm(pmc);
59
60         if (intr) {
61                 u32 stat = intr = nouveau_mc_intr_mask(pmc);
62                 while (map->stat) {
63                         if (intr & map->stat) {
64                                 unit = nouveau_subdev(pmc, map->unit);
65                                 if (unit && unit->intr)
66                                         unit->intr(unit);
67                                 stat &= ~map->stat;
68                         }
69                         map++;
70                 }
71
72                 if (stat)
73                         nv_error(pmc, "unknown intr 0x%08x\n", stat);
74         }
75
76         nv_wr32(pmc, 0x000140, 0x00000001);
77         return intr ? IRQ_HANDLED : IRQ_NONE;
78 }
79
80 int
81 _nouveau_mc_fini(struct nouveau_object *object, bool suspend)
82 {
83         struct nouveau_mc *pmc = (void *)object;
84         nv_wr32(pmc, 0x000140, 0x00000000);
85         return nouveau_subdev_fini(&pmc->base, suspend);
86 }
87
88 int
89 _nouveau_mc_init(struct nouveau_object *object)
90 {
91         struct nouveau_mc *pmc = (void *)object;
92         int ret = nouveau_subdev_init(&pmc->base);
93         if (ret)
94                 return ret;
95         nv_wr32(pmc, 0x000140, 0x00000001);
96         return 0;
97 }
98
99 void
100 _nouveau_mc_dtor(struct nouveau_object *object)
101 {
102         struct nouveau_device *device = nv_device(object);
103         struct nouveau_mc *pmc = (void *)object;
104         free_irq(pmc->irq, pmc);
105         if (pmc->use_msi)
106                 pci_disable_msi(device->pdev);
107         nouveau_subdev_destroy(&pmc->base);
108 }
109
110 int
111 nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
112                    struct nouveau_oclass *bclass, int length, void **pobject)
113 {
114         const struct nouveau_mc_oclass *oclass = (void *)bclass;
115         struct nouveau_device *device = nv_device(parent);
116         struct nouveau_mc *pmc;
117         int ret;
118
119         ret = nouveau_subdev_create_(parent, engine, bclass, 0, "PMC",
120                                      "master", length, pobject);
121         pmc = *pobject;
122         if (ret)
123                 return ret;
124
125         pmc->unk260 = nouveau_mc_unk260;
126
127         if (nv_device_is_pci(device))
128                 switch (device->pdev->device & 0x0ff0) {
129                 case 0x00f0:
130                 case 0x02e0:
131                         /* BR02? NFI how these would be handled yet exactly */
132                         break;
133                 default:
134                         switch (device->chipset) {
135                         case 0xaa:
136                                 /* reported broken, nv also disable it */
137                                 break;
138                         default:
139                                 pmc->use_msi = true;
140                                 break;
141                 }
142
143                 pmc->use_msi = nouveau_boolopt(device->cfgopt, "NvMSI",
144                                                pmc->use_msi);
145
146                 if (pmc->use_msi && oclass->msi_rearm) {
147                         pmc->use_msi = pci_enable_msi(device->pdev) == 0;
148                         if (pmc->use_msi) {
149                                 nv_info(pmc, "MSI interrupts enabled\n");
150                                 oclass->msi_rearm(pmc);
151                         }
152                 } else {
153                         pmc->use_msi = false;
154                 }
155         }
156
157         ret = nv_device_get_irq(device, true);
158         if (ret < 0)
159                 return ret;
160         pmc->irq = ret;
161
162         ret = request_irq(pmc->irq, nouveau_mc_intr, IRQF_SHARED, "nouveau",
163                           pmc);
164
165         if (ret < 0)
166                 return ret;
167
168         return 0;
169 }