2 * Copyright 2012 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
25 #include "nouveau_drv.h"
26 #include "nouveau_dma.h"
27 #include "nouveau_fence.h"
29 #include "nv50_display.h"
32 nv84_fence_emit32(struct nouveau_channel
*chan
, u64
virtual, u32 sequence
)
34 int ret
= RING_SPACE(chan
, 8);
36 BEGIN_NV04(chan
, 0, NV11_SUBCHAN_DMA_SEMAPHORE
, 1);
37 OUT_RING (chan
, chan
->vram
.handle
);
38 BEGIN_NV04(chan
, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH
, 5);
39 OUT_RING (chan
, upper_32_bits(virtual));
40 OUT_RING (chan
, lower_32_bits(virtual));
41 OUT_RING (chan
, sequence
);
42 OUT_RING (chan
, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG
);
43 OUT_RING (chan
, 0x00000000);
50 nv84_fence_sync32(struct nouveau_channel
*chan
, u64
virtual, u32 sequence
)
52 int ret
= RING_SPACE(chan
, 7);
54 BEGIN_NV04(chan
, 0, NV11_SUBCHAN_DMA_SEMAPHORE
, 1);
55 OUT_RING (chan
, chan
->vram
.handle
);
56 BEGIN_NV04(chan
, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH
, 4);
57 OUT_RING (chan
, upper_32_bits(virtual));
58 OUT_RING (chan
, lower_32_bits(virtual));
59 OUT_RING (chan
, sequence
);
60 OUT_RING (chan
, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL
);
67 nv84_fence_emit(struct nouveau_fence
*fence
)
69 struct nouveau_channel
*chan
= fence
->channel
;
70 struct nv84_fence_chan
*fctx
= chan
->fence
;
71 u64 addr
= chan
->chid
* 16;
74 addr
+= fctx
->vma_gart
.offset
;
76 addr
+= fctx
->vma
.offset
;
78 return fctx
->base
.emit32(chan
, addr
, fence
->base
.seqno
);
82 nv84_fence_sync(struct nouveau_fence
*fence
,
83 struct nouveau_channel
*prev
, struct nouveau_channel
*chan
)
85 struct nv84_fence_chan
*fctx
= chan
->fence
;
86 u64 addr
= prev
->chid
* 16;
89 addr
+= fctx
->vma_gart
.offset
;
91 addr
+= fctx
->vma
.offset
;
93 return fctx
->base
.sync32(chan
, addr
, fence
->base
.seqno
);
97 nv84_fence_read(struct nouveau_channel
*chan
)
99 struct nv84_fence_priv
*priv
= chan
->drm
->fence
;
100 return nouveau_bo_rd32(priv
->bo
, chan
->chid
* 16/4);
104 nv84_fence_context_del(struct nouveau_channel
*chan
)
106 struct nv84_fence_priv
*priv
= chan
->drm
->fence
;
107 struct nv84_fence_chan
*fctx
= chan
->fence
;
109 nouveau_bo_wr32(priv
->bo
, chan
->chid
* 16 / 4, fctx
->base
.sequence
);
110 mutex_lock(&priv
->mutex
);
111 nouveau_bo_vma_del(priv
->bo
, &fctx
->vma_gart
);
112 nouveau_bo_vma_del(priv
->bo
, &fctx
->vma
);
113 mutex_unlock(&priv
->mutex
);
114 nouveau_fence_context_del(&fctx
->base
);
116 nouveau_fence_context_free(&fctx
->base
);
120 nv84_fence_context_new(struct nouveau_channel
*chan
)
122 struct nouveau_cli
*cli
= (void *)chan
->user
.client
;
123 struct nv84_fence_priv
*priv
= chan
->drm
->fence
;
124 struct nv84_fence_chan
*fctx
;
127 fctx
= chan
->fence
= kzalloc(sizeof(*fctx
), GFP_KERNEL
);
131 nouveau_fence_context_new(chan
, &fctx
->base
);
132 fctx
->base
.emit
= nv84_fence_emit
;
133 fctx
->base
.sync
= nv84_fence_sync
;
134 fctx
->base
.read
= nv84_fence_read
;
135 fctx
->base
.emit32
= nv84_fence_emit32
;
136 fctx
->base
.sync32
= nv84_fence_sync32
;
137 fctx
->base
.sequence
= nv84_fence_read(chan
);
139 mutex_lock(&priv
->mutex
);
140 ret
= nouveau_bo_vma_add(priv
->bo
, cli
->vm
, &fctx
->vma
);
142 ret
= nouveau_bo_vma_add(priv
->bo_gart
, cli
->vm
,
145 mutex_unlock(&priv
->mutex
);
148 nv84_fence_context_del(chan
);
153 nv84_fence_suspend(struct nouveau_drm
*drm
)
155 struct nv84_fence_priv
*priv
= drm
->fence
;
158 priv
->suspend
= vmalloc(priv
->base
.contexts
* sizeof(u32
));
160 for (i
= 0; i
< priv
->base
.contexts
; i
++)
161 priv
->suspend
[i
] = nouveau_bo_rd32(priv
->bo
, i
*4);
164 return priv
->suspend
!= NULL
;
168 nv84_fence_resume(struct nouveau_drm
*drm
)
170 struct nv84_fence_priv
*priv
= drm
->fence
;
174 for (i
= 0; i
< priv
->base
.contexts
; i
++)
175 nouveau_bo_wr32(priv
->bo
, i
*4, priv
->suspend
[i
]);
176 vfree(priv
->suspend
);
177 priv
->suspend
= NULL
;
182 nv84_fence_destroy(struct nouveau_drm
*drm
)
184 struct nv84_fence_priv
*priv
= drm
->fence
;
185 nouveau_bo_unmap(priv
->bo_gart
);
187 nouveau_bo_unpin(priv
->bo_gart
);
188 nouveau_bo_ref(NULL
, &priv
->bo_gart
);
189 nouveau_bo_unmap(priv
->bo
);
191 nouveau_bo_unpin(priv
->bo
);
192 nouveau_bo_ref(NULL
, &priv
->bo
);
198 nv84_fence_create(struct nouveau_drm
*drm
)
200 struct nvkm_fifo
*fifo
= nvxx_fifo(&drm
->client
.device
);
201 struct nv84_fence_priv
*priv
;
205 priv
= drm
->fence
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
209 priv
->base
.dtor
= nv84_fence_destroy
;
210 priv
->base
.suspend
= nv84_fence_suspend
;
211 priv
->base
.resume
= nv84_fence_resume
;
212 priv
->base
.context_new
= nv84_fence_context_new
;
213 priv
->base
.context_del
= nv84_fence_context_del
;
215 priv
->base
.contexts
= fifo
->nr
;
216 priv
->base
.context_base
= dma_fence_context_alloc(priv
->base
.contexts
);
217 priv
->base
.uevent
= true;
219 mutex_init(&priv
->mutex
);
221 /* Use VRAM if there is any ; otherwise fallback to system memory */
222 domain
= drm
->client
.device
.info
.ram_size
!= 0 ? TTM_PL_FLAG_VRAM
:
224 * fences created in sysmem must be non-cached or we
225 * will lose CPU/GPU coherency!
227 TTM_PL_FLAG_TT
| TTM_PL_FLAG_UNCACHED
;
228 ret
= nouveau_bo_new(&drm
->client
, 16 * priv
->base
.contexts
, 0,
229 domain
, 0, 0, NULL
, NULL
, &priv
->bo
);
231 ret
= nouveau_bo_pin(priv
->bo
, domain
, false);
233 ret
= nouveau_bo_map(priv
->bo
);
235 nouveau_bo_unpin(priv
->bo
);
238 nouveau_bo_ref(NULL
, &priv
->bo
);
242 ret
= nouveau_bo_new(&drm
->client
, 16 * priv
->base
.contexts
, 0,
243 TTM_PL_FLAG_TT
| TTM_PL_FLAG_UNCACHED
, 0,
244 0, NULL
, NULL
, &priv
->bo_gart
);
246 ret
= nouveau_bo_pin(priv
->bo_gart
, TTM_PL_FLAG_TT
, false);
248 ret
= nouveau_bo_map(priv
->bo_gart
);
250 nouveau_bo_unpin(priv
->bo_gart
);
253 nouveau_bo_ref(NULL
, &priv
->bo_gart
);
257 nv84_fence_destroy(drm
);