drm/nouveau/device: audit and version NVIF_CONTROL class and methods
[linux-2.6-block.git] / drivers / gpu / drm / nouveau / nv84_fence.c
CommitLineData
5e120f6e
BS
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
ebb945a9
BS
25#include "nouveau_drm.h"
26#include "nouveau_dma.h"
5e120f6e
BS
27#include "nouveau_fence.h"
28
77145f1c
BS
29#include "nv50_display.h"
30
a34caf78
BS
31u64
32nv84_fence_crtc(struct nouveau_channel *chan, int crtc)
33{
34 struct nv84_fence_chan *fctx = chan->fence;
35 return fctx->dispc_vma[crtc].offset;
36}
5e120f6e
BS
37
38static int
bba9852f 39nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
5e120f6e 40{
bba9852f 41 int ret = RING_SPACE(chan, 8);
5e120f6e
BS
42 if (ret == 0) {
43 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
0ad72863 44 OUT_RING (chan, chan->vram.handle);
e18c080f 45 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 5);
bba9852f
BS
46 OUT_RING (chan, upper_32_bits(virtual));
47 OUT_RING (chan, lower_32_bits(virtual));
48 OUT_RING (chan, sequence);
5e120f6e 49 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
e18c080f 50 OUT_RING (chan, 0x00000000);
5e120f6e
BS
51 FIRE_RING (chan);
52 }
53 return ret;
54}
55
56static int
bba9852f 57nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
5e120f6e 58{
bba9852f 59 int ret = RING_SPACE(chan, 7);
5e120f6e
BS
60 if (ret == 0) {
61 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
0ad72863 62 OUT_RING (chan, chan->vram.handle);
5e120f6e 63 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
bba9852f
BS
64 OUT_RING (chan, upper_32_bits(virtual));
65 OUT_RING (chan, lower_32_bits(virtual));
66 OUT_RING (chan, sequence);
5e120f6e
BS
67 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
68 FIRE_RING (chan);
69 }
70 return ret;
71}
72
264ce192 73static int
bba9852f
BS
74nv84_fence_emit(struct nouveau_fence *fence)
75{
76 struct nouveau_channel *chan = fence->channel;
bba9852f 77 struct nv84_fence_chan *fctx = chan->fence;
967e7bde 78 struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(chan);
264ce192
BS
79 u64 addr = fifo->chid * 16;
80
81 if (fence->sysmem)
82 addr += fctx->vma_gart.offset;
83 else
84 addr += fctx->vma.offset;
85
827520ce 86 return fctx->base.emit32(chan, addr, fence->sequence);
bba9852f
BS
87}
88
264ce192 89static int
bba9852f
BS
90nv84_fence_sync(struct nouveau_fence *fence,
91 struct nouveau_channel *prev, struct nouveau_channel *chan)
92{
bba9852f 93 struct nv84_fence_chan *fctx = chan->fence;
967e7bde 94 struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(prev);
264ce192
BS
95 u64 addr = fifo->chid * 16;
96
97 if (fence->sysmem)
98 addr += fctx->vma_gart.offset;
99 else
100 addr += fctx->vma.offset;
101
827520ce 102 return fctx->base.sync32(chan, addr, fence->sequence);
bba9852f
BS
103}
104
264ce192 105static u32
5e120f6e
BS
106nv84_fence_read(struct nouveau_channel *chan)
107{
967e7bde 108 struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(chan);
ebb945a9 109 struct nv84_fence_priv *priv = chan->drm->fence;
a34caf78 110 return nouveau_bo_rd32(priv->bo, fifo->chid * 16/4);
5e120f6e
BS
111}
112
264ce192 113static void
e193b1d4 114nv84_fence_context_del(struct nouveau_channel *chan)
5e120f6e 115{
a34caf78
BS
116 struct drm_device *dev = chan->drm->dev;
117 struct nv84_fence_priv *priv = chan->drm->fence;
e193b1d4 118 struct nv84_fence_chan *fctx = chan->fence;
a34caf78
BS
119 int i;
120
121 for (i = 0; i < dev->mode_config.num_crtc; i++) {
122 struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i);
123 nouveau_bo_vma_del(bo, &fctx->dispc_vma[i]);
124 }
125
264ce192 126 nouveau_bo_vma_del(priv->bo, &fctx->vma_gart);
a34caf78 127 nouveau_bo_vma_del(priv->bo, &fctx->vma);
5e120f6e 128 nouveau_fence_context_del(&fctx->base);
e193b1d4 129 chan->fence = NULL;
5e120f6e
BS
130 kfree(fctx);
131}
132
a34caf78 133int
e193b1d4 134nv84_fence_context_new(struct nouveau_channel *chan)
5e120f6e 135{
967e7bde 136 struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(chan);
0ad72863 137 struct nouveau_cli *cli = (void *)nvif_client(&chan->device->base);
ebb945a9 138 struct nv84_fence_priv *priv = chan->drm->fence;
5e120f6e 139 struct nv84_fence_chan *fctx;
f589be88 140 int ret, i;
5e120f6e 141
e193b1d4 142 fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
5e120f6e
BS
143 if (!fctx)
144 return -ENOMEM;
145
146 nouveau_fence_context_new(&fctx->base);
827520ce
BS
147 fctx->base.emit = nv84_fence_emit;
148 fctx->base.sync = nv84_fence_sync;
149 fctx->base.read = nv84_fence_read;
150 fctx->base.emit32 = nv84_fence_emit32;
151 fctx->base.sync32 = nv84_fence_sync32;
5e120f6e 152
3ee6f5b5 153 ret = nouveau_bo_vma_add(priv->bo, cli->vm, &fctx->vma);
264ce192 154 if (ret == 0) {
3ee6f5b5 155 ret = nouveau_bo_vma_add(priv->bo_gart, cli->vm,
264ce192
BS
156 &fctx->vma_gart);
157 }
ebb945a9 158
a34caf78
BS
159 /* map display semaphore buffers into channel's vm */
160 for (i = 0; !ret && i < chan->drm->dev->mode_config.num_crtc; i++) {
161 struct nouveau_bo *bo = nv50_display_crtc_sema(chan->drm->dev, i);
3ee6f5b5 162 ret = nouveau_bo_vma_add(bo, cli->vm, &fctx->dispc_vma[i]);
f589be88
BS
163 }
164
a34caf78 165 nouveau_bo_wr32(priv->bo, fifo->chid * 16/4, 0x00000000);
264ce192
BS
166
167 if (ret)
168 nv84_fence_context_del(chan);
5e120f6e
BS
169 return ret;
170}
171
264ce192 172static bool
a34caf78
BS
173nv84_fence_suspend(struct nouveau_drm *drm)
174{
967e7bde 175 struct nouveau_fifo *pfifo = nvkm_fifo(&drm->device);
a34caf78
BS
176 struct nv84_fence_priv *priv = drm->fence;
177 int i;
178
179 priv->suspend = vmalloc((pfifo->max + 1) * sizeof(u32));
180 if (priv->suspend) {
181 for (i = 0; i <= pfifo->max; i++)
182 priv->suspend[i] = nouveau_bo_rd32(priv->bo, i*4);
183 }
184
185 return priv->suspend != NULL;
186}
187
264ce192 188static void
a34caf78
BS
189nv84_fence_resume(struct nouveau_drm *drm)
190{
967e7bde 191 struct nouveau_fifo *pfifo = nvkm_fifo(&drm->device);
a34caf78
BS
192 struct nv84_fence_priv *priv = drm->fence;
193 int i;
194
195 if (priv->suspend) {
196 for (i = 0; i <= pfifo->max; i++)
197 nouveau_bo_wr32(priv->bo, i*4, priv->suspend[i]);
198 vfree(priv->suspend);
199 priv->suspend = NULL;
200 }
201}
202
264ce192 203static void
ebb945a9 204nv84_fence_destroy(struct nouveau_drm *drm)
5e120f6e 205{
ebb945a9 206 struct nv84_fence_priv *priv = drm->fence;
264ce192
BS
207 nouveau_bo_unmap(priv->bo_gart);
208 if (priv->bo_gart)
209 nouveau_bo_unpin(priv->bo_gart);
210 nouveau_bo_ref(NULL, &priv->bo_gart);
a34caf78
BS
211 nouveau_bo_unmap(priv->bo);
212 if (priv->bo)
213 nouveau_bo_unpin(priv->bo);
214 nouveau_bo_ref(NULL, &priv->bo);
ebb945a9 215 drm->fence = NULL;
5e120f6e
BS
216 kfree(priv);
217}
218
219int
ebb945a9 220nv84_fence_create(struct nouveau_drm *drm)
5e120f6e 221{
967e7bde 222 struct nouveau_fifo *pfifo = nvkm_fifo(&drm->device);
5e120f6e
BS
223 struct nv84_fence_priv *priv;
224 int ret;
225
ebb945a9 226 priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
5e120f6e
BS
227 if (!priv)
228 return -ENOMEM;
229
e193b1d4 230 priv->base.dtor = nv84_fence_destroy;
a34caf78
BS
231 priv->base.suspend = nv84_fence_suspend;
232 priv->base.resume = nv84_fence_resume;
e193b1d4
BS
233 priv->base.context_new = nv84_fence_context_new;
234 priv->base.context_del = nv84_fence_context_del;
5e120f6e 235
e18c080f
BS
236 init_waitqueue_head(&priv->base.waiting);
237 priv->base.uevent = true;
238
a34caf78
BS
239 ret = nouveau_bo_new(drm->dev, 16 * (pfifo->max + 1), 0,
240 TTM_PL_FLAG_VRAM, 0, 0, NULL, &priv->bo);
241 if (ret == 0) {
242 ret = nouveau_bo_pin(priv->bo, TTM_PL_FLAG_VRAM);
243 if (ret == 0) {
244 ret = nouveau_bo_map(priv->bo);
245 if (ret)
246 nouveau_bo_unpin(priv->bo);
247 }
248 if (ret)
249 nouveau_bo_ref(NULL, &priv->bo);
250 }
251
264ce192
BS
252 if (ret == 0)
253 ret = nouveau_bo_new(drm->dev, 16 * (pfifo->max + 1), 0,
254 TTM_PL_FLAG_TT, 0, 0, NULL,
255 &priv->bo_gart);
256 if (ret == 0) {
257 ret = nouveau_bo_pin(priv->bo_gart, TTM_PL_FLAG_TT);
258 if (ret == 0) {
259 ret = nouveau_bo_map(priv->bo_gart);
260 if (ret)
261 nouveau_bo_unpin(priv->bo_gart);
262 }
263 if (ret)
264 nouveau_bo_ref(NULL, &priv->bo_gart);
265 }
266
5e120f6e 267 if (ret)
ebb945a9 268 nv84_fence_destroy(drm);
5e120f6e
BS
269 return ret;
270}