Merge branch 'drm-next-3.12' of git://people.freedesktop.org/~agd5f/linux into drm...
[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 <subdev/mc.h>
26 #include <linux/pm_runtime.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 (intr) {
51                 nv_error(pmc, "unknown intr 0x%08x\n", stat);
52         }
53
54         if (stat == IRQ_HANDLED)
55                 pm_runtime_mark_last_busy(&device->pdev->dev);
56         return stat ? IRQ_HANDLED : IRQ_NONE;
57 }
58
59 int
60 _nouveau_mc_fini(struct nouveau_object *object, bool suspend)
61 {
62         struct nouveau_mc *pmc = (void *)object;
63         nv_wr32(pmc, 0x000140, 0x00000000);
64         return nouveau_subdev_fini(&pmc->base, suspend);
65 }
66
67 int
68 _nouveau_mc_init(struct nouveau_object *object)
69 {
70         struct nouveau_mc *pmc = (void *)object;
71         int ret = nouveau_subdev_init(&pmc->base);
72         if (ret)
73                 return ret;
74         nv_wr32(pmc, 0x000140, 0x00000001);
75         return 0;
76 }
77
78 void
79 _nouveau_mc_dtor(struct nouveau_object *object)
80 {
81         struct nouveau_device *device = nv_device(object);
82         struct nouveau_mc *pmc = (void *)object;
83         free_irq(device->pdev->irq, pmc);
84         nouveau_subdev_destroy(&pmc->base);
85 }
86
87 int
88 nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
89                    struct nouveau_oclass *oclass,
90                    const struct nouveau_mc_intr *intr_map,
91                    int length, void **pobject)
92 {
93         struct nouveau_device *device = nv_device(parent);
94         struct nouveau_mc *pmc;
95         int ret;
96
97         ret = nouveau_subdev_create_(parent, engine, oclass, 0, "PMC",
98                                      "master", length, pobject);
99         pmc = *pobject;
100         if (ret)
101                 return ret;
102
103         pmc->intr_map = intr_map;
104
105         ret = request_irq(device->pdev->irq, nouveau_mc_intr,
106                           IRQF_SHARED, "nouveau", pmc);
107         if (ret < 0)
108                 return ret;
109
110         return 0;
111 }