Linux-libre 3.16.85-gnu
[librecmc/linux-libre.git] / drivers / gpu / drm / nouveau / core / engine / copy / nva3.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 <engine/falcon.h>
26 #include <engine/fifo.h>
27 #include <engine/copy.h>
28
29 #include <subdev/fb.h>
30 #include <subdev/vm.h>
31
32 #include <core/client.h>
33 #include <core/class.h>
34 #include <core/enum.h>
35
36
37 #include "fuc/nva3.fuc.h"
38
39 struct nva3_copy_priv {
40         struct nouveau_falcon base;
41 };
42
43 /*******************************************************************************
44  * Copy object classes
45  ******************************************************************************/
46
47 static struct nouveau_oclass
48 nva3_copy_sclass[] = {
49         { 0x85b5, &nouveau_object_ofuncs },
50         {}
51 };
52
53 /*******************************************************************************
54  * PCOPY context
55  ******************************************************************************/
56
57 static struct nouveau_oclass
58 nva3_copy_cclass = {
59         .handle = NV_ENGCTX(COPY0, 0xa3),
60         .ofuncs = &(struct nouveau_ofuncs) {
61                 .ctor = _nouveau_falcon_context_ctor,
62                 .dtor = _nouveau_falcon_context_dtor,
63                 .init = _nouveau_falcon_context_init,
64                 .fini = _nouveau_falcon_context_fini,
65                 .rd32 = _nouveau_falcon_context_rd32,
66                 .wr32 = _nouveau_falcon_context_wr32,
67
68         },
69 };
70
71 /*******************************************************************************
72  * PCOPY engine/subdev functions
73  ******************************************************************************/
74
75 static const struct nouveau_enum nva3_copy_isr_error_name[] = {
76         { 0x0001, "ILLEGAL_MTHD" },
77         { 0x0002, "INVALID_ENUM" },
78         { 0x0003, "INVALID_BITFIELD" },
79         {}
80 };
81
82 void
83 nva3_copy_intr(struct nouveau_subdev *subdev)
84 {
85         struct nouveau_fifo *pfifo = nouveau_fifo(subdev);
86         struct nouveau_engine *engine = nv_engine(subdev);
87         struct nouveau_falcon *falcon = (void *)subdev;
88         struct nouveau_object *engctx;
89         u32 dispatch = nv_ro32(falcon, 0x01c);
90         u32 stat = nv_ro32(falcon, 0x008) & dispatch & ~(dispatch >> 16);
91         u64 inst = nv_ro32(falcon, 0x050) & 0x3fffffff;
92         u32 ssta = nv_ro32(falcon, 0x040) & 0x0000ffff;
93         u32 addr = nv_ro32(falcon, 0x040) >> 16;
94         u32 mthd = (addr & 0x07ff) << 2;
95         u32 subc = (addr & 0x3800) >> 11;
96         u32 data = nv_ro32(falcon, 0x044);
97         int chid;
98
99         engctx = nouveau_engctx_get(engine, inst);
100         chid   = pfifo->chid(pfifo, engctx);
101
102         if (stat & 0x00000040) {
103                 nv_error(falcon, "DISPATCH_ERROR [");
104                 nouveau_enum_print(nva3_copy_isr_error_name, ssta);
105                 pr_cont("] ch %d [0x%010llx %s] subc %d mthd 0x%04x data 0x%08x\n",
106                        chid, inst << 12, nouveau_client_name(engctx), subc,
107                        mthd, data);
108                 nv_wo32(falcon, 0x004, 0x00000040);
109                 stat &= ~0x00000040;
110         }
111
112         if (stat) {
113                 nv_error(falcon, "unhandled intr 0x%08x\n", stat);
114                 nv_wo32(falcon, 0x004, stat);
115         }
116
117         nouveau_engctx_put(engctx);
118 }
119
120 static int
121 nva3_copy_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
122                struct nouveau_oclass *oclass, void *data, u32 size,
123                struct nouveau_object **pobject)
124 {
125         bool enable = (nv_device(parent)->chipset != 0xaf);
126         struct nva3_copy_priv *priv;
127         int ret;
128
129         ret = nouveau_falcon_create(parent, engine, oclass, 0x104000, enable,
130                                     "PCE0", "copy0", &priv);
131         *pobject = nv_object(priv);
132         if (ret)
133                 return ret;
134
135         nv_subdev(priv)->unit = 0x00802000;
136         nv_subdev(priv)->intr = nva3_copy_intr;
137         nv_engine(priv)->cclass = &nva3_copy_cclass;
138         nv_engine(priv)->sclass = nva3_copy_sclass;
139         nv_falcon(priv)->code.data = nva3_pcopy_code;
140         nv_falcon(priv)->code.size = sizeof(nva3_pcopy_code);
141         nv_falcon(priv)->data.data = nva3_pcopy_data;
142         nv_falcon(priv)->data.size = sizeof(nva3_pcopy_data);
143         return 0;
144 }
145
146 struct nouveau_oclass
147 nva3_copy_oclass = {
148         .handle = NV_ENGINE(COPY0, 0xa3),
149         .ofuncs = &(struct nouveau_ofuncs) {
150                 .ctor = nva3_copy_ctor,
151                 .dtor = _nouveau_falcon_dtor,
152                 .init = _nouveau_falcon_init,
153                 .fini = _nouveau_falcon_fini,
154                 .rd32 = _nouveau_falcon_rd32,
155                 .wr32 = _nouveau_falcon_wr32,
156         },
157 };