blob: d577a3601539ccf9550d438c2c3da7b5bd19bce2 [file] [log] [blame]
Kenneth Graunke7d608d02011-01-05 01:21:06 -08001/*
2 * Copyright © 2011 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 DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24#include "brw_context.h"
25#include "brw_state.h"
26#include "brw_defines.h"
27#include "brw_util.h"
28#include "main/macros.h"
Brian Paul4433b032012-04-20 07:58:59 -060029#include "main/fbobject.h"
Kevin Rogovin41b6db22015-06-17 13:29:55 +030030#include "main/framebuffer.h"
Kenneth Graunke7d608d02011-01-05 01:21:06 -080031#include "intel_batchbuffer.h"
32
33static void
34upload_sbe_state(struct brw_context *brw)
35{
Kenneth Graunke8c9a54e2013-07-06 00:46:38 -070036 struct gl_context *ctx = &brw->ctx;
Kenneth Graunkece44b202014-11-24 23:30:51 -080037 /* BRW_NEW_FS_PROG_DATA */
Kenneth Graunke16d55362016-09-08 23:48:53 -070038 const struct brw_wm_prog_data *wm_prog_data =
39 brw_wm_prog_data(brw->wm.base.prog_data);
40 uint32_t num_outputs = wm_prog_data->num_varying_inputs;
Kenneth Graunke0d0edf82013-12-09 16:06:51 -080041 uint32_t dw1;
42 uint32_t point_sprite_enables;
Kenneth Graunke7d608d02011-01-05 01:21:06 -080043 int i;
Paul Berry0af12522013-09-02 21:59:04 -070044 uint16_t attr_overrides[16];
Yuanhan Liueaf360e2012-01-20 07:48:52 +080045 /* _NEW_BUFFERS */
Brian Paul4433b032012-04-20 07:58:59 -060046 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
Yuanhan Liueaf360e2012-01-20 07:48:52 +080047 uint32_t point_sprite_origin;
Kenneth Graunke7d608d02011-01-05 01:21:06 -080048
49 /* FINISHME: Attribute Swizzle Control Mode? */
Kenneth Graunke44aa2e12013-02-02 12:46:57 -080050 dw1 = GEN7_SBE_SWIZZLE_ENABLE | num_outputs << GEN7_SBE_NUM_OUTPUTS_SHIFT;
Kenneth Graunke7d608d02011-01-05 01:21:06 -080051
Yuanhan Liueaf360e2012-01-20 07:48:52 +080052 /* _NEW_POINT
53 *
54 * Window coordinates in an FBO are inverted, which means point
55 * sprite origin must be inverted.
56 */
57 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo) {
58 point_sprite_origin = GEN6_SF_POINT_SPRITE_LOWERLEFT;
59 } else {
60 point_sprite_origin = GEN6_SF_POINT_SPRITE_UPPERLEFT;
61 }
62 dw1 |= point_sprite_origin;
63
Kenneth Graunkecd19db42016-08-25 23:00:13 -070064 /* _NEW_POINT | _NEW_LIGHT | _NEW_PROGRAM,
65 * BRW_NEW_FS_PROG_DATA | BRW_NEW_FRAGMENT_PROGRAM |
Kenneth Graunke4c116cb2016-08-25 22:52:22 -070066 * BRW_NEW_GS_PROG_DATA | BRW_NEW_PRIMITIVE | BRW_NEW_TES_PROG_DATA |
Kenneth Graunkecd19db42016-08-25 23:00:13 -070067 * BRW_NEW_VUE_MAP_GEOM_OUT
Paul Berry0af12522013-09-02 21:59:04 -070068 */
Paul Berryaf84bbd2013-09-02 18:09:08 -070069 uint32_t urb_entry_read_length;
Kenneth Graunke53923282015-10-26 00:52:14 -070070 uint32_t urb_entry_read_offset;
Kenneth Graunke0d0edf82013-12-09 16:06:51 -080071 calculate_attr_overrides(brw, attr_overrides, &point_sprite_enables,
Jason Ekstrandc62db272016-04-05 18:23:36 -070072 &urb_entry_read_length, &urb_entry_read_offset);
Kenneth Graunke44aa2e12013-02-02 12:46:57 -080073 dw1 |= urb_entry_read_length << GEN7_SBE_URB_ENTRY_READ_LENGTH_SHIFT |
74 urb_entry_read_offset << GEN7_SBE_URB_ENTRY_READ_OFFSET_SHIFT;
75
Kenneth Graunke7d608d02011-01-05 01:21:06 -080076 BEGIN_BATCH(14);
77 OUT_BATCH(_3DSTATE_SBE << 16 | (14 - 2));
78 OUT_BATCH(dw1);
79
80 /* Output dwords 2 through 9 */
81 for (i = 0; i < 8; i++) {
Kenneth Graunke5edb3dd2011-06-29 15:05:52 -070082 OUT_BATCH(attr_overrides[i * 2] | attr_overrides[i * 2 + 1] << 16);
Kenneth Graunke7d608d02011-01-05 01:21:06 -080083 }
84
Kenneth Graunke0d0edf82013-12-09 16:06:51 -080085 OUT_BATCH(point_sprite_enables); /* dw10 */
Kenneth Graunke16d55362016-09-08 23:48:53 -070086 OUT_BATCH(wm_prog_data->flat_inputs);
Kenneth Graunke7d608d02011-01-05 01:21:06 -080087 OUT_BATCH(0); /* wrapshortest enables 0-7 */
88 OUT_BATCH(0); /* wrapshortest enables 8-15 */
89 ADVANCE_BATCH();
90}
91
92const struct brw_tracked_state gen7_sbe_state = {
93 .dirty = {
Kenneth Graunkebea9b8e2014-11-24 23:16:56 -080094 .mesa = _NEW_BUFFERS |
95 _NEW_LIGHT |
96 _NEW_POINT |
Kenneth Graunkecd19db42016-08-25 23:00:13 -070097 _NEW_POLYGON |
Kenneth Graunkebea9b8e2014-11-24 23:16:56 -080098 _NEW_PROGRAM,
Kenneth Graunke6d5ce1b2016-04-22 01:48:56 -070099 .brw = BRW_NEW_BLORP |
100 BRW_NEW_CONTEXT |
Kenneth Graunkebea9b8e2014-11-24 23:16:56 -0800101 BRW_NEW_FRAGMENT_PROGRAM |
Kenneth Graunke4f24c162014-11-24 23:57:48 -0800102 BRW_NEW_FS_PROG_DATA |
Kenneth Graunke4c116cb2016-08-25 22:52:22 -0700103 BRW_NEW_GS_PROG_DATA |
Kenneth Graunkecd19db42016-08-25 23:00:13 -0700104 BRW_NEW_TES_PROG_DATA |
Kenneth Graunkebea9b8e2014-11-24 23:16:56 -0800105 BRW_NEW_PRIMITIVE |
106 BRW_NEW_VUE_MAP_GEOM_OUT,
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800107 },
108 .emit = upload_sbe_state,
109};
110
111static void
112upload_sf_state(struct brw_context *brw)
113{
Kenneth Graunke8c9a54e2013-07-06 00:46:38 -0700114 struct gl_context *ctx = &brw->ctx;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800115 uint32_t dw1, dw2, dw3;
116 float point_size;
117 /* _NEW_BUFFERS */
Kenneth Graunkee3c2bb12013-07-03 23:32:20 -0700118 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
Kevin Rogovin41b6db22015-06-17 13:29:55 +0300119 const bool multisampled_fbo = _mesa_geometric_samples(ctx->DrawBuffer) > 1;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800120
Kristian Høgsbergff7a2fc2014-07-07 15:00:46 -0700121 dw1 = GEN6_SF_STATISTICS_ENABLE;
122
123 if (brw->sf.viewport_transform_enable)
124 dw1 |= GEN6_SF_VIEWPORT_TRANSFORM_ENABLE;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800125
Eric Anholta98dd642011-05-13 11:54:15 -0700126 /* _NEW_BUFFERS */
Eric Anholtd84a1802011-11-17 14:45:54 -0800127 dw1 |= (brw_depthbuffer_format(brw) << GEN7_SF_DEPTH_BUFFER_SURFACE_FORMAT_SHIFT);
Kenneth Graunke8c8985b2011-04-08 23:51:21 -0700128
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800129 /* _NEW_POLYGON */
Mathias Fröhlichfdd90fc2015-03-29 16:52:57 +0200130 if (ctx->Polygon._FrontBit == render_to_fbo)
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800131 dw1 |= GEN6_SF_WINDING_CCW;
132
133 if (ctx->Polygon.OffsetFill)
134 dw1 |= GEN6_SF_GLOBAL_DEPTH_OFFSET_SOLID;
135
136 if (ctx->Polygon.OffsetLine)
137 dw1 |= GEN6_SF_GLOBAL_DEPTH_OFFSET_WIREFRAME;
138
139 if (ctx->Polygon.OffsetPoint)
140 dw1 |= GEN6_SF_GLOBAL_DEPTH_OFFSET_POINT;
141
142 switch (ctx->Polygon.FrontMode) {
143 case GL_FILL:
144 dw1 |= GEN6_SF_FRONT_SOLID;
145 break;
146
147 case GL_LINE:
148 dw1 |= GEN6_SF_FRONT_WIREFRAME;
149 break;
150
151 case GL_POINT:
152 dw1 |= GEN6_SF_FRONT_POINT;
153 break;
154
155 default:
Matt Turner3d826722014-06-29 14:54:01 -0700156 unreachable("not reached");
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800157 }
158
159 switch (ctx->Polygon.BackMode) {
160 case GL_FILL:
161 dw1 |= GEN6_SF_BACK_SOLID;
162 break;
163
164 case GL_LINE:
165 dw1 |= GEN6_SF_BACK_WIREFRAME;
166 break;
167
168 case GL_POINT:
169 dw1 |= GEN6_SF_BACK_POINT;
170 break;
171
172 default:
Matt Turner3d826722014-06-29 14:54:01 -0700173 unreachable("not reached");
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800174 }
175
Kenneth Graunke09468222017-01-11 21:38:52 -0800176 dw2 = GEN6_SF_SCISSOR_ENABLE;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800177
178 if (ctx->Polygon.CullFlag) {
179 switch (ctx->Polygon.CullFaceMode) {
180 case GL_FRONT:
181 dw2 |= GEN6_SF_CULL_FRONT;
182 break;
183 case GL_BACK:
184 dw2 |= GEN6_SF_CULL_BACK;
185 break;
186 case GL_FRONT_AND_BACK:
187 dw2 |= GEN6_SF_CULL_BOTH;
188 break;
189 default:
Matt Turner3d826722014-06-29 14:54:01 -0700190 unreachable("not reached");
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800191 }
192 } else {
193 dw2 |= GEN6_SF_CULL_NONE;
194 }
195
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800196 /* _NEW_LINE */
Paul Berry19e9b242012-04-29 21:41:42 -0700197 {
Iago Toral Quiroga0f1fe642015-06-11 08:49:46 +0200198 uint32_t line_width_u3_7 = brw_get_line_width(brw);
Paul Berry19e9b242012-04-29 21:41:42 -0700199 dw2 |= line_width_u3_7 << GEN6_SF_LINE_WIDTH_SHIFT;
200 }
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800201 if (ctx->Line.SmoothFlag) {
202 dw2 |= GEN6_SF_LINE_AA_ENABLE;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800203 dw2 |= GEN6_SF_LINE_END_CAP_WIDTH_1_0;
204 }
Kenneth Graunke794de2f2013-07-06 00:15:44 -0700205 if (ctx->Line.StippleFlag && brw->is_haswell) {
Kenneth Graunkeb4410ac2011-09-24 00:42:23 -0700206 dw2 |= HSW_SF_LINE_STIPPLE_ENABLE;
207 }
Paul Berrycde65442012-06-16 11:32:04 -0700208 /* _NEW_MULTISAMPLE */
209 if (multisampled_fbo && ctx->Multisample.Enabled)
Paul Berry19e9b242012-04-29 21:41:42 -0700210 dw2 |= GEN6_SF_MSRAST_ON_PATTERN;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800211
212 /* FINISHME: Last Pixel Enable? Vertex Sub Pixel Precision Select?
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800213 */
214
Kenneth Graunkee6393852012-11-08 04:13:26 -0800215 dw3 = GEN6_SF_LINE_AA_MODE_TRUE;
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800216
Kenneth Graunke77d6add2016-06-01 17:32:55 -0700217 /* _NEW_PROGRAM | _NEW_POINT, BRW_NEW_VUE_MAP_GEOM_OUT */
218 if (use_state_point_size(brw))
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800219 dw3 |= GEN6_SF_USE_STATE_POINT_WIDTH;
220
Kenneth Graunkef74a2912016-06-01 17:32:55 -0700221 /* _NEW_POINT - Clamp to ARB_point_parameters user limits */
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800222 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
223
224 /* Clamp to the hardware limits and convert to fixed point */
Matt Turnerc1da1572015-07-12 00:13:45 -0700225 dw3 |= U_FIXED(CLAMP(point_size, 0.125f, 255.875f), 3);
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800226
227 /* _NEW_LIGHT */
228 if (ctx->Light.ProvokingVertex != GL_FIRST_VERTEX_CONVENTION) {
229 dw3 |=
230 (2 << GEN6_SF_TRI_PROVOKE_SHIFT) |
231 (2 << GEN6_SF_TRIFAN_PROVOKE_SHIFT) |
232 (1 << GEN6_SF_LINE_PROVOKE_SHIFT);
233 } else {
234 dw3 |= (1 << GEN6_SF_TRIFAN_PROVOKE_SHIFT);
235 }
236
237 BEGIN_BATCH(7);
238 OUT_BATCH(_3DSTATE_SF << 16 | (7 - 2));
239 OUT_BATCH(dw1);
240 OUT_BATCH(dw2);
241 OUT_BATCH(dw3);
242 OUT_BATCH_F(ctx->Polygon.OffsetUnits * 2); /* constant. copied from gen4 */
243 OUT_BATCH_F(ctx->Polygon.OffsetFactor); /* scale */
Ilia Mirkin2ce29ce2014-12-31 02:15:23 -0500244 OUT_BATCH_F(ctx->Polygon.OffsetClamp); /* global depth offset clamp */
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800245 ADVANCE_BATCH();
246}
247
248const struct brw_tracked_state gen7_sf_state = {
249 .dirty = {
Kenneth Graunkebea9b8e2014-11-24 23:16:56 -0800250 .mesa = _NEW_BUFFERS |
251 _NEW_LIGHT |
252 _NEW_LINE |
253 _NEW_MULTISAMPLE |
254 _NEW_POINT |
255 _NEW_POLYGON |
Kenneth Graunke09468222017-01-11 21:38:52 -0800256 _NEW_PROGRAM,
Kenneth Graunke6d5ce1b2016-04-22 01:48:56 -0700257 .brw = BRW_NEW_BLORP |
258 BRW_NEW_CONTEXT |
Kenneth Graunke4c116cb2016-08-25 22:52:22 -0700259 BRW_NEW_GS_PROG_DATA |
Kenneth Graunke77d6add2016-06-01 17:32:55 -0700260 BRW_NEW_PRIMITIVE |
Kenneth Graunkecd19db42016-08-25 23:00:13 -0700261 BRW_NEW_TES_PROG_DATA |
Kenneth Graunke77d6add2016-06-01 17:32:55 -0700262 BRW_NEW_VUE_MAP_GEOM_OUT,
Kenneth Graunke7d608d02011-01-05 01:21:06 -0800263 },
264 .emit = upload_sf_state,
265};