2 * Copyright (C) 2012 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.
29 #include "nouveau_drv.h"
30 #include "nouveau_fifo.h"
31 #include "nouveau_ramht.h"
32 #include "nouveau_vm.h"
34 struct nv50_fifo_priv
{
35 struct nouveau_fifo_priv base
;
36 struct nouveau_gpuobj
*playlist
[2];
40 struct nv50_fifo_chan
{
41 struct nouveau_fifo_chan base
;
45 nv50_fifo_playlist_update(struct drm_device
*dev
)
47 struct nv50_fifo_priv
*priv
= nv_engine(dev
, NVOBJ_ENGINE_FIFO
);
48 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
49 struct nouveau_gpuobj
*cur
;
52 cur
= priv
->playlist
[priv
->cur_playlist
];
53 priv
->cur_playlist
= !priv
->cur_playlist
;
55 for (i
= 0, p
= 0; i
< priv
->base
.channels
; i
++) {
56 if (nv_rd32(dev
, 0x002600 + (i
* 4)) & 0x80000000)
57 nv_wo32(cur
, p
++ * 4, i
);
60 dev_priv
->engine
.instmem
.flush(dev
);
62 nv_wr32(dev
, 0x0032f4, cur
->vinst
>> 12);
63 nv_wr32(dev
, 0x0032ec, p
);
64 nv_wr32(dev
, 0x002500, 0x00000101);
68 nv50_fifo_context_new(struct nouveau_channel
*chan
, int engine
)
70 struct nv50_fifo_priv
*priv
= nv_engine(chan
->dev
, engine
);
71 struct nv50_fifo_chan
*fctx
;
72 struct drm_device
*dev
= chan
->dev
;
73 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
74 u64 ib_offset
= chan
->pushbuf_base
+ chan
->dma
.ib_base
* 4;
75 u64 instance
= chan
->ramin
->vinst
>> 12;
79 fctx
= chan
->engctx
[engine
] = kzalloc(sizeof(*fctx
), GFP_KERNEL
);
82 atomic_inc(&chan
->vm
->engref
[engine
]);
84 chan
->user
= ioremap(pci_resource_start(dev
->pdev
, 0) +
85 NV50_USER(chan
->id
), PAGE_SIZE
);
91 for (i
= 0; i
< 0x100; i
+= 4)
92 nv_wo32(chan
->ramin
, i
, 0x00000000);
93 nv_wo32(chan
->ramin
, 0x3c, 0x403f6078);
94 nv_wo32(chan
->ramin
, 0x40, 0x00000000);
95 nv_wo32(chan
->ramin
, 0x44, 0x01003fff);
96 nv_wo32(chan
->ramin
, 0x48, chan
->pushbuf
->cinst
>> 4);
97 nv_wo32(chan
->ramin
, 0x50, lower_32_bits(ib_offset
));
98 nv_wo32(chan
->ramin
, 0x54, upper_32_bits(ib_offset
) |
99 drm_order(chan
->dma
.ib_max
+ 1) << 16);
100 nv_wo32(chan
->ramin
, 0x60, 0x7fffffff);
101 nv_wo32(chan
->ramin
, 0x78, 0x00000000);
102 nv_wo32(chan
->ramin
, 0x7c, 0x30000001);
103 nv_wo32(chan
->ramin
, 0x80, ((chan
->ramht
->bits
- 9) << 27) |
104 (4 << 24) /* SEARCH_FULL */ |
105 (chan
->ramht
->gpuobj
->cinst
>> 4));
107 dev_priv
->engine
.instmem
.flush(dev
);
109 spin_lock_irqsave(&dev_priv
->context_switch_lock
, flags
);
110 nv_wr32(dev
, 0x002600 + (chan
->id
* 4), 0x80000000 | instance
);
111 nv50_fifo_playlist_update(dev
);
112 spin_unlock_irqrestore(&dev_priv
->context_switch_lock
, flags
);
116 priv
->base
.base
.context_del(chan
, engine
);
121 nv50_fifo_kickoff(struct nouveau_channel
*chan
)
123 struct drm_device
*dev
= chan
->dev
;
127 /* HW bug workaround:
129 * PFIFO will hang forever if the connected engines don't report
130 * that they've processed the context switch request.
132 * In order for the kickoff to work, we need to ensure all the
133 * connected engines are in a state where they can answer.
135 * Newer chipsets don't seem to suffer from this issue, and well,
136 * there's also a "ignore these engines" bitmask reg we can use
137 * if we hit the issue there..
140 /* PME: make sure engine is enabled */
141 me
= nv_mask(dev
, 0x00b860, 0x00000001, 0x00000001);
143 /* do the kickoff... */
144 nv_wr32(dev
, 0x0032fc, chan
->ramin
->vinst
>> 12);
145 if (!nv_wait_ne(dev
, 0x0032fc, 0xffffffff, 0xffffffff)) {
146 NV_INFO(dev
, "PFIFO: channel %d unload timeout\n", chan
->id
);
150 /* restore any engine states we changed, and exit */
151 nv_wr32(dev
, 0x00b860, me
);
156 nv50_fifo_context_del(struct nouveau_channel
*chan
, int engine
)
158 struct nv50_fifo_chan
*fctx
= chan
->engctx
[engine
];
159 struct drm_device
*dev
= chan
->dev
;
160 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
163 /* remove channel from playlist, will context switch if active */
164 spin_lock_irqsave(&dev_priv
->context_switch_lock
, flags
);
165 nv_mask(dev
, 0x002600 + (chan
->id
* 4), 0x80000000, 0x00000000);
166 nv50_fifo_playlist_update(dev
);
168 /* tell any engines on this channel to unload their contexts */
169 nv50_fifo_kickoff(chan
);
171 nv_wr32(dev
, 0x002600 + (chan
->id
* 4), 0x00000000);
172 spin_unlock_irqrestore(&dev_priv
->context_switch_lock
, flags
);
180 atomic_dec(&chan
->vm
->engref
[engine
]);
181 chan
->engctx
[engine
] = NULL
;
186 nv50_fifo_init(struct drm_device
*dev
, int engine
)
188 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
192 nv_mask(dev
, 0x000200, 0x00000100, 0x00000000);
193 nv_mask(dev
, 0x000200, 0x00000100, 0x00000100);
194 nv_wr32(dev
, 0x00250c, 0x6f3cfc34);
195 nv_wr32(dev
, 0x002044, 0x01003fff);
197 nv_wr32(dev
, 0x002100, 0xffffffff);
198 nv_wr32(dev
, 0x002140, 0xffffffff);
200 for (i
= 0; i
< 128; i
++) {
201 struct nouveau_channel
*chan
= dev_priv
->channels
.ptr
[i
];
202 if (chan
&& chan
->engctx
[engine
])
203 instance
= 0x80000000 | chan
->ramin
->vinst
>> 12;
205 instance
= 0x00000000;
206 nv_wr32(dev
, 0x002600 + (i
* 4), instance
);
209 nv50_fifo_playlist_update(dev
);
211 nv_wr32(dev
, 0x003200, 1);
212 nv_wr32(dev
, 0x003250, 1);
213 nv_wr32(dev
, 0x002500, 1);
218 nv50_fifo_fini(struct drm_device
*dev
, int engine
, bool suspend
)
220 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
221 struct nv50_fifo_priv
*priv
= nv_engine(dev
, engine
);
224 /* set playlist length to zero, fifo will unload context */
225 nv_wr32(dev
, 0x0032ec, 0);
227 /* tell all connected engines to unload their contexts */
228 for (i
= 0; i
< priv
->base
.channels
; i
++) {
229 struct nouveau_channel
*chan
= dev_priv
->channels
.ptr
[i
];
230 if (chan
&& !nv50_fifo_kickoff(chan
))
234 nv_wr32(dev
, 0x002140, 0);
239 nv50_fifo_tlb_flush(struct drm_device
*dev
, int engine
)
241 nv50_vm_flush_engine(dev
, 5);
245 nv50_fifo_destroy(struct drm_device
*dev
, int engine
)
247 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
248 struct nv50_fifo_priv
*priv
= nv_engine(dev
, engine
);
250 nouveau_irq_unregister(dev
, 8);
252 nouveau_gpuobj_ref(NULL
, &priv
->playlist
[0]);
253 nouveau_gpuobj_ref(NULL
, &priv
->playlist
[1]);
255 dev_priv
->eng
[engine
] = NULL
;
260 nv50_fifo_create(struct drm_device
*dev
)
262 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
263 struct nv50_fifo_priv
*priv
;
266 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
270 priv
->base
.base
.destroy
= nv50_fifo_destroy
;
271 priv
->base
.base
.init
= nv50_fifo_init
;
272 priv
->base
.base
.fini
= nv50_fifo_fini
;
273 priv
->base
.base
.context_new
= nv50_fifo_context_new
;
274 priv
->base
.base
.context_del
= nv50_fifo_context_del
;
275 priv
->base
.base
.tlb_flush
= nv50_fifo_tlb_flush
;
276 priv
->base
.channels
= 127;
277 dev_priv
->eng
[NVOBJ_ENGINE_FIFO
] = &priv
->base
.base
;
279 ret
= nouveau_gpuobj_new(dev
, NULL
, priv
->base
.channels
* 4, 0x1000,
280 NVOBJ_FLAG_ZERO_ALLOC
, &priv
->playlist
[0]);
284 ret
= nouveau_gpuobj_new(dev
, NULL
, priv
->base
.channels
* 4, 0x1000,
285 NVOBJ_FLAG_ZERO_ALLOC
, &priv
->playlist
[1]);
289 nouveau_irq_register(dev
, 8, nv04_fifo_isr
);
292 priv
->base
.base
.destroy(dev
, NVOBJ_ENGINE_FIFO
);