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