blob: 8f2b974b34a7cbded2aaea8d7a324eb04c233608 [file] [log] [blame]
Christoph Bumiller4c224752010-11-12 15:17:40 +01001/*
2 * Copyright 2010 Christoph Bumiller
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
Kenneth Graunke3d8d5b22013-04-21 13:46:48 -070017 * THE AUTHORS OR COPYRIGHT HOLDERS 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.
Christoph Bumiller4c224752010-11-12 15:17:40 +010021 */
22
Christoph Bumiller4c224752010-11-12 15:17:40 +010023#include "pipe/p_defines.h"
Christoph Bumiller2d06ee82012-03-07 19:44:10 +010024#include "util/u_framebuffer.h"
Christoph Bumiller4c224752010-11-12 15:17:40 +010025
Johannes Obermayr5eb7ff12013-08-20 20:14:00 +020026#include "nvc0/nvc0_context.h"
27#include "nvc0/nvc0_screen.h"
28#include "nvc0/nvc0_resource.h"
Christoph Bumiller4c224752010-11-12 15:17:40 +010029
Christoph Bumiller4c224752010-11-12 15:17:40 +010030static void
Marek Olšák7e023032011-03-08 00:57:48 +010031nvc0_flush(struct pipe_context *pipe,
Marek Olšák598cc1f2012-12-21 17:03:22 +010032 struct pipe_fence_handle **fence,
Chia-I Wu8c347d42013-05-02 16:25:15 +080033 unsigned flags)
Christoph Bumiller4c224752010-11-12 15:17:40 +010034{
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +020035 struct nvc0_context *nvc0 = nvc0_context(pipe);
36 struct nouveau_screen *screen = &nvc0->screen->base;
Christoph Bumiller4c224752010-11-12 15:17:40 +010037
Christoph Bumillera6ea37d2011-02-20 17:57:47 +010038 if (fence)
Christoph Bumiller43888172011-03-13 13:07:54 +010039 nouveau_fence_ref(screen->fence.current, (struct nouveau_fence **)fence);
Christoph Bumiller4c224752010-11-12 15:17:40 +010040
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +020041 PUSH_KICK(nvc0->base.pushbuf); /* fencing handled in kick_notify */
Christoph Bumiller48a45ec2013-01-08 16:13:11 +010042
43 nouveau_context_update_frame_stats(&nvc0->base);
Christoph Bumiller4c224752010-11-12 15:17:40 +010044}
45
46static void
Ilia Mirkina1c84842017-01-01 23:42:17 -050047nvc0_texture_barrier(struct pipe_context *pipe, unsigned flags)
Christoph Bumiller83ff3802011-03-17 17:07:30 +010048{
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +020049 struct nouveau_pushbuf *push = nvc0_context(pipe)->base.pushbuf;
Christoph Bumiller83ff3802011-03-17 17:07:30 +010050
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +020051 IMMED_NVC0(push, NVC0_3D(SERIALIZE), 0);
52 IMMED_NVC0(push, NVC0_3D(TEX_CACHE_CTL), 0);
Christoph Bumiller83ff3802011-03-17 17:07:30 +010053}
54
55static void
Ilia Mirkin3df4d692014-04-30 16:45:16 -040056nvc0_memory_barrier(struct pipe_context *pipe, unsigned flags)
57{
58 struct nvc0_context *nvc0 = nvc0_context(pipe);
Ilia Mirkinabe427e2016-01-10 22:44:32 -050059 struct nouveau_pushbuf *push = nvc0->base.pushbuf;
Ilia Mirkin9a37eb82014-07-01 00:49:34 -040060 int i, s;
Ilia Mirkin3df4d692014-04-30 16:45:16 -040061
62 if (flags & PIPE_BARRIER_MAPPED_BUFFER) {
63 for (i = 0; i < nvc0->num_vtxbufs; ++i) {
64 if (!nvc0->vtxbuf[i].buffer)
65 continue;
66 if (nvc0->vtxbuf[i].buffer->flags & PIPE_RESOURCE_FLAG_MAP_PERSISTENT)
Samuel Pitoisetcd0dec02015-07-20 21:32:43 +020067 nvc0->base.vbo_dirty = true;
Ilia Mirkin3df4d692014-04-30 16:45:16 -040068 }
69
70 if (nvc0->idxbuf.buffer &&
71 nvc0->idxbuf.buffer->flags & PIPE_RESOURCE_FLAG_MAP_PERSISTENT)
Samuel Pitoisetcd0dec02015-07-20 21:32:43 +020072 nvc0->base.vbo_dirty = true;
Ilia Mirkin9a37eb82014-07-01 00:49:34 -040073
74 for (s = 0; s < 5 && !nvc0->cb_dirty; ++s) {
75 uint32_t valid = nvc0->constbuf_valid[s];
76
77 while (valid && !nvc0->cb_dirty) {
78 const unsigned i = ffs(valid) - 1;
79 struct pipe_resource *res;
80
81 valid &= ~(1 << i);
82 if (nvc0->constbuf[s][i].user)
83 continue;
84
85 res = nvc0->constbuf[s][i].u.buf;
86 if (!res)
87 continue;
88
89 if (res->flags & PIPE_RESOURCE_FLAG_MAP_PERSISTENT)
Samuel Pitoisetcd0dec02015-07-20 21:32:43 +020090 nvc0->cb_dirty = true;
Ilia Mirkin9a37eb82014-07-01 00:49:34 -040091 }
92 }
Ilia Mirkine8ee1612016-06-02 21:36:04 -040093 } else {
94 /* Pretty much any writing by shaders needs a serialize after
95 * it. Especially when moving between 3d and compute pipelines, but even
96 * without that.
97 */
98 IMMED_NVC0(push, NVC0_3D(SERIALIZE), 0);
Ilia Mirkin3df4d692014-04-30 16:45:16 -040099 }
Samuel Pitoiset1fb3cd22016-04-03 19:08:20 +0200100
Ilia Mirkine8ee1612016-06-02 21:36:04 -0400101 /* If we're going to texture from a buffer/image written by a shader, we
102 * must flush the texture cache.
103 */
104 if (flags & PIPE_BARRIER_TEXTURE)
105 IMMED_NVC0(push, NVC0_3D(TEX_CACHE_CTL), 0);
106
107 if (flags & PIPE_BARRIER_CONSTANT_BUFFER)
108 nvc0->cb_dirty = true;
109 if (flags & (PIPE_BARRIER_VERTEX_BUFFER | PIPE_BARRIER_INDEX_BUFFER))
110 nvc0->base.vbo_dirty = true;
Ilia Mirkin3df4d692014-04-30 16:45:16 -0400111}
112
113static void
Ilia Mirkin59ca9212016-04-03 16:02:59 -0400114nvc0_emit_string_marker(struct pipe_context *pipe, const char *str, int len)
115{
116 struct nouveau_pushbuf *push = nvc0_context(pipe)->base.pushbuf;
117 int string_words = len / 4;
118 int data_words;
119
120 if (len <= 0)
121 return;
122 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN);
123 if (string_words == NV04_PFIFO_MAX_PACKET_LEN)
124 data_words = string_words;
125 else
126 data_words = string_words + !!(len & 3);
127 BEGIN_NIC0(push, SUBC_3D(NV04_GRAPH_NOP), data_words);
128 if (string_words)
129 PUSH_DATAp(push, str, string_words);
130 if (string_words != data_words) {
131 int data = 0;
132 memcpy(&data, &str[string_words * 4], len & 3);
133 PUSH_DATA (push, data);
134 }
135}
136
137static void
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100138nvc0_context_unreference_resources(struct nvc0_context *nvc0)
139{
140 unsigned s, i;
141
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200142 nouveau_bufctx_del(&nvc0->bufctx_3d);
143 nouveau_bufctx_del(&nvc0->bufctx);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100144 nouveau_bufctx_del(&nvc0->bufctx_cp);
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100145
Christoph Bumiller2d06ee82012-03-07 19:44:10 +0100146 util_unreference_framebuffer_state(&nvc0->framebuffer);
147
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100148 for (i = 0; i < nvc0->num_vtxbufs; ++i)
149 pipe_resource_reference(&nvc0->vtxbuf[i].buffer, NULL);
150
151 pipe_resource_reference(&nvc0->idxbuf.buffer, NULL);
152
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100153 for (s = 0; s < 6; ++s) {
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100154 for (i = 0; i < nvc0->num_textures[s]; ++i)
155 pipe_sampler_view_reference(&nvc0->textures[s][i], NULL);
156
Christoph Bumillerfcb28682012-05-16 20:52:41 +0200157 for (i = 0; i < NVC0_MAX_PIPE_CONSTBUFS; ++i)
158 if (!nvc0->constbuf[s][i].user)
159 pipe_resource_reference(&nvc0->constbuf[s][i].u.buf, NULL);
Samuel Pitoisetabb34012016-05-12 21:06:05 +0200160
161 for (i = 0; i < NVC0_MAX_BUFFERS; ++i)
162 pipe_resource_reference(&nvc0->buffers[s][i].buffer, NULL);
163
Samuel Pitoiset2ae4b5d2016-07-04 19:15:02 +0200164 for (i = 0; i < NVC0_MAX_IMAGES; ++i) {
Samuel Pitoisetabb34012016-05-12 21:06:05 +0200165 pipe_resource_reference(&nvc0->images[s][i].resource, NULL);
Samuel Pitoiset2ae4b5d2016-07-04 19:15:02 +0200166 if (nvc0->screen->base.class_3d >= GM107_3D_CLASS)
167 pipe_sampler_view_reference(&nvc0->images_tic[s][i], NULL);
168 }
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100169 }
170
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100171 for (s = 0; s < 2; ++s) {
172 for (i = 0; i < NVC0_MAX_SURFACE_SLOTS; ++i)
173 pipe_surface_reference(&nvc0->surfaces[s][i], NULL);
174 }
175
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100176 for (i = 0; i < nvc0->num_tfbbufs; ++i)
Christoph Bumiller14bd9d72011-12-09 18:46:09 +0100177 pipe_so_target_reference(&nvc0->tfbbuf[i], NULL);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100178
179 for (i = 0; i < nvc0->global_residents.size / sizeof(struct pipe_resource *);
180 ++i) {
181 struct pipe_resource **res = util_dynarray_element(
182 &nvc0->global_residents, struct pipe_resource *, i);
183 pipe_resource_reference(res, NULL);
184 }
185 util_dynarray_fini(&nvc0->global_residents);
Ilia Mirkin884b4df2015-07-26 00:56:34 -0400186
187 if (nvc0->tcp_empty)
188 nvc0->base.pipe.delete_tcs_state(&nvc0->base.pipe, nvc0->tcp_empty);
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100189}
190
191static void
Christoph Bumiller4c224752010-11-12 15:17:40 +0100192nvc0_destroy(struct pipe_context *pipe)
193{
194 struct nvc0_context *nvc0 = nvc0_context(pipe);
195
Ilia Mirkine9b1ea22015-05-08 00:26:24 -0400196 if (nvc0->screen->cur_ctx == nvc0) {
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200197 nvc0->screen->cur_ctx = NULL;
Ilia Mirkine9b1ea22015-05-08 00:26:24 -0400198 nvc0->screen->save_state = nvc0->state;
199 nvc0->screen->save_state.tfb = NULL;
200 }
201
Christoph Bumiller7d11b762013-05-12 15:41:29 +0200202 /* Unset bufctx, we don't want to revalidate any resources after the flush.
203 * Other contexts will always set their bufctx again on action calls.
204 */
205 nouveau_pushbuf_bufctx(nvc0->base.pushbuf, NULL);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200206 nouveau_pushbuf_kick(nvc0->base.pushbuf, nvc0->base.pushbuf->channel);
207
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100208 nvc0_context_unreference_resources(nvc0);
Joakim Sindholt2a7762b2013-05-12 16:17:00 +0200209 nvc0_blitctx_destroy(nvc0);
Christoph Bumiller26a199e2011-03-13 13:06:42 +0100210
Marcin Slusarz17e04722012-06-05 23:26:05 +0200211 nouveau_context_destroy(&nvc0->base);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100212}
213
Christoph Bumillera6ea37d2011-02-20 17:57:47 +0100214void
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200215nvc0_default_kick_notify(struct nouveau_pushbuf *push)
Christoph Bumillera6ea37d2011-02-20 17:57:47 +0100216{
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200217 struct nvc0_screen *screen = push->user_priv;
Christoph Bumillera6ea37d2011-02-20 17:57:47 +0100218
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200219 if (screen) {
220 nouveau_fence_next(&screen->base);
Samuel Pitoisetcd0dec02015-07-20 21:32:43 +0200221 nouveau_fence_update(&screen->base, true);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200222 if (screen->cur_ctx)
Samuel Pitoisetcd0dec02015-07-20 21:32:43 +0200223 screen->cur_ctx->state.flushed = true;
Ilia Mirkin564e3052014-09-06 11:05:20 -0400224 NOUVEAU_DRV_STAT(&screen->base, pushbuf_count, 1);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200225 }
Christoph Bumillera6ea37d2011-02-20 17:57:47 +0100226}
227
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100228static int
229nvc0_invalidate_resource_storage(struct nouveau_context *ctx,
230 struct pipe_resource *res,
231 int ref)
232{
233 struct nvc0_context *nvc0 = nvc0_context(&ctx->pipe);
234 unsigned s, i;
235
Ilia Mirkin2fed18b2016-01-31 15:18:23 -0500236 if (res->bind & PIPE_BIND_RENDER_TARGET) {
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100237 for (i = 0; i < nvc0->framebuffer.nr_cbufs; ++i) {
238 if (nvc0->framebuffer.cbufs[i] &&
239 nvc0->framebuffer.cbufs[i]->texture == res) {
Samuel Pitoiset9c6a7bf2016-02-21 11:49:25 +0100240 nvc0->dirty_3d |= NVC0_NEW_3D_FRAMEBUFFER;
Samuel Pitoiset29992572016-02-21 11:58:35 +0100241 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_FB);
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100242 if (!--ref)
243 return ref;
244 }
245 }
246 }
Ilia Mirkin2fed18b2016-01-31 15:18:23 -0500247 if (res->bind & PIPE_BIND_DEPTH_STENCIL) {
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100248 if (nvc0->framebuffer.zsbuf &&
249 nvc0->framebuffer.zsbuf->texture == res) {
Samuel Pitoiset9c6a7bf2016-02-21 11:49:25 +0100250 nvc0->dirty_3d |= NVC0_NEW_3D_FRAMEBUFFER;
Samuel Pitoiset29992572016-02-21 11:58:35 +0100251 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_FB);
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100252 if (!--ref)
253 return ref;
254 }
255 }
256
Ilia Mirkin2fed18b2016-01-31 15:18:23 -0500257 if (res->target == PIPE_BUFFER) {
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100258 for (i = 0; i < nvc0->num_vtxbufs; ++i) {
259 if (nvc0->vtxbuf[i].buffer == res) {
Samuel Pitoiset9c6a7bf2016-02-21 11:49:25 +0100260 nvc0->dirty_3d |= NVC0_NEW_3D_ARRAYS;
Samuel Pitoiset29992572016-02-21 11:58:35 +0100261 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_VTX);
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100262 if (!--ref)
263 return ref;
264 }
265 }
Ilia Mirkinfecae462014-11-15 15:43:22 -0500266
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100267 if (nvc0->idxbuf.buffer == res) {
Samuel Pitoiset9c6a7bf2016-02-21 11:49:25 +0100268 nvc0->dirty_3d |= NVC0_NEW_3D_IDXBUF;
Samuel Pitoiset29992572016-02-21 11:58:35 +0100269 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_IDX);
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100270 if (!--ref)
271 return ref;
272 }
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100273
Samuel Pitoisetb8f0b002016-05-12 20:54:41 +0200274 for (s = 0; s < 6; ++s) {
Samuel Pitoiset988b09f2016-05-12 20:57:41 +0200275 for (i = 0; i < nvc0->num_textures[s]; ++i) {
276 if (nvc0->textures[s][i] &&
277 nvc0->textures[s][i]->texture == res) {
278 nvc0->textures_dirty[s] |= 1 << i;
279 if (unlikely(s == 5)) {
280 nvc0->dirty_cp |= NVC0_NEW_CP_TEXTURES;
281 nouveau_bufctx_reset(nvc0->bufctx_cp, NVC0_BIND_CP_TEX(i));
282 } else {
283 nvc0->dirty_3d |= NVC0_NEW_3D_TEXTURES;
284 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_TEX(s, i));
285 }
286 if (!--ref)
287 return ref;
288 }
289 }
290 }
291
292 for (s = 0; s < 6; ++s) {
293 for (i = 0; i < NVC0_MAX_PIPE_CONSTBUFS; ++i) {
294 if (!(nvc0->constbuf_valid[s] & (1 << i)))
295 continue;
296 if (!nvc0->constbuf[s][i].user &&
297 nvc0->constbuf[s][i].u.buf == res) {
298 nvc0->constbuf_dirty[s] |= 1 << i;
299 if (unlikely(s == 5)) {
300 nvc0->dirty_cp |= NVC0_NEW_CP_CONSTBUF;
301 nouveau_bufctx_reset(nvc0->bufctx_cp, NVC0_BIND_CP_CB(i));
302 } else {
303 nvc0->dirty_3d |= NVC0_NEW_3D_CONSTBUF;
304 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_CB(s, i));
305 }
306 if (!--ref)
307 return ref;
308 }
309 }
310 }
311
312 for (s = 0; s < 6; ++s) {
313 for (i = 0; i < NVC0_MAX_BUFFERS; ++i) {
314 if (nvc0->buffers[s][i].buffer == res) {
315 nvc0->buffers_dirty[s] |= 1 << i;
316 if (unlikely(s == 5)) {
317 nvc0->dirty_cp |= NVC0_NEW_CP_BUFFERS;
318 nouveau_bufctx_reset(nvc0->bufctx_cp, NVC0_BIND_CP_BUF);
319 } else {
320 nvc0->dirty_3d |= NVC0_NEW_3D_BUFFERS;
321 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_BUF);
322 }
323 if (!--ref)
324 return ref;
325 }
326 }
327 }
328
329 for (s = 0; s < 6; ++s) {
330 for (i = 0; i < NVC0_MAX_IMAGES; ++i) {
331 if (nvc0->images[s][i].resource == res) {
332 nvc0->images_dirty[s] |= 1 << i;
333 if (unlikely(s == 5)) {
334 nvc0->dirty_cp |= NVC0_NEW_CP_SURFACES;
335 nouveau_bufctx_reset(nvc0->bufctx_cp, NVC0_BIND_CP_SUF);
336 } else {
337 nvc0->dirty_3d |= NVC0_NEW_3D_SURFACES;
338 nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_3D_SUF);
339 }
Samuel Pitoisetb8f0b002016-05-12 20:54:41 +0200340 }
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100341 if (!--ref)
342 return ref;
343 }
344 }
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100345 }
346
347 return ref;
348}
349
Christoph Bumiller4da54c92013-04-06 14:52:05 +0200350static void
351nvc0_context_get_sample_position(struct pipe_context *, unsigned, unsigned,
352 float *);
353
Christoph Bumiller4c224752010-11-12 15:17:40 +0100354struct pipe_context *
Ilia Mirkinc4cbaca2015-08-26 14:04:03 -0400355nvc0_create(struct pipe_screen *pscreen, void *priv, unsigned ctxflags)
Christoph Bumiller4c224752010-11-12 15:17:40 +0100356{
Christoph Bumiller4c224752010-11-12 15:17:40 +0100357 struct nvc0_screen *screen = nvc0_screen(pscreen);
358 struct nvc0_context *nvc0;
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000359 struct pipe_context *pipe;
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200360 int ret;
361 uint32_t flags;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100362
363 nvc0 = CALLOC_STRUCT(nvc0_context);
364 if (!nvc0)
365 return NULL;
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000366 pipe = &nvc0->base.pipe;
367
Christoph Bumiller36ea7442012-09-26 23:06:40 +0200368 if (!nvc0_blitctx_create(nvc0))
369 goto out_err;
370
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200371 nvc0->base.pushbuf = screen->base.pushbuf;
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100372 nvc0->base.client = screen->base.client;
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200373
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100374 ret = nouveau_bufctx_new(screen->base.client, 2, &nvc0->bufctx);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200375 if (!ret)
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100376 ret = nouveau_bufctx_new(screen->base.client, NVC0_BIND_3D_COUNT,
377 &nvc0->bufctx_3d);
378 if (!ret)
379 ret = nouveau_bufctx_new(screen->base.client, NVC0_BIND_CP_COUNT,
380 &nvc0->bufctx_cp);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200381 if (ret)
382 goto out_err;
383
Christoph Bumiller4c224752010-11-12 15:17:40 +0100384 nvc0->screen = screen;
Christoph Bumillere44089b2012-04-14 23:56:56 +0200385 nvc0->base.screen = &screen->base;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100386
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000387 pipe->screen = pscreen;
388 pipe->priv = priv;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100389
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000390 pipe->destroy = nvc0_destroy;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100391
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000392 pipe->draw_vbo = nvc0_draw_vbo;
393 pipe->clear = nvc0_clear;
Samuel Pitoiset9dcd7882013-07-25 10:35:35 +0200394 pipe->launch_grid = (nvc0->screen->base.class_3d >= NVE4_3D_CLASS) ?
395 nve4_launch_grid : nvc0_launch_grid;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100396
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000397 pipe->flush = nvc0_flush;
Christoph Bumiller83ff3802011-03-17 17:07:30 +0100398 pipe->texture_barrier = nvc0_texture_barrier;
Ilia Mirkin3df4d692014-04-30 16:45:16 -0400399 pipe->memory_barrier = nvc0_memory_barrier;
Christoph Bumiller4da54c92013-04-06 14:52:05 +0200400 pipe->get_sample_position = nvc0_context_get_sample_position;
Ilia Mirkin59ca9212016-04-03 16:02:59 -0400401 pipe->emit_string_marker = nvc0_emit_string_marker;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100402
Ilia Mirkin4335b282015-10-30 17:23:22 -0400403 nouveau_context_init(&nvc0->base);
Christoph Bumillerb3d8e1f2011-01-09 21:50:06 +0100404 nvc0_init_query_functions(nvc0);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100405 nvc0_init_surface_functions(nvc0);
406 nvc0_init_state_functions(nvc0);
Christoph Bumillere44089b2012-04-14 23:56:56 +0200407 nvc0_init_transfer_functions(nvc0);
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000408 nvc0_init_resource_functions(pipe);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100409
Christoph Bumiller48a45ec2013-01-08 16:13:11 +0100410 nvc0->base.invalidate_resource_storage = nvc0_invalidate_resource_storage;
411
Christian Königf2f70642013-07-15 03:48:04 -0600412 pipe->create_video_codec = nvc0_create_decoder;
Maarten Lankhorst4fad2112012-12-02 12:07:35 +0100413 pipe->create_video_buffer = nvc0_video_buffer_create;
Christoph Bumillerea316c52011-07-21 10:39:41 +0200414
Christoph Bumiller3afabfb2011-09-13 23:10:35 +0200415 /* shader builtin library is per-screen, but we need a context for m2mf */
416 nvc0_program_library_upload(nvc0);
Ilia Mirkin884b4df2015-07-26 00:56:34 -0400417 nvc0_program_init_tcp_empty(nvc0);
418 if (!nvc0->tcp_empty)
419 goto out_err;
420 /* set the empty tctl prog on next draw in case one is never set */
Samuel Pitoiset9c6a7bf2016-02-21 11:49:25 +0100421 nvc0->dirty_3d |= NVC0_NEW_3D_TCTLPROG;
Ilia Mirkin884b4df2015-07-26 00:56:34 -0400422
Samuel Pitoiseta9b70a82016-01-11 22:11:19 +0100423 /* Do not bind the COMPUTE driver constbuf at screen initialization because
424 * CBs are aliased between 3D and COMPUTE, but make sure it will be bound if
425 * a grid is launched later. */
Samuel Pitoiset29992572016-02-21 11:58:35 +0100426 nvc0->dirty_cp |= NVC0_NEW_CP_DRIVERCONST;
Samuel Pitoiseta9b70a82016-01-11 22:11:19 +0100427
Ilia Mirkin884b4df2015-07-26 00:56:34 -0400428 /* now that there are no more opportunities for errors, set the current
429 * context if there isn't already one.
430 */
431 if (!screen->cur_ctx) {
432 nvc0->state = screen->save_state;
433 screen->cur_ctx = nvc0;
434 nouveau_pushbuf_bufctx(screen->base.pushbuf, nvc0->bufctx);
435 }
436 screen->base.pushbuf->kick_notify = nvc0_default_kick_notify;
Christoph Bumiller3afabfb2011-09-13 23:10:35 +0200437
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200438 /* add permanently resident buffers to bufctxts */
439
Alexandre Courbotda8300c2014-10-17 15:05:32 +0900440 flags = NV_VRAM_DOMAIN(&screen->base) | NOUVEAU_BO_RD;
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200441
Samuel Pitoiset96e21ad2016-08-31 22:52:45 +0200442 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_TEXT, flags, screen->text);
Samuel Pitoiset29992572016-02-21 11:58:35 +0100443 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_SCREEN, flags, screen->uniform_bo);
444 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_SCREEN, flags, screen->txc);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100445 if (screen->compute) {
Samuel Pitoiset96e21ad2016-08-31 22:52:45 +0200446 BCTX_REFN_bo(nvc0->bufctx_cp, CP_TEXT, flags, screen->text);
Samuel Pitoiseta9b70a82016-01-11 22:11:19 +0100447 BCTX_REFN_bo(nvc0->bufctx_cp, CP_SCREEN, flags, screen->uniform_bo);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100448 BCTX_REFN_bo(nvc0->bufctx_cp, CP_SCREEN, flags, screen->txc);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100449 }
450
Alexandre Courbotda8300c2014-10-17 15:05:32 +0900451 flags = NV_VRAM_DOMAIN(&screen->base) | NOUVEAU_BO_RDWR;
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100452
Ben Skeggs9c64cb82014-05-09 15:56:08 +1000453 if (screen->poly_cache)
Samuel Pitoiset29992572016-02-21 11:58:35 +0100454 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_SCREEN, flags, screen->poly_cache);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100455 if (screen->compute)
456 BCTX_REFN_bo(nvc0->bufctx_cp, CP_SCREEN, flags, screen->tls);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200457
458 flags = NOUVEAU_BO_GART | NOUVEAU_BO_WR;
459
Samuel Pitoiset29992572016-02-21 11:58:35 +0100460 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_SCREEN, flags, screen->fence.bo);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200461 BCTX_REFN_bo(nvc0->bufctx, FENCE, flags, screen->fence.bo);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100462 if (screen->compute)
463 BCTX_REFN_bo(nvc0->bufctx_cp, CP_SCREEN, flags, screen->fence.bo);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200464
Christoph Bumiller2206a7f2012-03-01 21:28:29 +0100465 nvc0->base.scratch.bo_size = 2 << 20;
466
Christoph Bumillerc321b1b2012-07-11 20:52:58 +0200467 memset(nvc0->tex_handles, ~0, sizeof(nvc0->tex_handles));
468
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100469 util_dynarray_init(&nvc0->global_residents);
470
Ben Skeggs1ba8e952011-03-01 15:28:26 +1000471 return pipe;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100472
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200473out_err:
474 if (nvc0) {
475 if (nvc0->bufctx_3d)
476 nouveau_bufctx_del(&nvc0->bufctx_3d);
Christoph Bumillere066f2f2013-02-23 19:40:23 +0100477 if (nvc0->bufctx_cp)
478 nouveau_bufctx_del(&nvc0->bufctx_cp);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200479 if (nvc0->bufctx)
480 nouveau_bufctx_del(&nvc0->bufctx);
Matt Turner9019e5e2014-09-21 21:13:33 -0700481 FREE(nvc0->blit);
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200482 FREE(nvc0);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100483 }
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200484 return NULL;
Christoph Bumiller4c224752010-11-12 15:17:40 +0100485}
486
487void
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200488nvc0_bufctx_fence(struct nvc0_context *nvc0, struct nouveau_bufctx *bufctx,
Samuel Pitoisetcd0dec02015-07-20 21:32:43 +0200489 bool on_flush)
Christoph Bumiller4c224752010-11-12 15:17:40 +0100490{
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200491 struct nouveau_list *list = on_flush ? &bufctx->current : &bufctx->pending;
492 struct nouveau_list *it;
Christoph Bumiller198f5142013-03-29 16:30:58 +0100493 NOUVEAU_DRV_STAT_IFD(unsigned count = 0);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100494
Christoph Bumiller6d1cdec2012-04-06 15:41:55 +0200495 for (it = list->next; it != list; it = it->next) {
496 struct nouveau_bufref *ref = (struct nouveau_bufref *)it;
497 struct nv04_resource *res = ref->priv;
498 if (res)
499 nvc0_resource_validate(res, (unsigned)ref->priv_data);
Christoph Bumiller198f5142013-03-29 16:30:58 +0100500 NOUVEAU_DRV_STAT_IFD(count++);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100501 }
Christoph Bumiller198f5142013-03-29 16:30:58 +0100502 NOUVEAU_DRV_STAT(&nvc0->screen->base, resource_validate_count, count);
Christoph Bumiller4c224752010-11-12 15:17:40 +0100503}
Christoph Bumiller4da54c92013-04-06 14:52:05 +0200504
Samuel Pitoisete7b2ce52016-07-25 00:02:12 +0200505const void *
506nvc0_get_sample_locations(unsigned sample_count)
Christoph Bumiller4da54c92013-04-06 14:52:05 +0200507{
508 static const uint8_t ms1[1][2] = { { 0x8, 0x8 } };
509 static const uint8_t ms2[2][2] = {
510 { 0x4, 0x4 }, { 0xc, 0xc } }; /* surface coords (0,0), (1,0) */
511 static const uint8_t ms4[4][2] = {
512 { 0x6, 0x2 }, { 0xe, 0x6 }, /* (0,0), (1,0) */
513 { 0x2, 0xa }, { 0xa, 0xe } }; /* (0,1), (1,1) */
514 static const uint8_t ms8[8][2] = {
515 { 0x1, 0x7 }, { 0x5, 0x3 }, /* (0,0), (1,0) */
516 { 0x3, 0xd }, { 0x7, 0xb }, /* (0,1), (1,1) */
517 { 0x9, 0x5 }, { 0xf, 0x1 }, /* (2,0), (3,0) */
518 { 0xb, 0xf }, { 0xd, 0x9 } }; /* (2,1), (3,1) */
519#if 0
520 /* NOTE: there are alternative modes for MS2 and MS8, currently not used */
521 static const uint8_t ms8_alt[8][2] = {
522 { 0x9, 0x5 }, { 0x7, 0xb }, /* (2,0), (1,1) */
523 { 0xd, 0x9 }, { 0x5, 0x3 }, /* (3,1), (1,0) */
524 { 0x3, 0xd }, { 0x1, 0x7 }, /* (0,1), (0,0) */
525 { 0xb, 0xf }, { 0xf, 0x1 } }; /* (2,1), (3,0) */
526#endif
527
528 const uint8_t (*ptr)[2];
529
530 switch (sample_count) {
531 case 0:
532 case 1: ptr = ms1; break;
533 case 2: ptr = ms2; break;
534 case 4: ptr = ms4; break;
535 case 8: ptr = ms8; break;
536 default:
537 assert(0);
Samuel Pitoisete7b2ce52016-07-25 00:02:12 +0200538 return NULL; /* bad sample count -> undefined locations */
Christoph Bumiller4da54c92013-04-06 14:52:05 +0200539 }
Samuel Pitoisete7b2ce52016-07-25 00:02:12 +0200540 return ptr;
541}
542
543static void
544nvc0_context_get_sample_position(struct pipe_context *pipe,
545 unsigned sample_count, unsigned sample_index,
546 float *xy)
547{
548 const uint8_t (*ptr)[2];
549
550 ptr = nvc0_get_sample_locations(sample_count);
551 if (!ptr)
552 return;
553
Christoph Bumiller4da54c92013-04-06 14:52:05 +0200554 xy[0] = ptr[sample_index][0] * 0.0625f;
555 xy[1] = ptr[sample_index][1] * 0.0625f;
556}