UBIFS: fix compilation warnings when compiling with gcc 4.5
[pandora-kernel.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 "nouveau_ramht.h"
30 #include "nv50_display.h"
31
32 static void
33 nv50_evo_channel_del(struct nouveau_channel **pevo)
34 {
35         struct nouveau_channel *evo = *pevo;
36
37         if (!evo)
38                 return;
39         *pevo = NULL;
40
41         nouveau_gpuobj_channel_takedown(evo);
42         nouveau_bo_unmap(evo->pushbuf_bo);
43         nouveau_bo_ref(NULL, &evo->pushbuf_bo);
44
45         if (evo->user)
46                 iounmap(evo->user);
47
48         kfree(evo);
49 }
50
51 void
52 nv50_evo_dmaobj_init(struct nouveau_gpuobj *obj, u32 memtype, u64 base, u64 size)
53 {
54         struct drm_nouveau_private *dev_priv = obj->dev->dev_private;
55         u32 flags5;
56
57         if (dev_priv->chipset < 0xc0) {
58                 /* not supported on 0x50, specified in format mthd */
59                 if (dev_priv->chipset == 0x50)
60                         memtype = 0;
61                 flags5 = 0x00010000;
62         } else {
63                 if (memtype & 0x80000000)
64                         flags5 = 0x00000000; /* large pages */
65                 else
66                         flags5 = 0x00020000;
67         }
68
69         nv50_gpuobj_dma_init(obj, 0, 0x3d, base, size, NV_MEM_TARGET_VRAM,
70                              NV_MEM_ACCESS_RW, (memtype >> 8) & 0xff, 0);
71         nv_wo32(obj, 0x14, flags5);
72         dev_priv->engine.instmem.flush(obj->dev);
73 }
74
75 int
76 nv50_evo_dmaobj_new(struct nouveau_channel *evo, u32 handle, u32 memtype,
77                     u64 base, u64 size, struct nouveau_gpuobj **pobj)
78 {
79         struct nv50_display *disp = nv50_display(evo->dev);
80         struct nouveau_gpuobj *obj = NULL;
81         int ret;
82
83         ret = nouveau_gpuobj_new(evo->dev, disp->master, 6*4, 32, 0, &obj);
84         if (ret)
85                 return ret;
86         obj->engine = NVOBJ_ENGINE_DISPLAY;
87
88         nv50_evo_dmaobj_init(obj, memtype, base, size);
89
90         ret = nouveau_ramht_insert(evo, handle, obj);
91         if (ret)
92                 goto out;
93
94         if (pobj)
95                 nouveau_gpuobj_ref(obj, pobj);
96 out:
97         nouveau_gpuobj_ref(NULL, &obj);
98         return ret;
99 }
100
101 static int
102 nv50_evo_channel_new(struct drm_device *dev, int chid,
103                      struct nouveau_channel **pevo)
104 {
105         struct nv50_display *disp = nv50_display(dev);
106         struct nouveau_channel *evo;
107         int ret;
108
109         evo = kzalloc(sizeof(struct nouveau_channel), GFP_KERNEL);
110         if (!evo)
111                 return -ENOMEM;
112         *pevo = evo;
113
114         evo->id = chid;
115         evo->dev = dev;
116         evo->user_get = 4;
117         evo->user_put = 0;
118
119         ret = nouveau_bo_new(dev, NULL, 4096, 0, TTM_PL_FLAG_VRAM, 0, 0,
120                              &evo->pushbuf_bo);
121         if (ret == 0)
122                 ret = nouveau_bo_pin(evo->pushbuf_bo, TTM_PL_FLAG_VRAM);
123         if (ret) {
124                 NV_ERROR(dev, "Error creating EVO DMA push buffer: %d\n", ret);
125                 nv50_evo_channel_del(pevo);
126                 return ret;
127         }
128
129         ret = nouveau_bo_map(evo->pushbuf_bo);
130         if (ret) {
131                 NV_ERROR(dev, "Error mapping EVO DMA push buffer: %d\n", ret);
132                 nv50_evo_channel_del(pevo);
133                 return ret;
134         }
135
136         evo->user = ioremap(pci_resource_start(dev->pdev, 0) +
137                             NV50_PDISPLAY_USER(evo->id), PAGE_SIZE);
138         if (!evo->user) {
139                 NV_ERROR(dev, "Error mapping EVO control regs.\n");
140                 nv50_evo_channel_del(pevo);
141                 return -ENOMEM;
142         }
143
144         /* bind primary evo channel's ramht to the channel */
145         if (disp->master && evo != disp->master)
146                 nouveau_ramht_ref(disp->master->ramht, &evo->ramht, NULL);
147
148         return 0;
149 }
150
151 static int
152 nv50_evo_channel_init(struct nouveau_channel *evo)
153 {
154         struct drm_device *dev = evo->dev;
155         int id = evo->id, ret, i;
156         u64 pushbuf = evo->pushbuf_bo->bo.mem.start << PAGE_SHIFT;
157         u32 tmp;
158
159         tmp = nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id));
160         if ((tmp & 0x009f0000) == 0x00020000)
161                 nv_wr32(dev, NV50_PDISPLAY_EVO_CTRL(id), tmp | 0x00800000);
162
163         tmp = nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id));
164         if ((tmp & 0x003f0000) == 0x00030000)
165                 nv_wr32(dev, NV50_PDISPLAY_EVO_CTRL(id), tmp | 0x00600000);
166
167         /* initialise fifo */
168         nv_wr32(dev, NV50_PDISPLAY_EVO_DMA_CB(id), pushbuf >> 8 |
169                      NV50_PDISPLAY_EVO_DMA_CB_LOCATION_VRAM |
170                      NV50_PDISPLAY_EVO_DMA_CB_VALID);
171         nv_wr32(dev, NV50_PDISPLAY_EVO_UNK2(id), 0x00010000);
172         nv_wr32(dev, NV50_PDISPLAY_EVO_HASH_TAG(id), id);
173         nv_mask(dev, NV50_PDISPLAY_EVO_CTRL(id), NV50_PDISPLAY_EVO_CTRL_DMA,
174                      NV50_PDISPLAY_EVO_CTRL_DMA_ENABLED);
175
176         nv_wr32(dev, NV50_PDISPLAY_USER_PUT(id), 0x00000000);
177         nv_wr32(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x01000003 |
178                      NV50_PDISPLAY_EVO_CTRL_DMA_ENABLED);
179         if (!nv_wait(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x80000000, 0x00000000)) {
180                 NV_ERROR(dev, "EvoCh %d init timeout: 0x%08x\n", id,
181                          nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id)));
182                 return -EBUSY;
183         }
184
185         /* enable error reporting on the channel */
186         nv_mask(dev, 0x610028, 0x00000000, 0x00010001 << id);
187
188         evo->dma.max = (4096/4) - 2;
189         evo->dma.put = 0;
190         evo->dma.cur = evo->dma.put;
191         evo->dma.free = evo->dma.max - evo->dma.cur;
192
193         ret = RING_SPACE(evo, NOUVEAU_DMA_SKIPS);
194         if (ret)
195                 return ret;
196
197         for (i = 0; i < NOUVEAU_DMA_SKIPS; i++)
198                 OUT_RING(evo, 0);
199
200         return 0;
201 }
202
203 static void
204 nv50_evo_channel_fini(struct nouveau_channel *evo)
205 {
206         struct drm_device *dev = evo->dev;
207         int id = evo->id;
208
209         nv_mask(dev, 0x610028, 0x00010001 << id, 0x00000000);
210         nv_mask(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x00001010, 0x00001000);
211         nv_wr32(dev, NV50_PDISPLAY_INTR_0, (1 << id));
212         nv_mask(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x00000003, 0x00000000);
213         if (!nv_wait(dev, NV50_PDISPLAY_EVO_CTRL(id), 0x001e0000, 0x00000000)) {
214                 NV_ERROR(dev, "EvoCh %d takedown timeout: 0x%08x\n", id,
215                          nv_rd32(dev, NV50_PDISPLAY_EVO_CTRL(id)));
216         }
217 }
218
219 static void
220 nv50_evo_destroy(struct drm_device *dev)
221 {
222         struct nv50_display *disp = nv50_display(dev);
223         int i;
224
225         for (i = 0; i < 2; i++) {
226                 if (disp->crtc[i].sem.bo) {
227                         nouveau_bo_unmap(disp->crtc[i].sem.bo);
228                         nouveau_bo_ref(NULL, &disp->crtc[i].sem.bo);
229                 }
230                 nv50_evo_channel_del(&disp->crtc[i].sync);
231         }
232         nouveau_gpuobj_ref(NULL, &disp->ntfy);
233         nv50_evo_channel_del(&disp->master);
234 }
235
236 static int
237 nv50_evo_create(struct drm_device *dev)
238 {
239         struct drm_nouveau_private *dev_priv = dev->dev_private;
240         struct nv50_display *disp = nv50_display(dev);
241         struct nouveau_gpuobj *ramht = NULL;
242         struct nouveau_channel *evo;
243         int ret, i, j;
244
245         /* create primary evo channel, the one we use for modesetting
246          * purporses
247          */
248         ret = nv50_evo_channel_new(dev, 0, &disp->master);
249         if (ret)
250                 return ret;
251         evo = disp->master;
252
253         /* setup object management on it, any other evo channel will
254          * use this also as there's no per-channel support on the
255          * hardware
256          */
257         ret = nouveau_gpuobj_new(dev, NULL, 32768, 65536,
258                                  NVOBJ_FLAG_ZERO_ALLOC, &evo->ramin);
259         if (ret) {
260                 NV_ERROR(dev, "Error allocating EVO channel memory: %d\n", ret);
261                 goto err;
262         }
263
264         ret = drm_mm_init(&evo->ramin_heap, 0, 32768);
265         if (ret) {
266                 NV_ERROR(dev, "Error initialising EVO PRAMIN heap: %d\n", ret);
267                 goto err;
268         }
269
270         ret = nouveau_gpuobj_new(dev, evo, 4096, 16, 0, &ramht);
271         if (ret) {
272                 NV_ERROR(dev, "Unable to allocate EVO RAMHT: %d\n", ret);
273                 goto err;
274         }
275
276         ret = nouveau_ramht_new(dev, ramht, &evo->ramht);
277         nouveau_gpuobj_ref(NULL, &ramht);
278         if (ret)
279                 goto err;
280
281         /* not sure exactly what this is..
282          *
283          * the first dword of the structure is used by nvidia to wait on
284          * full completion of an EVO "update" command.
285          *
286          * method 0x8c on the master evo channel will fill a lot more of
287          * this structure with some undefined info
288          */
289         ret = nouveau_gpuobj_new(dev, disp->master, 0x1000, 0,
290                                  NVOBJ_FLAG_ZERO_ALLOC, &disp->ntfy);
291         if (ret)
292                 goto err;
293
294         ret = nv50_evo_dmaobj_new(disp->master, NvEvoSync, 0x0000,
295                                   disp->ntfy->vinst, disp->ntfy->size, NULL);
296         if (ret)
297                 goto err;
298
299         /* create some default objects for the scanout memtypes we support */
300         ret = nv50_evo_dmaobj_new(disp->master, NvEvoVRAM, 0x0000,
301                                   0, dev_priv->vram_size, NULL);
302         if (ret)
303                 goto err;
304
305         ret = nv50_evo_dmaobj_new(disp->master, NvEvoVRAM_LP, 0x80000000,
306                                   0, dev_priv->vram_size, NULL);
307         if (ret)
308                 goto err;
309
310         ret = nv50_evo_dmaobj_new(disp->master, NvEvoFB32, 0x80000000 |
311                                   (dev_priv->chipset < 0xc0 ? 0x7a00 : 0xfe00),
312                                   0, dev_priv->vram_size, NULL);
313         if (ret)
314                 goto err;
315
316         ret = nv50_evo_dmaobj_new(disp->master, NvEvoFB16, 0x80000000 |
317                                   (dev_priv->chipset < 0xc0 ? 0x7000 : 0xfe00),
318                                   0, dev_priv->vram_size, NULL);
319         if (ret)
320                 goto err;
321
322         /* create "display sync" channels and other structures we need
323          * to implement page flipping
324          */
325         for (i = 0; i < 2; i++) {
326                 struct nv50_display_crtc *dispc = &disp->crtc[i];
327                 u64 offset;
328
329                 ret = nv50_evo_channel_new(dev, 1 + i, &dispc->sync);
330                 if (ret)
331                         goto err;
332
333                 ret = nouveau_bo_new(dev, NULL, 4096, 0x1000, TTM_PL_FLAG_VRAM,
334                                      0, 0x0000, &dispc->sem.bo);
335                 if (!ret) {
336                         offset = dispc->sem.bo->bo.mem.start << PAGE_SHIFT;
337
338                         ret = nouveau_bo_pin(dispc->sem.bo, TTM_PL_FLAG_VRAM);
339                         if (!ret)
340                                 ret = nouveau_bo_map(dispc->sem.bo);
341                         if (ret)
342                                 nouveau_bo_ref(NULL, &dispc->sem.bo);
343                 }
344
345                 if (ret)
346                         goto err;
347
348                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoSync, 0x0000,
349                                           offset, 4096, NULL);
350                 if (ret)
351                         goto err;
352
353                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoVRAM_LP, 0x80000000,
354                                           0, dev_priv->vram_size, NULL);
355                 if (ret)
356                         goto err;
357
358                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoFB32, 0x80000000 |
359                                           (dev_priv->chipset < 0xc0 ?
360                                           0x7a00 : 0xfe00),
361                                           0, dev_priv->vram_size, NULL);
362                 if (ret)
363                         goto err;
364
365                 ret = nv50_evo_dmaobj_new(dispc->sync, NvEvoFB16, 0x80000000 |
366                                           (dev_priv->chipset < 0xc0 ?
367                                           0x7000 : 0xfe00),
368                                           0, dev_priv->vram_size, NULL);
369                 if (ret)
370                         goto err;
371
372                 for (j = 0; j < 4096; j += 4)
373                         nouveau_bo_wr32(dispc->sem.bo, j / 4, 0x74b1e000);
374                 dispc->sem.offset = 0;
375         }
376
377         return 0;
378
379 err:
380         nv50_evo_destroy(dev);
381         return ret;
382 }
383
384 int
385 nv50_evo_init(struct drm_device *dev)
386 {
387         struct nv50_display *disp = nv50_display(dev);
388         int ret, i;
389
390         if (!disp->master) {
391                 ret = nv50_evo_create(dev);
392                 if (ret)
393                         return ret;
394         }
395
396         ret = nv50_evo_channel_init(disp->master);
397         if (ret)
398                 return ret;
399
400         for (i = 0; i < 2; i++) {
401                 ret = nv50_evo_channel_init(disp->crtc[i].sync);
402                 if (ret)
403                         return ret;
404         }
405
406         return 0;
407 }
408
409 void
410 nv50_evo_fini(struct drm_device *dev)
411 {
412         struct nv50_display *disp = nv50_display(dev);
413         int i;
414
415         for (i = 0; i < 2; i++) {
416                 if (disp->crtc[i].sync)
417                         nv50_evo_channel_fini(disp->crtc[i].sync);
418         }
419
420         if (disp->master)
421                 nv50_evo_channel_fini(disp->master);
422
423         nv50_evo_destroy(dev);
424 }