i965/gen7.5: Fix missing Shader Channel Select entries on Haswell
[mesa.git] / src / mesa / drivers / dri / i965 / gen7_wm_surface_state.c
1 /*
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 #include "main/mtypes.h"
24 #include "main/blend.h"
25 #include "main/samplerobj.h"
26 #include "main/texformat.h"
27 #include "program/prog_parameter.h"
28
29 #include "intel_mipmap_tree.h"
30 #include "intel_batchbuffer.h"
31 #include "intel_tex.h"
32 #include "intel_fbo.h"
33 #include "intel_buffer_objects.h"
34
35 #include "brw_context.h"
36 #include "brw_state.h"
37 #include "brw_defines.h"
38 #include "brw_wm.h"
39
40 /**
41 * Convert an swizzle enumeration (i.e. SWIZZLE_X) to one of the Gen7.5+
42 * "Shader Channel Select" enumerations (i.e. HSW_SCS_RED)
43 */
44 static unsigned
45 swizzle_to_scs(GLenum swizzle)
46 {
47 switch (swizzle) {
48 case SWIZZLE_X:
49 return HSW_SCS_RED;
50 case SWIZZLE_Y:
51 return HSW_SCS_GREEN;
52 case SWIZZLE_Z:
53 return HSW_SCS_BLUE;
54 case SWIZZLE_W:
55 return HSW_SCS_ALPHA;
56 case SWIZZLE_ZERO:
57 return HSW_SCS_ZERO;
58 case SWIZZLE_ONE:
59 return HSW_SCS_ONE;
60 }
61
62 assert(!"Should not get here: invalid swizzle mode");
63 return HSW_SCS_ZERO;
64 }
65
66 uint32_t
67 gen7_surface_tiling_mode(uint32_t tiling)
68 {
69 switch (tiling) {
70 case I915_TILING_X:
71 return GEN7_SURFACE_TILING_X;
72 case I915_TILING_Y:
73 return GEN7_SURFACE_TILING_Y;
74 default:
75 return GEN7_SURFACE_TILING_NONE;
76 }
77 }
78
79
80 uint32_t
81 gen7_surface_msaa_bits(unsigned num_samples, enum intel_msaa_layout layout)
82 {
83 uint32_t ss4 = 0;
84
85 if (num_samples > 4)
86 ss4 |= GEN7_SURFACE_MULTISAMPLECOUNT_8;
87 else if (num_samples > 1)
88 ss4 |= GEN7_SURFACE_MULTISAMPLECOUNT_4;
89 else
90 ss4 |= GEN7_SURFACE_MULTISAMPLECOUNT_1;
91
92 if (layout == INTEL_MSAA_LAYOUT_IMS)
93 ss4 |= GEN7_SURFACE_MSFMT_DEPTH_STENCIL;
94 else
95 ss4 |= GEN7_SURFACE_MSFMT_MSS;
96
97 return ss4;
98 }
99
100
101 void
102 gen7_set_surface_mcs_info(struct brw_context *brw,
103 uint32_t *surf,
104 uint32_t surf_offset,
105 const struct intel_mipmap_tree *mcs_mt,
106 bool is_render_target)
107 {
108 /* From the Ivy Bridge PRM, Vol4 Part1 p76, "MCS Base Address":
109 *
110 * "The MCS surface must be stored as Tile Y."
111 */
112 assert(mcs_mt->region->tiling == I915_TILING_Y);
113
114 /* Compute the pitch in units of tiles. To do this we need to divide the
115 * pitch in bytes by 128, since a single Y-tile is 128 bytes wide.
116 */
117 unsigned pitch_tiles = mcs_mt->region->pitch / 128;
118
119 /* The upper 20 bits of surface state DWORD 6 are the upper 20 bits of the
120 * GPU address of the MCS buffer; the lower 12 bits contain other control
121 * information. Since buffer addresses are always on 4k boundaries (and
122 * thus have their lower 12 bits zero), we can use an ordinary reloc to do
123 * the necessary address translation.
124 */
125 assert ((mcs_mt->region->bo->offset & 0xfff) == 0);
126
127 surf[6] = GEN7_SURFACE_MCS_ENABLE |
128 SET_FIELD(pitch_tiles - 1, GEN7_SURFACE_MCS_PITCH) |
129 mcs_mt->region->bo->offset;
130
131 drm_intel_bo_emit_reloc(brw->batch.bo,
132 surf_offset + 6 * 4,
133 mcs_mt->region->bo,
134 surf[6] & 0xfff,
135 is_render_target ? I915_GEM_DOMAIN_RENDER
136 : I915_GEM_DOMAIN_SAMPLER,
137 is_render_target ? I915_GEM_DOMAIN_RENDER : 0);
138 }
139
140
141 void
142 gen7_check_surface_setup(uint32_t *surf, bool is_render_target)
143 {
144 unsigned num_multisamples = surf[4] & INTEL_MASK(5, 3);
145 unsigned multisampled_surface_storage_format = surf[4] & (1 << 6);
146 unsigned surface_array_spacing = surf[0] & (1 << 10);
147 bool is_multisampled = num_multisamples != GEN7_SURFACE_MULTISAMPLECOUNT_1;
148
149 (void) surface_array_spacing;
150
151 /* From the Ivybridge PRM, Volume 4 Part 1, page 66 (RENDER_SURFACE_STATE
152 * dword 0 bit 10 "Surface Array Spacing" Programming Notes):
153 *
154 * If Multisampled Surface Storage Format is MSFMT_MSS and Number of
155 * Multisamples is not MULTISAMPLECOUNT_1, this field must be set to
156 * ARYSPC_LOD0.
157 */
158 if (multisampled_surface_storage_format == GEN7_SURFACE_MSFMT_MSS
159 && is_multisampled)
160 assert(surface_array_spacing == GEN7_SURFACE_ARYSPC_LOD0);
161
162 /* From the Ivybridge PRM, Volume 4 Part 1, page 72 (RENDER_SURFACE_STATE
163 * dword 4 bit 6 "Multisampled Surface Storage" Programming Notes):
164 *
165 * All multisampled render target surfaces must have this field set to
166 * MSFMT_MSS.
167 *
168 * But also:
169 *
170 * This field is ignored if Number of Multisamples is MULTISAMPLECOUNT_1.
171 */
172 if (is_render_target && is_multisampled) {
173 assert(multisampled_surface_storage_format == GEN7_SURFACE_MSFMT_MSS);
174 }
175
176 /* From the Ivybridge PRM, Volume 4 Part 1, page 72 (RENDER_SURFACE_STATE
177 * dword 4 bit 6 "Multisampled Surface Storage Format" Errata):
178 *
179 * If the surface’s Number of Multisamples is MULTISAMPLECOUNT_8, Width
180 * is >= 8192 (meaning the actual surface width is >= 8193 pixels), this
181 * field must be set to MSFMT_MSS.
182 */
183 uint32_t width = GET_FIELD(surf[2], GEN7_SURFACE_WIDTH) + 1;
184 if (num_multisamples == GEN7_SURFACE_MULTISAMPLECOUNT_8 && width >= 8193) {
185 assert(multisampled_surface_storage_format == GEN7_SURFACE_MSFMT_MSS);
186 }
187
188 /* From the Ivybridge PRM, Volume 4 Part 1, page 72 (RENDER_SURFACE_STATE
189 * dword 4 bit 6 "Multisampled Surface Storage Format" Errata):
190 *
191 * If the surface’s Number of Multisamples is MULTISAMPLECOUNT_8,
192 * ((Depth+1) * (Height+1)) is > 4,194,304, OR if the surface’s Number of
193 * Multisamples is MULTISAMPLECOUNT_4, ((Depth+1) * (Height+1)) is >
194 * 8,388,608, this field must be set to MSFMT_DEPTH_STENCIL.This field
195 * must be set to MSFMT_DEPTH_STENCIL if Surface Format is one of the
196 * following: I24X8_UNORM, L24X8_UNORM, A24X8_UNORM, or
197 * R24_UNORM_X8_TYPELESS.
198 *
199 * But also (from the Programming Notes):
200 *
201 * This field is ignored if Number of Multisamples is MULTISAMPLECOUNT_1.
202 */
203 uint32_t depth = GET_FIELD(surf[3], BRW_SURFACE_DEPTH) + 1;
204 uint32_t height = GET_FIELD(surf[2], GEN7_SURFACE_HEIGHT) + 1;
205 if (num_multisamples == GEN7_SURFACE_MULTISAMPLECOUNT_8 &&
206 depth * height > 4194304) {
207 assert(multisampled_surface_storage_format ==
208 GEN7_SURFACE_MSFMT_DEPTH_STENCIL);
209 }
210 if (num_multisamples == GEN7_SURFACE_MULTISAMPLECOUNT_4 &&
211 depth * height > 8388608) {
212 assert(multisampled_surface_storage_format ==
213 GEN7_SURFACE_MSFMT_DEPTH_STENCIL);
214 }
215 if (is_multisampled) {
216 switch (GET_FIELD(surf[0], BRW_SURFACE_FORMAT)) {
217 case BRW_SURFACEFORMAT_I24X8_UNORM:
218 case BRW_SURFACEFORMAT_L24X8_UNORM:
219 case BRW_SURFACEFORMAT_A24X8_UNORM:
220 case BRW_SURFACEFORMAT_R24_UNORM_X8_TYPELESS:
221 assert(multisampled_surface_storage_format ==
222 GEN7_SURFACE_MSFMT_DEPTH_STENCIL);
223 }
224 }
225 }
226
227 static void
228 gen7_emit_buffer_surface_state(struct brw_context *brw,
229 uint32_t *out_offset,
230 drm_intel_bo *bo,
231 unsigned buffer_offset,
232 unsigned surface_format,
233 unsigned buffer_size,
234 unsigned pitch,
235 unsigned mocs)
236 {
237 uint32_t *surf = brw_state_batch(brw, AUB_TRACE_SURFACE_STATE,
238 8 * 4, 32, out_offset);
239 memset(surf, 0, 8 * 4);
240
241 surf[0] = BRW_SURFACE_BUFFER << BRW_SURFACE_TYPE_SHIFT |
242 surface_format << BRW_SURFACE_FORMAT_SHIFT |
243 BRW_SURFACE_RC_READ_WRITE;
244 surf[1] = (bo ? bo->offset : 0) + buffer_offset; /* reloc */
245 surf[2] = SET_FIELD((buffer_size - 1) & 0x7f, GEN7_SURFACE_WIDTH) |
246 SET_FIELD(((buffer_size - 1) >> 7) & 0x3fff, GEN7_SURFACE_HEIGHT);
247 surf[3] = SET_FIELD(((buffer_size - 1) >> 21) & 0x3f, BRW_SURFACE_DEPTH) |
248 (pitch - 1);
249
250 surf[5] = SET_FIELD(mocs, GEN7_SURFACE_MOCS);
251
252 if (brw->is_haswell) {
253 surf[7] |= (SET_FIELD(HSW_SCS_RED, GEN7_SURFACE_SCS_R) |
254 SET_FIELD(HSW_SCS_GREEN, GEN7_SURFACE_SCS_G) |
255 SET_FIELD(HSW_SCS_BLUE, GEN7_SURFACE_SCS_B) |
256 SET_FIELD(HSW_SCS_ALPHA, GEN7_SURFACE_SCS_A));
257 }
258
259 /* Emit relocation to surface contents */
260 if (bo) {
261 drm_intel_bo_emit_reloc(brw->batch.bo, *out_offset + 4,
262 bo, buffer_offset, I915_GEM_DOMAIN_SAMPLER, 0);
263 }
264
265 gen7_check_surface_setup(surf, false /* is_render_target */);
266 }
267
268 static void
269 gen7_update_buffer_texture_surface(struct gl_context *ctx,
270 unsigned unit,
271 uint32_t *surf_offset)
272 {
273 struct brw_context *brw = brw_context(ctx);
274 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
275 struct intel_buffer_object *intel_obj =
276 intel_buffer_object(tObj->BufferObject);
277 drm_intel_bo *bo = intel_obj ? intel_obj->buffer : NULL;
278 gl_format format = tObj->_BufferObjectFormat;
279
280 uint32_t surface_format = brw_format_for_mesa_format(format);
281 if (surface_format == 0 && format != MESA_FORMAT_RGBA_FLOAT32) {
282 _mesa_problem(NULL, "bad format %s for texture buffer\n",
283 _mesa_get_format_name(format));
284 }
285
286 int texel_size = _mesa_get_format_bytes(format);
287 int w = intel_obj ? intel_obj->Base.Size / texel_size : 0;
288
289 gen7_emit_buffer_surface_state(brw,
290 surf_offset,
291 bo,
292 0,
293 surface_format,
294 w,
295 texel_size,
296 0 /* mocs */);
297 }
298
299 static void
300 gen7_update_texture_surface(struct gl_context *ctx,
301 unsigned unit,
302 uint32_t *surf_offset)
303 {
304 struct brw_context *brw = brw_context(ctx);
305 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
306 struct intel_texture_object *intelObj = intel_texture_object(tObj);
307 struct intel_mipmap_tree *mt = intelObj->mt;
308 struct gl_texture_image *firstImage = tObj->Image[0][tObj->BaseLevel];
309 struct intel_texture_image *intel_image = intel_texture_image(firstImage);
310 struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
311
312 if (tObj->Target == GL_TEXTURE_BUFFER) {
313 gen7_update_buffer_texture_surface(ctx, unit, surf_offset);
314 return;
315 }
316
317 uint32_t *surf = brw_state_batch(brw, AUB_TRACE_SURFACE_STATE,
318 8 * 4, 32, surf_offset);
319 memset(surf, 0, 8 * 4);
320
321 uint32_t tex_format = translate_tex_format(brw,
322 mt->format,
323 tObj->DepthMode,
324 sampler->sRGBDecode);
325
326 surf[0] = translate_tex_target(tObj->Target) << BRW_SURFACE_TYPE_SHIFT |
327 tex_format << BRW_SURFACE_FORMAT_SHIFT |
328 gen7_surface_tiling_mode(mt->region->tiling) |
329 BRW_SURFACE_CUBEFACE_ENABLES;
330
331 if (mt->align_h == 4)
332 surf[0] |= GEN7_SURFACE_VALIGN_4;
333 if (mt->align_w == 8)
334 surf[0] |= GEN7_SURFACE_HALIGN_8;
335
336 if (mt->logical_depth0 > 1 && tObj->Target != GL_TEXTURE_3D)
337 surf[0] |= GEN7_SURFACE_IS_ARRAY;
338
339 if (mt->array_spacing_lod0)
340 surf[0] |= GEN7_SURFACE_ARYSPC_LOD0;
341
342 surf[1] = mt->region->bo->offset + mt->offset; /* reloc */
343
344 surf[2] = SET_FIELD(mt->logical_width0 - 1, GEN7_SURFACE_WIDTH) |
345 SET_FIELD(mt->logical_height0 - 1, GEN7_SURFACE_HEIGHT);
346 surf[3] = SET_FIELD(mt->logical_depth0 - 1, BRW_SURFACE_DEPTH) |
347 ((intelObj->mt->region->pitch) - 1);
348
349 surf[4] = gen7_surface_msaa_bits(mt->num_samples, mt->msaa_layout);
350
351 surf[5] = (SET_FIELD(GEN7_MOCS_L3, GEN7_SURFACE_MOCS) |
352 /* mip count */
353 (intelObj->_MaxLevel - intel_image->mt->first_level));
354
355 if (brw->is_haswell) {
356 /* Handling GL_ALPHA as a surface format override breaks 1.30+ style
357 * texturing functions that return a float, as our code generation always
358 * selects the .x channel (which would always be 0).
359 */
360 const bool alpha_depth = tObj->DepthMode == GL_ALPHA &&
361 (firstImage->_BaseFormat == GL_DEPTH_COMPONENT ||
362 firstImage->_BaseFormat == GL_DEPTH_STENCIL);
363
364 const int swizzle = unlikely(alpha_depth)
365 ? SWIZZLE_XYZW : brw_get_texture_swizzle(ctx, tObj);
366
367 surf[7] =
368 SET_FIELD(swizzle_to_scs(GET_SWZ(swizzle, 0)), GEN7_SURFACE_SCS_R) |
369 SET_FIELD(swizzle_to_scs(GET_SWZ(swizzle, 1)), GEN7_SURFACE_SCS_G) |
370 SET_FIELD(swizzle_to_scs(GET_SWZ(swizzle, 2)), GEN7_SURFACE_SCS_B) |
371 SET_FIELD(swizzle_to_scs(GET_SWZ(swizzle, 3)), GEN7_SURFACE_SCS_A);
372 }
373
374 /* Emit relocation to surface contents */
375 drm_intel_bo_emit_reloc(brw->batch.bo,
376 *surf_offset + 4,
377 intelObj->mt->region->bo,
378 surf[1] - intelObj->mt->region->bo->offset,
379 I915_GEM_DOMAIN_SAMPLER, 0);
380
381 gen7_check_surface_setup(surf, false /* is_render_target */);
382 }
383
384 /**
385 * Create the constant buffer surface. Vertex/fragment shader constants will
386 * be read from this buffer with Data Port Read instructions/messages.
387 */
388 static void
389 gen7_create_constant_surface(struct brw_context *brw,
390 drm_intel_bo *bo,
391 uint32_t offset,
392 uint32_t size,
393 uint32_t *out_offset,
394 bool dword_pitch)
395 {
396 uint32_t stride = dword_pitch ? 4 : 16;
397 uint32_t elements = ALIGN(size, stride) / stride;
398
399 gen7_emit_buffer_surface_state(brw,
400 out_offset,
401 bo,
402 offset,
403 BRW_SURFACEFORMAT_R32G32B32A32_FLOAT,
404 elements,
405 stride,
406 0 /* mocs */);
407 }
408
409 /**
410 * Create a surface for shader time.
411 */
412 void
413 gen7_create_shader_time_surface(struct brw_context *brw, uint32_t *out_offset)
414 {
415 gen7_emit_buffer_surface_state(brw,
416 out_offset,
417 brw->shader_time.bo,
418 0,
419 BRW_SURFACEFORMAT_RAW,
420 brw->shader_time.bo->size,
421 1,
422 0 /* mocs */);
423 }
424
425 static void
426 gen7_update_null_renderbuffer_surface(struct brw_context *brw, unsigned unit)
427 {
428 /* From the Ivy bridge PRM, Vol4 Part1 p62 (Surface Type: Programming
429 * Notes):
430 *
431 * A null surface is used in instances where an actual surface is not
432 * bound. When a write message is generated to a null surface, no
433 * actual surface is written to. When a read message (including any
434 * sampling engine message) is generated to a null surface, the result
435 * is all zeros. Note that a null surface type is allowed to be used
436 * with all messages, even if it is not specificially indicated as
437 * supported. All of the remaining fields in surface state are ignored
438 * for null surfaces, with the following exceptions: Width, Height,
439 * Depth, LOD, and Render Target View Extent fields must match the
440 * depth buffer’s corresponding state for all render target surfaces,
441 * including null.
442 */
443 struct gl_context *ctx = &brw->ctx;
444
445 /* _NEW_BUFFERS */
446 const struct gl_framebuffer *fb = ctx->DrawBuffer;
447
448 uint32_t *surf = brw_state_batch(brw, AUB_TRACE_SURFACE_STATE, 8 * 4, 32,
449 &brw->wm.base.surf_offset[SURF_INDEX_DRAW(unit)]);
450 memset(surf, 0, 8 * 4);
451
452 /* From the Ivybridge PRM, Volume 4, Part 1, page 65,
453 * Tiled Surface: Programming Notes:
454 * "If Surface Type is SURFTYPE_NULL, this field must be TRUE."
455 */
456 surf[0] = BRW_SURFACE_NULL << BRW_SURFACE_TYPE_SHIFT |
457 BRW_SURFACEFORMAT_B8G8R8A8_UNORM << BRW_SURFACE_FORMAT_SHIFT |
458 GEN7_SURFACE_TILING_Y;
459
460 surf[2] = SET_FIELD(fb->Width - 1, GEN7_SURFACE_WIDTH) |
461 SET_FIELD(fb->Height - 1, GEN7_SURFACE_HEIGHT);
462
463 gen7_check_surface_setup(surf, true /* is_render_target */);
464 }
465
466 /**
467 * Sets up a surface state structure to point at the given region.
468 * While it is only used for the front/back buffer currently, it should be
469 * usable for further buffers when doing ARB_draw_buffer support.
470 */
471 static void
472 gen7_update_renderbuffer_surface(struct brw_context *brw,
473 struct gl_renderbuffer *rb,
474 bool layered,
475 unsigned int unit)
476 {
477 struct gl_context *ctx = &brw->ctx;
478 struct intel_renderbuffer *irb = intel_renderbuffer(rb);
479 struct intel_region *region = irb->mt->region;
480 uint32_t format;
481 /* _NEW_BUFFERS */
482 gl_format rb_format = _mesa_get_render_format(ctx, intel_rb_format(irb));
483 uint32_t surftype;
484 bool is_array = false;
485 int depth = MAX2(rb->Depth, 1);
486 int min_array_element;
487 const uint8_t mocs = GEN7_MOCS_L3;
488 GLenum gl_target = rb->TexImage ?
489 rb->TexImage->TexObject->Target : GL_TEXTURE_2D;
490
491 uint32_t surf_index = SURF_INDEX_DRAW(unit);
492
493 uint32_t *surf = brw_state_batch(brw, AUB_TRACE_SURFACE_STATE, 8 * 4, 32,
494 &brw->wm.base.surf_offset[surf_index]);
495 memset(surf, 0, 8 * 4);
496
497 intel_miptree_used_for_rendering(irb->mt);
498
499 /* Render targets can't use IMS layout */
500 assert(irb->mt->msaa_layout != INTEL_MSAA_LAYOUT_IMS);
501
502 assert(brw_render_target_supported(brw, rb));
503 format = brw->render_target_format[rb_format];
504 if (unlikely(!brw->format_supported_as_render_target[rb_format])) {
505 _mesa_problem(ctx, "%s: renderbuffer format %s unsupported\n",
506 __FUNCTION__, _mesa_get_format_name(rb_format));
507 }
508
509 switch (gl_target) {
510 case GL_TEXTURE_CUBE_MAP_ARRAY:
511 case GL_TEXTURE_CUBE_MAP:
512 surftype = BRW_SURFACE_2D;
513 is_array = true;
514 depth *= 6;
515 break;
516 default:
517 surftype = translate_tex_target(gl_target);
518 is_array = _mesa_tex_target_is_array(gl_target);
519 break;
520 }
521
522 if (layered) {
523 min_array_element = 0;
524 } else if (irb->mt->num_samples > 1) {
525 min_array_element = irb->mt_layer / irb->mt->num_samples;
526 } else {
527 min_array_element = irb->mt_layer;
528 }
529
530 surf[0] = surftype << BRW_SURFACE_TYPE_SHIFT |
531 format << BRW_SURFACE_FORMAT_SHIFT |
532 (irb->mt->array_spacing_lod0 ? GEN7_SURFACE_ARYSPC_LOD0
533 : GEN7_SURFACE_ARYSPC_FULL) |
534 gen7_surface_tiling_mode(region->tiling);
535
536 if (irb->mt->align_h == 4)
537 surf[0] |= GEN7_SURFACE_VALIGN_4;
538 if (irb->mt->align_w == 8)
539 surf[0] |= GEN7_SURFACE_HALIGN_8;
540
541 if (is_array) {
542 surf[0] |= GEN7_SURFACE_IS_ARRAY;
543 }
544
545 surf[1] = region->bo->offset;
546
547 assert(brw->has_surface_tile_offset);
548
549 surf[5] = SET_FIELD(mocs, GEN7_SURFACE_MOCS) |
550 (irb->mt_level - irb->mt->first_level);
551
552 surf[2] = SET_FIELD(irb->mt->logical_width0 - 1, GEN7_SURFACE_WIDTH) |
553 SET_FIELD(irb->mt->logical_height0 - 1, GEN7_SURFACE_HEIGHT);
554
555 surf[3] = ((depth - 1) << BRW_SURFACE_DEPTH_SHIFT) |
556 (region->pitch - 1);
557
558 surf[4] = gen7_surface_msaa_bits(irb->mt->num_samples, irb->mt->msaa_layout) |
559 min_array_element << GEN7_SURFACE_MIN_ARRAY_ELEMENT_SHIFT |
560 (depth - 1) << GEN7_SURFACE_RENDER_TARGET_VIEW_EXTENT_SHIFT;
561
562 if (irb->mt->mcs_mt) {
563 gen7_set_surface_mcs_info(brw, surf, brw->wm.base.surf_offset[surf_index],
564 irb->mt->mcs_mt, true /* is RT */);
565 }
566
567 surf[7] = irb->mt->fast_clear_color_value;
568
569 if (brw->is_haswell) {
570 surf[7] |= (SET_FIELD(HSW_SCS_RED, GEN7_SURFACE_SCS_R) |
571 SET_FIELD(HSW_SCS_GREEN, GEN7_SURFACE_SCS_G) |
572 SET_FIELD(HSW_SCS_BLUE, GEN7_SURFACE_SCS_B) |
573 SET_FIELD(HSW_SCS_ALPHA, GEN7_SURFACE_SCS_A));
574 }
575
576 drm_intel_bo_emit_reloc(brw->batch.bo,
577 brw->wm.base.surf_offset[surf_index] + 4,
578 region->bo,
579 surf[1] - region->bo->offset,
580 I915_GEM_DOMAIN_RENDER,
581 I915_GEM_DOMAIN_RENDER);
582
583 gen7_check_surface_setup(surf, true /* is_render_target */);
584 }
585
586 void
587 gen7_init_vtable_surface_functions(struct brw_context *brw)
588 {
589 brw->vtbl.update_texture_surface = gen7_update_texture_surface;
590 brw->vtbl.update_renderbuffer_surface = gen7_update_renderbuffer_surface;
591 brw->vtbl.update_null_renderbuffer_surface =
592 gen7_update_null_renderbuffer_surface;
593 brw->vtbl.create_constant_surface = gen7_create_constant_surface;
594 }