]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/nouveau/nv50_instmem.c
UAPI: (Scripted) Convert #include "..." to #include <path/...> in drivers/gpu/
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nv50_instmem.c
1 /*
2 * Copyright (C) 2007 Ben Skeggs.
3 *
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sublicense, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial
16 * portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 */
27
28 #include <drm/drmP.h>
29
30 #include "nouveau_drv.h"
31 #include "nouveau_vm.h"
32
33 #define BAR1_VM_BASE 0x0020000000ULL
34 #define BAR1_VM_SIZE pci_resource_len(dev->pdev, 1)
35 #define BAR3_VM_BASE 0x0000000000ULL
36 #define BAR3_VM_SIZE pci_resource_len(dev->pdev, 3)
37
38 struct nv50_instmem_priv {
39 uint32_t save1700[5]; /* 0x1700->0x1710 */
40
41 struct nouveau_gpuobj *bar1_dmaobj;
42 struct nouveau_gpuobj *bar3_dmaobj;
43 };
44
45 static void
46 nv50_channel_del(struct nouveau_channel **pchan)
47 {
48 struct nouveau_channel *chan;
49
50 chan = *pchan;
51 *pchan = NULL;
52 if (!chan)
53 return;
54
55 nouveau_gpuobj_ref(NULL, &chan->ramfc);
56 nouveau_vm_ref(NULL, &chan->vm, chan->vm_pd);
57 nouveau_gpuobj_ref(NULL, &chan->vm_pd);
58 if (drm_mm_initialized(&chan->ramin_heap))
59 drm_mm_takedown(&chan->ramin_heap);
60 nouveau_gpuobj_ref(NULL, &chan->ramin);
61 kfree(chan);
62 }
63
64 static int
65 nv50_channel_new(struct drm_device *dev, u32 size, struct nouveau_vm *vm,
66 struct nouveau_channel **pchan)
67 {
68 struct drm_nouveau_private *dev_priv = dev->dev_private;
69 u32 pgd = (dev_priv->chipset == 0x50) ? 0x1400 : 0x0200;
70 u32 fc = (dev_priv->chipset == 0x50) ? 0x0000 : 0x4200;
71 struct nouveau_channel *chan;
72 int ret, i;
73
74 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
75 if (!chan)
76 return -ENOMEM;
77 chan->dev = dev;
78
79 ret = nouveau_gpuobj_new(dev, NULL, size, 0x1000, 0, &chan->ramin);
80 if (ret) {
81 nv50_channel_del(&chan);
82 return ret;
83 }
84
85 ret = drm_mm_init(&chan->ramin_heap, 0x6000, chan->ramin->size - 0x6000);
86 if (ret) {
87 nv50_channel_del(&chan);
88 return ret;
89 }
90
91 ret = nouveau_gpuobj_new_fake(dev, chan->ramin->pinst == ~0 ? ~0 :
92 chan->ramin->pinst + pgd,
93 chan->ramin->vinst + pgd,
94 0x4000, NVOBJ_FLAG_ZERO_ALLOC,
95 &chan->vm_pd);
96 if (ret) {
97 nv50_channel_del(&chan);
98 return ret;
99 }
100
101 for (i = 0; i < 0x4000; i += 8) {
102 nv_wo32(chan->vm_pd, i + 0, 0x00000000);
103 nv_wo32(chan->vm_pd, i + 4, 0xdeadcafe);
104 }
105
106 ret = nouveau_vm_ref(vm, &chan->vm, chan->vm_pd);
107 if (ret) {
108 nv50_channel_del(&chan);
109 return ret;
110 }
111
112 ret = nouveau_gpuobj_new_fake(dev, chan->ramin->pinst == ~0 ? ~0 :
113 chan->ramin->pinst + fc,
114 chan->ramin->vinst + fc, 0x100,
115 NVOBJ_FLAG_ZERO_ALLOC, &chan->ramfc);
116 if (ret) {
117 nv50_channel_del(&chan);
118 return ret;
119 }
120
121 *pchan = chan;
122 return 0;
123 }
124
125 int
126 nv50_instmem_init(struct drm_device *dev)
127 {
128 struct drm_nouveau_private *dev_priv = dev->dev_private;
129 struct nv50_instmem_priv *priv;
130 struct nouveau_channel *chan;
131 struct nouveau_vm *vm;
132 int ret, i;
133 u32 tmp;
134
135 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
136 if (!priv)
137 return -ENOMEM;
138 dev_priv->engine.instmem.priv = priv;
139
140 /* Save state, will restore at takedown. */
141 for (i = 0x1700; i <= 0x1710; i += 4)
142 priv->save1700[(i-0x1700)/4] = nv_rd32(dev, i);
143
144 /* Global PRAMIN heap */
145 ret = drm_mm_init(&dev_priv->ramin_heap, 0, dev_priv->ramin_size);
146 if (ret) {
147 NV_ERROR(dev, "Failed to init RAMIN heap\n");
148 goto error;
149 }
150
151 /* BAR3 */
152 ret = nouveau_vm_new(dev, BAR3_VM_BASE, BAR3_VM_SIZE, BAR3_VM_BASE,
153 &dev_priv->bar3_vm);
154 if (ret)
155 goto error;
156
157 ret = nouveau_gpuobj_new(dev, NULL, (BAR3_VM_SIZE >> 12) * 8,
158 0x1000, NVOBJ_FLAG_DONT_MAP |
159 NVOBJ_FLAG_ZERO_ALLOC,
160 &dev_priv->bar3_vm->pgt[0].obj[0]);
161 if (ret)
162 goto error;
163 dev_priv->bar3_vm->pgt[0].refcount[0] = 1;
164
165 nv50_instmem_map(dev_priv->bar3_vm->pgt[0].obj[0]);
166
167 ret = nv50_channel_new(dev, 128 * 1024, dev_priv->bar3_vm, &chan);
168 if (ret)
169 goto error;
170 dev_priv->channels.ptr[0] = dev_priv->channels.ptr[127] = chan;
171
172 ret = nv50_gpuobj_dma_new(chan, 0x0000, BAR3_VM_BASE, BAR3_VM_SIZE,
173 NV_MEM_TARGET_VM, NV_MEM_ACCESS_VM,
174 NV_MEM_TYPE_VM, NV_MEM_COMP_VM,
175 &priv->bar3_dmaobj);
176 if (ret)
177 goto error;
178
179 nv_wr32(dev, 0x001704, 0x00000000 | (chan->ramin->vinst >> 12));
180 nv_wr32(dev, 0x001704, 0x40000000 | (chan->ramin->vinst >> 12));
181 nv_wr32(dev, 0x00170c, 0x80000000 | (priv->bar3_dmaobj->cinst >> 4));
182
183 dev_priv->engine.instmem.flush(dev);
184 dev_priv->ramin_available = true;
185
186 tmp = nv_ro32(chan->ramin, 0);
187 nv_wo32(chan->ramin, 0, ~tmp);
188 if (nv_ro32(chan->ramin, 0) != ~tmp) {
189 NV_ERROR(dev, "PRAMIN readback failed\n");
190 ret = -EIO;
191 goto error;
192 }
193 nv_wo32(chan->ramin, 0, tmp);
194
195 /* BAR1 */
196 ret = nouveau_vm_new(dev, BAR1_VM_BASE, BAR1_VM_SIZE, BAR1_VM_BASE, &vm);
197 if (ret)
198 goto error;
199
200 ret = nouveau_vm_ref(vm, &dev_priv->bar1_vm, chan->vm_pd);
201 if (ret)
202 goto error;
203 nouveau_vm_ref(NULL, &vm, NULL);
204
205 ret = nv50_gpuobj_dma_new(chan, 0x0000, BAR1_VM_BASE, BAR1_VM_SIZE,
206 NV_MEM_TARGET_VM, NV_MEM_ACCESS_VM,
207 NV_MEM_TYPE_VM, NV_MEM_COMP_VM,
208 &priv->bar1_dmaobj);
209 if (ret)
210 goto error;
211
212 nv_wr32(dev, 0x001708, 0x80000000 | (priv->bar1_dmaobj->cinst >> 4));
213 for (i = 0; i < 8; i++)
214 nv_wr32(dev, 0x1900 + (i*4), 0);
215
216 /* Create shared channel VM, space is reserved at the beginning
217 * to catch "NULL pointer" references
218 */
219 ret = nouveau_vm_new(dev, 0, (1ULL << 40), 0x0020000000ULL,
220 &dev_priv->chan_vm);
221 if (ret)
222 return ret;
223
224 return 0;
225
226 error:
227 nv50_instmem_takedown(dev);
228 return ret;
229 }
230
231 void
232 nv50_instmem_takedown(struct drm_device *dev)
233 {
234 struct drm_nouveau_private *dev_priv = dev->dev_private;
235 struct nv50_instmem_priv *priv = dev_priv->engine.instmem.priv;
236 struct nouveau_channel *chan = dev_priv->channels.ptr[0];
237 int i;
238
239 NV_DEBUG(dev, "\n");
240
241 if (!priv)
242 return;
243
244 dev_priv->ramin_available = false;
245
246 nouveau_vm_ref(NULL, &dev_priv->chan_vm, NULL);
247
248 for (i = 0x1700; i <= 0x1710; i += 4)
249 nv_wr32(dev, i, priv->save1700[(i - 0x1700) / 4]);
250
251 nouveau_gpuobj_ref(NULL, &priv->bar3_dmaobj);
252 nouveau_gpuobj_ref(NULL, &priv->bar1_dmaobj);
253
254 nouveau_vm_ref(NULL, &dev_priv->bar1_vm, chan->vm_pd);
255 dev_priv->channels.ptr[127] = 0;
256 nv50_channel_del(&dev_priv->channels.ptr[0]);
257
258 nouveau_gpuobj_ref(NULL, &dev_priv->bar3_vm->pgt[0].obj[0]);
259 nouveau_vm_ref(NULL, &dev_priv->bar3_vm, NULL);
260
261 if (drm_mm_initialized(&dev_priv->ramin_heap))
262 drm_mm_takedown(&dev_priv->ramin_heap);
263
264 dev_priv->engine.instmem.priv = NULL;
265 kfree(priv);
266 }
267
268 int
269 nv50_instmem_suspend(struct drm_device *dev)
270 {
271 struct drm_nouveau_private *dev_priv = dev->dev_private;
272
273 dev_priv->ramin_available = false;
274 return 0;
275 }
276
277 void
278 nv50_instmem_resume(struct drm_device *dev)
279 {
280 struct drm_nouveau_private *dev_priv = dev->dev_private;
281 struct nv50_instmem_priv *priv = dev_priv->engine.instmem.priv;
282 struct nouveau_channel *chan = dev_priv->channels.ptr[0];
283 int i;
284
285 /* Poke the relevant regs, and pray it works :) */
286 nv_wr32(dev, NV50_PUNK_BAR_CFG_BASE, (chan->ramin->vinst >> 12));
287 nv_wr32(dev, NV50_PUNK_UNK1710, 0);
288 nv_wr32(dev, NV50_PUNK_BAR_CFG_BASE, (chan->ramin->vinst >> 12) |
289 NV50_PUNK_BAR_CFG_BASE_VALID);
290 nv_wr32(dev, NV50_PUNK_BAR1_CTXDMA, (priv->bar1_dmaobj->cinst >> 4) |
291 NV50_PUNK_BAR1_CTXDMA_VALID);
292 nv_wr32(dev, NV50_PUNK_BAR3_CTXDMA, (priv->bar3_dmaobj->cinst >> 4) |
293 NV50_PUNK_BAR3_CTXDMA_VALID);
294
295 for (i = 0; i < 8; i++)
296 nv_wr32(dev, 0x1900 + (i*4), 0);
297
298 dev_priv->ramin_available = true;
299 }
300
301 struct nv50_gpuobj_node {
302 struct nouveau_mem *vram;
303 struct nouveau_vma chan_vma;
304 u32 align;
305 };
306
307 int
308 nv50_instmem_get(struct nouveau_gpuobj *gpuobj, struct nouveau_channel *chan,
309 u32 size, u32 align)
310 {
311 struct drm_device *dev = gpuobj->dev;
312 struct drm_nouveau_private *dev_priv = dev->dev_private;
313 struct nouveau_vram_engine *vram = &dev_priv->engine.vram;
314 struct nv50_gpuobj_node *node = NULL;
315 int ret;
316
317 node = kzalloc(sizeof(*node), GFP_KERNEL);
318 if (!node)
319 return -ENOMEM;
320 node->align = align;
321
322 size = (size + 4095) & ~4095;
323 align = max(align, (u32)4096);
324
325 ret = vram->get(dev, size, align, 0, 0, &node->vram);
326 if (ret) {
327 kfree(node);
328 return ret;
329 }
330
331 gpuobj->vinst = node->vram->offset;
332
333 if (gpuobj->flags & NVOBJ_FLAG_VM) {
334 u32 flags = NV_MEM_ACCESS_RW;
335 if (!(gpuobj->flags & NVOBJ_FLAG_VM_USER))
336 flags |= NV_MEM_ACCESS_SYS;
337
338 ret = nouveau_vm_get(chan->vm, size, 12, flags,
339 &node->chan_vma);
340 if (ret) {
341 vram->put(dev, &node->vram);
342 kfree(node);
343 return ret;
344 }
345
346 nouveau_vm_map(&node->chan_vma, node->vram);
347 gpuobj->linst = node->chan_vma.offset;
348 }
349
350 gpuobj->size = size;
351 gpuobj->node = node;
352 return 0;
353 }
354
355 void
356 nv50_instmem_put(struct nouveau_gpuobj *gpuobj)
357 {
358 struct drm_device *dev = gpuobj->dev;
359 struct drm_nouveau_private *dev_priv = dev->dev_private;
360 struct nouveau_vram_engine *vram = &dev_priv->engine.vram;
361 struct nv50_gpuobj_node *node;
362
363 node = gpuobj->node;
364 gpuobj->node = NULL;
365
366 if (node->chan_vma.node) {
367 nouveau_vm_unmap(&node->chan_vma);
368 nouveau_vm_put(&node->chan_vma);
369 }
370 vram->put(dev, &node->vram);
371 kfree(node);
372 }
373
374 int
375 nv50_instmem_map(struct nouveau_gpuobj *gpuobj)
376 {
377 struct drm_nouveau_private *dev_priv = gpuobj->dev->dev_private;
378 struct nv50_gpuobj_node *node = gpuobj->node;
379 int ret;
380
381 ret = nouveau_vm_get(dev_priv->bar3_vm, gpuobj->size, 12,
382 NV_MEM_ACCESS_RW, &node->vram->bar_vma);
383 if (ret)
384 return ret;
385
386 nouveau_vm_map(&node->vram->bar_vma, node->vram);
387 gpuobj->pinst = node->vram->bar_vma.offset;
388 return 0;
389 }
390
391 void
392 nv50_instmem_unmap(struct nouveau_gpuobj *gpuobj)
393 {
394 struct nv50_gpuobj_node *node = gpuobj->node;
395
396 if (node->vram->bar_vma.node) {
397 nouveau_vm_unmap(&node->vram->bar_vma);
398 nouveau_vm_put(&node->vram->bar_vma);
399 }
400 }
401
402 void
403 nv50_instmem_flush(struct drm_device *dev)
404 {
405 struct drm_nouveau_private *dev_priv = dev->dev_private;
406 unsigned long flags;
407
408 spin_lock_irqsave(&dev_priv->vm_lock, flags);
409 nv_wr32(dev, 0x00330c, 0x00000001);
410 if (!nv_wait(dev, 0x00330c, 0x00000002, 0x00000000))
411 NV_ERROR(dev, "PRAMIN flush timeout\n");
412 spin_unlock_irqrestore(&dev_priv->vm_lock, flags);
413 }
414
415 void
416 nv84_instmem_flush(struct drm_device *dev)
417 {
418 struct drm_nouveau_private *dev_priv = dev->dev_private;
419 unsigned long flags;
420
421 spin_lock_irqsave(&dev_priv->vm_lock, flags);
422 nv_wr32(dev, 0x070000, 0x00000001);
423 if (!nv_wait(dev, 0x070000, 0x00000002, 0x00000000))
424 NV_ERROR(dev, "PRAMIN flush timeout\n");
425 spin_unlock_irqrestore(&dev_priv->vm_lock, flags);
426 }
427