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_drm.h"
26 #include "nouveau_dma.h"
27 #include "nouveau_fence.h"
29 #include "nv50_display.h"
32 nv84_fence_crtc(struct nouveau_channel
*chan
, int crtc
)
34 struct nv84_fence_chan
*fctx
= chan
->fence
;
35 return fctx
->dispc_vma
[crtc
].offset
;
39 nv84_fence_emit32(struct nouveau_channel
*chan
, u64
virtual, u32 sequence
)
41 int ret
= RING_SPACE(chan
, 8);
43 BEGIN_NV04(chan
, 0, NV11_SUBCHAN_DMA_SEMAPHORE
, 1);
44 OUT_RING (chan
, chan
->vram
.handle
);
45 BEGIN_NV04(chan
, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH
, 5);
46 OUT_RING (chan
, upper_32_bits(virtual));
47 OUT_RING (chan
, lower_32_bits(virtual));
48 OUT_RING (chan
, sequence
);
49 OUT_RING (chan
, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG
);
50 OUT_RING (chan
, 0x00000000);
57 nv84_fence_sync32(struct nouveau_channel
*chan
, u64
virtual, u32 sequence
)
59 int ret
= RING_SPACE(chan
, 7);
61 BEGIN_NV04(chan
, 0, NV11_SUBCHAN_DMA_SEMAPHORE
, 1);
62 OUT_RING (chan
, chan
->vram
.handle
);
63 BEGIN_NV04(chan
, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH
, 4);
64 OUT_RING (chan
, upper_32_bits(virtual));
65 OUT_RING (chan
, lower_32_bits(virtual));
66 OUT_RING (chan
, sequence
);
67 OUT_RING (chan
, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL
);
74 nv84_fence_emit(struct nouveau_fence
*fence
)
76 struct nouveau_channel
*chan
= fence
->channel
;
77 struct nv84_fence_chan
*fctx
= chan
->fence
;
78 u64 addr
= chan
->chid
* 16;
81 addr
+= fctx
->vma_gart
.offset
;
83 addr
+= fctx
->vma
.offset
;
85 return fctx
->base
.emit32(chan
, addr
, fence
->base
.seqno
);
89 nv84_fence_sync(struct nouveau_fence
*fence
,
90 struct nouveau_channel
*prev
, struct nouveau_channel
*chan
)
92 struct nv84_fence_chan
*fctx
= chan
->fence
;
93 u64 addr
= prev
->chid
* 16;
96 addr
+= fctx
->vma_gart
.offset
;
98 addr
+= fctx
->vma
.offset
;
100 return fctx
->base
.sync32(chan
, addr
, fence
->base
.seqno
);
104 nv84_fence_read(struct nouveau_channel
*chan
)
106 struct nv84_fence_priv
*priv
= chan
->drm
->fence
;
107 return nouveau_bo_rd32(priv
->bo
, chan
->chid
* 16/4);
111 nv84_fence_context_del(struct nouveau_channel
*chan
)
113 struct drm_device
*dev
= chan
->drm
->dev
;
114 struct nv84_fence_priv
*priv
= chan
->drm
->fence
;
115 struct nv84_fence_chan
*fctx
= chan
->fence
;
118 for (i
= 0; i
< dev
->mode_config
.num_crtc
; i
++) {
119 struct nouveau_bo
*bo
= nv50_display_crtc_sema(dev
, i
);
120 nouveau_bo_vma_del(bo
, &fctx
->dispc_vma
[i
]);
123 nouveau_bo_wr32(priv
->bo
, chan
->chid
* 16 / 4, fctx
->base
.sequence
);
124 nouveau_bo_vma_del(priv
->bo
, &fctx
->vma_gart
);
125 nouveau_bo_vma_del(priv
->bo
, &fctx
->vma
);
126 nouveau_fence_context_del(&fctx
->base
);
128 nouveau_fence_context_free(&fctx
->base
);
132 nv84_fence_context_new(struct nouveau_channel
*chan
)
134 struct nouveau_cli
*cli
= (void *)nvif_client(&chan
->device
->base
);
135 struct nv84_fence_priv
*priv
= chan
->drm
->fence
;
136 struct nv84_fence_chan
*fctx
;
139 fctx
= chan
->fence
= kzalloc(sizeof(*fctx
), GFP_KERNEL
);
143 nouveau_fence_context_new(chan
, &fctx
->base
);
144 fctx
->base
.emit
= nv84_fence_emit
;
145 fctx
->base
.sync
= nv84_fence_sync
;
146 fctx
->base
.read
= nv84_fence_read
;
147 fctx
->base
.emit32
= nv84_fence_emit32
;
148 fctx
->base
.sync32
= nv84_fence_sync32
;
149 fctx
->base
.sequence
= nv84_fence_read(chan
);
151 ret
= nouveau_bo_vma_add(priv
->bo
, cli
->vm
, &fctx
->vma
);
153 ret
= nouveau_bo_vma_add(priv
->bo_gart
, cli
->vm
,
157 /* map display semaphore buffers into channel's vm */
158 for (i
= 0; !ret
&& i
< chan
->drm
->dev
->mode_config
.num_crtc
; i
++) {
159 struct nouveau_bo
*bo
= nv50_display_crtc_sema(chan
->drm
->dev
, i
);
160 ret
= nouveau_bo_vma_add(bo
, cli
->vm
, &fctx
->dispc_vma
[i
]);
164 nv84_fence_context_del(chan
);
169 nv84_fence_suspend(struct nouveau_drm
*drm
)
171 struct nv84_fence_priv
*priv
= drm
->fence
;
174 priv
->suspend
= vmalloc(priv
->base
.contexts
* sizeof(u32
));
176 for (i
= 0; i
< priv
->base
.contexts
; i
++)
177 priv
->suspend
[i
] = nouveau_bo_rd32(priv
->bo
, i
*4);
180 return priv
->suspend
!= NULL
;
184 nv84_fence_resume(struct nouveau_drm
*drm
)
186 struct nv84_fence_priv
*priv
= drm
->fence
;
190 for (i
= 0; i
< priv
->base
.contexts
; i
++)
191 nouveau_bo_wr32(priv
->bo
, i
*4, priv
->suspend
[i
]);
192 vfree(priv
->suspend
);
193 priv
->suspend
= NULL
;
198 nv84_fence_destroy(struct nouveau_drm
*drm
)
200 struct nv84_fence_priv
*priv
= drm
->fence
;
201 nouveau_bo_unmap(priv
->bo_gart
);
203 nouveau_bo_unpin(priv
->bo_gart
);
204 nouveau_bo_ref(NULL
, &priv
->bo_gart
);
205 nouveau_bo_unmap(priv
->bo
);
207 nouveau_bo_unpin(priv
->bo
);
208 nouveau_bo_ref(NULL
, &priv
->bo
);
214 nv84_fence_create(struct nouveau_drm
*drm
)
216 struct nvkm_fifo
*pfifo
= nvxx_fifo(&drm
->device
);
217 struct nv84_fence_priv
*priv
;
221 priv
= drm
->fence
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
225 priv
->base
.dtor
= nv84_fence_destroy
;
226 priv
->base
.suspend
= nv84_fence_suspend
;
227 priv
->base
.resume
= nv84_fence_resume
;
228 priv
->base
.context_new
= nv84_fence_context_new
;
229 priv
->base
.context_del
= nv84_fence_context_del
;
231 priv
->base
.contexts
= pfifo
->max
+ 1;
232 priv
->base
.context_base
= fence_context_alloc(priv
->base
.contexts
);
233 priv
->base
.uevent
= true;
235 /* Use VRAM if there is any ; otherwise fallback to system memory */
236 domain
= drm
->device
.info
.ram_size
!= 0 ? TTM_PL_FLAG_VRAM
:
238 * fences created in sysmem must be non-cached or we
239 * will lose CPU/GPU coherency!
241 TTM_PL_FLAG_TT
| TTM_PL_FLAG_UNCACHED
;
242 ret
= nouveau_bo_new(drm
->dev
, 16 * priv
->base
.contexts
, 0, domain
, 0,
243 0, NULL
, NULL
, &priv
->bo
);
245 ret
= nouveau_bo_pin(priv
->bo
, domain
, false);
247 ret
= nouveau_bo_map(priv
->bo
);
249 nouveau_bo_unpin(priv
->bo
);
252 nouveau_bo_ref(NULL
, &priv
->bo
);
256 ret
= nouveau_bo_new(drm
->dev
, 16 * priv
->base
.contexts
, 0,
257 TTM_PL_FLAG_TT
| TTM_PL_FLAG_UNCACHED
, 0,
258 0, NULL
, NULL
, &priv
->bo_gart
);
260 ret
= nouveau_bo_pin(priv
->bo_gart
, TTM_PL_FLAG_TT
, false);
262 ret
= nouveau_bo_map(priv
->bo_gart
);
264 nouveau_bo_unpin(priv
->bo_gart
);
267 nouveau_bo_ref(NULL
, &priv
->bo_gart
);
271 nv84_fence_destroy(drm
);