nvc0: define driver-specific query groups
[mesa.git] / src / gallium / drivers / nouveau / nvc0 / nvc0_screen.c
1 /*
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
17 * 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.
21 */
22
23 #include <xf86drm.h>
24 #include <nouveau_drm.h>
25 #include "util/u_format.h"
26 #include "util/u_format_s3tc.h"
27 #include "pipe/p_screen.h"
28
29 #include "vl/vl_decoder.h"
30 #include "vl/vl_video_buffer.h"
31
32 #include "nouveau_vp3_video.h"
33
34 #include "nvc0/nvc0_context.h"
35 #include "nvc0/nvc0_screen.h"
36
37 #include "nvc0/mme/com9097.mme.h"
38
39 static boolean
40 nvc0_screen_is_format_supported(struct pipe_screen *pscreen,
41 enum pipe_format format,
42 enum pipe_texture_target target,
43 unsigned sample_count,
44 unsigned bindings)
45 {
46 if (sample_count > 8)
47 return FALSE;
48 if (!(0x117 & (1 << sample_count))) /* 0, 1, 2, 4 or 8 */
49 return FALSE;
50
51 if (!util_format_is_supported(format, bindings))
52 return FALSE;
53
54 if ((bindings & PIPE_BIND_SAMPLER_VIEW) && (target != PIPE_BUFFER))
55 if (util_format_get_blocksizebits(format) == 3 * 32)
56 return FALSE;
57
58 /* transfers & shared are always supported */
59 bindings &= ~(PIPE_BIND_TRANSFER_READ |
60 PIPE_BIND_TRANSFER_WRITE |
61 PIPE_BIND_SHARED);
62
63 return (nvc0_format_table[format].usage & bindings) == bindings;
64 }
65
66 static int
67 nvc0_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
68 {
69 const uint16_t class_3d = nouveau_screen(pscreen)->class_3d;
70 struct nouveau_device *dev = nouveau_screen(pscreen)->device;
71
72 switch (param) {
73 /* non-boolean caps */
74 case PIPE_CAP_MAX_TEXTURE_2D_LEVELS:
75 case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS:
76 return 15;
77 case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
78 return (class_3d >= NVE4_3D_CLASS) ? 13 : 12;
79 case PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS:
80 return 2048;
81 case PIPE_CAP_MIN_TEXEL_OFFSET:
82 return -8;
83 case PIPE_CAP_MAX_TEXEL_OFFSET:
84 return 7;
85 case PIPE_CAP_MIN_TEXTURE_GATHER_OFFSET:
86 return -32;
87 case PIPE_CAP_MAX_TEXTURE_GATHER_OFFSET:
88 return 31;
89 case PIPE_CAP_MAX_TEXTURE_BUFFER_SIZE:
90 return 65536;
91 case PIPE_CAP_GLSL_FEATURE_LEVEL:
92 return 410;
93 case PIPE_CAP_MAX_RENDER_TARGETS:
94 return 8;
95 case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS:
96 return 1;
97 case PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS:
98 return 4;
99 case PIPE_CAP_MAX_STREAM_OUTPUT_SEPARATE_COMPONENTS:
100 case PIPE_CAP_MAX_STREAM_OUTPUT_INTERLEAVED_COMPONENTS:
101 return 128;
102 case PIPE_CAP_MAX_GEOMETRY_OUTPUT_VERTICES:
103 case PIPE_CAP_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS:
104 return 1024;
105 case PIPE_CAP_MAX_VERTEX_STREAMS:
106 return 4;
107 case PIPE_CAP_MAX_VERTEX_ATTRIB_STRIDE:
108 return 2048;
109 case PIPE_CAP_CONSTANT_BUFFER_OFFSET_ALIGNMENT:
110 return 256;
111 case PIPE_CAP_TEXTURE_BUFFER_OFFSET_ALIGNMENT:
112 return 1; /* 256 for binding as RT, but that's not possible in GL */
113 case PIPE_CAP_MIN_MAP_BUFFER_ALIGNMENT:
114 return NOUVEAU_MIN_BUFFER_MAP_ALIGN;
115 case PIPE_CAP_MAX_VIEWPORTS:
116 return NVC0_MAX_VIEWPORTS;
117 case PIPE_CAP_MAX_TEXTURE_GATHER_COMPONENTS:
118 return 4;
119 case PIPE_CAP_TEXTURE_BORDER_COLOR_QUIRK:
120 return PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50;
121 case PIPE_CAP_ENDIANNESS:
122 return PIPE_ENDIAN_LITTLE;
123
124 /* supported caps */
125 case PIPE_CAP_TEXTURE_MIRROR_CLAMP:
126 case PIPE_CAP_TEXTURE_SWIZZLE:
127 case PIPE_CAP_TEXTURE_SHADOW_MAP:
128 case PIPE_CAP_NPOT_TEXTURES:
129 case PIPE_CAP_MIXED_FRAMEBUFFER_SIZES:
130 case PIPE_CAP_ANISOTROPIC_FILTER:
131 case PIPE_CAP_SEAMLESS_CUBE_MAP:
132 case PIPE_CAP_CUBE_MAP_ARRAY:
133 case PIPE_CAP_TEXTURE_BUFFER_OBJECTS:
134 case PIPE_CAP_TEXTURE_MULTISAMPLE:
135 case PIPE_CAP_TWO_SIDED_STENCIL:
136 case PIPE_CAP_DEPTH_CLIP_DISABLE:
137 case PIPE_CAP_POINT_SPRITE:
138 case PIPE_CAP_TGSI_TEXCOORD:
139 case PIPE_CAP_SM3:
140 case PIPE_CAP_FRAGMENT_COLOR_CLAMPED:
141 case PIPE_CAP_VERTEX_COLOR_UNCLAMPED:
142 case PIPE_CAP_VERTEX_COLOR_CLAMPED:
143 case PIPE_CAP_QUERY_TIMESTAMP:
144 case PIPE_CAP_QUERY_TIME_ELAPSED:
145 case PIPE_CAP_OCCLUSION_QUERY:
146 case PIPE_CAP_STREAM_OUTPUT_PAUSE_RESUME:
147 case PIPE_CAP_QUERY_PIPELINE_STATISTICS:
148 case PIPE_CAP_BLEND_EQUATION_SEPARATE:
149 case PIPE_CAP_INDEP_BLEND_ENABLE:
150 case PIPE_CAP_INDEP_BLEND_FUNC:
151 case PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT:
152 case PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER:
153 case PIPE_CAP_PRIMITIVE_RESTART:
154 case PIPE_CAP_TGSI_INSTANCEID:
155 case PIPE_CAP_VERTEX_ELEMENT_INSTANCE_DIVISOR:
156 case PIPE_CAP_MIXED_COLORBUFFER_FORMATS:
157 case PIPE_CAP_CONDITIONAL_RENDER:
158 case PIPE_CAP_TEXTURE_BARRIER:
159 case PIPE_CAP_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION:
160 case PIPE_CAP_START_INSTANCE:
161 case PIPE_CAP_BUFFER_MAP_PERSISTENT_COHERENT:
162 case PIPE_CAP_DRAW_INDIRECT:
163 case PIPE_CAP_USER_CONSTANT_BUFFERS:
164 case PIPE_CAP_USER_INDEX_BUFFERS:
165 case PIPE_CAP_USER_VERTEX_BUFFERS:
166 case PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER:
167 case PIPE_CAP_TEXTURE_QUERY_LOD:
168 case PIPE_CAP_SAMPLE_SHADING:
169 case PIPE_CAP_TEXTURE_GATHER_OFFSETS:
170 case PIPE_CAP_TEXTURE_GATHER_SM5:
171 case PIPE_CAP_TGSI_FS_FINE_DERIVATIVE:
172 case PIPE_CAP_CONDITIONAL_RENDER_INVERTED:
173 case PIPE_CAP_SAMPLER_VIEW_TARGET:
174 case PIPE_CAP_CLIP_HALFZ:
175 case PIPE_CAP_POLYGON_OFFSET_CLAMP:
176 case PIPE_CAP_MULTISAMPLE_Z_RESOLVE:
177 return 1;
178 case PIPE_CAP_SEAMLESS_CUBE_MAP_PER_TEXTURE:
179 return (class_3d >= NVE4_3D_CLASS) ? 1 : 0;
180 case PIPE_CAP_COMPUTE:
181 return (class_3d == NVE4_3D_CLASS) ? 1 : 0;
182
183 /* unsupported caps */
184 case PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT:
185 case PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER:
186 case PIPE_CAP_SHADER_STENCIL_EXPORT:
187 case PIPE_CAP_TGSI_CAN_COMPACT_CONSTANTS:
188 case PIPE_CAP_VERTEX_BUFFER_OFFSET_4BYTE_ALIGNED_ONLY:
189 case PIPE_CAP_VERTEX_BUFFER_STRIDE_4BYTE_ALIGNED_ONLY:
190 case PIPE_CAP_VERTEX_ELEMENT_SRC_OFFSET_4BYTE_ALIGNED_ONLY:
191 case PIPE_CAP_TGSI_VS_LAYER_VIEWPORT:
192 case PIPE_CAP_FAKE_SW_MSAA:
193 case PIPE_CAP_TGSI_VS_WINDOW_SPACE_POSITION:
194 case PIPE_CAP_VERTEXID_NOBASE:
195 case PIPE_CAP_RESOURCE_FROM_USER_MEMORY:
196 return 0;
197
198 case PIPE_CAP_VENDOR_ID:
199 return 0x10de;
200 case PIPE_CAP_DEVICE_ID: {
201 uint64_t device_id;
202 if (nouveau_getparam(dev, NOUVEAU_GETPARAM_PCI_DEVICE, &device_id)) {
203 NOUVEAU_ERR("NOUVEAU_GETPARAM_PCI_DEVICE failed.\n");
204 return -1;
205 }
206 return device_id;
207 }
208 case PIPE_CAP_ACCELERATED:
209 return 1;
210 case PIPE_CAP_VIDEO_MEMORY:
211 return dev->vram_size >> 20;
212 case PIPE_CAP_UMA:
213 return 0;
214 }
215
216 NOUVEAU_ERR("unknown PIPE_CAP %d\n", param);
217 return 0;
218 }
219
220 static int
221 nvc0_screen_get_shader_param(struct pipe_screen *pscreen, unsigned shader,
222 enum pipe_shader_cap param)
223 {
224 const uint16_t class_3d = nouveau_screen(pscreen)->class_3d;
225
226 switch (shader) {
227 case PIPE_SHADER_VERTEX:
228 /*
229 case PIPE_SHADER_TESSELLATION_CONTROL:
230 case PIPE_SHADER_TESSELLATION_EVALUATION:
231 */
232 case PIPE_SHADER_GEOMETRY:
233 case PIPE_SHADER_FRAGMENT:
234 break;
235 case PIPE_SHADER_COMPUTE:
236 if (class_3d != NVE4_3D_CLASS)
237 return 0;
238 break;
239 default:
240 return 0;
241 }
242
243 switch (param) {
244 case PIPE_SHADER_CAP_PREFERRED_IR:
245 return PIPE_SHADER_IR_TGSI;
246 case PIPE_SHADER_CAP_MAX_INSTRUCTIONS:
247 case PIPE_SHADER_CAP_MAX_ALU_INSTRUCTIONS:
248 case PIPE_SHADER_CAP_MAX_TEX_INSTRUCTIONS:
249 case PIPE_SHADER_CAP_MAX_TEX_INDIRECTIONS:
250 return 16384;
251 case PIPE_SHADER_CAP_MAX_CONTROL_FLOW_DEPTH:
252 return 16;
253 case PIPE_SHADER_CAP_MAX_INPUTS:
254 if (shader == PIPE_SHADER_VERTEX)
255 return 32;
256 /* NOTE: These only count our slots for GENERIC varyings.
257 * The address space may be larger, but the actual hard limit seems to be
258 * less than what the address space layout permits, so don't add TEXCOORD,
259 * COLOR, etc. here.
260 */
261 if (shader == PIPE_SHADER_FRAGMENT)
262 return 0x1f0 / 16;
263 /* Actually this counts CLIPVERTEX, which occupies the last generic slot,
264 * and excludes 0x60 per-patch inputs.
265 */
266 return 0x200 / 16;
267 case PIPE_SHADER_CAP_MAX_OUTPUTS:
268 return 32;
269 case PIPE_SHADER_CAP_MAX_CONST_BUFFER_SIZE:
270 return 65536;
271 case PIPE_SHADER_CAP_MAX_CONST_BUFFERS:
272 if (shader == PIPE_SHADER_COMPUTE && class_3d >= NVE4_3D_CLASS)
273 return NVE4_MAX_PIPE_CONSTBUFS_COMPUTE;
274 return NVC0_MAX_PIPE_CONSTBUFS;
275 case PIPE_SHADER_CAP_INDIRECT_INPUT_ADDR:
276 case PIPE_SHADER_CAP_INDIRECT_OUTPUT_ADDR:
277 return shader != PIPE_SHADER_FRAGMENT;
278 case PIPE_SHADER_CAP_INDIRECT_TEMP_ADDR:
279 case PIPE_SHADER_CAP_INDIRECT_CONST_ADDR:
280 return 1;
281 case PIPE_SHADER_CAP_MAX_PREDS:
282 return 0;
283 case PIPE_SHADER_CAP_MAX_TEMPS:
284 return NVC0_CAP_MAX_PROGRAM_TEMPS;
285 case PIPE_SHADER_CAP_TGSI_CONT_SUPPORTED:
286 return 1;
287 case PIPE_SHADER_CAP_TGSI_SQRT_SUPPORTED:
288 return 0;
289 case PIPE_SHADER_CAP_SUBROUTINES:
290 return 1;
291 case PIPE_SHADER_CAP_INTEGERS:
292 return 1;
293 case PIPE_SHADER_CAP_DOUBLES:
294 return 1;
295 case PIPE_SHADER_CAP_TGSI_DROUND_SUPPORTED:
296 return 1;
297 case PIPE_SHADER_CAP_TGSI_DFRACEXP_DLDEXP_SUPPORTED:
298 case PIPE_SHADER_CAP_TGSI_FMA_SUPPORTED:
299 return 0;
300 case PIPE_SHADER_CAP_MAX_TEXTURE_SAMPLERS:
301 return 16; /* would be 32 in linked (OpenGL-style) mode */
302 case PIPE_SHADER_CAP_MAX_SAMPLER_VIEWS:
303 return 16; /* XXX not sure if more are really safe */
304 default:
305 NOUVEAU_ERR("unknown PIPE_SHADER_CAP %d\n", param);
306 return 0;
307 }
308 }
309
310 static float
311 nvc0_screen_get_paramf(struct pipe_screen *pscreen, enum pipe_capf param)
312 {
313 switch (param) {
314 case PIPE_CAPF_MAX_LINE_WIDTH:
315 case PIPE_CAPF_MAX_LINE_WIDTH_AA:
316 return 10.0f;
317 case PIPE_CAPF_MAX_POINT_WIDTH:
318 return 63.0f;
319 case PIPE_CAPF_MAX_POINT_WIDTH_AA:
320 return 63.375f;
321 case PIPE_CAPF_MAX_TEXTURE_ANISOTROPY:
322 return 16.0f;
323 case PIPE_CAPF_MAX_TEXTURE_LOD_BIAS:
324 return 15.0f;
325 case PIPE_CAPF_GUARD_BAND_LEFT:
326 case PIPE_CAPF_GUARD_BAND_TOP:
327 return 0.0f;
328 case PIPE_CAPF_GUARD_BAND_RIGHT:
329 case PIPE_CAPF_GUARD_BAND_BOTTOM:
330 return 0.0f; /* that or infinity */
331 }
332
333 NOUVEAU_ERR("unknown PIPE_CAPF %d\n", param);
334 return 0.0f;
335 }
336
337 static int
338 nvc0_screen_get_compute_param(struct pipe_screen *pscreen,
339 enum pipe_compute_cap param, void *data)
340 {
341 uint64_t *data64 = (uint64_t *)data;
342 const uint16_t obj_class = nvc0_screen(pscreen)->compute->oclass;
343
344 switch (param) {
345 case PIPE_COMPUTE_CAP_GRID_DIMENSION:
346 data64[0] = 3;
347 return 8;
348 case PIPE_COMPUTE_CAP_MAX_GRID_SIZE:
349 data64[0] = (obj_class >= NVE4_COMPUTE_CLASS) ? 0x7fffffff : 65535;
350 data64[1] = 65535;
351 data64[2] = 65535;
352 return 24;
353 case PIPE_COMPUTE_CAP_MAX_BLOCK_SIZE:
354 data64[0] = 1024;
355 data64[1] = 1024;
356 data64[2] = 64;
357 return 24;
358 case PIPE_COMPUTE_CAP_MAX_THREADS_PER_BLOCK:
359 data64[0] = 1024;
360 return 8;
361 case PIPE_COMPUTE_CAP_MAX_GLOBAL_SIZE: /* g[] */
362 data64[0] = (uint64_t)1 << 40;
363 return 8;
364 case PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE: /* s[] */
365 data64[0] = 48 << 10;
366 return 8;
367 case PIPE_COMPUTE_CAP_MAX_PRIVATE_SIZE: /* l[] */
368 data64[0] = 512 << 10;
369 return 8;
370 case PIPE_COMPUTE_CAP_MAX_INPUT_SIZE: /* c[], arbitrary limit */
371 data64[0] = 4096;
372 return 8;
373 default:
374 return 0;
375 }
376 }
377
378 static void
379 nvc0_screen_destroy(struct pipe_screen *pscreen)
380 {
381 struct nvc0_screen *screen = nvc0_screen(pscreen);
382
383 if (!nouveau_drm_screen_unref(&screen->base))
384 return;
385
386 if (screen->base.fence.current) {
387 struct nouveau_fence *current = NULL;
388
389 /* nouveau_fence_wait will create a new current fence, so wait on the
390 * _current_ one, and remove both.
391 */
392 nouveau_fence_ref(screen->base.fence.current, &current);
393 nouveau_fence_wait(current);
394 nouveau_fence_ref(NULL, &current);
395 nouveau_fence_ref(NULL, &screen->base.fence.current);
396 }
397 if (screen->base.pushbuf)
398 screen->base.pushbuf->user_priv = NULL;
399
400 if (screen->blitter)
401 nvc0_blitter_destroy(screen);
402 if (screen->pm.prog) {
403 screen->pm.prog->code = NULL; /* hardcoded, don't FREE */
404 nvc0_program_destroy(NULL, screen->pm.prog);
405 }
406
407 nouveau_bo_ref(NULL, &screen->text);
408 nouveau_bo_ref(NULL, &screen->uniform_bo);
409 nouveau_bo_ref(NULL, &screen->tls);
410 nouveau_bo_ref(NULL, &screen->txc);
411 nouveau_bo_ref(NULL, &screen->fence.bo);
412 nouveau_bo_ref(NULL, &screen->poly_cache);
413 nouveau_bo_ref(NULL, &screen->parm);
414
415 nouveau_heap_destroy(&screen->lib_code);
416 nouveau_heap_destroy(&screen->text_heap);
417
418 FREE(screen->tic.entries);
419
420 nouveau_object_del(&screen->eng3d);
421 nouveau_object_del(&screen->eng2d);
422 nouveau_object_del(&screen->m2mf);
423 nouveau_object_del(&screen->compute);
424 nouveau_object_del(&screen->nvsw);
425
426 nouveau_screen_fini(&screen->base);
427
428 FREE(screen);
429 }
430
431 static int
432 nvc0_graph_set_macro(struct nvc0_screen *screen, uint32_t m, unsigned pos,
433 unsigned size, const uint32_t *data)
434 {
435 struct nouveau_pushbuf *push = screen->base.pushbuf;
436
437 size /= 4;
438
439 assert((pos + size) <= 0x800);
440
441 BEGIN_NVC0(push, SUBC_3D(NVC0_GRAPH_MACRO_ID), 2);
442 PUSH_DATA (push, (m - 0x3800) / 8);
443 PUSH_DATA (push, pos);
444 BEGIN_1IC0(push, SUBC_3D(NVC0_GRAPH_MACRO_UPLOAD_POS), size + 1);
445 PUSH_DATA (push, pos);
446 PUSH_DATAp(push, data, size);
447
448 return pos + size;
449 }
450
451 static void
452 nvc0_magic_3d_init(struct nouveau_pushbuf *push, uint16_t obj_class)
453 {
454 BEGIN_NVC0(push, SUBC_3D(0x10cc), 1);
455 PUSH_DATA (push, 0xff);
456 BEGIN_NVC0(push, SUBC_3D(0x10e0), 2);
457 PUSH_DATA (push, 0xff);
458 PUSH_DATA (push, 0xff);
459 BEGIN_NVC0(push, SUBC_3D(0x10ec), 2);
460 PUSH_DATA (push, 0xff);
461 PUSH_DATA (push, 0xff);
462 BEGIN_NVC0(push, SUBC_3D(0x074c), 1);
463 PUSH_DATA (push, 0x3f);
464
465 BEGIN_NVC0(push, SUBC_3D(0x16a8), 1);
466 PUSH_DATA (push, (3 << 16) | 3);
467 BEGIN_NVC0(push, SUBC_3D(0x1794), 1);
468 PUSH_DATA (push, (2 << 16) | 2);
469
470 if (obj_class < GM107_3D_CLASS) {
471 BEGIN_NVC0(push, SUBC_3D(0x12ac), 1);
472 PUSH_DATA (push, 0);
473 }
474 BEGIN_NVC0(push, SUBC_3D(0x0218), 1);
475 PUSH_DATA (push, 0x10);
476 BEGIN_NVC0(push, SUBC_3D(0x10fc), 1);
477 PUSH_DATA (push, 0x10);
478 BEGIN_NVC0(push, SUBC_3D(0x1290), 1);
479 PUSH_DATA (push, 0x10);
480 BEGIN_NVC0(push, SUBC_3D(0x12d8), 2);
481 PUSH_DATA (push, 0x10);
482 PUSH_DATA (push, 0x10);
483 BEGIN_NVC0(push, SUBC_3D(0x1140), 1);
484 PUSH_DATA (push, 0x10);
485 BEGIN_NVC0(push, SUBC_3D(0x1610), 1);
486 PUSH_DATA (push, 0xe);
487
488 BEGIN_NVC0(push, NVC0_3D(VERTEX_ID_GEN_MODE), 1);
489 PUSH_DATA (push, NVC0_3D_VERTEX_ID_GEN_MODE_DRAW_ARRAYS_ADD_START);
490 BEGIN_NVC0(push, SUBC_3D(0x030c), 1);
491 PUSH_DATA (push, 0);
492 BEGIN_NVC0(push, SUBC_3D(0x0300), 1);
493 PUSH_DATA (push, 3);
494
495 BEGIN_NVC0(push, SUBC_3D(0x02d0), 1);
496 PUSH_DATA (push, 0x3fffff);
497 BEGIN_NVC0(push, SUBC_3D(0x0fdc), 1);
498 PUSH_DATA (push, 1);
499 BEGIN_NVC0(push, SUBC_3D(0x19c0), 1);
500 PUSH_DATA (push, 1);
501
502 if (obj_class < GM107_3D_CLASS) {
503 BEGIN_NVC0(push, SUBC_3D(0x075c), 1);
504 PUSH_DATA (push, 3);
505
506 if (obj_class >= NVE4_3D_CLASS) {
507 BEGIN_NVC0(push, SUBC_3D(0x07fc), 1);
508 PUSH_DATA (push, 1);
509 }
510 }
511
512 /* TODO: find out what software methods 0x1528, 0x1280 and (on nve4) 0x02dc
513 * are supposed to do */
514 }
515
516 static void
517 nvc0_screen_fence_emit(struct pipe_screen *pscreen, u32 *sequence)
518 {
519 struct nvc0_screen *screen = nvc0_screen(pscreen);
520 struct nouveau_pushbuf *push = screen->base.pushbuf;
521
522 /* we need to do it after possible flush in MARK_RING */
523 *sequence = ++screen->base.fence.sequence;
524
525 BEGIN_NVC0(push, NVC0_3D(QUERY_ADDRESS_HIGH), 4);
526 PUSH_DATAh(push, screen->fence.bo->offset);
527 PUSH_DATA (push, screen->fence.bo->offset);
528 PUSH_DATA (push, *sequence);
529 PUSH_DATA (push, NVC0_3D_QUERY_GET_FENCE | NVC0_3D_QUERY_GET_SHORT |
530 (0xf << NVC0_3D_QUERY_GET_UNIT__SHIFT));
531 }
532
533 static u32
534 nvc0_screen_fence_update(struct pipe_screen *pscreen)
535 {
536 struct nvc0_screen *screen = nvc0_screen(pscreen);
537 return screen->fence.map[0];
538 }
539
540 static int
541 nvc0_screen_init_compute(struct nvc0_screen *screen)
542 {
543 screen->base.base.get_compute_param = nvc0_screen_get_compute_param;
544
545 switch (screen->base.device->chipset & ~0xf) {
546 case 0xc0:
547 case 0xd0:
548 /* Using COMPUTE has weird effects on 3D state, we need to
549 * investigate this further before enabling it by default.
550 */
551 if (debug_get_bool_option("NVC0_COMPUTE", FALSE))
552 return nvc0_screen_compute_setup(screen, screen->base.pushbuf);
553 return 0;
554 case 0xe0:
555 return nve4_screen_compute_setup(screen, screen->base.pushbuf);
556 case 0xf0:
557 case 0x100:
558 case 0x110:
559 return 0;
560 default:
561 return -1;
562 }
563 }
564
565 boolean
566 nvc0_screen_resize_tls_area(struct nvc0_screen *screen,
567 uint32_t lpos, uint32_t lneg, uint32_t cstack)
568 {
569 struct nouveau_bo *bo = NULL;
570 int ret;
571 uint64_t size = (lpos + lneg) * 32 + cstack;
572
573 if (size >= (1 << 20)) {
574 NOUVEAU_ERR("requested TLS size too large: 0x%"PRIx64"\n", size);
575 return FALSE;
576 }
577
578 size *= (screen->base.device->chipset >= 0xe0) ? 64 : 48; /* max warps */
579 size = align(size, 0x8000);
580 size *= screen->mp_count;
581
582 size = align(size, 1 << 17);
583
584 ret = nouveau_bo_new(screen->base.device, NOUVEAU_BO_VRAM, 1 << 17, size,
585 NULL, &bo);
586 if (ret) {
587 NOUVEAU_ERR("failed to allocate TLS area, size: 0x%"PRIx64"\n", size);
588 return FALSE;
589 }
590 nouveau_bo_ref(NULL, &screen->tls);
591 screen->tls = bo;
592 return TRUE;
593 }
594
595 #define FAIL_SCREEN_INIT(str, err) \
596 do { \
597 NOUVEAU_ERR(str, err); \
598 nvc0_screen_destroy(pscreen); \
599 return NULL; \
600 } while(0)
601
602 struct pipe_screen *
603 nvc0_screen_create(struct nouveau_device *dev)
604 {
605 struct nvc0_screen *screen;
606 struct pipe_screen *pscreen;
607 struct nouveau_object *chan;
608 struct nouveau_pushbuf *push;
609 uint64_t value;
610 uint32_t obj_class;
611 int ret;
612 unsigned i;
613
614 switch (dev->chipset & ~0xf) {
615 case 0xc0:
616 case 0xd0:
617 case 0xe0:
618 case 0xf0:
619 case 0x100:
620 case 0x110:
621 break;
622 default:
623 return NULL;
624 }
625
626 screen = CALLOC_STRUCT(nvc0_screen);
627 if (!screen)
628 return NULL;
629 pscreen = &screen->base.base;
630
631 ret = nouveau_screen_init(&screen->base, dev);
632 if (ret) {
633 nvc0_screen_destroy(pscreen);
634 return NULL;
635 }
636 chan = screen->base.channel;
637 push = screen->base.pushbuf;
638 push->user_priv = screen;
639 push->rsvd_kick = 5;
640
641 screen->base.vidmem_bindings |= PIPE_BIND_CONSTANT_BUFFER |
642 PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_INDEX_BUFFER |
643 PIPE_BIND_COMMAND_ARGS_BUFFER;
644 screen->base.sysmem_bindings |=
645 PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_INDEX_BUFFER;
646
647 pscreen->destroy = nvc0_screen_destroy;
648 pscreen->context_create = nvc0_create;
649 pscreen->is_format_supported = nvc0_screen_is_format_supported;
650 pscreen->get_param = nvc0_screen_get_param;
651 pscreen->get_shader_param = nvc0_screen_get_shader_param;
652 pscreen->get_paramf = nvc0_screen_get_paramf;
653 pscreen->get_driver_query_info = nvc0_screen_get_driver_query_info;
654 pscreen->get_driver_query_group_info = nvc0_screen_get_driver_query_group_info;
655
656 nvc0_screen_init_resource_functions(pscreen);
657
658 screen->base.base.get_video_param = nouveau_vp3_screen_get_video_param;
659 screen->base.base.is_video_format_supported = nouveau_vp3_screen_video_supported;
660
661 ret = nouveau_bo_new(dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0, 4096, NULL,
662 &screen->fence.bo);
663 if (ret)
664 goto fail;
665 nouveau_bo_map(screen->fence.bo, 0, NULL);
666 screen->fence.map = screen->fence.bo->map;
667 screen->base.fence.emit = nvc0_screen_fence_emit;
668 screen->base.fence.update = nvc0_screen_fence_update;
669
670
671 ret = nouveau_object_new(chan,
672 (dev->chipset < 0xe0) ? 0x1f906e : 0x906e, 0x906e,
673 NULL, 0, &screen->nvsw);
674 if (ret)
675 FAIL_SCREEN_INIT("Error creating SW object: %d\n", ret);
676
677
678 switch (dev->chipset & ~0xf) {
679 case 0x110:
680 case 0x100:
681 case 0xf0:
682 obj_class = NVF0_P2MF_CLASS;
683 break;
684 case 0xe0:
685 obj_class = NVE4_P2MF_CLASS;
686 break;
687 default:
688 obj_class = NVC0_M2MF_CLASS;
689 break;
690 }
691 ret = nouveau_object_new(chan, 0xbeef323f, obj_class, NULL, 0,
692 &screen->m2mf);
693 if (ret)
694 FAIL_SCREEN_INIT("Error allocating PGRAPH context for M2MF: %d\n", ret);
695
696 BEGIN_NVC0(push, SUBC_M2MF(NV01_SUBCHAN_OBJECT), 1);
697 PUSH_DATA (push, screen->m2mf->oclass);
698 if (screen->m2mf->oclass == NVE4_P2MF_CLASS) {
699 BEGIN_NVC0(push, SUBC_COPY(NV01_SUBCHAN_OBJECT), 1);
700 PUSH_DATA (push, 0xa0b5);
701 }
702
703 ret = nouveau_object_new(chan, 0xbeef902d, NVC0_2D_CLASS, NULL, 0,
704 &screen->eng2d);
705 if (ret)
706 FAIL_SCREEN_INIT("Error allocating PGRAPH context for 2D: %d\n", ret);
707
708 BEGIN_NVC0(push, SUBC_2D(NV01_SUBCHAN_OBJECT), 1);
709 PUSH_DATA (push, screen->eng2d->oclass);
710 BEGIN_NVC0(push, SUBC_2D(NVC0_2D_SINGLE_GPC), 1);
711 PUSH_DATA (push, 0);
712 BEGIN_NVC0(push, NVC0_2D(OPERATION), 1);
713 PUSH_DATA (push, NV50_2D_OPERATION_SRCCOPY);
714 BEGIN_NVC0(push, NVC0_2D(CLIP_ENABLE), 1);
715 PUSH_DATA (push, 0);
716 BEGIN_NVC0(push, NVC0_2D(COLOR_KEY_ENABLE), 1);
717 PUSH_DATA (push, 0);
718 BEGIN_NVC0(push, SUBC_2D(0x0884), 1);
719 PUSH_DATA (push, 0x3f);
720 BEGIN_NVC0(push, SUBC_2D(0x0888), 1);
721 PUSH_DATA (push, 1);
722 BEGIN_NVC0(push, NVC0_2D(COND_MODE), 1);
723 PUSH_DATA (push, NV50_2D_COND_MODE_ALWAYS);
724
725 BEGIN_NVC0(push, SUBC_2D(NVC0_GRAPH_NOTIFY_ADDRESS_HIGH), 2);
726 PUSH_DATAh(push, screen->fence.bo->offset + 16);
727 PUSH_DATA (push, screen->fence.bo->offset + 16);
728
729 switch (dev->chipset & ~0xf) {
730 case 0x110:
731 obj_class = GM107_3D_CLASS;
732 break;
733 case 0x100:
734 case 0xf0:
735 obj_class = NVF0_3D_CLASS;
736 break;
737 case 0xe0:
738 switch (dev->chipset) {
739 case 0xea:
740 obj_class = NVEA_3D_CLASS;
741 break;
742 default:
743 obj_class = NVE4_3D_CLASS;
744 break;
745 }
746 break;
747 case 0xd0:
748 obj_class = NVC8_3D_CLASS;
749 break;
750 case 0xc0:
751 default:
752 switch (dev->chipset) {
753 case 0xc8:
754 obj_class = NVC8_3D_CLASS;
755 break;
756 case 0xc1:
757 obj_class = NVC1_3D_CLASS;
758 break;
759 default:
760 obj_class = NVC0_3D_CLASS;
761 break;
762 }
763 break;
764 }
765 ret = nouveau_object_new(chan, 0xbeef003d, obj_class, NULL, 0,
766 &screen->eng3d);
767 if (ret)
768 FAIL_SCREEN_INIT("Error allocating PGRAPH context for 3D: %d\n", ret);
769 screen->base.class_3d = obj_class;
770
771 BEGIN_NVC0(push, SUBC_3D(NV01_SUBCHAN_OBJECT), 1);
772 PUSH_DATA (push, screen->eng3d->oclass);
773
774 BEGIN_NVC0(push, NVC0_3D(COND_MODE), 1);
775 PUSH_DATA (push, NVC0_3D_COND_MODE_ALWAYS);
776
777 if (debug_get_bool_option("NOUVEAU_SHADER_WATCHDOG", TRUE)) {
778 /* kill shaders after about 1 second (at 100 MHz) */
779 BEGIN_NVC0(push, NVC0_3D(WATCHDOG_TIMER), 1);
780 PUSH_DATA (push, 0x17);
781 }
782
783 IMMED_NVC0(push, NVC0_3D(ZETA_COMP_ENABLE), dev->drm_version >= 0x01000101);
784 BEGIN_NVC0(push, NVC0_3D(RT_COMP_ENABLE(0)), 8);
785 for (i = 0; i < 8; ++i)
786 PUSH_DATA(push, dev->drm_version >= 0x01000101);
787
788 BEGIN_NVC0(push, NVC0_3D(RT_CONTROL), 1);
789 PUSH_DATA (push, 1);
790
791 BEGIN_NVC0(push, NVC0_3D(CSAA_ENABLE), 1);
792 PUSH_DATA (push, 0);
793 BEGIN_NVC0(push, NVC0_3D(MULTISAMPLE_ENABLE), 1);
794 PUSH_DATA (push, 0);
795 BEGIN_NVC0(push, NVC0_3D(MULTISAMPLE_MODE), 1);
796 PUSH_DATA (push, NVC0_3D_MULTISAMPLE_MODE_MS1);
797 BEGIN_NVC0(push, NVC0_3D(MULTISAMPLE_CTRL), 1);
798 PUSH_DATA (push, 0);
799 BEGIN_NVC0(push, NVC0_3D(LINE_WIDTH_SEPARATE), 1);
800 PUSH_DATA (push, 1);
801 BEGIN_NVC0(push, NVC0_3D(PRIM_RESTART_WITH_DRAW_ARRAYS), 1);
802 PUSH_DATA (push, 1);
803 BEGIN_NVC0(push, NVC0_3D(BLEND_SEPARATE_ALPHA), 1);
804 PUSH_DATA (push, 1);
805 BEGIN_NVC0(push, NVC0_3D(BLEND_ENABLE_COMMON), 1);
806 PUSH_DATA (push, 0);
807 if (screen->eng3d->oclass < NVE4_3D_CLASS) {
808 BEGIN_NVC0(push, NVC0_3D(TEX_MISC), 1);
809 PUSH_DATA (push, NVC0_3D_TEX_MISC_SEAMLESS_CUBE_MAP);
810 } else {
811 BEGIN_NVC0(push, NVE4_3D(TEX_CB_INDEX), 1);
812 PUSH_DATA (push, 15);
813 }
814 BEGIN_NVC0(push, NVC0_3D(CALL_LIMIT_LOG), 1);
815 PUSH_DATA (push, 8); /* 128 */
816 BEGIN_NVC0(push, NVC0_3D(ZCULL_STATCTRS_ENABLE), 1);
817 PUSH_DATA (push, 1);
818 if (screen->eng3d->oclass >= NVC1_3D_CLASS) {
819 BEGIN_NVC0(push, NVC0_3D(CACHE_SPLIT), 1);
820 PUSH_DATA (push, NVC0_3D_CACHE_SPLIT_48K_SHARED_16K_L1);
821 }
822
823 nvc0_magic_3d_init(push, screen->eng3d->oclass);
824
825 ret = nouveau_bo_new(dev, NOUVEAU_BO_VRAM, 1 << 17, 1 << 20, NULL,
826 &screen->text);
827 if (ret)
828 goto fail;
829
830 /* XXX: getting a page fault at the end of the code buffer every few
831 * launches, don't use the last 256 bytes to work around them - prefetch ?
832 */
833 nouveau_heap_init(&screen->text_heap, 0, (1 << 20) - 0x100);
834
835 ret = nouveau_bo_new(dev, NOUVEAU_BO_VRAM, 1 << 12, 6 << 16, NULL,
836 &screen->uniform_bo);
837 if (ret)
838 goto fail;
839
840 PUSH_REFN (push, screen->uniform_bo, NOUVEAU_BO_VRAM | NOUVEAU_BO_WR);
841
842 for (i = 0; i < 5; ++i) {
843 /* TIC and TSC entries for each unit (nve4+ only) */
844 /* auxiliary constants (6 user clip planes, base instance id) */
845 BEGIN_NVC0(push, NVC0_3D(CB_SIZE), 3);
846 PUSH_DATA (push, 512);
847 PUSH_DATAh(push, screen->uniform_bo->offset + (5 << 16) + (i << 9));
848 PUSH_DATA (push, screen->uniform_bo->offset + (5 << 16) + (i << 9));
849 BEGIN_NVC0(push, NVC0_3D(CB_BIND(i)), 1);
850 PUSH_DATA (push, (15 << 4) | 1);
851 if (screen->eng3d->oclass >= NVE4_3D_CLASS) {
852 unsigned j;
853 BEGIN_1IC0(push, NVC0_3D(CB_POS), 9);
854 PUSH_DATA (push, 0);
855 for (j = 0; j < 8; ++j)
856 PUSH_DATA(push, j);
857 } else {
858 BEGIN_NVC0(push, NVC0_3D(TEX_LIMITS(i)), 1);
859 PUSH_DATA (push, 0x54);
860 }
861 }
862 BEGIN_NVC0(push, NVC0_3D(LINKED_TSC), 1);
863 PUSH_DATA (push, 0);
864
865 /* return { 0.0, 0.0, 0.0, 0.0 } for out-of-bounds vtxbuf access */
866 BEGIN_NVC0(push, NVC0_3D(CB_SIZE), 3);
867 PUSH_DATA (push, 256);
868 PUSH_DATAh(push, screen->uniform_bo->offset + (5 << 16) + (6 << 9));
869 PUSH_DATA (push, screen->uniform_bo->offset + (5 << 16) + (6 << 9));
870 BEGIN_1IC0(push, NVC0_3D(CB_POS), 5);
871 PUSH_DATA (push, 0);
872 PUSH_DATAf(push, 0.0f);
873 PUSH_DATAf(push, 0.0f);
874 PUSH_DATAf(push, 0.0f);
875 PUSH_DATAf(push, 0.0f);
876 BEGIN_NVC0(push, NVC0_3D(VERTEX_RUNOUT_ADDRESS_HIGH), 2);
877 PUSH_DATAh(push, screen->uniform_bo->offset + (5 << 16) + (6 << 9));
878 PUSH_DATA (push, screen->uniform_bo->offset + (5 << 16) + (6 << 9));
879
880 if (dev->drm_version >= 0x01000101) {
881 ret = nouveau_getparam(dev, NOUVEAU_GETPARAM_GRAPH_UNITS, &value);
882 if (ret) {
883 NOUVEAU_ERR("NOUVEAU_GETPARAM_GRAPH_UNITS failed.\n");
884 goto fail;
885 }
886 } else {
887 if (dev->chipset >= 0xe0 && dev->chipset < 0xf0)
888 value = (8 << 8) | 4;
889 else
890 value = (16 << 8) | 4;
891 }
892 screen->mp_count = value >> 8;
893 screen->mp_count_compute = screen->mp_count;
894
895 nvc0_screen_resize_tls_area(screen, 128 * 16, 0, 0x200);
896
897 BEGIN_NVC0(push, NVC0_3D(CODE_ADDRESS_HIGH), 2);
898 PUSH_DATAh(push, screen->text->offset);
899 PUSH_DATA (push, screen->text->offset);
900 BEGIN_NVC0(push, NVC0_3D(TEMP_ADDRESS_HIGH), 4);
901 PUSH_DATAh(push, screen->tls->offset);
902 PUSH_DATA (push, screen->tls->offset);
903 PUSH_DATA (push, screen->tls->size >> 32);
904 PUSH_DATA (push, screen->tls->size);
905 BEGIN_NVC0(push, NVC0_3D(WARP_TEMP_ALLOC), 1);
906 PUSH_DATA (push, 0);
907 BEGIN_NVC0(push, NVC0_3D(LOCAL_BASE), 1);
908 PUSH_DATA (push, 0);
909
910 if (screen->eng3d->oclass < GM107_3D_CLASS) {
911 ret = nouveau_bo_new(dev, NOUVEAU_BO_VRAM, 1 << 17, 1 << 20, NULL,
912 &screen->poly_cache);
913 if (ret)
914 goto fail;
915
916 BEGIN_NVC0(push, NVC0_3D(VERTEX_QUARANTINE_ADDRESS_HIGH), 3);
917 PUSH_DATAh(push, screen->poly_cache->offset);
918 PUSH_DATA (push, screen->poly_cache->offset);
919 PUSH_DATA (push, 3);
920 }
921
922 ret = nouveau_bo_new(dev, NOUVEAU_BO_VRAM, 1 << 17, 1 << 17, NULL,
923 &screen->txc);
924 if (ret)
925 goto fail;
926
927 BEGIN_NVC0(push, NVC0_3D(TIC_ADDRESS_HIGH), 3);
928 PUSH_DATAh(push, screen->txc->offset);
929 PUSH_DATA (push, screen->txc->offset);
930 PUSH_DATA (push, NVC0_TIC_MAX_ENTRIES - 1);
931
932 BEGIN_NVC0(push, NVC0_3D(TSC_ADDRESS_HIGH), 3);
933 PUSH_DATAh(push, screen->txc->offset + 65536);
934 PUSH_DATA (push, screen->txc->offset + 65536);
935 PUSH_DATA (push, NVC0_TSC_MAX_ENTRIES - 1);
936
937 BEGIN_NVC0(push, NVC0_3D(SCREEN_Y_CONTROL), 1);
938 PUSH_DATA (push, 0);
939 BEGIN_NVC0(push, NVC0_3D(WINDOW_OFFSET_X), 2);
940 PUSH_DATA (push, 0);
941 PUSH_DATA (push, 0);
942 BEGIN_NVC0(push, NVC0_3D(ZCULL_REGION), 1); /* deactivate ZCULL */
943 PUSH_DATA (push, 0x3f);
944
945 BEGIN_NVC0(push, NVC0_3D(CLIP_RECTS_MODE), 1);
946 PUSH_DATA (push, NVC0_3D_CLIP_RECTS_MODE_INSIDE_ANY);
947 BEGIN_NVC0(push, NVC0_3D(CLIP_RECT_HORIZ(0)), 8 * 2);
948 for (i = 0; i < 8 * 2; ++i)
949 PUSH_DATA(push, 0);
950 BEGIN_NVC0(push, NVC0_3D(CLIP_RECTS_EN), 1);
951 PUSH_DATA (push, 0);
952 BEGIN_NVC0(push, NVC0_3D(CLIPID_ENABLE), 1);
953 PUSH_DATA (push, 0);
954
955 /* neither scissors, viewport nor stencil mask should affect clears */
956 BEGIN_NVC0(push, NVC0_3D(CLEAR_FLAGS), 1);
957 PUSH_DATA (push, 0);
958
959 BEGIN_NVC0(push, NVC0_3D(VIEWPORT_TRANSFORM_EN), 1);
960 PUSH_DATA (push, 1);
961 for (i = 0; i < NVC0_MAX_VIEWPORTS; i++) {
962 BEGIN_NVC0(push, NVC0_3D(DEPTH_RANGE_NEAR(i)), 2);
963 PUSH_DATAf(push, 0.0f);
964 PUSH_DATAf(push, 1.0f);
965 }
966 BEGIN_NVC0(push, NVC0_3D(VIEW_VOLUME_CLIP_CTRL), 1);
967 PUSH_DATA (push, NVC0_3D_VIEW_VOLUME_CLIP_CTRL_UNK1_UNK1);
968
969 /* We use scissors instead of exact view volume clipping,
970 * so they're always enabled.
971 */
972 for (i = 0; i < NVC0_MAX_VIEWPORTS; i++) {
973 BEGIN_NVC0(push, NVC0_3D(SCISSOR_ENABLE(i)), 3);
974 PUSH_DATA (push, 1);
975 PUSH_DATA (push, 8192 << 16);
976 PUSH_DATA (push, 8192 << 16);
977 }
978
979 #define MK_MACRO(m, n) i = nvc0_graph_set_macro(screen, m, i, sizeof(n), n);
980
981 i = 0;
982 MK_MACRO(NVC0_3D_MACRO_VERTEX_ARRAY_PER_INSTANCE, mme9097_per_instance_bf);
983 MK_MACRO(NVC0_3D_MACRO_BLEND_ENABLES, mme9097_blend_enables);
984 MK_MACRO(NVC0_3D_MACRO_VERTEX_ARRAY_SELECT, mme9097_vertex_array_select);
985 MK_MACRO(NVC0_3D_MACRO_TEP_SELECT, mme9097_tep_select);
986 MK_MACRO(NVC0_3D_MACRO_GP_SELECT, mme9097_gp_select);
987 MK_MACRO(NVC0_3D_MACRO_POLYGON_MODE_FRONT, mme9097_poly_mode_front);
988 MK_MACRO(NVC0_3D_MACRO_POLYGON_MODE_BACK, mme9097_poly_mode_back);
989 MK_MACRO(NVC0_3D_MACRO_DRAW_ARRAYS_INDIRECT, mme9097_draw_arrays_indirect);
990 MK_MACRO(NVC0_3D_MACRO_DRAW_ELEMENTS_INDIRECT, mme9097_draw_elts_indirect);
991
992 BEGIN_NVC0(push, NVC0_3D(RASTERIZE_ENABLE), 1);
993 PUSH_DATA (push, 1);
994 BEGIN_NVC0(push, NVC0_3D(RT_SEPARATE_FRAG_DATA), 1);
995 PUSH_DATA (push, 1);
996 BEGIN_NVC0(push, NVC0_3D(MACRO_GP_SELECT), 1);
997 PUSH_DATA (push, 0x40);
998 BEGIN_NVC0(push, NVC0_3D(LAYER), 1);
999 PUSH_DATA (push, 0);
1000 BEGIN_NVC0(push, NVC0_3D(MACRO_TEP_SELECT), 1);
1001 PUSH_DATA (push, 0x30);
1002 BEGIN_NVC0(push, NVC0_3D(PATCH_VERTICES), 1);
1003 PUSH_DATA (push, 3);
1004 BEGIN_NVC0(push, NVC0_3D(SP_SELECT(2)), 1);
1005 PUSH_DATA (push, 0x20);
1006 BEGIN_NVC0(push, NVC0_3D(SP_SELECT(0)), 1);
1007 PUSH_DATA (push, 0x00);
1008
1009 BEGIN_NVC0(push, NVC0_3D(POINT_COORD_REPLACE), 1);
1010 PUSH_DATA (push, 0);
1011 BEGIN_NVC0(push, NVC0_3D(POINT_RASTER_RULES), 1);
1012 PUSH_DATA (push, NVC0_3D_POINT_RASTER_RULES_OGL);
1013
1014 IMMED_NVC0(push, NVC0_3D(EDGEFLAG), 1);
1015
1016 if (nvc0_screen_init_compute(screen))
1017 goto fail;
1018
1019 PUSH_KICK (push);
1020
1021 screen->tic.entries = CALLOC(4096, sizeof(void *));
1022 screen->tsc.entries = screen->tic.entries + 2048;
1023
1024 if (!nvc0_blitter_create(screen))
1025 goto fail;
1026
1027 nouveau_fence_new(&screen->base, &screen->base.fence.current, FALSE);
1028
1029 return pscreen;
1030
1031 fail:
1032 nvc0_screen_destroy(pscreen);
1033 return NULL;
1034 }
1035
1036 int
1037 nvc0_screen_tic_alloc(struct nvc0_screen *screen, void *entry)
1038 {
1039 int i = screen->tic.next;
1040
1041 while (screen->tic.lock[i / 32] & (1 << (i % 32)))
1042 i = (i + 1) & (NVC0_TIC_MAX_ENTRIES - 1);
1043
1044 screen->tic.next = (i + 1) & (NVC0_TIC_MAX_ENTRIES - 1);
1045
1046 if (screen->tic.entries[i])
1047 nv50_tic_entry(screen->tic.entries[i])->id = -1;
1048
1049 screen->tic.entries[i] = entry;
1050 return i;
1051 }
1052
1053 int
1054 nvc0_screen_tsc_alloc(struct nvc0_screen *screen, void *entry)
1055 {
1056 int i = screen->tsc.next;
1057
1058 while (screen->tsc.lock[i / 32] & (1 << (i % 32)))
1059 i = (i + 1) & (NVC0_TSC_MAX_ENTRIES - 1);
1060
1061 screen->tsc.next = (i + 1) & (NVC0_TSC_MAX_ENTRIES - 1);
1062
1063 if (screen->tsc.entries[i])
1064 nv50_tsc_entry(screen->tsc.entries[i])->id = -1;
1065
1066 screen->tsc.entries[i] = entry;
1067 return i;
1068 }