2 * Copyright (C) 2007 Ben Skeggs.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 #include "nouveau_drv.h"
28 #include "nouveau_dma.h"
29 #include "nouveau_vmm.h"
31 #include <nvif/user.h>
33 /* Fetch and adjust GPU GET pointer
36 * value >= 0, the adjusted GET pointer
37 * -EINVAL if GET pointer currently outside main push buffer
38 * -EBUSY if timeout exceeded
41 READ_GET(struct nouveau_channel
*chan
, uint64_t *prev_get
, int *timeout
)
45 val
= nvif_rd32(&chan
->user
, chan
->user_get
);
46 if (chan
->user_get_hi
)
47 val
|= (uint64_t)nvif_rd32(&chan
->user
, chan
->user_get_hi
) << 32;
49 /* reset counter as long as GET is still advancing, this is
50 * to avoid misdetecting a GPU lockup if the GPU happens to
51 * just be processing an operation that takes a long time
53 if (val
!= *prev_get
) {
58 if ((++*timeout
& 0xff) == 0) {
60 if (*timeout
> 100000)
64 if (val
< chan
->push
.addr
||
65 val
> chan
->push
.addr
+ (chan
->dma
.max
<< 2))
68 return (val
- chan
->push
.addr
) >> 2;
72 nv50_dma_push(struct nouveau_channel
*chan
, u64 offset
, int length
)
74 struct nvif_user
*user
= &chan
->drm
->client
.device
.user
;
75 struct nouveau_bo
*pb
= chan
->push
.buffer
;
76 int ip
= (chan
->dma
.ib_put
* 2) + chan
->dma
.ib_base
;
78 BUG_ON(chan
->dma
.ib_free
< 1);
80 nouveau_bo_wr32(pb
, ip
++, lower_32_bits(offset
));
81 nouveau_bo_wr32(pb
, ip
++, upper_32_bits(offset
) | length
<< 8);
83 chan
->dma
.ib_put
= (chan
->dma
.ib_put
+ 1) & chan
->dma
.ib_max
;
87 nouveau_bo_rd32(pb
, 0);
89 nvif_wr32(&chan
->user
, 0x8c, chan
->dma
.ib_put
);
90 if (user
->func
&& user
->func
->doorbell
)
91 user
->func
->doorbell(user
, chan
->token
);
96 nv50_dma_push_wait(struct nouveau_channel
*chan
, int count
)
98 uint32_t cnt
= 0, prev_get
= 0;
100 while (chan
->dma
.ib_free
< count
) {
101 uint32_t get
= nvif_rd32(&chan
->user
, 0x88);
102 if (get
!= prev_get
) {
107 if ((++cnt
& 0xff) == 0) {
113 chan
->dma
.ib_free
= get
- chan
->dma
.ib_put
;
114 if (chan
->dma
.ib_free
<= 0)
115 chan
->dma
.ib_free
+= chan
->dma
.ib_max
;
122 nv50_dma_wait(struct nouveau_channel
*chan
, int slots
, int count
)
124 uint64_t prev_get
= 0;
127 ret
= nv50_dma_push_wait(chan
, slots
+ 1);
131 while (chan
->dma
.free
< count
) {
132 int get
= READ_GET(chan
, &prev_get
, &cnt
);
133 if (unlikely(get
< 0)) {
140 if (get
<= chan
->dma
.cur
) {
141 chan
->dma
.free
= chan
->dma
.max
- chan
->dma
.cur
;
142 if (chan
->dma
.free
>= count
)
147 get
= READ_GET(chan
, &prev_get
, &cnt
);
148 if (unlikely(get
< 0)) {
158 chan
->dma
.free
= get
- chan
->dma
.cur
- 1;
165 nouveau_dma_wait(struct nouveau_channel
*chan
, int slots
, int size
)
167 uint64_t prev_get
= 0;
170 if (chan
->dma
.ib_max
)
171 return nv50_dma_wait(chan
, slots
, size
);
173 while (chan
->dma
.free
< size
) {
174 get
= READ_GET(chan
, &prev_get
, &cnt
);
175 if (unlikely(get
== -EBUSY
))
178 /* loop until we have a usable GET pointer. the value
179 * we read from the GPU may be outside the main ring if
180 * PFIFO is processing a buffer called from the main ring,
181 * discard these values until something sensible is seen.
183 * the other case we discard GET is while the GPU is fetching
184 * from the SKIPS area, so the code below doesn't have to deal
185 * with some fun corner cases.
187 if (unlikely(get
== -EINVAL
) || get
< NOUVEAU_DMA_SKIPS
)
190 if (get
<= chan
->dma
.cur
) {
191 /* engine is fetching behind us, or is completely
192 * idle (GET == PUT) so we have free space up until
193 * the end of the push buffer
195 * we can only hit that path once per call due to
196 * looping back to the beginning of the push buffer,
197 * we'll hit the fetching-ahead-of-us path from that
200 * the *one* exception to that rule is if we read
201 * GET==PUT, in which case the below conditional will
202 * always succeed and break us out of the wait loop.
204 chan
->dma
.free
= chan
->dma
.max
- chan
->dma
.cur
;
205 if (chan
->dma
.free
>= size
)
208 /* not enough space left at the end of the push buffer,
209 * instruct the GPU to jump back to the start right
210 * after processing the currently pending commands.
212 OUT_RING(chan
, chan
->push
.addr
| 0x20000000);
214 /* wait for GET to depart from the skips area.
215 * prevents writing GET==PUT and causing a race
216 * condition that causes us to think the GPU is
217 * idle when it's not.
220 get
= READ_GET(chan
, &prev_get
, &cnt
);
221 if (unlikely(get
== -EBUSY
))
223 if (unlikely(get
== -EINVAL
))
225 } while (get
<= NOUVEAU_DMA_SKIPS
);
226 WRITE_PUT(NOUVEAU_DMA_SKIPS
);
228 /* we're now submitting commands at the start of
232 chan
->dma
.put
= NOUVEAU_DMA_SKIPS
;
235 /* engine fetching ahead of us, we have space up until the
236 * current GET pointer. the "- 1" is to ensure there's
237 * space left to emit a jump back to the beginning of the
238 * push buffer if we require it. we can never get GET == PUT
239 * here, so this is safe.
241 chan
->dma
.free
= get
- chan
->dma
.cur
- 1;