drm/nouveau/core: protect engine context list with hardirq-safe spinlock
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / gpu / drm / nouveau / core / core / engctx.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 <core/object.h>
26 #include <core/namedb.h>
27 #include <core/handle.h>
28 #include <core/client.h>
29 #include <core/engctx.h>
30
31 #include <subdev/vm.h>
32
33 static inline int
34 nouveau_engctx_exists(struct nouveau_object *parent,
35                       struct nouveau_engine *engine, void **pobject)
36 {
37         struct nouveau_engctx *engctx;
38         struct nouveau_object *parctx;
39
40         list_for_each_entry(engctx, &engine->contexts, head) {
41                 parctx = nv_pclass(nv_object(engctx), NV_PARENT_CLASS);
42                 if (parctx == parent) {
43                         atomic_inc(&nv_object(engctx)->refcount);
44                         *pobject = engctx;
45                         return 1;
46                 }
47         }
48
49         return 0;
50 }
51
52 int
53 nouveau_engctx_create_(struct nouveau_object *parent,
54                        struct nouveau_object *engobj,
55                        struct nouveau_oclass *oclass,
56                        struct nouveau_object *pargpu,
57                        u32 size, u32 align, u32 flags,
58                        int length, void **pobject)
59 {
60         struct nouveau_client *client = nouveau_client(parent);
61         struct nouveau_engine *engine = nv_engine(engobj);
62         struct nouveau_subdev *subdev = nv_subdev(engine);
63         struct nouveau_object *engctx;
64         unsigned long save;
65         int ret;
66
67         /* check if this engine already has a context for the parent object,
68          * and reference it instead of creating a new one
69          */
70         spin_lock_irqsave(&engine->lock, save);
71         ret = nouveau_engctx_exists(parent, engine, pobject);
72         spin_unlock_irqrestore(&engine->lock, save);
73         if (ret)
74                 return ret;
75
76         /* create the new context, supports creating both raw objects and
77          * objects backed by instance memory
78          */
79         if (size) {
80                 ret = nouveau_gpuobj_create_(parent, engobj, oclass,
81                                              NV_ENGCTX_CLASS,
82                                              pargpu, size, align, flags,
83                                              length, pobject);
84         } else {
85                 ret = nouveau_object_create_(parent, engobj, oclass,
86                                              NV_ENGCTX_CLASS, length, pobject);
87         }
88
89         engctx = *pobject;
90         if (ret)
91                 return ret;
92
93         /* must take the lock again and re-check a context doesn't already
94          * exist (in case of a race) - the lock had to be dropped before as
95          * it's not possible to allocate the object with it held.
96          */
97         spin_lock_irqsave(&engine->lock, save);
98         ret = nouveau_engctx_exists(parent, engine, pobject);
99         if (ret) {
100                 spin_unlock_irqrestore(&engine->lock, save);
101                 nouveau_object_ref(NULL, &engctx);
102                 return ret;
103         }
104
105         if (client->vm)
106                 atomic_inc(&client->vm->engref[nv_engidx(engobj)]);
107         list_add(&nv_engctx(engctx)->head, &engine->contexts);
108         spin_unlock_irqrestore(&engine->lock, save);
109         return 0;
110 }
111
112 void
113 nouveau_engctx_destroy(struct nouveau_engctx *engctx)
114 {
115         struct nouveau_object *engobj = nv_object(engctx)->engine;
116         struct nouveau_engine *engine = nv_engine(engobj);
117         struct nouveau_client *client = nouveau_client(engctx);
118         unsigned long save;
119
120         nouveau_gpuobj_unmap(&engctx->vma);
121         spin_lock_irqsave(&engine->lock, save);
122         list_del(&engctx->head);
123         spin_unlock_irqrestore(&engine->lock, save);
124
125         if (client->vm)
126                 atomic_dec(&client->vm->engref[nv_engidx(engobj)]);
127
128         if (engctx->base.size)
129                 nouveau_gpuobj_destroy(&engctx->base);
130         else
131                 nouveau_object_destroy(&engctx->base.base);
132 }
133
134 int
135 nouveau_engctx_init(struct nouveau_engctx *engctx)
136 {
137         struct nouveau_object *object = nv_object(engctx);
138         struct nouveau_subdev *subdev = nv_subdev(object->engine);
139         struct nouveau_object *parent;
140         struct nouveau_subdev *pardev;
141         int ret;
142
143         ret = nouveau_gpuobj_init(&engctx->base);
144         if (ret)
145                 return ret;
146
147         parent = nv_pclass(object->parent, NV_PARENT_CLASS);
148         pardev = nv_subdev(parent->engine);
149         if (nv_parent(parent)->context_attach) {
150                 mutex_lock(&pardev->mutex);
151                 ret = nv_parent(parent)->context_attach(parent, object);
152                 mutex_unlock(&pardev->mutex);
153         }
154
155         if (ret) {
156                 nv_error(parent, "failed to attach %s context, %d\n",
157                          subdev->name, ret);
158                 return ret;
159         }
160
161         nv_debug(parent, "attached %s context\n", subdev->name);
162         return 0;
163 }
164
165 int
166 nouveau_engctx_fini(struct nouveau_engctx *engctx, bool suspend)
167 {
168         struct nouveau_object *object = nv_object(engctx);
169         struct nouveau_subdev *subdev = nv_subdev(object->engine);
170         struct nouveau_object *parent;
171         struct nouveau_subdev *pardev;
172         int ret = 0;
173
174         parent = nv_pclass(object->parent, NV_PARENT_CLASS);
175         pardev = nv_subdev(parent->engine);
176         if (nv_parent(parent)->context_detach) {
177                 mutex_lock(&pardev->mutex);
178                 ret = nv_parent(parent)->context_detach(parent, suspend, object);
179                 mutex_unlock(&pardev->mutex);
180         }
181
182         if (ret) {
183                 nv_error(parent, "failed to detach %s context, %d\n",
184                          subdev->name, ret);
185                 return ret;
186         }
187
188         nv_debug(parent, "detached %s context\n", subdev->name);
189         return nouveau_gpuobj_fini(&engctx->base, suspend);
190 }
191
192 void
193 _nouveau_engctx_dtor(struct nouveau_object *object)
194 {
195         nouveau_engctx_destroy(nv_engctx(object));
196 }
197
198 int
199 _nouveau_engctx_init(struct nouveau_object *object)
200 {
201         return nouveau_engctx_init(nv_engctx(object));
202 }
203
204
205 int
206 _nouveau_engctx_fini(struct nouveau_object *object, bool suspend)
207 {
208         return nouveau_engctx_fini(nv_engctx(object), suspend);
209 }
210
211 struct nouveau_object *
212 nouveau_engctx_lookup(struct nouveau_engine *engine, u64 addr)
213 {
214         struct nouveau_engctx *engctx;
215
216         list_for_each_entry(engctx, &engine->contexts, head) {
217                 if (engctx->base.size &&
218                     nv_gpuobj(engctx)->addr == addr)
219                         return nv_object(engctx);
220         }
221
222         return NULL;
223 }
224
225 struct nouveau_handle *
226 nouveau_engctx_lookup_class(struct nouveau_engine *engine, u64 addr, u16 oclass)
227 {
228         struct nouveau_object *engctx = nouveau_engctx_lookup(engine, addr);
229         struct nouveau_namedb *namedb;
230
231         if (engctx && (namedb = (void *)nv_pclass(engctx, NV_NAMEDB_CLASS)))
232                 return nouveau_namedb_get_class(namedb, oclass);
233
234         return NULL;
235 }
236
237 struct nouveau_handle *
238 nouveau_engctx_lookup_vinst(struct nouveau_engine *engine, u64 addr, u64 vinst)
239 {
240         struct nouveau_object *engctx = nouveau_engctx_lookup(engine, addr);
241         struct nouveau_namedb *namedb;
242
243         if (engctx && (namedb = (void *)nv_pclass(engctx, NV_NAMEDB_CLASS)))
244                 return nouveau_namedb_get_vinst(namedb, vinst);
245
246         return NULL;
247 }
248
249 struct nouveau_handle *
250 nouveau_engctx_lookup_cinst(struct nouveau_engine *engine, u64 addr, u32 cinst)
251 {
252         struct nouveau_object *engctx = nouveau_engctx_lookup(engine, addr);
253         struct nouveau_namedb *namedb;
254
255         if (engctx && (namedb = (void *)nv_pclass(engctx, NV_NAMEDB_CLASS)))
256                 return nouveau_namedb_get_cinst(namedb, cinst);
257
258         return NULL;
259 }
260
261 void
262 nouveau_engctx_handle_put(struct nouveau_handle *handle)
263 {
264         if (handle)
265                 nouveau_namedb_put(handle);
266 }