]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nv50_evo.c
d7d8080c6a144c4d6b15cfa2bd33aa0ba6d44bda
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nv50_evo.c
1 /*
2  * Copyright 2010 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 "drmP.h"
26
27 #include "nouveau_drv.h"
28 #include "nouveau_dma.h"
29 #include "nv50_display.h"
30
31 static u32
32 nv50_evo_rd32(struct nouveau_object *object, u32 addr)
33 {
34         void __iomem *iomem = object->oclass->ofuncs->rd08;
35         return ioread32_native(iomem + addr);
36 }
37
38 static void
39 nv50_evo_wr32(struct nouveau_object *object, u32 addr, u32 data)
40 {
41         void __iomem *iomem = object->oclass->ofuncs->rd08;
42         iowrite32_native(data, iomem + addr);
43 }
44
45 static void
46 nv50_evo_channel_del(struct nouveau_channel **pevo)
47 {
48         struct nouveau_channel *evo = *pevo;
49
50         if (!evo)
51                 return;
52         *pevo = NULL;
53
54         nouveau_bo_unmap(evo->push.buffer);
55         nouveau_bo_ref(NULL, &evo->push.buffer);
56
57         if (evo->object)
58                 iounmap(evo->object->oclass->ofuncs);
59
60         kfree(evo);
61 }
62
63 int
64 nv50_evo_dmaobj_new(struct nouveau_channel *evo, u32 handle, u32 memtype,
65                     u64 base, u64 size, struct nouveau_gpuobj **pobj)
66 {
67         struct drm_device *dev = evo->fence;
68         struct drm_nouveau_private *dev_priv = dev->dev_private;
69         struct nv50_display *disp = nv50_display(dev);
70         u32 dmao = disp->dmao;
71         u32 hash = disp->hash;
72         u32 flags5;
73
74         if (dev_priv->chipset < 0xc0) {
75                 /* not supported on 0x50, specified in format mthd */
76                 if (dev_priv->chipset == 0x50)
77                         memtype = 0;
78                 flags5 = 0x00010000;
79         } else {
80                 if (memtype & 0x80000000)
81                         flags5 = 0x00000000; /* large pages */
82                 else
83                         flags5 = 0x00020000;
84         }
85
86         nv_wo32(disp->ramin, dmao + 0x00, 0x0019003d | (memtype << 22));
87         nv_wo32(disp->ramin, dmao + 0x04, lower_32_bits(base + size - 1));
88         nv_wo32(disp->ramin, dmao + 0x08, lower_32_bits(base));
89         nv_wo32(disp->ramin, dmao + 0x0c, upper_32_bits(base + size - 1) << 24 |
90                                           upper_32_bits(base));
91         nv_wo32(disp->ramin, dmao + 0x10, 0x00000000);
92         nv_wo32(disp->ramin, dmao + 0x14, flags5);
93
94         nv_wo32(disp->ramin, hash + 0x00, handle);
95         nv_wo32(disp->ramin, hash + 0x04, (evo->handle << 28) | (dmao << 10) |
96                                            evo->handle);
97
98         disp->dmao += 0x20;
99         disp->hash += 0x08;
100         return 0;
101 }
102
103 static int
104 nv50_evo_channel_new(struct drm_device *dev, int chid,
105                      struct nouveau_channel **pevo)
106 {
107         struct nv50_display *disp = nv50_display(dev);
108         struct nouveau_channel *evo;
109         int ret;
110
111         evo = kzalloc(sizeof(struct nouveau_channel), GFP_KERNEL);
112         if (!evo)
113                 return -ENOMEM;
114         *pevo = evo;
115
116         evo->handle = chid;
117         evo->fence = dev;
118         evo->user_get = 4;
119         evo->user_put = 0;
120
121         ret = nouveau_bo_new(dev, 4096, 0, TTM_PL_FLAG_VRAM, 0, 0, NULL,
122                              &evo->push.buffer);
123         if (ret == 0)
124                 ret = nouveau_bo_pin(evo->push.buffer, TTM_PL_FLAG_VRAM);
125         if (ret) {
126                 NV_ERROR(dev, "Error creating EVO DMA push buffer: %d\n", ret);
127                 nv50_evo_channel_del(pevo);
128                 return ret;
129         }
130
131         ret = nouveau_bo_map(evo->push.buffer);
132         if (ret) {
133                 NV_ERROR(dev, "Error mapping EVO DMA push buffer: %d\n", ret);
134                 nv50_evo_channel_del(pevo);
135                 return ret;
136         }
137
138         evo->object = kzalloc(sizeof(*evo->object), GFP_KERNEL);
139 #ifdef NOUVEAU_OBJECT_MAGIC
140         evo->object->_magic = NOUVEAU_OBJECT_MAGIC;
141 #endif
142         evo->object->parent = nv_object(disp->ramin)->parent;
143         evo->object->engine = nv_object(disp->ramin)->engine;
144         evo->object->oclass =
145                 kzalloc(sizeof(*evo->object->oclass), GFP_KERNEL);
146         evo->object->oclass->ofuncs =
147                 kzalloc(sizeof(*evo->object->oclass->ofuncs), GFP_KERNEL);
148         evo->object->oclass->ofuncs->rd32 = nv50_evo_rd32;
149         evo->object->oclass->ofuncs->wr32 = nv50_evo_wr32;
150         evo->object->oclass->ofuncs->rd08 =
151                 ioremap(pci_resource_start(dev->pdev, 0) +
152                         NV50_PDISPLAY_USER(evo->handle), PAGE_SIZE);
153         return 0;
154 }
155
156 static int
157 nv50_evo_channel_init(struct nouveau_channel *evo)
158 {
159         struct drm_device *dev = evo->fence;
160         int id = evo->handle, ret, i;
161         u64 pushbuf = evo->push.buffer->bo.offset;
162         u32 tmp;
163
164         tmp = nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id));
165         if ((tmp & 0x009f0000) == 0x00020000)
166                 nv_wr32(dev, NV50_PDISPLAY_EVO_CTRL(id), tmp | 0x00800000);
167
168         tmp = nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id));
169         if ((tmp & 0x003f0000) == 0x00030000)
170                 nv_wr32(dev, NV50_PDISPLAY_EVO_CTRL(id), tmp | 0x00600000);
171
172         /* initialise fifo */
173         nv_wr32(dev, NV50_PDISPLAY_EVO_DMA_CB(id), pushbuf >> 8 |
174                      NV50_PDISPLAY_EVO_DMA_CB_LOCATION_VRAM |
175                      NV50_PDISPLAY_EVO_DMA_CB_VALID);
176         nv_wr32(dev, NV50_PDISPLAY_EVO_UNK2(id), 0x00010000);
177         nv_wr32(dev, NV50_PDISPLAY_EVO_HASH_TAG(id), id);
178         nv_mask(dev, NV50_PDISPLAY_EVO_CTRL(id), NV50_PDISPLAY_EVO_CTRL_DMA,
179                      NV50_PDISPLAY_EVO_CTRL_DMA_ENABLED);
180
181         nv_wr32(dev, NV50_PDISPLAY_USER_PUT(id), 0x00000000);
182         nv_wr32(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x01000003 |
183                      NV50_PDISPLAY_EVO_CTRL_DMA_ENABLED);
184         if (!nv_wait(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x80000000, 0x00000000)) {
185                 NV_ERROR(dev, "EvoCh %d init timeout: 0x%08x\n", id,
186                          nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id)));
187                 return -EBUSY;
188         }
189
190         /* enable error reporting on the channel */
191         nv_mask(dev, 0x610028, 0x00000000, 0x00010001 << id);
192
193         evo->dma.max = (4096/4) - 2;
194         evo->dma.max &= ~7;
195         evo->dma.put = 0;
196         evo->dma.cur = evo->dma.put;
197         evo->dma.free = evo->dma.max - evo->dma.cur;
198
199         ret = RING_SPACE(evo, NOUVEAU_DMA_SKIPS);
200         if (ret)
201                 return ret;
202
203         for (i = 0; i < NOUVEAU_DMA_SKIPS; i++)
204                 OUT_RING(evo, 0);
205
206         return 0;
207 }
208
209 static void
210 nv50_evo_channel_fini(struct nouveau_channel *evo)
211 {
212         struct drm_device *dev = evo->fence;
213         int id = evo->handle;
214
215         nv_mask(dev, 0x610028, 0x00010001 << id, 0x00000000);
216         nv_mask(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x00001010, 0x00001000);
217         nv_wr32(dev, NV50_PDISPLAY_INTR_0, (1 << id));
218         nv_mask(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x00000003, 0x00000000);
219         if (!nv_wait(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x001e0000, 0x00000000)) {
220                 NV_ERROR(dev, "EvoCh %d takedown timeout: 0x%08x\n", id,
221                          nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id)));
222         }
223 }
224
225 void
226 nv50_evo_destroy(struct drm_device *dev)
227 {
228         struct nv50_display *disp = nv50_display(dev);
229         int i;
230
231         for (i = 0; i < 2; i++) {
232                 if (disp->crtc[i].sem.bo) {
233                         nouveau_bo_unmap(disp->crtc[i].sem.bo);
234                         nouveau_bo_ref(NULL, &disp->crtc[i].sem.bo);
235                 }
236                 nv50_evo_channel_del(&disp->crtc[i].sync);
237         }
238         nv50_evo_channel_del(&disp->master);
239         nouveau_gpuobj_ref(NULL, &disp->ramin);
240 }
241
242 int
243 nv50_evo_create(struct drm_device *dev)
244 {
245         struct drm_nouveau_private *dev_priv = dev->dev_private;
246         struct nv50_display *disp = nv50_display(dev);
247         struct nouveau_channel *evo;
248         int ret, i, j;
249
250         /* setup object management on it, any other evo channel will
251          * use this also as there's no per-channel support on the
252          * hardware
253          */
254         ret = nouveau_gpuobj_new(dev, NULL, 32768, 65536,
255                                  NVOBJ_FLAG_ZERO_ALLOC, &disp->ramin);
256         if (ret) {
257                 NV_ERROR(dev, "Error allocating EVO channel memory: %d\n", ret);
258                 goto err;
259         }
260
261         disp->hash = 0x0000;
262         disp->dmao = 0x1000;
263
264         /* create primary evo channel, the one we use for modesetting
265          * purporses
266          */
267         ret = nv50_evo_channel_new(dev, 0, &disp->master);
268         if (ret)
269                 return ret;
270         evo = disp->master;
271
272         ret = nv50_evo_dmaobj_new(disp->master, NvEvoSync, 0x0000,
273                                   disp->ramin->addr + 0x2000, 0x1000, NULL);
274         if (ret)
275                 goto err;
276
277         /* create some default objects for the scanout memtypes we support */
278         ret = nv50_evo_dmaobj_new(disp->master, NvEvoVRAM, 0x0000,
279                                   0, nvfb_vram_size(dev), NULL);
280         if (ret)
281                 goto err;
282
283         ret = nv50_evo_dmaobj_new(disp->master, NvEvoVRAM_LP, 0x80000000,
284                                   0, nvfb_vram_size(dev), NULL);
285         if (ret)
286                 goto err;
287
288         ret = nv50_evo_dmaobj_new(disp->master, NvEvoFB32, 0x80000000 |
289                                   (dev_priv->chipset < 0xc0 ? 0x7a : 0xfe),
290                                   0, nvfb_vram_size(dev), NULL);
291         if (ret)
292                 goto err;
293
294         ret = nv50_evo_dmaobj_new(disp->master, NvEvoFB16, 0x80000000 |
295                                   (dev_priv->chipset < 0xc0 ? 0x70 : 0xfe),
296                                   0, nvfb_vram_size(dev), NULL);
297         if (ret)
298                 goto err;
299
300         /* create "display sync" channels and other structures we need
301          * to implement page flipping
302          */
303         for (i = 0; i < 2; i++) {
304                 struct nv50_display_crtc *dispc = &disp->crtc[i];
305                 u64 offset;
306
307                 ret = nv50_evo_channel_new(dev, 1 + i, &dispc->sync);
308                 if (ret)
309                         goto err;
310
311                 ret = nouveau_bo_new(dev, 4096, 0x1000, TTM_PL_FLAG_VRAM,
312                                      0, 0x0000, NULL, &dispc->sem.bo);
313                 if (!ret) {
314                         ret = nouveau_bo_pin(dispc->sem.bo, TTM_PL_FLAG_VRAM);
315                         if (!ret)
316                                 ret = nouveau_bo_map(dispc->sem.bo);
317                         if (ret)
318                                 nouveau_bo_ref(NULL, &dispc->sem.bo);
319                         offset = dispc->sem.bo->bo.offset;
320                 }
321
322                 if (ret)
323                         goto err;
324
325                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoSync, 0x0000,
326                                           offset, 4096, NULL);
327                 if (ret)
328                         goto err;
329
330                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoVRAM_LP, 0x80000000,
331                                           0, nvfb_vram_size(dev), NULL);
332                 if (ret)
333                         goto err;
334
335                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoFB32, 0x80000000 |
336                                           (dev_priv->chipset < 0xc0 ?
337                                           0x7a : 0xfe),
338                                           0, nvfb_vram_size(dev), NULL);
339                 if (ret)
340                         goto err;
341
342                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoFB16, 0x80000000 |
343                                           (dev_priv->chipset < 0xc0 ?
344                                           0x70 : 0xfe),
345                                           0, nvfb_vram_size(dev), NULL);
346                 if (ret)
347                         goto err;
348
349                 for (j = 0; j < 4096; j += 4)
350                         nouveau_bo_wr32(dispc->sem.bo, j / 4, 0x74b1e000);
351                 dispc->sem.offset = 0;
352         }
353
354         return 0;
355
356 err:
357         nv50_evo_destroy(dev);
358         return ret;
359 }
360
361 int
362 nv50_evo_init(struct drm_device *dev)
363 {
364         struct nv50_display *disp = nv50_display(dev);
365         int ret, i;
366
367         ret = nv50_evo_channel_init(disp->master);
368         if (ret)
369                 return ret;
370
371         for (i = 0; i < 2; i++) {
372                 ret = nv50_evo_channel_init(disp->crtc[i].sync);
373                 if (ret)
374                         return ret;
375         }
376
377         return 0;
378 }
379
380 void
381 nv50_evo_fini(struct drm_device *dev)
382 {
383         struct nv50_display *disp = nv50_display(dev);
384         int i;
385
386         for (i = 0; i < 2; i++) {
387                 if (disp->crtc[i].sync)
388                         nv50_evo_channel_fini(disp->crtc[i].sync);
389         }
390
391         if (disp->master)
392                 nv50_evo_channel_fini(disp->master);
393 }