i965: Enable EGL_KHR_gl_texture_3D_image
[mesa.git] / src / mesa / drivers / dri / i965 / gen7_gs_state.c
1 /*
2 * Copyright © 2013 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "brw_context.h"
25 #include "brw_state.h"
26 #include "brw_defines.h"
27 #include "intel_batchbuffer.h"
28
29 static void
30 upload_gs_state(struct brw_context *brw)
31 {
32 const struct gen_device_info *devinfo = &brw->screen->devinfo;
33 const struct brw_stage_state *stage_state = &brw->gs.base;
34 const int max_threads_shift = brw->is_haswell ?
35 HSW_GS_MAX_THREADS_SHIFT : GEN6_GS_MAX_THREADS_SHIFT;
36 /* BRW_NEW_GEOMETRY_PROGRAM */
37 bool active = brw->geometry_program;
38 /* BRW_NEW_GS_PROG_DATA */
39 const struct brw_vue_prog_data *prog_data = &brw->gs.prog_data->base;
40
41 /**
42 * From Graphics BSpec: 3D-Media-GPGPU Engine > 3D Pipeline Stages >
43 * Geometry > Geometry Shader > State:
44 *
45 * "Note: Because of corruption in IVB:GT2, software needs to flush the
46 * whole fixed function pipeline when the GS enable changes value in
47 * the 3DSTATE_GS."
48 *
49 * The hardware architects have clarified that in this context "flush the
50 * whole fixed function pipeline" means to emit a PIPE_CONTROL with the "CS
51 * Stall" bit set.
52 */
53 if (!brw->is_haswell && brw->gt == 2 && brw->gs.enabled != active)
54 gen7_emit_cs_stall_flush(brw);
55
56 if (active) {
57 BEGIN_BATCH(7);
58 OUT_BATCH(_3DSTATE_GS << 16 | (7 - 2));
59 OUT_BATCH(stage_state->prog_offset);
60 OUT_BATCH(((ALIGN(stage_state->sampler_count, 4)/4) <<
61 GEN6_GS_SAMPLER_COUNT_SHIFT) |
62 ((brw->gs.prog_data->base.base.binding_table.size_bytes / 4) <<
63 GEN6_GS_BINDING_TABLE_ENTRY_COUNT_SHIFT));
64
65 if (brw->gs.prog_data->base.base.total_scratch) {
66 OUT_RELOC(stage_state->scratch_bo,
67 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
68 ffs(stage_state->per_thread_scratch) - 11);
69 } else {
70 OUT_BATCH(0);
71 }
72
73 uint32_t dw4 =
74 ((brw->gs.prog_data->output_vertex_size_hwords * 2 - 1) <<
75 GEN7_GS_OUTPUT_VERTEX_SIZE_SHIFT) |
76 (brw->gs.prog_data->output_topology <<
77 GEN7_GS_OUTPUT_TOPOLOGY_SHIFT) |
78 (prog_data->urb_read_length <<
79 GEN6_GS_URB_READ_LENGTH_SHIFT) |
80 (0 << GEN6_GS_URB_ENTRY_READ_OFFSET_SHIFT) |
81 (prog_data->base.dispatch_grf_start_reg <<
82 GEN6_GS_DISPATCH_START_GRF_SHIFT);
83
84 /* Note: the meaning of the GEN7_GS_REORDER_TRAILING bit changes between
85 * Ivy Bridge and Haswell.
86 *
87 * On Ivy Bridge, setting this bit causes the vertices of a triangle
88 * strip to be delivered to the geometry shader in an order that does
89 * not strictly follow the OpenGL spec, but preserves triangle
90 * orientation. For example, if the vertices are (1, 2, 3, 4, 5), then
91 * the geometry shader sees triangles:
92 *
93 * (1, 2, 3), (2, 4, 3), (3, 4, 5)
94 *
95 * (Clearing the bit is even worse, because it fails to preserve
96 * orientation).
97 *
98 * Triangle strips with adjacency always ordered in a way that preserves
99 * triangle orientation but does not strictly follow the OpenGL spec,
100 * regardless of the setting of this bit.
101 *
102 * On Haswell, both triangle strips and triangle strips with adjacency
103 * are always ordered in a way that preserves triangle orientation.
104 * Setting this bit causes the ordering to strictly follow the OpenGL
105 * spec.
106 *
107 * So in either case we want to set the bit. Unfortunately on Ivy
108 * Bridge this will get the order close to correct but not perfect.
109 */
110 uint32_t dw5 =
111 ((devinfo->max_gs_threads - 1) << max_threads_shift) |
112 (brw->gs.prog_data->control_data_header_size_hwords <<
113 GEN7_GS_CONTROL_DATA_HEADER_SIZE_SHIFT) |
114 ((brw->gs.prog_data->invocations - 1) <<
115 GEN7_GS_INSTANCE_CONTROL_SHIFT) |
116 SET_FIELD(prog_data->dispatch_mode, GEN7_GS_DISPATCH_MODE) |
117 GEN6_GS_STATISTICS_ENABLE |
118 (brw->gs.prog_data->include_primitive_id ?
119 GEN7_GS_INCLUDE_PRIMITIVE_ID : 0) |
120 GEN7_GS_REORDER_TRAILING |
121 GEN7_GS_ENABLE;
122 uint32_t dw6 = 0;
123
124 if (brw->is_haswell) {
125 dw6 |= brw->gs.prog_data->control_data_format <<
126 HSW_GS_CONTROL_DATA_FORMAT_SHIFT;
127 } else {
128 dw5 |= brw->gs.prog_data->control_data_format <<
129 IVB_GS_CONTROL_DATA_FORMAT_SHIFT;
130 }
131
132 OUT_BATCH(dw4);
133 OUT_BATCH(dw5);
134 OUT_BATCH(dw6);
135 ADVANCE_BATCH();
136 } else {
137 BEGIN_BATCH(7);
138 OUT_BATCH(_3DSTATE_GS << 16 | (7 - 2));
139 OUT_BATCH(0); /* prog_bo */
140 OUT_BATCH((0 << GEN6_GS_SAMPLER_COUNT_SHIFT) |
141 (0 << GEN6_GS_BINDING_TABLE_ENTRY_COUNT_SHIFT));
142 OUT_BATCH(0); /* scratch space base offset */
143 OUT_BATCH((1 << GEN6_GS_DISPATCH_START_GRF_SHIFT) |
144 (0 << GEN6_GS_URB_READ_LENGTH_SHIFT) |
145 GEN7_GS_INCLUDE_VERTEX_HANDLES |
146 (0 << GEN6_GS_URB_ENTRY_READ_OFFSET_SHIFT));
147 OUT_BATCH((0 << GEN6_GS_MAX_THREADS_SHIFT) |
148 GEN6_GS_STATISTICS_ENABLE);
149 OUT_BATCH(0);
150 ADVANCE_BATCH();
151 }
152 brw->gs.enabled = active;
153 }
154
155 const struct brw_tracked_state gen7_gs_state = {
156 .dirty = {
157 .mesa = _NEW_TRANSFORM,
158 .brw = BRW_NEW_BATCH |
159 BRW_NEW_BLORP |
160 BRW_NEW_CONTEXT |
161 BRW_NEW_GEOMETRY_PROGRAM |
162 BRW_NEW_GS_PROG_DATA,
163 },
164 .emit = upload_gs_state,
165 };