2017-11-23 23:15:14 -08:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright © 2017 Intel Corporation
|
|
|
|
|
|
*
|
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
2018-08-19 00:31:46 -07:00
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2017-11-23 23:15:14 -08:00
|
|
|
|
*
|
2018-08-19 00:31:46 -07:00
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
|
|
* in all copies or substantial portions of the Software.
|
2017-11-23 23:15:14 -08:00
|
|
|
|
*
|
2018-08-19 00:31:46 -07:00
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2017-11-23 23:15:14 -08:00
|
|
|
|
*/
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @file iris_state.c
|
|
|
|
|
|
*
|
|
|
|
|
|
* ============================= GENXML CODE =============================
|
|
|
|
|
|
* [This file is compiled once per generation.]
|
|
|
|
|
|
* =======================================================================
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is the main state upload code.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Gallium uses Constant State Objects, or CSOs, for most state. Large,
|
|
|
|
|
|
* complex, or highly reusable state can be created once, and bound and
|
|
|
|
|
|
* rebound multiple times. This is modeled with the pipe->create_*_state()
|
|
|
|
|
|
* and pipe->bind_*_state() hooks. Highly dynamic or inexpensive state is
|
|
|
|
|
|
* streamed out on the fly, via pipe->set_*_state() hooks.
|
|
|
|
|
|
*
|
|
|
|
|
|
* OpenGL involves frequently mutating context state, which is mirrored in
|
|
|
|
|
|
* core Mesa by highly mutable data structures. However, most applications
|
|
|
|
|
|
* typically draw the same things over and over - from frame to frame, most
|
|
|
|
|
|
* of the same objects are still visible and need to be redrawn. So, rather
|
|
|
|
|
|
* than inventing new state all the time, applications usually mutate to swap
|
|
|
|
|
|
* between known states that we've seen before.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Gallium isolates us from this mutation by tracking API state, and
|
|
|
|
|
|
* distilling it into a set of Constant State Objects, or CSOs. Large,
|
|
|
|
|
|
* complex, or typically reusable state can be created once, then reused
|
|
|
|
|
|
* multiple times. Drivers can create and store their own associated data.
|
|
|
|
|
|
* This create/bind model corresponds to the pipe->create_*_state() and
|
|
|
|
|
|
* pipe->bind_*_state() driver hooks.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Some state is cheap to create, or expected to be highly dynamic. Rather
|
|
|
|
|
|
* than creating and caching piles of CSOs for these, Gallium simply streams
|
|
|
|
|
|
* them out, via the pipe->set_*_state() driver hooks.
|
|
|
|
|
|
*
|
|
|
|
|
|
* To reduce draw time overhead, we try to compute as much state at create
|
|
|
|
|
|
* time as possible. Wherever possible, we translate the Gallium pipe state
|
|
|
|
|
|
* to 3DSTATE commands, and store those commands in the CSO. At draw time,
|
|
|
|
|
|
* we can simply memcpy them into a batch buffer.
|
|
|
|
|
|
*
|
|
|
|
|
|
* No hardware matches the abstraction perfectly, so some commands require
|
|
|
|
|
|
* information from multiple CSOs. In this case, we can store two copies
|
|
|
|
|
|
* of the packet (one in each CSO), and simply | together their DWords at
|
|
|
|
|
|
* draw time. Sometimes the second set is trivial (one or two fields), so
|
|
|
|
|
|
* we simply pack it at draw time.
|
|
|
|
|
|
*
|
|
|
|
|
|
* There are two main components in the file below. First, the CSO hooks
|
|
|
|
|
|
* create/bind/track state. The second are the draw-time upload functions,
|
|
|
|
|
|
* iris_upload_render_state() and iris_upload_compute_state(), which read
|
|
|
|
|
|
* the context state and emit the commands into the actual batch.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
#include <errno.h>
|
2018-01-08 14:44:14 -08:00
|
|
|
|
|
2018-06-07 15:33:52 -07:00
|
|
|
|
#if HAVE_VALGRIND
|
2018-01-08 14:44:14 -08:00
|
|
|
|
#include <valgrind.h>
|
|
|
|
|
|
#include <memcheck.h>
|
|
|
|
|
|
#define VG(x) x
|
2018-11-21 11:12:11 +00:00
|
|
|
|
#ifdef DEBUG
|
2018-01-08 14:44:14 -08:00
|
|
|
|
#define __gen_validate_value(x) VALGRIND_CHECK_MEM_IS_DEFINED(&(x), sizeof(x))
|
2018-06-07 15:33:52 -07:00
|
|
|
|
#endif
|
2018-01-08 14:44:14 -08:00
|
|
|
|
#else
|
|
|
|
|
|
#define VG(x)
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include "pipe/p_defines.h"
|
|
|
|
|
|
#include "pipe/p_state.h"
|
|
|
|
|
|
#include "pipe/p_context.h"
|
|
|
|
|
|
#include "pipe/p_screen.h"
|
|
|
|
|
|
#include "util/u_inlines.h"
|
2018-04-25 15:25:33 -07:00
|
|
|
|
#include "util/u_format.h"
|
2018-05-21 00:32:04 -07:00
|
|
|
|
#include "util/u_framebuffer.h"
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include "util/u_transfer.h"
|
2018-02-09 14:21:54 -08:00
|
|
|
|
#include "util/u_upload_mgr.h"
|
2018-07-14 01:29:33 -07:00
|
|
|
|
#include "util/u_viewport.h"
|
2019-02-24 14:21:39 -08:00
|
|
|
|
#include "drm-uapi/i915_drm.h"
|
2018-04-19 19:04:17 -07:00
|
|
|
|
#include "nir.h"
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include "intel/compiler/brw_compiler.h"
|
2018-01-25 21:23:45 -08:00
|
|
|
|
#include "intel/common/gen_l3_config.h"
|
2018-01-09 11:25:29 -08:00
|
|
|
|
#include "intel/common/gen_sample_positions.h"
|
2017-12-27 02:54:26 -08:00
|
|
|
|
#include "iris_batch.h"
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include "iris_context.h"
|
2018-12-04 22:19:33 -08:00
|
|
|
|
#include "iris_defines.h"
|
2018-01-11 22:18:54 -08:00
|
|
|
|
#include "iris_pipe.h"
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include "iris_resource.h"
|
|
|
|
|
|
|
2018-01-21 12:20:30 -08:00
|
|
|
|
#define __gen_address_type struct iris_address
|
|
|
|
|
|
#define __gen_user_data struct iris_batch
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-01-25 21:53:41 -08:00
|
|
|
|
#define ARRAY_BYTES(x) (sizeof(uint32_t) * ARRAY_SIZE(x))
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static uint64_t
|
2018-01-21 12:20:30 -08:00
|
|
|
|
__gen_combine_address(struct iris_batch *batch, void *location,
|
|
|
|
|
|
struct iris_address addr, uint32_t delta)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-04-06 11:44:59 -07:00
|
|
|
|
uint64_t result = addr.offset + delta;
|
|
|
|
|
|
|
|
|
|
|
|
if (addr.bo) {
|
2018-04-06 00:19:57 -07:00
|
|
|
|
iris_use_pinned_bo(batch, addr.bo, addr.write);
|
2018-04-06 11:44:59 -07:00
|
|
|
|
/* Assume this is a general address, not relative to a base. */
|
|
|
|
|
|
result += addr.bo->gtt_offset;
|
|
|
|
|
|
}
|
2018-01-21 12:20:30 -08:00
|
|
|
|
|
2018-04-06 11:44:59 -07:00
|
|
|
|
return result;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define __genxml_cmd_length(cmd) cmd ## _length
|
|
|
|
|
|
#define __genxml_cmd_length_bias(cmd) cmd ## _length_bias
|
|
|
|
|
|
#define __genxml_cmd_header(cmd) cmd ## _header
|
|
|
|
|
|
#define __genxml_cmd_pack(cmd) cmd ## _pack
|
|
|
|
|
|
|
2018-01-25 01:53:52 -08:00
|
|
|
|
#define _iris_pack_command(batch, cmd, dst, name) \
|
2017-11-23 23:15:14 -08:00
|
|
|
|
for (struct cmd name = { __genxml_cmd_header(cmd) }, \
|
|
|
|
|
|
*_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
|
2018-01-25 01:53:52 -08:00
|
|
|
|
({ __genxml_cmd_pack(cmd)(batch, (void *)_dst, &name); \
|
2018-01-08 14:44:14 -08:00
|
|
|
|
_dst = NULL; \
|
|
|
|
|
|
}))
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-01-25 01:53:52 -08:00
|
|
|
|
#define iris_pack_command(cmd, dst, name) \
|
|
|
|
|
|
_iris_pack_command(NULL, cmd, dst, name)
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#define iris_pack_state(cmd, dst, name) \
|
|
|
|
|
|
for (struct cmd name = {}, \
|
|
|
|
|
|
*_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
|
|
|
|
|
|
__genxml_cmd_pack(cmd)(NULL, (void *)_dst, &name), \
|
|
|
|
|
|
_dst = NULL)
|
|
|
|
|
|
|
2017-12-27 02:54:26 -08:00
|
|
|
|
#define iris_emit_cmd(batch, cmd, name) \
|
2018-04-20 17:42:07 -07:00
|
|
|
|
_iris_pack_command(batch, cmd, iris_get_command_space(batch, 4 * __genxml_cmd_length(cmd)), name)
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-21 18:03:58 -08:00
|
|
|
|
#define iris_emit_merge(batch, dwords0, dwords1, num_dwords) \
|
|
|
|
|
|
do { \
|
2018-04-20 17:42:07 -07:00
|
|
|
|
uint32_t *dw = iris_get_command_space(batch, 4 * num_dwords); \
|
2018-01-21 18:03:58 -08:00
|
|
|
|
for (uint32_t i = 0; i < num_dwords; i++) \
|
|
|
|
|
|
dw[i] = (dwords0)[i] | (dwords1)[i]; \
|
|
|
|
|
|
VG(VALGRIND_CHECK_MEM_IS_DEFINED(dw, num_dwords)); \
|
2018-01-08 14:44:22 -08:00
|
|
|
|
} while (0)
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#include "genxml/genX_pack.h"
|
|
|
|
|
|
#include "genxml/gen_macros.h"
|
2018-01-21 17:34:41 -08:00
|
|
|
|
#include "genxml/genX_bits.h"
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN == 8
|
|
|
|
|
|
#define MOCS_PTE 0x18
|
|
|
|
|
|
#define MOCS_WB 0x78
|
|
|
|
|
|
#else
|
2018-12-12 00:02:25 -08:00
|
|
|
|
#define MOCS_PTE (1 << 1)
|
|
|
|
|
|
#define MOCS_WB (2 << 1)
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#endif
|
2018-12-12 00:02:25 -08:00
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
2019-03-06 14:49:39 -08:00
|
|
|
|
mocs(const struct iris_bo *bo)
|
2018-12-12 00:02:25 -08:00
|
|
|
|
{
|
|
|
|
|
|
return bo && bo->external ? MOCS_PTE : MOCS_WB;
|
|
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Statically assert that PIPE_* enums match the hardware packets.
|
|
|
|
|
|
* (As long as they match, we don't need to translate them.)
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
UNUSED static void pipe_asserts()
|
|
|
|
|
|
{
|
|
|
|
|
|
#define PIPE_ASSERT(x) STATIC_ASSERT((int)x)
|
|
|
|
|
|
|
|
|
|
|
|
/* pipe_logicop happens to match the hardware. */
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_CLEAR == LOGICOP_CLEAR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_NOR == LOGICOP_NOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_AND_INVERTED == LOGICOP_AND_INVERTED);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_COPY_INVERTED == LOGICOP_COPY_INVERTED);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_AND_REVERSE == LOGICOP_AND_REVERSE);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_INVERT == LOGICOP_INVERT);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_XOR == LOGICOP_XOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_NAND == LOGICOP_NAND);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_AND == LOGICOP_AND);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_EQUIV == LOGICOP_EQUIV);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_NOOP == LOGICOP_NOOP);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_OR_INVERTED == LOGICOP_OR_INVERTED);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_COPY == LOGICOP_COPY);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_OR_REVERSE == LOGICOP_OR_REVERSE);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_OR == LOGICOP_OR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_LOGICOP_SET == LOGICOP_SET);
|
|
|
|
|
|
|
|
|
|
|
|
/* pipe_blend_func happens to match the hardware. */
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_ONE == BLENDFACTOR_ONE);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_SRC_COLOR == BLENDFACTOR_SRC_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_SRC_ALPHA == BLENDFACTOR_SRC_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_DST_ALPHA == BLENDFACTOR_DST_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_DST_COLOR == BLENDFACTOR_DST_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE == BLENDFACTOR_SRC_ALPHA_SATURATE);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_CONST_COLOR == BLENDFACTOR_CONST_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_CONST_ALPHA == BLENDFACTOR_CONST_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_SRC1_COLOR == BLENDFACTOR_SRC1_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_SRC1_ALPHA == BLENDFACTOR_SRC1_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_ZERO == BLENDFACTOR_ZERO);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC_COLOR == BLENDFACTOR_INV_SRC_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC_ALPHA == BLENDFACTOR_INV_SRC_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_DST_ALPHA == BLENDFACTOR_INV_DST_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_DST_COLOR == BLENDFACTOR_INV_DST_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_CONST_COLOR == BLENDFACTOR_INV_CONST_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_CONST_ALPHA == BLENDFACTOR_INV_CONST_ALPHA);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC1_COLOR == BLENDFACTOR_INV_SRC1_COLOR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC1_ALPHA == BLENDFACTOR_INV_SRC1_ALPHA);
|
|
|
|
|
|
|
|
|
|
|
|
/* pipe_blend_func happens to match the hardware. */
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLEND_ADD == BLENDFUNCTION_ADD);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLEND_SUBTRACT == BLENDFUNCTION_SUBTRACT);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLEND_REVERSE_SUBTRACT == BLENDFUNCTION_REVERSE_SUBTRACT);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLEND_MIN == BLENDFUNCTION_MIN);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_BLEND_MAX == BLENDFUNCTION_MAX);
|
|
|
|
|
|
|
|
|
|
|
|
/* pipe_stencil_op happens to match the hardware. */
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_KEEP == STENCILOP_KEEP);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_ZERO == STENCILOP_ZERO);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_REPLACE == STENCILOP_REPLACE);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_INCR == STENCILOP_INCRSAT);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_DECR == STENCILOP_DECRSAT);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_INCR_WRAP == STENCILOP_INCR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_DECR_WRAP == STENCILOP_DECR);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_STENCIL_OP_INVERT == STENCILOP_INVERT);
|
2018-01-29 15:06:04 -08:00
|
|
|
|
|
|
|
|
|
|
/* pipe_sprite_coord_mode happens to match 3DSTATE_SBE */
|
|
|
|
|
|
PIPE_ASSERT(PIPE_SPRITE_COORD_UPPER_LEFT == UPPERLEFT);
|
|
|
|
|
|
PIPE_ASSERT(PIPE_SPRITE_COORD_LOWER_LEFT == LOWERLEFT);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
#undef PIPE_ASSERT
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-10 00:19:29 -08:00
|
|
|
|
static unsigned
|
|
|
|
|
|
translate_prim_type(enum pipe_prim_type prim, uint8_t verts_per_patch)
|
|
|
|
|
|
{
|
|
|
|
|
|
static const unsigned map[] = {
|
|
|
|
|
|
[PIPE_PRIM_POINTS] = _3DPRIM_POINTLIST,
|
|
|
|
|
|
[PIPE_PRIM_LINES] = _3DPRIM_LINELIST,
|
|
|
|
|
|
[PIPE_PRIM_LINE_LOOP] = _3DPRIM_LINELOOP,
|
|
|
|
|
|
[PIPE_PRIM_LINE_STRIP] = _3DPRIM_LINESTRIP,
|
|
|
|
|
|
[PIPE_PRIM_TRIANGLES] = _3DPRIM_TRILIST,
|
|
|
|
|
|
[PIPE_PRIM_TRIANGLE_STRIP] = _3DPRIM_TRISTRIP,
|
|
|
|
|
|
[PIPE_PRIM_TRIANGLE_FAN] = _3DPRIM_TRIFAN,
|
|
|
|
|
|
[PIPE_PRIM_QUADS] = _3DPRIM_QUADLIST,
|
|
|
|
|
|
[PIPE_PRIM_QUAD_STRIP] = _3DPRIM_QUADSTRIP,
|
|
|
|
|
|
[PIPE_PRIM_POLYGON] = _3DPRIM_POLYGON,
|
|
|
|
|
|
[PIPE_PRIM_LINES_ADJACENCY] = _3DPRIM_LINELIST_ADJ,
|
|
|
|
|
|
[PIPE_PRIM_LINE_STRIP_ADJACENCY] = _3DPRIM_LINESTRIP_ADJ,
|
|
|
|
|
|
[PIPE_PRIM_TRIANGLES_ADJACENCY] = _3DPRIM_TRILIST_ADJ,
|
|
|
|
|
|
[PIPE_PRIM_TRIANGLE_STRIP_ADJACENCY] = _3DPRIM_TRISTRIP_ADJ,
|
|
|
|
|
|
[PIPE_PRIM_PATCHES] = _3DPRIM_PATCHLIST_1 - 1,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-01-20 01:05:13 -08:00
|
|
|
|
return map[prim] + (prim == PIPE_PRIM_PATCHES ? verts_per_patch : 0);
|
2018-01-10 00:19:29 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static unsigned
|
|
|
|
|
|
translate_compare_func(enum pipe_compare_func pipe_func)
|
|
|
|
|
|
{
|
|
|
|
|
|
static const unsigned map[] = {
|
|
|
|
|
|
[PIPE_FUNC_NEVER] = COMPAREFUNCTION_NEVER,
|
|
|
|
|
|
[PIPE_FUNC_LESS] = COMPAREFUNCTION_LESS,
|
|
|
|
|
|
[PIPE_FUNC_EQUAL] = COMPAREFUNCTION_EQUAL,
|
|
|
|
|
|
[PIPE_FUNC_LEQUAL] = COMPAREFUNCTION_LEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_GREATER] = COMPAREFUNCTION_GREATER,
|
|
|
|
|
|
[PIPE_FUNC_NOTEQUAL] = COMPAREFUNCTION_NOTEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_GEQUAL] = COMPAREFUNCTION_GEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_ALWAYS] = COMPAREFUNCTION_ALWAYS,
|
|
|
|
|
|
};
|
|
|
|
|
|
return map[pipe_func];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned
|
|
|
|
|
|
translate_shadow_func(enum pipe_compare_func pipe_func)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Gallium specifies the result of shadow comparisons as:
|
|
|
|
|
|
*
|
|
|
|
|
|
* 1 if ref <op> texel,
|
|
|
|
|
|
* 0 otherwise.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The hardware does:
|
|
|
|
|
|
*
|
|
|
|
|
|
* 0 if texel <op> ref,
|
|
|
|
|
|
* 1 otherwise.
|
|
|
|
|
|
*
|
|
|
|
|
|
* So we need to flip the operator and also negate.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static const unsigned map[] = {
|
|
|
|
|
|
[PIPE_FUNC_NEVER] = PREFILTEROPALWAYS,
|
|
|
|
|
|
[PIPE_FUNC_LESS] = PREFILTEROPLEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_EQUAL] = PREFILTEROPNOTEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_LEQUAL] = PREFILTEROPLESS,
|
|
|
|
|
|
[PIPE_FUNC_GREATER] = PREFILTEROPGEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_NOTEQUAL] = PREFILTEROPEQUAL,
|
|
|
|
|
|
[PIPE_FUNC_GEQUAL] = PREFILTEROPGREATER,
|
|
|
|
|
|
[PIPE_FUNC_ALWAYS] = PREFILTEROPNEVER,
|
|
|
|
|
|
};
|
|
|
|
|
|
return map[pipe_func];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned
|
|
|
|
|
|
translate_cull_mode(unsigned pipe_face)
|
|
|
|
|
|
{
|
|
|
|
|
|
static const unsigned map[4] = {
|
|
|
|
|
|
[PIPE_FACE_NONE] = CULLMODE_NONE,
|
|
|
|
|
|
[PIPE_FACE_FRONT] = CULLMODE_FRONT,
|
|
|
|
|
|
[PIPE_FACE_BACK] = CULLMODE_BACK,
|
|
|
|
|
|
[PIPE_FACE_FRONT_AND_BACK] = CULLMODE_BOTH,
|
|
|
|
|
|
};
|
|
|
|
|
|
return map[pipe_face];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned
|
|
|
|
|
|
translate_fill_mode(unsigned pipe_polymode)
|
|
|
|
|
|
{
|
|
|
|
|
|
static const unsigned map[4] = {
|
|
|
|
|
|
[PIPE_POLYGON_MODE_FILL] = FILL_MODE_SOLID,
|
|
|
|
|
|
[PIPE_POLYGON_MODE_LINE] = FILL_MODE_WIREFRAME,
|
|
|
|
|
|
[PIPE_POLYGON_MODE_POINT] = FILL_MODE_POINT,
|
|
|
|
|
|
[PIPE_POLYGON_MODE_FILL_RECTANGLE] = FILL_MODE_SOLID,
|
|
|
|
|
|
};
|
|
|
|
|
|
return map[pipe_polymode];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
static unsigned
|
|
|
|
|
|
translate_mip_filter(enum pipe_tex_mipfilter pipe_mip)
|
|
|
|
|
|
{
|
|
|
|
|
|
static const unsigned map[] = {
|
|
|
|
|
|
[PIPE_TEX_MIPFILTER_NEAREST] = MIPFILTER_NEAREST,
|
|
|
|
|
|
[PIPE_TEX_MIPFILTER_LINEAR] = MIPFILTER_LINEAR,
|
|
|
|
|
|
[PIPE_TEX_MIPFILTER_NONE] = MIPFILTER_NONE,
|
|
|
|
|
|
};
|
|
|
|
|
|
return map[pipe_mip];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
|
translate_wrap(unsigned pipe_wrap)
|
|
|
|
|
|
{
|
|
|
|
|
|
static const unsigned map[] = {
|
|
|
|
|
|
[PIPE_TEX_WRAP_REPEAT] = TCM_WRAP,
|
|
|
|
|
|
[PIPE_TEX_WRAP_CLAMP] = TCM_HALF_BORDER,
|
|
|
|
|
|
[PIPE_TEX_WRAP_CLAMP_TO_EDGE] = TCM_CLAMP,
|
|
|
|
|
|
[PIPE_TEX_WRAP_CLAMP_TO_BORDER] = TCM_CLAMP_BORDER,
|
|
|
|
|
|
[PIPE_TEX_WRAP_MIRROR_REPEAT] = TCM_MIRROR,
|
|
|
|
|
|
[PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE] = TCM_MIRROR_ONCE,
|
|
|
|
|
|
|
|
|
|
|
|
/* These are unsupported. */
|
|
|
|
|
|
[PIPE_TEX_WRAP_MIRROR_CLAMP] = -1,
|
|
|
|
|
|
[PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER] = -1,
|
|
|
|
|
|
};
|
|
|
|
|
|
return map[pipe_wrap];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-21 00:16:26 -08:00
|
|
|
|
static struct iris_address
|
2018-04-06 00:05:24 -07:00
|
|
|
|
ro_bo(struct iris_bo *bo, uint64_t offset)
|
2018-01-21 00:16:26 -08:00
|
|
|
|
{
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* CSOs must pass NULL for bo! Otherwise it will add the BO to the
|
|
|
|
|
|
* validation list at CSO creation time, instead of draw time.
|
|
|
|
|
|
*/
|
2018-01-21 00:16:26 -08:00
|
|
|
|
return (struct iris_address) { .bo = bo, .offset = offset };
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-29 12:58:31 -07:00
|
|
|
|
static struct iris_address
|
|
|
|
|
|
rw_bo(struct iris_bo *bo, uint64_t offset)
|
|
|
|
|
|
{
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* CSOs must pass NULL for bo! Otherwise it will add the BO to the
|
|
|
|
|
|
* validation list at CSO creation time, instead of draw time.
|
|
|
|
|
|
*/
|
2018-06-29 12:58:31 -07:00
|
|
|
|
return (struct iris_address) { .bo = bo, .offset = offset, .write = true };
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Allocate space for some indirect state.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Return a pointer to the map (to fill it out) and a state ref (for
|
|
|
|
|
|
* referring to the state in GPU commands).
|
|
|
|
|
|
*/
|
2018-06-28 00:57:49 -07:00
|
|
|
|
static void *
|
|
|
|
|
|
upload_state(struct u_upload_mgr *uploader,
|
|
|
|
|
|
struct iris_state_ref *ref,
|
|
|
|
|
|
unsigned size,
|
|
|
|
|
|
unsigned alignment)
|
|
|
|
|
|
{
|
|
|
|
|
|
void *p = NULL;
|
|
|
|
|
|
u_upload_alloc(uploader, 0, size, alignment, &ref->offset, &ref->res, &p);
|
|
|
|
|
|
return p;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Stream out temporary/short-lived state.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This allocates space, pins the BO, and includes the BO address in the
|
|
|
|
|
|
* returned offset (which works because all state lives in 32-bit memory
|
|
|
|
|
|
* zones).
|
|
|
|
|
|
*/
|
2018-04-06 00:05:24 -07:00
|
|
|
|
static uint32_t *
|
|
|
|
|
|
stream_state(struct iris_batch *batch,
|
|
|
|
|
|
struct u_upload_mgr *uploader,
|
2018-06-15 11:55:28 -07:00
|
|
|
|
struct pipe_resource **out_res,
|
2018-04-06 00:05:24 -07:00
|
|
|
|
unsigned size,
|
|
|
|
|
|
unsigned alignment,
|
2018-04-06 11:44:59 -07:00
|
|
|
|
uint32_t *out_offset)
|
2018-04-06 00:05:24 -07:00
|
|
|
|
{
|
|
|
|
|
|
void *ptr = NULL;
|
|
|
|
|
|
|
2018-06-15 11:55:28 -07:00
|
|
|
|
u_upload_alloc(uploader, 0, size, alignment, out_offset, out_res, &ptr);
|
2018-04-06 11:44:59 -07:00
|
|
|
|
|
2018-06-15 11:55:28 -07:00
|
|
|
|
struct iris_bo *bo = iris_resource_bo(*out_res);
|
2018-04-06 11:44:59 -07:00
|
|
|
|
iris_use_pinned_bo(batch, bo, false);
|
|
|
|
|
|
|
2018-04-21 01:42:06 -07:00
|
|
|
|
*out_offset += iris_bo_offset_from_base_address(bo);
|
2018-04-06 11:44:59 -07:00
|
|
|
|
|
2018-04-06 00:05:24 -07:00
|
|
|
|
return ptr;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* stream_state() + memcpy.
|
|
|
|
|
|
*/
|
2018-04-06 00:05:24 -07:00
|
|
|
|
static uint32_t
|
|
|
|
|
|
emit_state(struct iris_batch *batch,
|
|
|
|
|
|
struct u_upload_mgr *uploader,
|
2018-06-15 11:55:28 -07:00
|
|
|
|
struct pipe_resource **out_res,
|
2018-04-06 00:05:24 -07:00
|
|
|
|
const void *data,
|
|
|
|
|
|
unsigned size,
|
|
|
|
|
|
unsigned alignment)
|
|
|
|
|
|
{
|
|
|
|
|
|
unsigned offset = 0;
|
2018-06-15 11:55:28 -07:00
|
|
|
|
uint32_t *map =
|
|
|
|
|
|
stream_state(batch, uploader, out_res, size, alignment, &offset);
|
2018-04-06 00:05:24 -07:00
|
|
|
|
|
|
|
|
|
|
if (map)
|
|
|
|
|
|
memcpy(map, data, size);
|
|
|
|
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Did field 'x' change between 'old_cso' and 'new_cso'?
|
|
|
|
|
|
*
|
|
|
|
|
|
* (If so, we may want to set some dirty flags.)
|
|
|
|
|
|
*/
|
2018-06-09 00:01:09 -07:00
|
|
|
|
#define cso_changed(x) (!old_cso || (old_cso->x != new_cso->x))
|
|
|
|
|
|
#define cso_changed_memcmp(x) \
|
|
|
|
|
|
(!old_cso || memcmp(old_cso->x, new_cso->x, sizeof(old_cso->x)) != 0)
|
|
|
|
|
|
|
2018-09-08 19:43:34 -07:00
|
|
|
|
static void
|
|
|
|
|
|
flush_for_state_base_change(struct iris_batch *batch)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Flush before emitting STATE_BASE_ADDRESS.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This isn't documented anywhere in the PRM. However, it seems to be
|
|
|
|
|
|
* necessary prior to changing the surface state base adress. We've
|
|
|
|
|
|
* seen issues in Vulkan where we get GPU hangs when using multi-level
|
|
|
|
|
|
* command buffers which clear depth, reset state base address, and then
|
|
|
|
|
|
* go render stuff.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Normally, in GL, we would trust the kernel to do sufficient stalls
|
|
|
|
|
|
* and flushes prior to executing our batch. However, it doesn't seem
|
|
|
|
|
|
* as if the kernel's flushing is always sufficient and we don't want to
|
|
|
|
|
|
* rely on it.
|
|
|
|
|
|
*
|
|
|
|
|
|
* We make this an end-of-pipe sync instead of a normal flush because we
|
|
|
|
|
|
* do not know the current status of the GPU. On Haswell at least,
|
|
|
|
|
|
* having a fast-clear operation in flight at the same time as a normal
|
|
|
|
|
|
* rendering operation can cause hangs. Since the kernel's flushing is
|
|
|
|
|
|
* insufficient, we need to ensure that any rendering operations from
|
|
|
|
|
|
* other processes are definitely complete before we try to do our own
|
|
|
|
|
|
* rendering. It's a bit of a big hammer but it appears to work.
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_emit_end_of_pipe_sync(batch,
|
|
|
|
|
|
PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DEPTH_CACHE_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DATA_CACHE_FLUSH);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-18 11:04:24 -07:00
|
|
|
|
static void
|
|
|
|
|
|
_iris_emit_lri(struct iris_batch *batch, uint32_t reg, uint32_t val)
|
|
|
|
|
|
{
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_IMM), lri) {
|
|
|
|
|
|
lri.RegisterOffset = reg;
|
|
|
|
|
|
lri.DataDWord = val;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#define iris_emit_lri(b, r, v) _iris_emit_lri(b, GENX(r##_num), v)
|
|
|
|
|
|
|
2018-11-09 12:13:17 +10:00
|
|
|
|
static void
|
2018-12-04 22:02:50 -08:00
|
|
|
|
_iris_emit_lrr(struct iris_batch *batch, uint32_t dst, uint32_t src)
|
2018-11-09 12:13:17 +10:00
|
|
|
|
{
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_REG), lrr) {
|
|
|
|
|
|
lrr.SourceRegisterAddress = src;
|
|
|
|
|
|
lrr.DestinationRegisterAddress = dst;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-19 02:00:13 -07:00
|
|
|
|
static void
|
|
|
|
|
|
emit_pipeline_select(struct iris_batch *batch, uint32_t pipeline)
|
|
|
|
|
|
{
|
|
|
|
|
|
#if GEN_GEN >= 8 && GEN_GEN < 10
|
|
|
|
|
|
/* From the Broadwell PRM, Volume 2a: Instructions, PIPELINE_SELECT:
|
|
|
|
|
|
*
|
|
|
|
|
|
* Software must clear the COLOR_CALC_STATE Valid field in
|
|
|
|
|
|
* 3DSTATE_CC_STATE_POINTERS command prior to send a PIPELINE_SELECT
|
|
|
|
|
|
* with Pipeline Select set to GPGPU.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The internal hardware docs recommend the same workaround for Gen9
|
|
|
|
|
|
* hardware too.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (pipeline == GPGPU)
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_CC_STATE_POINTERS), t);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
|
|
|
|
|
|
* PIPELINE_SELECT [DevBWR+]":
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Project: DEVSNB+
|
|
|
|
|
|
*
|
|
|
|
|
|
* Software must ensure all the write caches are flushed through a
|
|
|
|
|
|
* stalling PIPE_CONTROL command followed by another PIPE_CONTROL
|
|
|
|
|
|
* command to invalidate read only caches prior to programming
|
|
|
|
|
|
* MI_PIPELINE_SELECT command to change the Pipeline Select Mode."
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_emit_pipe_control_flush(batch,
|
|
|
|
|
|
PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DEPTH_CACHE_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DATA_CACHE_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_CS_STALL);
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_pipe_control_flush(batch,
|
|
|
|
|
|
PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
|
|
|
|
|
|
PIPE_CONTROL_CONST_CACHE_INVALIDATE |
|
|
|
|
|
|
PIPE_CONTROL_STATE_CACHE_INVALIDATE |
|
|
|
|
|
|
PIPE_CONTROL_INSTRUCTION_INVALIDATE);
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(PIPELINE_SELECT), sel) {
|
|
|
|
|
|
#if GEN_GEN >= 9
|
|
|
|
|
|
sel.MaskBits = 3;
|
|
|
|
|
|
#endif
|
|
|
|
|
|
sel.PipelineSelection = pipeline;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNUSED static void
|
|
|
|
|
|
init_glk_barrier_mode(struct iris_batch *batch, uint32_t value)
|
|
|
|
|
|
{
|
|
|
|
|
|
#if GEN_GEN == 9
|
|
|
|
|
|
/* Project: DevGLK
|
|
|
|
|
|
*
|
|
|
|
|
|
* "This chicken bit works around a hardware issue with barrier
|
|
|
|
|
|
* logic encountered when switching between GPGPU and 3D pipelines.
|
|
|
|
|
|
* To workaround the issue, this mode bit should be set after a
|
|
|
|
|
|
* pipeline is selected."
|
|
|
|
|
|
*/
|
|
|
|
|
|
uint32_t reg_val;
|
|
|
|
|
|
iris_pack_state(GENX(SLICE_COMMON_ECO_CHICKEN1), ®_val, reg) {
|
|
|
|
|
|
reg.GLKBarrierMode = value;
|
|
|
|
|
|
reg.GLKBarrierModeMask = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, SLICE_COMMON_ECO_CHICKEN1, reg_val);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-10-19 02:11:11 -07:00
|
|
|
|
init_state_base_address(struct iris_batch *batch)
|
2018-01-25 01:53:52 -08:00
|
|
|
|
{
|
2018-09-08 19:43:34 -07:00
|
|
|
|
flush_for_state_base_change(batch);
|
2018-01-25 01:53:52 -08:00
|
|
|
|
|
2018-09-12 23:31:46 -07:00
|
|
|
|
/* We program most base addresses once at context initialization time.
|
2018-07-30 23:49:34 -07:00
|
|
|
|
* Each base address points at a 4GB memory zone, and never needs to
|
|
|
|
|
|
* change. See iris_bufmgr.h for a description of the memory zones.
|
2018-09-08 19:43:34 -07:00
|
|
|
|
*
|
2018-09-12 23:31:46 -07:00
|
|
|
|
* The one exception is Surface State Base Address, which needs to be
|
|
|
|
|
|
* updated occasionally. See iris_binder.c for the details there.
|
2018-07-30 23:49:34 -07:00
|
|
|
|
*/
|
2018-01-25 01:53:52 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(STATE_BASE_ADDRESS), sba) {
|
2018-12-12 00:02:25 -08:00
|
|
|
|
sba.GeneralStateMOCS = MOCS_WB;
|
|
|
|
|
|
sba.StatelessDataPortAccessMOCS = MOCS_WB;
|
|
|
|
|
|
sba.DynamicStateMOCS = MOCS_WB;
|
|
|
|
|
|
sba.IndirectObjectMOCS = MOCS_WB;
|
|
|
|
|
|
sba.InstructionMOCS = MOCS_WB;
|
2018-01-25 01:53:52 -08:00
|
|
|
|
|
|
|
|
|
|
sba.GeneralStateBaseAddressModifyEnable = true;
|
|
|
|
|
|
sba.DynamicStateBaseAddressModifyEnable = true;
|
|
|
|
|
|
sba.IndirectObjectBaseAddressModifyEnable = true;
|
|
|
|
|
|
sba.InstructionBaseAddressModifyEnable = true;
|
|
|
|
|
|
sba.GeneralStateBufferSizeModifyEnable = true;
|
|
|
|
|
|
sba.DynamicStateBufferSizeModifyEnable = true;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if (GEN_GEN >= 9)
|
2018-01-25 01:53:52 -08:00
|
|
|
|
sba.BindlessSurfaceStateBaseAddressModifyEnable = true;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
sba.BindlessSurfaceStateMOCS = MOCS_WB;
|
|
|
|
|
|
#endif
|
2018-01-25 01:53:52 -08:00
|
|
|
|
sba.IndirectObjectBufferSizeModifyEnable = true;
|
|
|
|
|
|
sba.InstructionBuffersizeModifyEnable = true;
|
|
|
|
|
|
|
2018-04-20 18:44:22 -07:00
|
|
|
|
sba.InstructionBaseAddress = ro_bo(NULL, IRIS_MEMZONE_SHADER_START);
|
|
|
|
|
|
sba.DynamicStateBaseAddress = ro_bo(NULL, IRIS_MEMZONE_DYNAMIC_START);
|
2018-01-25 01:53:52 -08:00
|
|
|
|
|
|
|
|
|
|
sba.GeneralStateBufferSize = 0xfffff;
|
|
|
|
|
|
sba.IndirectObjectBufferSize = 0xfffff;
|
|
|
|
|
|
sba.InstructionBufferSize = 0xfffff;
|
2018-04-06 00:05:24 -07:00
|
|
|
|
sba.DynamicStateBufferSize = 0xfffff;
|
2018-01-25 01:53:52 -08:00
|
|
|
|
}
|
2018-10-19 02:11:11 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-14 02:26:53 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_emit_l3_config(struct iris_batch *batch, const struct gen_l3_config *cfg,
|
|
|
|
|
|
bool has_slm, bool wants_dc_cache)
|
|
|
|
|
|
{
|
|
|
|
|
|
uint32_t reg_val;
|
|
|
|
|
|
iris_pack_state(GENX(L3CNTLREG), ®_val, reg) {
|
|
|
|
|
|
reg.SLMEnable = has_slm;
|
|
|
|
|
|
#if GEN_GEN == 11
|
|
|
|
|
|
/* WA_1406697149: Bit 9 "Error Detection Behavior Control" must be set
|
|
|
|
|
|
* in L3CNTLREG register. The default setting of the bit is not the
|
|
|
|
|
|
* desirable behavior.
|
|
|
|
|
|
*/
|
|
|
|
|
|
reg.ErrorDetectionBehaviorControl = true;
|
|
|
|
|
|
#endif
|
|
|
|
|
|
reg.URBAllocation = cfg->n[GEN_L3P_URB];
|
|
|
|
|
|
reg.ROAllocation = cfg->n[GEN_L3P_RO];
|
|
|
|
|
|
reg.DCAllocation = cfg->n[GEN_L3P_DC];
|
|
|
|
|
|
reg.AllAllocation = cfg->n[GEN_L3P_ALL];
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, L3CNTLREG, reg_val);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_emit_default_l3_config(struct iris_batch *batch,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
|
|
|
|
|
bool compute)
|
|
|
|
|
|
{
|
|
|
|
|
|
bool wants_dc_cache = true;
|
|
|
|
|
|
bool has_slm = compute;
|
|
|
|
|
|
const struct gen_l3_weights w =
|
|
|
|
|
|
gen_get_default_l3_weights(devinfo, wants_dc_cache, has_slm);
|
|
|
|
|
|
const struct gen_l3_config *cfg = gen_get_l3_config(devinfo, w);
|
|
|
|
|
|
iris_emit_l3_config(batch, cfg, has_slm, wants_dc_cache);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-19 02:11:11 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Upload the initial GPU state for a render context.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This sets some invariant state that needs to be programmed a particular
|
|
|
|
|
|
* way, but we never actually change.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_init_render_context(struct iris_screen *screen,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
struct iris_vtable *vtbl,
|
|
|
|
|
|
struct pipe_debug_callback *dbg)
|
|
|
|
|
|
{
|
|
|
|
|
|
UNUSED const struct gen_device_info *devinfo = &screen->devinfo;
|
|
|
|
|
|
uint32_t reg_val;
|
|
|
|
|
|
|
|
|
|
|
|
emit_pipeline_select(batch, _3D);
|
|
|
|
|
|
|
2019-02-14 02:26:53 -08:00
|
|
|
|
iris_emit_default_l3_config(batch, devinfo, false);
|
|
|
|
|
|
|
2018-10-19 02:11:11 -07:00
|
|
|
|
init_state_base_address(batch);
|
2018-01-25 01:53:52 -08:00
|
|
|
|
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN >= 9
|
2018-09-07 12:26:55 -07:00
|
|
|
|
iris_pack_state(GENX(CS_DEBUG_MODE2), ®_val, reg) {
|
|
|
|
|
|
reg.CONSTANT_BUFFERAddressOffsetDisable = true;
|
|
|
|
|
|
reg.CONSTANT_BUFFERAddressOffsetDisableMask = true;
|
|
|
|
|
|
}
|
2018-09-18 11:04:24 -07:00
|
|
|
|
iris_emit_lri(batch, CS_DEBUG_MODE2, reg_val);
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#else
|
|
|
|
|
|
iris_pack_state(GENX(INSTPM), ®_val, reg) {
|
|
|
|
|
|
reg.CONSTANT_BUFFERAddressOffsetDisable = true;
|
|
|
|
|
|
reg.CONSTANT_BUFFERAddressOffsetDisableMask = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, INSTPM, reg_val);
|
|
|
|
|
|
#endif
|
2018-09-07 12:26:55 -07:00
|
|
|
|
|
2018-09-18 11:07:16 -07:00
|
|
|
|
#if GEN_GEN == 9
|
|
|
|
|
|
iris_pack_state(GENX(CACHE_MODE_1), ®_val, reg) {
|
|
|
|
|
|
reg.FloatBlendOptimizationEnable = true;
|
|
|
|
|
|
reg.FloatBlendOptimizationEnableMask = true;
|
|
|
|
|
|
reg.PartialResolveDisableInVC = true;
|
|
|
|
|
|
reg.PartialResolveDisableInVCMask = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, CACHE_MODE_1, reg_val);
|
2018-10-19 02:00:13 -07:00
|
|
|
|
|
|
|
|
|
|
if (devinfo->is_geminilake)
|
|
|
|
|
|
init_glk_barrier_mode(batch, GLK_BARRIER_MODE_3D_HULL);
|
2018-09-18 11:07:16 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
|
2018-09-18 11:04:44 -07:00
|
|
|
|
#if GEN_GEN == 11
|
|
|
|
|
|
iris_pack_state(GENX(SAMPLER_MODE), ®_val, reg) {
|
|
|
|
|
|
reg.HeaderlessMessageforPreemptableContexts = 1;
|
|
|
|
|
|
reg.HeaderlessMessageforPreemptableContextsMask = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, SAMPLER_MODE, reg_val);
|
|
|
|
|
|
|
2019-03-26 15:45:29 -07:00
|
|
|
|
/* Bit 1 must be set in HALF_SLICE_CHICKEN7. */
|
|
|
|
|
|
iris_pack_state(GENX(HALF_SLICE_CHICKEN7), ®_val, reg) {
|
|
|
|
|
|
reg.EnabledTexelOffsetPrecisionFix = 1;
|
|
|
|
|
|
reg.EnabledTexelOffsetPrecisionFixMask = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, HALF_SLICE_CHICKEN7, reg_val);
|
|
|
|
|
|
|
2019-03-26 15:46:24 -07:00
|
|
|
|
/* WA_2204188704: Pixel Shader Panic dispatch must be disabled. */
|
|
|
|
|
|
iris_pack_state(GENX(COMMON_SLICE_CHICKEN3), ®_val, reg) {
|
|
|
|
|
|
reg.PSThreadPanicDispatch = 0x3;
|
|
|
|
|
|
reg.PSThreadPanicDispatchMask = 0x3;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_lri(batch, COMMON_SLICE_CHICKEN3, reg_val);
|
|
|
|
|
|
|
2018-09-18 11:04:44 -07:00
|
|
|
|
// XXX: 3D_MODE?
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* 3DSTATE_DRAWING_RECTANGLE is non-pipelined, so we want to avoid
|
|
|
|
|
|
* changing it dynamically. We set it to the maximum size here, and
|
|
|
|
|
|
* instead include the render target dimensions in the viewport, so
|
|
|
|
|
|
* viewport extents clipping takes care of pruning stray geometry.
|
|
|
|
|
|
*/
|
2018-01-09 11:25:29 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_DRAWING_RECTANGLE), rect) {
|
|
|
|
|
|
rect.ClippedDrawingRectangleXMax = UINT16_MAX;
|
|
|
|
|
|
rect.ClippedDrawingRectangleYMax = UINT16_MAX;
|
|
|
|
|
|
}
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/* Set the initial MSAA sample positions. */
|
2018-01-09 11:25:29 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_SAMPLE_PATTERN), pat) {
|
|
|
|
|
|
GEN_SAMPLE_POS_1X(pat._1xSample);
|
|
|
|
|
|
GEN_SAMPLE_POS_2X(pat._2xSample);
|
|
|
|
|
|
GEN_SAMPLE_POS_4X(pat._4xSample);
|
|
|
|
|
|
GEN_SAMPLE_POS_8X(pat._8xSample);
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN >= 9
|
2018-01-09 11:25:29 -08:00
|
|
|
|
GEN_SAMPLE_POS_16X(pat._16xSample);
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#endif
|
2018-01-09 11:25:29 -08:00
|
|
|
|
}
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/* Use the legacy AA line coverage computation. */
|
2018-01-09 11:25:29 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_AA_LINE_PARAMETERS), foo);
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/* Disable chromakeying (it's for media) */
|
2018-01-09 11:25:29 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_WM_CHROMAKEY), foo);
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/* We want regular rendering, not special HiZ operations. */
|
2018-01-09 11:25:29 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_WM_HZ_OP), foo);
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/* No polygon stippling offsets are necessary. */
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* TODO: may need to set an offset for origin-UL framebuffers */
|
2018-01-09 21:29:09 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_POLY_STIPPLE_OFFSET), foo);
|
2018-01-11 23:01:28 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* Set a static partitioning of the push constant area. */
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* TODO: this may be a bad idea...could starve the push ringbuffers... */
|
2018-01-11 23:01:28 -08:00
|
|
|
|
for (int i = 0; i <= MESA_SHADER_FRAGMENT; i++) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_PUSH_CONSTANT_ALLOC_VS), alloc) {
|
|
|
|
|
|
alloc._3DCommandSubOpcode = 18 + i;
|
|
|
|
|
|
alloc.ConstantBufferOffset = 6 * i;
|
|
|
|
|
|
alloc.ConstantBufferSize = i == MESA_SHADER_FRAGMENT ? 8 : 6;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-01-09 11:25:29 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-26 21:59:20 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_init_compute_context(struct iris_screen *screen,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
struct iris_vtable *vtbl,
|
|
|
|
|
|
struct pipe_debug_callback *dbg)
|
|
|
|
|
|
{
|
2018-10-19 02:00:13 -07:00
|
|
|
|
UNUSED const struct gen_device_info *devinfo = &screen->devinfo;
|
|
|
|
|
|
|
|
|
|
|
|
emit_pipeline_select(batch, GPGPU);
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2019-02-14 02:26:53 -08:00
|
|
|
|
iris_emit_default_l3_config(batch, devinfo, true);
|
2018-11-14 23:09:10 -06:00
|
|
|
|
|
2018-10-19 02:11:11 -07:00
|
|
|
|
init_state_base_address(batch);
|
|
|
|
|
|
|
2018-10-19 02:00:13 -07:00
|
|
|
|
#if GEN_GEN == 9
|
|
|
|
|
|
if (devinfo->is_geminilake)
|
|
|
|
|
|
init_glk_barrier_mode(batch, GLK_BARRIER_MODE_GPGPU);
|
2018-09-13 11:40:10 -07:00
|
|
|
|
#endif
|
2018-07-26 21:59:20 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-01 22:13:07 -07:00
|
|
|
|
struct iris_vertex_buffer_state {
|
2018-12-04 16:38:14 -08:00
|
|
|
|
/** The VERTEX_BUFFER_STATE hardware structure. */
|
|
|
|
|
|
uint32_t state[GENX(VERTEX_BUFFER_STATE_length)];
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
|
|
|
/** The resource to source vertex data from. */
|
2018-12-04 16:38:14 -08:00
|
|
|
|
struct pipe_resource *resource;
|
2018-07-01 22:13:07 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_depth_buffer_state {
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* Depth/HiZ/Stencil related hardware packets. */
|
2018-07-01 22:13:07 -07:00
|
|
|
|
uint32_t packets[GENX(3DSTATE_DEPTH_BUFFER_length) +
|
|
|
|
|
|
GENX(3DSTATE_STENCIL_BUFFER_length) +
|
|
|
|
|
|
GENX(3DSTATE_HIER_DEPTH_BUFFER_length) +
|
|
|
|
|
|
GENX(3DSTATE_CLEAR_PARAMS_length)];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-07-30 23:49:34 -07:00
|
|
|
|
* Generation-specific context state (ice->state.genx->...).
|
|
|
|
|
|
*
|
|
|
|
|
|
* Most state can go in iris_context directly, but these encode hardware
|
|
|
|
|
|
* packets which vary by generation.
|
2018-07-01 22:13:07 -07:00
|
|
|
|
*/
|
|
|
|
|
|
struct iris_genx_state {
|
2018-12-04 16:38:14 -08:00
|
|
|
|
struct iris_vertex_buffer_state vertex_buffers[33];
|
|
|
|
|
|
|
2018-07-01 22:13:07 -07:00
|
|
|
|
struct iris_depth_buffer_state depth_buffer;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
|
|
|
|
|
uint32_t so_buffers[4 * GENX(3DSTATE_SO_BUFFER_length)];
|
2018-07-01 22:13:07 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_blend_color() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This corresponds to our COLOR_CALC_STATE.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_blend_color(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_blend_color *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* Our COLOR_CALC_STATE is exactly pipe_blend_color, so just memcpy */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
memcpy(&ice->state.blend_color, state, sizeof(struct pipe_blend_color));
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_COLOR_CALC_STATE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Gallium CSO for blend state (see pipe_blend_state).
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
struct iris_blend_state {
|
2018-06-09 00:01:09 -07:00
|
|
|
|
/** Partial 3DSTATE_PS_BLEND */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
uint32_t ps_blend[GENX(3DSTATE_PS_BLEND_length)];
|
2018-06-09 00:01:09 -07:00
|
|
|
|
|
|
|
|
|
|
/** Partial BLEND_STATE */
|
2018-01-25 21:53:41 -08:00
|
|
|
|
uint32_t blend_state[GENX(BLEND_STATE_length) +
|
|
|
|
|
|
BRW_MAX_DRAW_BUFFERS * GENX(BLEND_STATE_ENTRY_length)];
|
2018-01-25 02:09:59 -08:00
|
|
|
|
|
|
|
|
|
|
bool alpha_to_coverage; /* for shader key */
|
2018-12-10 23:22:54 -08:00
|
|
|
|
|
|
|
|
|
|
/** Bitfield of whether blending is enabled for RT[i] - for aux resolves */
|
|
|
|
|
|
uint8_t blend_enables;
|
2019-02-11 12:07:51 -08:00
|
|
|
|
|
|
|
|
|
|
/** Bitfield of whether color writes are enabled for RT[i] */
|
|
|
|
|
|
uint8_t color_write_enables;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
2018-12-04 00:18:41 -08:00
|
|
|
|
static enum pipe_blendfactor
|
|
|
|
|
|
fix_blendfactor(enum pipe_blendfactor f, bool alpha_to_one)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (alpha_to_one) {
|
|
|
|
|
|
if (f == PIPE_BLENDFACTOR_SRC1_ALPHA)
|
|
|
|
|
|
return PIPE_BLENDFACTOR_ONE;
|
|
|
|
|
|
|
|
|
|
|
|
if (f == PIPE_BLENDFACTOR_INV_SRC1_ALPHA)
|
|
|
|
|
|
return PIPE_BLENDFACTOR_ZERO;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return f;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_blend_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Translates a pipe_blend_state into iris_blend_state.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void *
|
|
|
|
|
|
iris_create_blend_state(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_blend_state *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_blend_state *cso = malloc(sizeof(struct iris_blend_state));
|
2018-11-12 11:33:44 -08:00
|
|
|
|
uint32_t *blend_entry = cso->blend_state + GENX(BLEND_STATE_length);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-12-10 23:22:54 -08:00
|
|
|
|
cso->blend_enables = 0;
|
2019-02-11 12:07:51 -08:00
|
|
|
|
cso->color_write_enables = 0;
|
2018-12-10 23:22:54 -08:00
|
|
|
|
STATIC_ASSERT(BRW_MAX_DRAW_BUFFERS <= 8);
|
|
|
|
|
|
|
2018-01-25 02:09:59 -08:00
|
|
|
|
cso->alpha_to_coverage = state->alpha_to_coverage;
|
|
|
|
|
|
|
2018-11-12 11:33:44 -08:00
|
|
|
|
bool indep_alpha_blend = false;
|
2018-01-25 21:53:41 -08:00
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
for (int i = 0; i < BRW_MAX_DRAW_BUFFERS; i++) {
|
2018-11-08 00:15:50 -08:00
|
|
|
|
const struct pipe_rt_blend_state *rt =
|
|
|
|
|
|
&state->rt[state->independent_blend_enable ? i : 0];
|
2018-11-12 11:33:44 -08:00
|
|
|
|
|
2018-12-04 00:18:41 -08:00
|
|
|
|
enum pipe_blendfactor src_rgb =
|
|
|
|
|
|
fix_blendfactor(rt->rgb_src_factor, state->alpha_to_one);
|
|
|
|
|
|
enum pipe_blendfactor src_alpha =
|
|
|
|
|
|
fix_blendfactor(rt->alpha_src_factor, state->alpha_to_one);
|
|
|
|
|
|
enum pipe_blendfactor dst_rgb =
|
|
|
|
|
|
fix_blendfactor(rt->rgb_dst_factor, state->alpha_to_one);
|
|
|
|
|
|
enum pipe_blendfactor dst_alpha =
|
|
|
|
|
|
fix_blendfactor(rt->alpha_dst_factor, state->alpha_to_one);
|
|
|
|
|
|
|
2018-11-12 11:33:44 -08:00
|
|
|
|
if (rt->rgb_func != rt->alpha_func ||
|
2018-12-04 00:18:41 -08:00
|
|
|
|
src_rgb != src_alpha || dst_rgb != dst_alpha)
|
2018-11-12 11:33:44 -08:00
|
|
|
|
indep_alpha_blend = true;
|
|
|
|
|
|
|
2018-12-10 23:22:54 -08:00
|
|
|
|
if (rt->blend_enable)
|
|
|
|
|
|
cso->blend_enables |= 1u << i;
|
|
|
|
|
|
|
2019-02-11 12:07:51 -08:00
|
|
|
|
if (rt->colormask)
|
|
|
|
|
|
cso->color_write_enables |= 1u << i;
|
|
|
|
|
|
|
2018-11-12 11:33:44 -08:00
|
|
|
|
iris_pack_state(GENX(BLEND_STATE_ENTRY), blend_entry, be) {
|
2017-11-23 23:15:14 -08:00
|
|
|
|
be.LogicOpEnable = state->logicop_enable;
|
|
|
|
|
|
be.LogicOpFunction = state->logicop_func;
|
|
|
|
|
|
|
|
|
|
|
|
be.PreBlendSourceOnlyClampEnable = false;
|
|
|
|
|
|
be.ColorClampRange = COLORCLAMP_RTFORMAT;
|
|
|
|
|
|
be.PreBlendColorClampEnable = true;
|
|
|
|
|
|
be.PostBlendColorClampEnable = true;
|
|
|
|
|
|
|
2018-11-08 00:15:50 -08:00
|
|
|
|
be.ColorBufferBlendEnable = rt->blend_enable;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-11-08 00:15:50 -08:00
|
|
|
|
be.ColorBlendFunction = rt->rgb_func;
|
|
|
|
|
|
be.AlphaBlendFunction = rt->alpha_func;
|
2018-12-04 00:18:41 -08:00
|
|
|
|
be.SourceBlendFactor = src_rgb;
|
|
|
|
|
|
be.SourceAlphaBlendFactor = src_alpha;
|
|
|
|
|
|
be.DestinationBlendFactor = dst_rgb;
|
|
|
|
|
|
be.DestinationAlphaBlendFactor = dst_alpha;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-11-08 00:15:50 -08:00
|
|
|
|
be.WriteDisableRed = !(rt->colormask & PIPE_MASK_R);
|
|
|
|
|
|
be.WriteDisableGreen = !(rt->colormask & PIPE_MASK_G);
|
|
|
|
|
|
be.WriteDisableBlue = !(rt->colormask & PIPE_MASK_B);
|
|
|
|
|
|
be.WriteDisableAlpha = !(rt->colormask & PIPE_MASK_A);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
2018-11-12 11:33:44 -08:00
|
|
|
|
blend_entry += GENX(BLEND_STATE_ENTRY_length);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-12 11:33:44 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_PS_BLEND), cso->ps_blend, pb) {
|
|
|
|
|
|
/* pb.HasWriteableRT is filled in at draw time. */
|
|
|
|
|
|
/* pb.AlphaTestEnable is filled in at draw time. */
|
|
|
|
|
|
pb.AlphaToCoverageEnable = state->alpha_to_coverage;
|
|
|
|
|
|
pb.IndependentAlphaBlendEnable = indep_alpha_blend;
|
|
|
|
|
|
|
|
|
|
|
|
pb.ColorBufferBlendEnable = state->rt[0].blend_enable;
|
|
|
|
|
|
|
2018-12-04 00:18:41 -08:00
|
|
|
|
pb.SourceBlendFactor =
|
|
|
|
|
|
fix_blendfactor(state->rt[0].rgb_src_factor, state->alpha_to_one);
|
|
|
|
|
|
pb.SourceAlphaBlendFactor =
|
|
|
|
|
|
fix_blendfactor(state->rt[0].alpha_src_factor, state->alpha_to_one);
|
|
|
|
|
|
pb.DestinationBlendFactor =
|
|
|
|
|
|
fix_blendfactor(state->rt[0].rgb_dst_factor, state->alpha_to_one);
|
|
|
|
|
|
pb.DestinationAlphaBlendFactor =
|
|
|
|
|
|
fix_blendfactor(state->rt[0].alpha_dst_factor, state->alpha_to_one);
|
2018-11-12 11:33:44 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_state(GENX(BLEND_STATE), cso->blend_state, bs) {
|
|
|
|
|
|
bs.AlphaToCoverageEnable = state->alpha_to_coverage;
|
|
|
|
|
|
bs.IndependentAlphaBlendEnable = indep_alpha_blend;
|
|
|
|
|
|
bs.AlphaToOneEnable = state->alpha_to_one;
|
|
|
|
|
|
bs.AlphaToCoverageDitherEnable = state->alpha_to_coverage;
|
|
|
|
|
|
bs.ColorDitherEnable = state->dither;
|
|
|
|
|
|
/* bl.AlphaTestEnable and bs.AlphaTestFunction are filled in later. */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
return cso;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->bind_blend_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Bind a blending CSO and flag related dirty bits.
|
|
|
|
|
|
*/
|
2017-12-27 02:54:26 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_bind_blend_state(struct pipe_context *ctx, void *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-12-10 23:22:54 -08:00
|
|
|
|
struct iris_blend_state *cso = state;
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.cso_blend = cso;
|
|
|
|
|
|
ice->state.blend_enables = cso ? cso->blend_enables : 0;
|
|
|
|
|
|
|
2018-06-09 00:01:09 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_PS_BLEND;
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
|
2019-03-11 00:04:56 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_RENDER_RESOLVES_AND_FLUSHES;
|
2018-07-16 16:21:22 -07:00
|
|
|
|
ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_BLEND];
|
2017-12-27 02:54:26 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-11 12:07:51 -08:00
|
|
|
|
/**
|
|
|
|
|
|
* Return true if the FS writes to any color outputs which are not disabled
|
|
|
|
|
|
* via color masking.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static bool
|
|
|
|
|
|
has_writeable_rt(const struct iris_blend_state *cso_blend,
|
|
|
|
|
|
const struct shader_info *fs_info)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!fs_info)
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
unsigned rt_outputs = fs_info->outputs_written >> FRAG_RESULT_DATA0;
|
|
|
|
|
|
|
|
|
|
|
|
if (fs_info->outputs_written & BITFIELD64_BIT(FRAG_RESULT_COLOR))
|
|
|
|
|
|
rt_outputs = (1 << BRW_MAX_DRAW_BUFFERS) - 1;
|
|
|
|
|
|
|
|
|
|
|
|
return cso_blend->color_write_enables & rt_outputs;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Gallium CSO for depth, stencil, and alpha testing state.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
struct iris_depth_stencil_alpha_state {
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/** Partial 3DSTATE_WM_DEPTH_STENCIL. */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
uint32_t wmds[GENX(3DSTATE_WM_DEPTH_STENCIL_length)];
|
2018-06-09 00:01:09 -07:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/** Outbound to BLEND_STATE, 3DSTATE_PS_BLEND, COLOR_CALC_STATE. */
|
2018-06-09 00:01:09 -07:00
|
|
|
|
struct pipe_alpha_state alpha;
|
2018-08-18 23:21:41 -07:00
|
|
|
|
|
|
|
|
|
|
/** Outbound to resolve and cache set tracking. */
|
|
|
|
|
|
bool depth_writes_enabled;
|
|
|
|
|
|
bool stencil_writes_enabled;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_depth_stencil_alpha_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* We encode most of 3DSTATE_WM_DEPTH_STENCIL, and just save off the alpha
|
|
|
|
|
|
* testing state since we need pieces of it in a variety of places.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void *
|
2017-12-27 02:54:26 -08:00
|
|
|
|
iris_create_zsa_state(struct pipe_context *ctx,
|
2017-11-23 23:15:14 -08:00
|
|
|
|
const struct pipe_depth_stencil_alpha_state *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_depth_stencil_alpha_state *cso =
|
|
|
|
|
|
malloc(sizeof(struct iris_depth_stencil_alpha_state));
|
|
|
|
|
|
|
|
|
|
|
|
bool two_sided_stencil = state->stencil[1].enabled;
|
|
|
|
|
|
|
2018-08-18 23:21:41 -07:00
|
|
|
|
cso->alpha = state->alpha;
|
|
|
|
|
|
cso->depth_writes_enabled = state->depth.writemask;
|
|
|
|
|
|
cso->stencil_writes_enabled =
|
|
|
|
|
|
state->stencil[0].writemask != 0 ||
|
2019-03-09 00:25:30 -08:00
|
|
|
|
(two_sided_stencil && state->stencil[1].writemask != 0);
|
2018-08-18 23:21:41 -07:00
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
/* The state tracker needs to optimize away EQUAL writes for us. */
|
|
|
|
|
|
assert(!(state->depth.func == PIPE_FUNC_EQUAL && state->depth.writemask));
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_WM_DEPTH_STENCIL), cso->wmds, wmds) {
|
|
|
|
|
|
wmds.StencilFailOp = state->stencil[0].fail_op;
|
|
|
|
|
|
wmds.StencilPassDepthFailOp = state->stencil[0].zfail_op;
|
|
|
|
|
|
wmds.StencilPassDepthPassOp = state->stencil[0].zpass_op;
|
|
|
|
|
|
wmds.StencilTestFunction =
|
|
|
|
|
|
translate_compare_func(state->stencil[0].func);
|
|
|
|
|
|
wmds.BackfaceStencilFailOp = state->stencil[1].fail_op;
|
|
|
|
|
|
wmds.BackfaceStencilPassDepthFailOp = state->stencil[1].zfail_op;
|
|
|
|
|
|
wmds.BackfaceStencilPassDepthPassOp = state->stencil[1].zpass_op;
|
|
|
|
|
|
wmds.BackfaceStencilTestFunction =
|
|
|
|
|
|
translate_compare_func(state->stencil[1].func);
|
|
|
|
|
|
wmds.DepthTestFunction = translate_compare_func(state->depth.func);
|
|
|
|
|
|
wmds.DoubleSidedStencilEnable = two_sided_stencil;
|
|
|
|
|
|
wmds.StencilTestEnable = state->stencil[0].enabled;
|
|
|
|
|
|
wmds.StencilBufferWriteEnable =
|
|
|
|
|
|
state->stencil[0].writemask != 0 ||
|
|
|
|
|
|
(two_sided_stencil && state->stencil[1].writemask != 0);
|
|
|
|
|
|
wmds.DepthTestEnable = state->depth.enabled;
|
|
|
|
|
|
wmds.DepthBufferWriteEnable = state->depth.writemask;
|
|
|
|
|
|
wmds.StencilTestMask = state->stencil[0].valuemask;
|
|
|
|
|
|
wmds.StencilWriteMask = state->stencil[0].writemask;
|
|
|
|
|
|
wmds.BackfaceStencilTestMask = state->stencil[1].valuemask;
|
|
|
|
|
|
wmds.BackfaceStencilWriteMask = state->stencil[1].writemask;
|
2018-01-09 11:25:29 -08:00
|
|
|
|
/* wmds.[Backface]StencilReferenceValue are merged later */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return cso;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->bind_depth_stencil_alpha_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Bind a depth/stencil/alpha CSO and flag related dirty bits.
|
|
|
|
|
|
*/
|
2017-12-27 02:54:26 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_bind_zsa_state(struct pipe_context *ctx, void *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-01-10 00:36:44 -08:00
|
|
|
|
struct iris_depth_stencil_alpha_state *old_cso = ice->state.cso_zsa;
|
|
|
|
|
|
struct iris_depth_stencil_alpha_state *new_cso = state;
|
|
|
|
|
|
|
|
|
|
|
|
if (new_cso) {
|
2018-06-09 00:01:09 -07:00
|
|
|
|
if (cso_changed(alpha.ref_value))
|
2018-01-10 00:36:44 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_COLOR_CALC_STATE;
|
2018-06-09 00:01:09 -07:00
|
|
|
|
|
|
|
|
|
|
if (cso_changed(alpha.enabled))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_PS_BLEND | IRIS_DIRTY_BLEND_STATE;
|
2018-07-21 20:47:08 -07:00
|
|
|
|
|
|
|
|
|
|
if (cso_changed(alpha.func))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
|
2018-08-18 23:21:41 -07:00
|
|
|
|
|
2019-03-11 00:04:56 -07:00
|
|
|
|
if (cso_changed(depth_writes_enabled))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_RENDER_RESOLVES_AND_FLUSHES;
|
|
|
|
|
|
|
2018-08-18 23:21:41 -07:00
|
|
|
|
ice->state.depth_writes_enabled = new_cso->depth_writes_enabled;
|
|
|
|
|
|
ice->state.stencil_writes_enabled = new_cso->stencil_writes_enabled;
|
2018-01-10 00:36:44 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.cso_zsa = new_cso;
|
2017-12-27 02:54:26 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_WM_DEPTH_STENCIL;
|
2018-07-16 16:21:22 -07:00
|
|
|
|
ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_DEPTH_STENCIL_ALPHA];
|
2017-12-27 02:54:26 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Gallium CSO for rasterizer state.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
struct iris_rasterizer_state {
|
|
|
|
|
|
uint32_t sf[GENX(3DSTATE_SF_length)];
|
|
|
|
|
|
uint32_t clip[GENX(3DSTATE_CLIP_length)];
|
|
|
|
|
|
uint32_t raster[GENX(3DSTATE_RASTER_length)];
|
|
|
|
|
|
uint32_t wm[GENX(3DSTATE_WM_length)];
|
2018-01-20 00:55:16 -08:00
|
|
|
|
uint32_t line_stipple[GENX(3DSTATE_LINE_STIPPLE_length)];
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-10-26 22:18:56 -07:00
|
|
|
|
uint8_t num_clip_plane_consts;
|
2018-07-14 01:29:33 -07:00
|
|
|
|
bool clip_halfz; /* for CC_VIEWPORT */
|
|
|
|
|
|
bool depth_clip_near; /* for CC_VIEWPORT */
|
|
|
|
|
|
bool depth_clip_far; /* for CC_VIEWPORT */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
bool flatshade; /* for shader state */
|
2018-07-11 12:45:19 -07:00
|
|
|
|
bool flatshade_first; /* for stream output */
|
2018-01-25 02:09:59 -08:00
|
|
|
|
bool clamp_fragment_color; /* for shader state */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
bool light_twoside; /* for shader state */
|
2018-12-03 02:59:08 -08:00
|
|
|
|
bool rasterizer_discard; /* for 3DSTATE_STREAMOUT and 3DSTATE_CLIP */
|
2018-01-09 23:13:16 -08:00
|
|
|
|
bool half_pixel_center; /* for 3DSTATE_MULTISAMPLE */
|
2018-06-09 00:01:09 -07:00
|
|
|
|
bool line_stipple_enable;
|
|
|
|
|
|
bool poly_stipple_enable;
|
2018-07-16 15:36:34 -07:00
|
|
|
|
bool multisample;
|
|
|
|
|
|
bool force_persample_interp;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
enum pipe_sprite_coord_mode sprite_coord_mode; /* PIPE_SPRITE_* */
|
2018-01-29 15:06:04 -08:00
|
|
|
|
uint16_t sprite_coord_enable;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
2018-08-21 11:30:09 -07:00
|
|
|
|
static float
|
|
|
|
|
|
get_line_width(const struct pipe_rasterizer_state *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
float line_width = state->line_width;
|
|
|
|
|
|
|
|
|
|
|
|
/* From the OpenGL 4.4 spec:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "The actual width of non-antialiased lines is determined by rounding
|
|
|
|
|
|
* the supplied width to the nearest integer, then clamping it to the
|
|
|
|
|
|
* implementation-dependent maximum non-antialiased line width."
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (!state->multisample && !state->line_smooth)
|
|
|
|
|
|
line_width = roundf(state->line_width);
|
|
|
|
|
|
|
|
|
|
|
|
if (!state->multisample && state->line_smooth && line_width < 1.5f) {
|
|
|
|
|
|
/* For 1 pixel line thickness or less, the general anti-aliasing
|
|
|
|
|
|
* algorithm gives up, and a garbage line is generated. Setting a
|
|
|
|
|
|
* Line Width of 0.0 specifies the rasterization of the "thinnest"
|
|
|
|
|
|
* (one-pixel-wide), non-antialiased lines.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Lines rendered with zero Line Width are rasterized using the
|
|
|
|
|
|
* "Grid Intersection Quantization" rules as specified by the
|
|
|
|
|
|
* "Zero-Width (Cosmetic) Line Rasterization" section of the docs.
|
|
|
|
|
|
*/
|
|
|
|
|
|
line_width = 0.0f;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return line_width;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_rasterizer_state() driver hook.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void *
|
|
|
|
|
|
iris_create_rasterizer_state(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_rasterizer_state *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_rasterizer_state *cso =
|
|
|
|
|
|
malloc(sizeof(struct iris_rasterizer_state));
|
|
|
|
|
|
|
2018-07-16 15:36:34 -07:00
|
|
|
|
cso->multisample = state->multisample;
|
|
|
|
|
|
cso->force_persample_interp = state->force_persample_interp;
|
2018-07-14 01:29:33 -07:00
|
|
|
|
cso->clip_halfz = state->clip_halfz;
|
|
|
|
|
|
cso->depth_clip_near = state->depth_clip_near;
|
|
|
|
|
|
cso->depth_clip_far = state->depth_clip_far;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
cso->flatshade = state->flatshade;
|
2018-07-11 12:45:19 -07:00
|
|
|
|
cso->flatshade_first = state->flatshade_first;
|
2018-01-25 02:09:59 -08:00
|
|
|
|
cso->clamp_fragment_color = state->clamp_fragment_color;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
cso->light_twoside = state->light_twoside;
|
|
|
|
|
|
cso->rasterizer_discard = state->rasterizer_discard;
|
2018-01-09 23:13:16 -08:00
|
|
|
|
cso->half_pixel_center = state->half_pixel_center;
|
2018-01-29 15:06:04 -08:00
|
|
|
|
cso->sprite_coord_mode = state->sprite_coord_mode;
|
|
|
|
|
|
cso->sprite_coord_enable = state->sprite_coord_enable;
|
2018-06-09 00:01:09 -07:00
|
|
|
|
cso->line_stipple_enable = state->line_stipple_enable;
|
|
|
|
|
|
cso->poly_stipple_enable = state->poly_stipple_enable;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-11-09 02:20:31 -08:00
|
|
|
|
if (state->clip_plane_enable != 0)
|
|
|
|
|
|
cso->num_clip_plane_consts = util_logbase2(state->clip_plane_enable) + 1;
|
|
|
|
|
|
else
|
|
|
|
|
|
cso->num_clip_plane_consts = 0;
|
|
|
|
|
|
|
2018-08-21 11:30:09 -07:00
|
|
|
|
float line_width = get_line_width(state);
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_SF), cso->sf, sf) {
|
|
|
|
|
|
sf.StatisticsEnable = true;
|
|
|
|
|
|
sf.ViewportTransformEnable = true;
|
|
|
|
|
|
sf.AALineDistanceMode = AALINEDISTANCE_TRUE;
|
|
|
|
|
|
sf.LineEndCapAntialiasingRegionWidth =
|
|
|
|
|
|
state->line_smooth ? _10pixels : _05pixels;
|
|
|
|
|
|
sf.LastPixelEnable = state->line_last_pixel;
|
2018-08-21 11:30:09 -07:00
|
|
|
|
sf.LineWidth = line_width;
|
2019-01-15 23:41:34 -08:00
|
|
|
|
sf.SmoothPointEnable = (state->point_smooth || state->multisample) &&
|
|
|
|
|
|
!state->point_quad_rasterization;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
sf.PointWidthSource = state->point_size_per_vertex ? Vertex : State;
|
|
|
|
|
|
sf.PointWidth = state->point_size;
|
|
|
|
|
|
|
|
|
|
|
|
if (state->flatshade_first) {
|
2018-06-26 10:02:46 -07:00
|
|
|
|
sf.TriangleFanProvokingVertexSelect = 1;
|
|
|
|
|
|
} else {
|
2017-11-23 23:15:14 -08:00
|
|
|
|
sf.TriangleStripListProvokingVertexSelect = 2;
|
|
|
|
|
|
sf.TriangleFanProvokingVertexSelect = 2;
|
|
|
|
|
|
sf.LineStripListProvokingVertexSelect = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_RASTER), cso->raster, rr) {
|
|
|
|
|
|
rr.FrontWinding = state->front_ccw ? CounterClockwise : Clockwise;
|
|
|
|
|
|
rr.CullMode = translate_cull_mode(state->cull_face);
|
|
|
|
|
|
rr.FrontFaceFillMode = translate_fill_mode(state->fill_front);
|
|
|
|
|
|
rr.BackFaceFillMode = translate_fill_mode(state->fill_back);
|
|
|
|
|
|
rr.DXMultisampleRasterizationEnable = state->multisample;
|
|
|
|
|
|
rr.GlobalDepthOffsetEnableSolid = state->offset_tri;
|
|
|
|
|
|
rr.GlobalDepthOffsetEnableWireframe = state->offset_line;
|
|
|
|
|
|
rr.GlobalDepthOffsetEnablePoint = state->offset_point;
|
2018-06-26 10:09:08 -07:00
|
|
|
|
rr.GlobalDepthOffsetConstant = state->offset_units * 2;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
rr.GlobalDepthOffsetScale = state->offset_scale;
|
|
|
|
|
|
rr.GlobalDepthOffsetClamp = state->offset_clamp;
|
2019-01-15 23:41:34 -08:00
|
|
|
|
rr.SmoothPointEnable = state->point_smooth;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
rr.AntialiasingEnable = state->line_smooth;
|
|
|
|
|
|
rr.ScissorRectangleEnable = state->scissor;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN >= 9
|
2017-11-23 23:15:14 -08:00
|
|
|
|
rr.ViewportZNearClipTestEnable = state->depth_clip_near;
|
|
|
|
|
|
rr.ViewportZFarClipTestEnable = state->depth_clip_far;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#else
|
|
|
|
|
|
rr.ViewportZClipTestEnable = (state->depth_clip_near || state->depth_clip_far);
|
|
|
|
|
|
#endif
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* TODO: ConservativeRasterizationEnable */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_CLIP), cso->clip, cl) {
|
2018-01-23 01:23:54 -08:00
|
|
|
|
/* cl.NonPerspectiveBarycentricEnable is filled in at draw time from
|
|
|
|
|
|
* the FS program; cl.ForceZeroRTAIndexEnable is filled in from the FB.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
cl.EarlyCullEnable = true;
|
|
|
|
|
|
cl.UserClipDistanceClipTestEnableBitmask = state->clip_plane_enable;
|
|
|
|
|
|
cl.ForceUserClipDistanceClipTestEnableBitmask = true;
|
|
|
|
|
|
cl.APIMode = state->clip_halfz ? APIMODE_D3D : APIMODE_OGL;
|
|
|
|
|
|
cl.GuardbandClipTestEnable = true;
|
|
|
|
|
|
cl.ClipEnable = true;
|
|
|
|
|
|
cl.ViewportXYClipTestEnable = state->point_tri_clip;
|
|
|
|
|
|
cl.MinimumPointWidth = 0.125;
|
|
|
|
|
|
cl.MaximumPointWidth = 255.875;
|
|
|
|
|
|
|
|
|
|
|
|
if (state->flatshade_first) {
|
2018-06-26 10:02:46 -07:00
|
|
|
|
cl.TriangleFanProvokingVertexSelect = 1;
|
|
|
|
|
|
} else {
|
2017-11-23 23:15:14 -08:00
|
|
|
|
cl.TriangleStripListProvokingVertexSelect = 2;
|
|
|
|
|
|
cl.TriangleFanProvokingVertexSelect = 2;
|
|
|
|
|
|
cl.LineStripListProvokingVertexSelect = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_WM), cso->wm, wm) {
|
2018-01-23 01:23:54 -08:00
|
|
|
|
/* wm.BarycentricInterpolationMode and wm.EarlyDepthStencilControl are
|
|
|
|
|
|
* filled in at draw time from the FS program.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
wm.LineAntialiasingRegionWidth = _10pixels;
|
|
|
|
|
|
wm.LineEndCapAntialiasingRegionWidth = _05pixels;
|
|
|
|
|
|
wm.PointRasterizationRule = RASTRULE_UPPER_RIGHT;
|
|
|
|
|
|
wm.LineStippleEnable = state->line_stipple_enable;
|
|
|
|
|
|
wm.PolygonStippleEnable = state->poly_stipple_enable;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-20 00:55:16 -08:00
|
|
|
|
/* Remap from 0..255 back to 1..256 */
|
|
|
|
|
|
const unsigned line_stipple_factor = state->line_stipple_factor + 1;
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_LINE_STIPPLE), cso->line_stipple, line) {
|
|
|
|
|
|
line.LineStipplePattern = state->line_stipple_pattern;
|
|
|
|
|
|
line.LineStippleInverseRepeatCount = 1.0f / line_stipple_factor;
|
|
|
|
|
|
line.LineStippleRepeatCount = line_stipple_factor;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
return cso;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->bind_rasterizer_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Bind a rasterizer CSO and flag related dirty bits.
|
|
|
|
|
|
*/
|
2018-01-09 11:44:04 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_bind_rasterizer_state(struct pipe_context *ctx, void *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-01-09 21:29:09 -08:00
|
|
|
|
struct iris_rasterizer_state *old_cso = ice->state.cso_rast;
|
|
|
|
|
|
struct iris_rasterizer_state *new_cso = state;
|
|
|
|
|
|
|
2018-01-10 00:36:44 -08:00
|
|
|
|
if (new_cso) {
|
2018-01-09 23:14:10 -08:00
|
|
|
|
/* Try to avoid re-emitting 3DSTATE_LINE_STIPPLE, it's non-pipelined */
|
2018-06-09 00:01:09 -07:00
|
|
|
|
if (cso_changed_memcmp(line_stipple))
|
2018-01-09 23:14:10 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_LINE_STIPPLE;
|
2018-01-09 21:29:09 -08:00
|
|
|
|
|
2018-06-09 00:01:09 -07:00
|
|
|
|
if (cso_changed(half_pixel_center))
|
2018-01-09 23:14:10 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_MULTISAMPLE;
|
2018-06-09 00:01:09 -07:00
|
|
|
|
|
|
|
|
|
|
if (cso_changed(line_stipple_enable) || cso_changed(poly_stipple_enable))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_WM;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
2018-12-03 02:59:08 -08:00
|
|
|
|
if (cso_changed(rasterizer_discard))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_STREAMOUT | IRIS_DIRTY_CLIP;
|
|
|
|
|
|
|
|
|
|
|
|
if (cso_changed(flatshade_first))
|
2018-06-29 12:58:31 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_STREAMOUT;
|
2018-07-14 01:29:33 -07:00
|
|
|
|
|
|
|
|
|
|
if (cso_changed(depth_clip_near) || cso_changed(depth_clip_far) ||
|
|
|
|
|
|
cso_changed(clip_halfz))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
|
2018-07-23 15:29:00 -07:00
|
|
|
|
|
2018-12-02 15:52:46 -08:00
|
|
|
|
if (cso_changed(sprite_coord_enable) ||
|
|
|
|
|
|
cso_changed(sprite_coord_mode) ||
|
|
|
|
|
|
cso_changed(light_twoside))
|
2018-07-23 15:29:00 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SBE;
|
2018-01-09 23:13:16 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-09 21:29:09 -08:00
|
|
|
|
ice->state.cso_rast = new_cso;
|
2018-01-09 11:44:04 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_RASTER;
|
2018-06-15 16:22:58 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CLIP;
|
2018-07-16 16:21:22 -07:00
|
|
|
|
ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_RASTERIZER];
|
2018-01-09 11:44:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
/**
|
|
|
|
|
|
* Return true if the given wrap mode requires the border color to exist.
|
2018-07-30 23:49:34 -07:00
|
|
|
|
*
|
|
|
|
|
|
* (We can skip uploading it if the sampler isn't going to use it.)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
*/
|
|
|
|
|
|
static bool
|
|
|
|
|
|
wrap_mode_needs_border_color(unsigned wrap_mode)
|
|
|
|
|
|
{
|
|
|
|
|
|
return wrap_mode == TCM_CLAMP_BORDER || wrap_mode == TCM_HALF_BORDER;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Gallium CSO for sampler state.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
struct iris_sampler_state {
|
2018-10-01 18:33:17 -07:00
|
|
|
|
union pipe_color_union border_color;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
bool needs_border_color;
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t sampler_state[GENX(SAMPLER_STATE_length)];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_sampler_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* We fill out SAMPLER_STATE (except for the border color pointer), and
|
|
|
|
|
|
* store that on the CPU. It doesn't make sense to upload it to a GPU
|
|
|
|
|
|
* buffer object yet, because 3DSTATE_SAMPLER_STATE_POINTERS requires
|
|
|
|
|
|
* all bound sampler states to be in contiguous memor.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void *
|
2018-06-28 02:25:25 -07:00
|
|
|
|
iris_create_sampler_state(struct pipe_context *ctx,
|
2017-11-23 23:15:14 -08:00
|
|
|
|
const struct pipe_sampler_state *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_sampler_state *cso = CALLOC_STRUCT(iris_sampler_state);
|
|
|
|
|
|
|
|
|
|
|
|
if (!cso)
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
|
|
STATIC_ASSERT(PIPE_TEX_FILTER_NEAREST == MAPFILTER_NEAREST);
|
|
|
|
|
|
STATIC_ASSERT(PIPE_TEX_FILTER_LINEAR == MAPFILTER_LINEAR);
|
|
|
|
|
|
|
|
|
|
|
|
unsigned wrap_s = translate_wrap(state->wrap_s);
|
|
|
|
|
|
unsigned wrap_t = translate_wrap(state->wrap_t);
|
|
|
|
|
|
unsigned wrap_r = translate_wrap(state->wrap_r);
|
|
|
|
|
|
|
2018-10-01 18:33:17 -07:00
|
|
|
|
memcpy(&cso->border_color, &state->border_color, sizeof(cso->border_color));
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
cso->needs_border_color = wrap_mode_needs_border_color(wrap_s) ||
|
|
|
|
|
|
wrap_mode_needs_border_color(wrap_t) ||
|
|
|
|
|
|
wrap_mode_needs_border_color(wrap_r);
|
|
|
|
|
|
|
2018-08-23 01:49:49 -07:00
|
|
|
|
float min_lod = state->min_lod;
|
|
|
|
|
|
unsigned mag_img_filter = state->mag_img_filter;
|
|
|
|
|
|
|
|
|
|
|
|
// XXX: explain this code ported from ilo...I don't get it at all...
|
|
|
|
|
|
if (state->min_mip_filter == PIPE_TEX_MIPFILTER_NONE &&
|
|
|
|
|
|
state->min_lod > 0.0f) {
|
|
|
|
|
|
min_lod = 0.0f;
|
|
|
|
|
|
mag_img_filter = state->min_img_filter;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
iris_pack_state(GENX(SAMPLER_STATE), cso->sampler_state, samp) {
|
|
|
|
|
|
samp.TCXAddressControlMode = wrap_s;
|
|
|
|
|
|
samp.TCYAddressControlMode = wrap_t;
|
|
|
|
|
|
samp.TCZAddressControlMode = wrap_r;
|
|
|
|
|
|
samp.CubeSurfaceControlMode = state->seamless_cube_map;
|
|
|
|
|
|
samp.NonnormalizedCoordinateEnable = !state->normalized_coords;
|
|
|
|
|
|
samp.MinModeFilter = state->min_img_filter;
|
2018-08-23 01:49:49 -07:00
|
|
|
|
samp.MagModeFilter = mag_img_filter;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
samp.MipModeFilter = translate_mip_filter(state->min_mip_filter);
|
|
|
|
|
|
samp.MaximumAnisotropy = RATIO21;
|
|
|
|
|
|
|
|
|
|
|
|
if (state->max_anisotropy >= 2) {
|
|
|
|
|
|
if (state->min_img_filter == PIPE_TEX_FILTER_LINEAR) {
|
|
|
|
|
|
samp.MinModeFilter = MAPFILTER_ANISOTROPIC;
|
|
|
|
|
|
samp.AnisotropicAlgorithm = EWAApproximation;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (state->mag_img_filter == PIPE_TEX_FILTER_LINEAR)
|
|
|
|
|
|
samp.MagModeFilter = MAPFILTER_ANISOTROPIC;
|
|
|
|
|
|
|
|
|
|
|
|
samp.MaximumAnisotropy =
|
|
|
|
|
|
MIN2((state->max_anisotropy - 2) / 2, RATIO161);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Set address rounding bits if not using nearest filtering. */
|
|
|
|
|
|
if (state->min_img_filter != PIPE_TEX_FILTER_NEAREST) {
|
|
|
|
|
|
samp.UAddressMinFilterRoundingEnable = true;
|
|
|
|
|
|
samp.VAddressMinFilterRoundingEnable = true;
|
|
|
|
|
|
samp.RAddressMinFilterRoundingEnable = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (state->mag_img_filter != PIPE_TEX_FILTER_NEAREST) {
|
|
|
|
|
|
samp.UAddressMagFilterRoundingEnable = true;
|
|
|
|
|
|
samp.VAddressMagFilterRoundingEnable = true;
|
|
|
|
|
|
samp.RAddressMagFilterRoundingEnable = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (state->compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE)
|
|
|
|
|
|
samp.ShadowFunction = translate_shadow_func(state->compare_func);
|
|
|
|
|
|
|
|
|
|
|
|
const float hw_max_lod = GEN_GEN >= 7 ? 14 : 13;
|
|
|
|
|
|
|
|
|
|
|
|
samp.LODPreClampMode = CLAMP_MODE_OGL;
|
2018-08-23 01:49:49 -07:00
|
|
|
|
samp.MinLOD = CLAMP(min_lod, 0, hw_max_lod);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
samp.MaxLOD = CLAMP(state->max_lod, 0, hw_max_lod);
|
|
|
|
|
|
samp.TextureLODBias = CLAMP(state->lod_bias, -16, 15);
|
|
|
|
|
|
|
2018-06-28 02:25:25 -07:00
|
|
|
|
/* .BorderColorPointer is filled in by iris_bind_sampler_states. */
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return cso;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->bind_sampler_states() driver hook.
|
|
|
|
|
|
*/
|
2018-01-11 22:18:54 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_bind_sampler_states(struct pipe_context *ctx,
|
|
|
|
|
|
enum pipe_shader_type p_stage,
|
|
|
|
|
|
unsigned start, unsigned count,
|
|
|
|
|
|
void **states)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
gl_shader_stage stage = stage_from_pipe(p_stage);
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-01-11 22:18:54 -08:00
|
|
|
|
|
|
|
|
|
|
assert(start + count <= IRIS_MAX_TEXTURE_SAMPLERS);
|
2018-06-28 02:25:25 -07:00
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
2018-08-18 23:43:14 -07:00
|
|
|
|
shs->samplers[start + i] = states[i];
|
2018-06-28 02:25:25 -07:00
|
|
|
|
}
|
2018-01-11 22:18:54 -08:00
|
|
|
|
|
2018-12-04 15:34:30 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SAMPLER_STATES_VS << stage;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Upload the sampler states into a contiguous area of GPU memory, for
|
|
|
|
|
|
* for 3DSTATE_SAMPLER_STATE_POINTERS_*.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Also fill out the border color state pointers.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_upload_sampler_states(struct iris_context *ice, gl_shader_stage stage)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
const struct shader_info *info = iris_get_shader_info(ice, stage);
|
|
|
|
|
|
|
|
|
|
|
|
/* We assume the state tracker will call pipe->bind_sampler_states()
|
|
|
|
|
|
* if the program's number of textures changes.
|
|
|
|
|
|
*/
|
|
|
|
|
|
unsigned count = info ? util_last_bit(info->textures_used) : 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (!count)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
2018-06-28 02:25:25 -07:00
|
|
|
|
/* Assemble the SAMPLER_STATEs into a contiguous table that lives
|
|
|
|
|
|
* in the dynamic state memory zone, so we can point to it via the
|
|
|
|
|
|
* 3DSTATE_SAMPLER_STATE_POINTERS_* commands.
|
2018-04-07 00:49:12 -07:00
|
|
|
|
*/
|
2018-08-23 02:15:12 -07:00
|
|
|
|
uint32_t *map =
|
|
|
|
|
|
upload_state(ice->state.dynamic_uploader, &shs->sampler_table,
|
|
|
|
|
|
count * 4 * GENX(SAMPLER_STATE_length), 32);
|
2018-04-19 12:07:44 -07:00
|
|
|
|
if (unlikely(!map))
|
|
|
|
|
|
return;
|
2018-04-07 00:49:12 -07:00
|
|
|
|
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct pipe_resource *res = shs->sampler_table.res;
|
|
|
|
|
|
shs->sampler_table.offset +=
|
2018-04-21 01:42:06 -07:00
|
|
|
|
iris_bo_offset_from_base_address(iris_resource_bo(res));
|
2018-04-07 00:49:12 -07:00
|
|
|
|
|
2018-06-28 02:25:25 -07:00
|
|
|
|
/* Make sure all land in the same BO */
|
|
|
|
|
|
iris_border_color_pool_reserve(ice, IRIS_MAX_TEXTURE_SAMPLERS);
|
|
|
|
|
|
|
2018-12-04 15:34:30 -08:00
|
|
|
|
ice->state.need_border_colors &= ~(1 << stage);
|
|
|
|
|
|
|
2018-01-11 22:18:54 -08:00
|
|
|
|
for (int i = 0; i < count; i++) {
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_sampler_state *state = shs->samplers[i];
|
iris: Properly support alpha and luminance-alpha formats
For texturing, we map alpha formats to the corresponding red format,
as many alpha formats are outright missing, and red is more efficient
when sampling anyway.
When rendering to A8_UNORM, we use that format directly, so the image
gets the shader output's .a/.w channel, rather than the .r/.x channel.
All other A* formats are non-renderable, so we can't do much and just
mark them as unsupported for rendering. Fortunately, GL only requires
rendering to A8_UNORM, so that works out.
According to Andre Heider and Timur Kristóf, this fixes font rendering
in Witcher 1 (via nine). Andre also reported that it fixes Unigine
Heaven (presumably via nine).
v2: Use the same swizzle for both sampler views and "render targets".
BLORP expects the read swizzle, and will take the inverse when
setting up the destination swizzle (and actually applying it in
the shaders). We ignore the format swizzle when setting up normal
rendering SURFACE_STATEs, which is necessary because it would be
an illegal shader channel select combination. Thanks to Jason
Ekstrand for pointing out that BLORP took an inverse swizzle.
Tested-by: Timur Kristóf <timur.kristof@gmail.com>
Tested-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
2019-02-21 22:49:40 -08:00
|
|
|
|
struct iris_sampler_view *tex = shs->textures[i];
|
2018-04-07 00:49:12 -07:00
|
|
|
|
|
2018-06-28 02:25:25 -07:00
|
|
|
|
if (!state) {
|
|
|
|
|
|
memset(map, 0, 4 * GENX(SAMPLER_STATE_length));
|
|
|
|
|
|
} else if (!state->needs_border_color) {
|
2018-04-07 00:49:12 -07:00
|
|
|
|
memcpy(map, state->sampler_state, 4 * GENX(SAMPLER_STATE_length));
|
2018-06-28 02:25:25 -07:00
|
|
|
|
} else {
|
2018-12-04 15:34:30 -08:00
|
|
|
|
ice->state.need_border_colors |= 1 << stage;
|
2018-06-28 02:25:25 -07:00
|
|
|
|
|
iris: Properly support alpha and luminance-alpha formats
For texturing, we map alpha formats to the corresponding red format,
as many alpha formats are outright missing, and red is more efficient
when sampling anyway.
When rendering to A8_UNORM, we use that format directly, so the image
gets the shader output's .a/.w channel, rather than the .r/.x channel.
All other A* formats are non-renderable, so we can't do much and just
mark them as unsupported for rendering. Fortunately, GL only requires
rendering to A8_UNORM, so that works out.
According to Andre Heider and Timur Kristóf, this fixes font rendering
in Witcher 1 (via nine). Andre also reported that it fixes Unigine
Heaven (presumably via nine).
v2: Use the same swizzle for both sampler views and "render targets".
BLORP expects the read swizzle, and will take the inverse when
setting up the destination swizzle (and actually applying it in
the shaders). We ignore the format swizzle when setting up normal
rendering SURFACE_STATEs, which is necessary because it would be
an illegal shader channel select combination. Thanks to Jason
Ekstrand for pointing out that BLORP took an inverse swizzle.
Tested-by: Timur Kristóf <timur.kristof@gmail.com>
Tested-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
2019-02-21 22:49:40 -08:00
|
|
|
|
/* We may need to swizzle the border color for format faking.
|
|
|
|
|
|
* A/LA formats are faked as R/RG with 000R or R00G swizzles.
|
|
|
|
|
|
* This means we need to move the border color's A channel into
|
|
|
|
|
|
* the R or G channels so that those read swizzles will move it
|
|
|
|
|
|
* back into A.
|
|
|
|
|
|
*/
|
|
|
|
|
|
union pipe_color_union *color = &state->border_color;
|
2019-04-02 09:12:21 +03:00
|
|
|
|
union pipe_color_union tmp;
|
iris: Properly support alpha and luminance-alpha formats
For texturing, we map alpha formats to the corresponding red format,
as many alpha formats are outright missing, and red is more efficient
when sampling anyway.
When rendering to A8_UNORM, we use that format directly, so the image
gets the shader output's .a/.w channel, rather than the .r/.x channel.
All other A* formats are non-renderable, so we can't do much and just
mark them as unsupported for rendering. Fortunately, GL only requires
rendering to A8_UNORM, so that works out.
According to Andre Heider and Timur Kristóf, this fixes font rendering
in Witcher 1 (via nine). Andre also reported that it fixes Unigine
Heaven (presumably via nine).
v2: Use the same swizzle for both sampler views and "render targets".
BLORP expects the read swizzle, and will take the inverse when
setting up the destination swizzle (and actually applying it in
the shaders). We ignore the format swizzle when setting up normal
rendering SURFACE_STATEs, which is necessary because it would be
an illegal shader channel select combination. Thanks to Jason
Ekstrand for pointing out that BLORP took an inverse swizzle.
Tested-by: Timur Kristóf <timur.kristof@gmail.com>
Tested-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
2019-02-21 22:49:40 -08:00
|
|
|
|
if (tex) {
|
|
|
|
|
|
enum pipe_format internal_format = tex->res->internal_format;
|
|
|
|
|
|
|
|
|
|
|
|
if (util_format_is_alpha(internal_format)) {
|
|
|
|
|
|
unsigned char swz[4] = {
|
|
|
|
|
|
PIPE_SWIZZLE_W, PIPE_SWIZZLE_0,
|
|
|
|
|
|
PIPE_SWIZZLE_0, PIPE_SWIZZLE_0
|
|
|
|
|
|
};
|
|
|
|
|
|
util_format_apply_color_swizzle(&tmp, color, swz, true);
|
|
|
|
|
|
color = &tmp;
|
|
|
|
|
|
} else if (util_format_is_luminance_alpha(internal_format) &&
|
|
|
|
|
|
internal_format != PIPE_FORMAT_L8A8_SRGB) {
|
|
|
|
|
|
unsigned char swz[4] = {
|
|
|
|
|
|
PIPE_SWIZZLE_X, PIPE_SWIZZLE_W,
|
|
|
|
|
|
PIPE_SWIZZLE_0, PIPE_SWIZZLE_0
|
|
|
|
|
|
};
|
|
|
|
|
|
util_format_apply_color_swizzle(&tmp, color, swz, true);
|
|
|
|
|
|
color = &tmp;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-28 02:25:25 -07:00
|
|
|
|
/* Stream out the border color and merge the pointer. */
|
iris: Properly support alpha and luminance-alpha formats
For texturing, we map alpha formats to the corresponding red format,
as many alpha formats are outright missing, and red is more efficient
when sampling anyway.
When rendering to A8_UNORM, we use that format directly, so the image
gets the shader output's .a/.w channel, rather than the .r/.x channel.
All other A* formats are non-renderable, so we can't do much and just
mark them as unsupported for rendering. Fortunately, GL only requires
rendering to A8_UNORM, so that works out.
According to Andre Heider and Timur Kristóf, this fixes font rendering
in Witcher 1 (via nine). Andre also reported that it fixes Unigine
Heaven (presumably via nine).
v2: Use the same swizzle for both sampler views and "render targets".
BLORP expects the read swizzle, and will take the inverse when
setting up the destination swizzle (and actually applying it in
the shaders). We ignore the format swizzle when setting up normal
rendering SURFACE_STATEs, which is necessary because it would be
an illegal shader channel select combination. Thanks to Jason
Ekstrand for pointing out that BLORP took an inverse swizzle.
Tested-by: Timur Kristóf <timur.kristof@gmail.com>
Tested-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
2019-02-21 22:49:40 -08:00
|
|
|
|
uint32_t offset = iris_upload_border_color(ice, color);
|
2018-06-28 02:25:25 -07:00
|
|
|
|
|
|
|
|
|
|
uint32_t dynamic[GENX(SAMPLER_STATE_length)];
|
|
|
|
|
|
iris_pack_state(GENX(SAMPLER_STATE), dynamic, dyns) {
|
|
|
|
|
|
dyns.BorderColorPointer = offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (uint32_t j = 0; j < GENX(SAMPLER_STATE_length); j++)
|
2018-08-23 02:15:12 -07:00
|
|
|
|
map[j] = state->sampler_state[j] | dynamic[j];
|
2018-06-28 02:25:25 -07:00
|
|
|
|
}
|
2018-04-07 00:49:12 -07:00
|
|
|
|
|
|
|
|
|
|
map += GENX(SAMPLER_STATE_length);
|
2018-01-11 22:18:54 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-07 20:31:09 -07:00
|
|
|
|
static enum isl_channel_select
|
|
|
|
|
|
fmt_swizzle(const struct iris_format_info *fmt, enum pipe_swizzle swz)
|
|
|
|
|
|
{
|
|
|
|
|
|
switch (swz) {
|
|
|
|
|
|
case PIPE_SWIZZLE_X: return fmt->swizzle.r;
|
|
|
|
|
|
case PIPE_SWIZZLE_Y: return fmt->swizzle.g;
|
|
|
|
|
|
case PIPE_SWIZZLE_Z: return fmt->swizzle.b;
|
|
|
|
|
|
case PIPE_SWIZZLE_W: return fmt->swizzle.a;
|
|
|
|
|
|
case PIPE_SWIZZLE_1: return SCS_ONE;
|
|
|
|
|
|
case PIPE_SWIZZLE_0: return SCS_ZERO;
|
|
|
|
|
|
default: unreachable("invalid swizzle");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-22 14:28:54 -07:00
|
|
|
|
static void
|
|
|
|
|
|
fill_buffer_surface_state(struct isl_device *isl_dev,
|
|
|
|
|
|
struct iris_bo *bo,
|
|
|
|
|
|
void *map,
|
|
|
|
|
|
enum isl_format format,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
struct isl_swizzle swizzle,
|
2018-10-22 14:28:54 -07:00
|
|
|
|
unsigned offset,
|
|
|
|
|
|
unsigned size)
|
|
|
|
|
|
{
|
|
|
|
|
|
const struct isl_format_layout *fmtl = isl_format_get_layout(format);
|
2018-12-26 02:06:13 -08:00
|
|
|
|
const unsigned cpp = format == ISL_FORMAT_RAW ? 1 : fmtl->bpb / 8;
|
2018-10-22 14:28:54 -07:00
|
|
|
|
|
|
|
|
|
|
/* The ARB_texture_buffer_specification says:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "The number of texels in the buffer texture's texel array is given by
|
|
|
|
|
|
*
|
|
|
|
|
|
* floor(<buffer_size> / (<components> * sizeof(<base_type>)),
|
|
|
|
|
|
*
|
|
|
|
|
|
* where <buffer_size> is the size of the buffer object, in basic
|
|
|
|
|
|
* machine units and <components> and <base_type> are the element count
|
|
|
|
|
|
* and base data type for elements, as specified in Table X.1. The
|
|
|
|
|
|
* number of texels in the texel array is then clamped to the
|
|
|
|
|
|
* implementation-dependent limit MAX_TEXTURE_BUFFER_SIZE_ARB."
|
|
|
|
|
|
*
|
|
|
|
|
|
* We need to clamp the size in bytes to MAX_TEXTURE_BUFFER_SIZE * stride,
|
|
|
|
|
|
* so that when ISL divides by stride to obtain the number of texels, that
|
|
|
|
|
|
* texel count is clamped to MAX_TEXTURE_BUFFER_SIZE.
|
|
|
|
|
|
*/
|
|
|
|
|
|
unsigned final_size =
|
|
|
|
|
|
MIN3(size, bo->size - offset, IRIS_MAX_TEXTURE_BUFFER_SIZE * cpp);
|
|
|
|
|
|
|
|
|
|
|
|
isl_buffer_fill_state(isl_dev, map,
|
|
|
|
|
|
.address = bo->gtt_offset + offset,
|
|
|
|
|
|
.size_B = final_size,
|
|
|
|
|
|
.format = format,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
.swizzle = swizzle,
|
2018-10-22 14:28:54 -07:00
|
|
|
|
.stride_B = cpp,
|
2018-12-12 00:02:25 -08:00
|
|
|
|
.mocs = mocs(bo));
|
2018-10-22 14:28:54 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-07 11:33:13 -08:00
|
|
|
|
#define SURFACE_STATE_ALIGNMENT 64
|
|
|
|
|
|
|
2018-12-07 11:20:39 -08:00
|
|
|
|
/**
|
2018-12-07 11:33:13 -08:00
|
|
|
|
* Allocate several contiguous SURFACE_STATE structures, one for each
|
|
|
|
|
|
* supported auxiliary surface mode.
|
2018-12-07 11:20:39 -08:00
|
|
|
|
*/
|
|
|
|
|
|
static void *
|
|
|
|
|
|
alloc_surface_states(struct u_upload_mgr *mgr,
|
2018-12-07 11:33:13 -08:00
|
|
|
|
struct iris_state_ref *ref,
|
|
|
|
|
|
unsigned aux_usages)
|
2018-12-07 11:20:39 -08:00
|
|
|
|
{
|
|
|
|
|
|
const unsigned surf_size = 4 * GENX(RENDER_SURFACE_STATE_length);
|
|
|
|
|
|
|
2018-12-07 11:33:13 -08:00
|
|
|
|
/* If this changes, update this to explicitly align pointers */
|
|
|
|
|
|
STATIC_ASSERT(surf_size == SURFACE_STATE_ALIGNMENT);
|
|
|
|
|
|
|
|
|
|
|
|
assert(aux_usages != 0);
|
|
|
|
|
|
|
|
|
|
|
|
void *map =
|
|
|
|
|
|
upload_state(mgr, ref, util_bitcount(aux_usages) * surf_size,
|
|
|
|
|
|
SURFACE_STATE_ALIGNMENT);
|
2018-12-07 11:20:39 -08:00
|
|
|
|
|
|
|
|
|
|
ref->offset += iris_bo_offset_from_base_address(iris_resource_bo(ref->res));
|
|
|
|
|
|
|
|
|
|
|
|
return map;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-06 23:29:20 -08:00
|
|
|
|
static void
|
|
|
|
|
|
fill_surface_state(struct isl_device *isl_dev,
|
|
|
|
|
|
void *map,
|
|
|
|
|
|
struct iris_resource *res,
|
2018-12-07 11:33:13 -08:00
|
|
|
|
struct isl_view *view,
|
|
|
|
|
|
unsigned aux_usage)
|
2018-12-06 23:29:20 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct isl_surf_fill_state_info f = {
|
|
|
|
|
|
.surf = &res->surf,
|
|
|
|
|
|
.view = view,
|
2018-12-12 00:02:25 -08:00
|
|
|
|
.mocs = mocs(res->bo),
|
2018-12-06 23:29:20 -08:00
|
|
|
|
.address = res->bo->gtt_offset,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-12-07 11:33:13 -08:00
|
|
|
|
if (aux_usage != ISL_AUX_USAGE_NONE) {
|
|
|
|
|
|
f.aux_surf = &res->aux.surf;
|
|
|
|
|
|
f.aux_usage = aux_usage;
|
|
|
|
|
|
f.aux_address = res->aux.bo->gtt_offset + res->aux.offset;
|
2019-03-19 12:47:58 -07:00
|
|
|
|
f.clear_color = res->aux.clear_color;
|
2018-12-07 11:33:13 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-06 23:29:20 -08:00
|
|
|
|
isl_surf_fill_state_s(isl_dev, map, &f);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_sampler_view() driver hook.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static struct pipe_sampler_view *
|
|
|
|
|
|
iris_create_sampler_view(struct pipe_context *ctx,
|
2018-01-09 17:54:43 -08:00
|
|
|
|
struct pipe_resource *tex,
|
|
|
|
|
|
const struct pipe_sampler_view *tmpl)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-04-07 00:11:14 -07:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-01-09 17:54:43 -08:00
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
2018-10-07 20:31:09 -07:00
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
2018-01-09 17:54:43 -08:00
|
|
|
|
struct iris_sampler_view *isv = calloc(1, sizeof(struct iris_sampler_view));
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-01-09 17:54:43 -08:00
|
|
|
|
if (!isv)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
|
|
/* initialize base object */
|
2018-08-18 23:21:32 -07:00
|
|
|
|
isv->base = *tmpl;
|
|
|
|
|
|
isv->base.context = ctx;
|
|
|
|
|
|
isv->base.texture = NULL;
|
|
|
|
|
|
pipe_reference_init(&isv->base.reference, 1);
|
|
|
|
|
|
pipe_resource_reference(&isv->base.texture, tex);
|
2018-01-09 17:54:43 -08:00
|
|
|
|
|
2018-10-04 19:49:06 -07:00
|
|
|
|
if (util_format_is_depth_or_stencil(tmpl->format)) {
|
|
|
|
|
|
struct iris_resource *zres, *sres;
|
|
|
|
|
|
const struct util_format_description *desc =
|
|
|
|
|
|
util_format_description(tmpl->format);
|
|
|
|
|
|
|
|
|
|
|
|
iris_get_depth_stencil_resources(tex, &zres, &sres);
|
|
|
|
|
|
|
|
|
|
|
|
tex = util_format_has_depth(desc) ? &zres->base : &sres->base;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isv->res = (struct iris_resource *) tex;
|
|
|
|
|
|
|
2018-12-07 11:33:13 -08:00
|
|
|
|
void *map = alloc_surface_states(ice->state.surface_uploader,
|
|
|
|
|
|
&isv->surface_state,
|
2019-03-27 14:42:12 -07:00
|
|
|
|
isv->res->aux.sampler_usages);
|
2018-12-07 11:33:13 -08:00
|
|
|
|
if (!unlikely(map))
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
2018-11-29 23:03:20 -08:00
|
|
|
|
isl_surf_usage_flags_t usage = ISL_SURF_USAGE_TEXTURE_BIT;
|
2018-10-07 20:31:09 -07:00
|
|
|
|
|
2018-11-27 13:02:03 +10:00
|
|
|
|
if (isv->base.target == PIPE_TEXTURE_CUBE ||
|
|
|
|
|
|
isv->base.target == PIPE_TEXTURE_CUBE_ARRAY)
|
|
|
|
|
|
usage |= ISL_SURF_USAGE_CUBE_BIT;
|
|
|
|
|
|
|
2018-10-07 20:31:09 -07:00
|
|
|
|
const struct iris_format_info fmt =
|
|
|
|
|
|
iris_format_for_usage(devinfo, tmpl->format, usage);
|
|
|
|
|
|
|
2019-03-19 12:47:58 -07:00
|
|
|
|
isv->clear_color = isv->res->aux.clear_color;
|
|
|
|
|
|
|
2018-01-09 17:54:43 -08:00
|
|
|
|
isv->view = (struct isl_view) {
|
2018-10-07 20:31:09 -07:00
|
|
|
|
.format = fmt.fmt,
|
2018-01-09 17:54:43 -08:00
|
|
|
|
.swizzle = (struct isl_swizzle) {
|
2018-10-07 20:31:09 -07:00
|
|
|
|
.r = fmt_swizzle(&fmt, tmpl->swizzle_r),
|
|
|
|
|
|
.g = fmt_swizzle(&fmt, tmpl->swizzle_g),
|
|
|
|
|
|
.b = fmt_swizzle(&fmt, tmpl->swizzle_b),
|
|
|
|
|
|
.a = fmt_swizzle(&fmt, tmpl->swizzle_a),
|
2018-01-09 17:54:43 -08:00
|
|
|
|
},
|
2018-10-07 20:31:09 -07:00
|
|
|
|
.usage = usage,
|
2018-01-09 17:54:43 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* Fill out SURFACE_STATE for this view. */
|
2018-07-17 00:17:55 -07:00
|
|
|
|
if (tmpl->target != PIPE_BUFFER) {
|
|
|
|
|
|
isv->view.base_level = tmpl->u.tex.first_level;
|
|
|
|
|
|
isv->view.levels = tmpl->u.tex.last_level - tmpl->u.tex.first_level + 1;
|
2018-11-16 15:12:57 -08:00
|
|
|
|
// XXX: do I need to port f9fd0cf4790cb2a530e75d1a2206dbb9d8af7cb2?
|
2018-07-17 00:17:55 -07:00
|
|
|
|
isv->view.base_array_layer = tmpl->u.tex.first_layer;
|
|
|
|
|
|
isv->view.array_len =
|
|
|
|
|
|
tmpl->u.tex.last_layer - tmpl->u.tex.first_layer + 1;
|
|
|
|
|
|
|
2019-03-27 14:42:12 -07:00
|
|
|
|
unsigned aux_modes = isv->res->aux.sampler_usages;
|
2018-12-07 11:33:13 -08:00
|
|
|
|
while (aux_modes) {
|
|
|
|
|
|
enum isl_aux_usage aux_usage = u_bit_scan(&aux_modes);
|
|
|
|
|
|
|
2019-03-13 16:56:55 -07:00
|
|
|
|
/* If we have a multisampled depth buffer, do not create a sampler
|
|
|
|
|
|
* surface state with HiZ.
|
|
|
|
|
|
*/
|
2019-03-27 14:42:12 -07:00
|
|
|
|
fill_surface_state(&screen->isl_dev, map, isv->res, &isv->view,
|
|
|
|
|
|
aux_usage);
|
2018-12-07 11:33:13 -08:00
|
|
|
|
|
|
|
|
|
|
map += SURFACE_STATE_ALIGNMENT;
|
|
|
|
|
|
}
|
2018-07-17 00:17:55 -07:00
|
|
|
|
} else {
|
2018-10-22 14:28:54 -07:00
|
|
|
|
fill_buffer_surface_state(&screen->isl_dev, isv->res->bo, map,
|
iris: Properly support alpha and luminance-alpha formats
For texturing, we map alpha formats to the corresponding red format,
as many alpha formats are outright missing, and red is more efficient
when sampling anyway.
When rendering to A8_UNORM, we use that format directly, so the image
gets the shader output's .a/.w channel, rather than the .r/.x channel.
All other A* formats are non-renderable, so we can't do much and just
mark them as unsupported for rendering. Fortunately, GL only requires
rendering to A8_UNORM, so that works out.
According to Andre Heider and Timur Kristóf, this fixes font rendering
in Witcher 1 (via nine). Andre also reported that it fixes Unigine
Heaven (presumably via nine).
v2: Use the same swizzle for both sampler views and "render targets".
BLORP expects the read swizzle, and will take the inverse when
setting up the destination swizzle (and actually applying it in
the shaders). We ignore the format swizzle when setting up normal
rendering SURFACE_STATEs, which is necessary because it would be
an illegal shader channel select combination. Thanks to Jason
Ekstrand for pointing out that BLORP took an inverse swizzle.
Tested-by: Timur Kristóf <timur.kristof@gmail.com>
Tested-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
2019-02-21 22:49:40 -08:00
|
|
|
|
isv->view.format, isv->view.swizzle,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
tmpl->u.buf.offset, tmpl->u.buf.size);
|
2018-07-17 00:17:55 -07:00
|
|
|
|
}
|
2018-01-09 17:54:43 -08:00
|
|
|
|
|
2018-08-18 23:21:32 -07:00
|
|
|
|
return &isv->base;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_sampler_view_destroy(struct pipe_context *ctx,
|
|
|
|
|
|
struct pipe_sampler_view *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_sampler_view *isv = (void *) state;
|
|
|
|
|
|
pipe_resource_reference(&state->texture, NULL);
|
|
|
|
|
|
pipe_resource_reference(&isv->surface_state.res, NULL);
|
|
|
|
|
|
free(isv);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_surface() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* In Gallium nomenclature, "surfaces" are a view of a resource that
|
|
|
|
|
|
* can be bound as a render target or depth/stencil buffer.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static struct pipe_surface *
|
|
|
|
|
|
iris_create_surface(struct pipe_context *ctx,
|
|
|
|
|
|
struct pipe_resource *tex,
|
2018-01-09 17:54:43 -08:00
|
|
|
|
const struct pipe_surface *tmpl)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-04-06 23:57:45 -07:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-01-09 14:34:15 -08:00
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
2018-07-26 01:06:27 -07:00
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
2018-01-09 14:34:15 -08:00
|
|
|
|
struct iris_surface *surf = calloc(1, sizeof(struct iris_surface));
|
2018-08-18 23:21:32 -07:00
|
|
|
|
struct pipe_surface *psurf = &surf->base;
|
2018-04-25 15:25:33 -07:00
|
|
|
|
struct iris_resource *res = (struct iris_resource *) tex;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-01-09 14:34:15 -08:00
|
|
|
|
if (!surf)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
2018-01-09 14:34:15 -08:00
|
|
|
|
pipe_reference_init(&psurf->reference, 1);
|
|
|
|
|
|
pipe_resource_reference(&psurf->texture, tex);
|
|
|
|
|
|
psurf->context = ctx;
|
2018-01-09 17:54:43 -08:00
|
|
|
|
psurf->format = tmpl->format;
|
2018-01-09 14:34:15 -08:00
|
|
|
|
psurf->width = tex->width0;
|
|
|
|
|
|
psurf->height = tex->height0;
|
|
|
|
|
|
psurf->texture = tex;
|
2018-01-09 17:54:43 -08:00
|
|
|
|
psurf->u.tex.first_layer = tmpl->u.tex.first_layer;
|
|
|
|
|
|
psurf->u.tex.last_layer = tmpl->u.tex.last_layer;
|
|
|
|
|
|
psurf->u.tex.level = tmpl->u.tex.level;
|
2018-01-09 14:34:15 -08:00
|
|
|
|
|
2018-08-13 16:41:19 -07:00
|
|
|
|
isl_surf_usage_flags_t usage = 0;
|
2018-04-25 15:25:33 -07:00
|
|
|
|
if (tmpl->writable)
|
|
|
|
|
|
usage = ISL_SURF_USAGE_STORAGE_BIT;
|
|
|
|
|
|
else if (util_format_is_depth_or_stencil(tmpl->format))
|
|
|
|
|
|
usage = ISL_SURF_USAGE_DEPTH_BIT;
|
2018-08-13 16:41:19 -07:00
|
|
|
|
else
|
2018-04-25 15:25:33 -07:00
|
|
|
|
usage = ISL_SURF_USAGE_RENDER_TARGET_BIT;
|
|
|
|
|
|
|
2018-10-07 20:31:09 -07:00
|
|
|
|
const struct iris_format_info fmt =
|
|
|
|
|
|
iris_format_for_usage(devinfo, psurf->format, usage);
|
2018-08-13 16:41:19 -07:00
|
|
|
|
|
|
|
|
|
|
if ((usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) &&
|
2018-10-07 20:31:09 -07:00
|
|
|
|
!isl_format_supports_rendering(devinfo, fmt.fmt)) {
|
2018-08-13 16:41:19 -07:00
|
|
|
|
/* Framebuffer validation will reject this invalid case, but it
|
|
|
|
|
|
* hasn't had the opportunity yet. In the meantime, we need to
|
|
|
|
|
|
* avoid hitting ISL asserts about unsupported formats below.
|
|
|
|
|
|
*/
|
|
|
|
|
|
free(surf);
|
|
|
|
|
|
return NULL;
|
2018-07-26 01:06:27 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-09 14:34:15 -08:00
|
|
|
|
surf->view = (struct isl_view) {
|
2018-10-07 20:31:09 -07:00
|
|
|
|
.format = fmt.fmt,
|
2018-01-09 17:54:43 -08:00
|
|
|
|
.base_level = tmpl->u.tex.level,
|
2018-01-09 14:34:15 -08:00
|
|
|
|
.levels = 1,
|
2018-01-09 17:54:43 -08:00
|
|
|
|
.base_array_layer = tmpl->u.tex.first_layer,
|
|
|
|
|
|
.array_len = tmpl->u.tex.last_layer - tmpl->u.tex.first_layer + 1,
|
2018-01-09 14:34:15 -08:00
|
|
|
|
.swizzle = ISL_SWIZZLE_IDENTITY,
|
2018-04-25 15:25:33 -07:00
|
|
|
|
.usage = usage,
|
2018-01-09 14:34:15 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
2019-03-19 12:47:58 -07:00
|
|
|
|
surf->clear_color = res->aux.clear_color;
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* Bail early for depth/stencil - we don't want SURFACE_STATE for them. */
|
2018-04-25 15:25:33 -07:00
|
|
|
|
if (res->surf.usage & (ISL_SURF_USAGE_DEPTH_BIT |
|
|
|
|
|
|
ISL_SURF_USAGE_STENCIL_BIT))
|
|
|
|
|
|
return psurf;
|
|
|
|
|
|
|
2018-06-28 00:57:49 -07:00
|
|
|
|
|
2018-12-07 11:20:39 -08:00
|
|
|
|
void *map = alloc_surface_states(ice->state.surface_uploader,
|
2018-12-07 11:33:13 -08:00
|
|
|
|
&surf->surface_state,
|
|
|
|
|
|
res->aux.possible_usages);
|
2018-04-06 23:57:45 -07:00
|
|
|
|
if (!unlikely(map))
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
2018-12-07 11:33:13 -08:00
|
|
|
|
unsigned aux_modes = res->aux.possible_usages;
|
|
|
|
|
|
while (aux_modes) {
|
|
|
|
|
|
enum isl_aux_usage aux_usage = u_bit_scan(&aux_modes);
|
|
|
|
|
|
|
|
|
|
|
|
fill_surface_state(&screen->isl_dev, map, res, &surf->view, aux_usage);
|
|
|
|
|
|
|
|
|
|
|
|
map += SURFACE_STATE_ALIGNMENT;
|
|
|
|
|
|
}
|
2018-01-09 14:34:15 -08:00
|
|
|
|
|
|
|
|
|
|
return psurf;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-30 02:27:07 -08:00
|
|
|
|
#if GEN_GEN < 9
|
|
|
|
|
|
static void
|
|
|
|
|
|
fill_default_image_param(struct brw_image_param *param)
|
|
|
|
|
|
{
|
|
|
|
|
|
memset(param, 0, sizeof(*param));
|
|
|
|
|
|
/* Set the swizzling shifts to all-ones to effectively disable swizzling --
|
|
|
|
|
|
* See emit_address_calculation() in brw_fs_surface_builder.cpp for a more
|
|
|
|
|
|
* detailed explanation of these parameters.
|
|
|
|
|
|
*/
|
|
|
|
|
|
param->swizzling[0] = 0xff;
|
|
|
|
|
|
param->swizzling[1] = 0xff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
fill_buffer_image_param(struct brw_image_param *param,
|
|
|
|
|
|
enum pipe_format pfmt,
|
|
|
|
|
|
unsigned size)
|
|
|
|
|
|
{
|
|
|
|
|
|
const unsigned cpp = util_format_get_blocksize(pfmt);
|
|
|
|
|
|
|
|
|
|
|
|
fill_default_image_param(param);
|
|
|
|
|
|
param->size[0] = size / cpp;
|
|
|
|
|
|
param->stride[0] = cpp;
|
|
|
|
|
|
}
|
|
|
|
|
|
#else
|
|
|
|
|
|
#define isl_surf_fill_image_param(x, ...)
|
|
|
|
|
|
#define fill_default_image_param(x, ...)
|
|
|
|
|
|
#define fill_buffer_image_param(x, ...)
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2018-08-30 15:45:36 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_shader_images() driver hook.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_set_shader_images(struct pipe_context *ctx,
|
|
|
|
|
|
enum pipe_shader_type p_stage,
|
|
|
|
|
|
unsigned start_slot, unsigned count,
|
|
|
|
|
|
const struct pipe_image_view *p_images)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
|
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
|
|
|
|
|
gl_shader_stage stage = stage_from_pipe(p_stage);
|
|
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
|
2018-12-02 23:17:44 -08:00
|
|
|
|
shs->bound_image_views &= ~u_bit_consecutive(start_slot, count);
|
2018-11-25 19:03:43 -08:00
|
|
|
|
|
2018-08-30 15:45:36 -07:00
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
|
|
|
|
|
if (p_images && p_images[i].resource) {
|
|
|
|
|
|
const struct pipe_image_view *img = &p_images[i];
|
|
|
|
|
|
struct iris_resource *res = (void *) img->resource;
|
2018-09-14 00:49:13 -07:00
|
|
|
|
pipe_resource_reference(&shs->image[start_slot + i].res, &res->base);
|
2018-08-30 15:45:36 -07:00
|
|
|
|
|
2018-12-02 23:17:44 -08:00
|
|
|
|
shs->bound_image_views |= 1 << (start_slot + i);
|
|
|
|
|
|
|
2018-11-21 00:38:49 -08:00
|
|
|
|
res->bind_history |= PIPE_BIND_SHADER_IMAGE;
|
|
|
|
|
|
|
2018-08-30 15:45:36 -07:00
|
|
|
|
// XXX: these are not retained forever, use a separate uploader?
|
|
|
|
|
|
void *map =
|
2018-12-07 11:20:39 -08:00
|
|
|
|
alloc_surface_states(ice->state.surface_uploader,
|
2018-12-07 11:33:13 -08:00
|
|
|
|
&shs->image[start_slot + i].surface_state,
|
|
|
|
|
|
1 << ISL_AUX_USAGE_NONE);
|
2018-08-30 15:45:36 -07:00
|
|
|
|
if (!unlikely(map)) {
|
2018-09-14 00:49:13 -07:00
|
|
|
|
pipe_resource_reference(&shs->image[start_slot + i].res, NULL);
|
2018-08-30 15:45:36 -07:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isl_surf_usage_flags_t usage = ISL_SURF_USAGE_STORAGE_BIT;
|
2018-12-26 02:06:13 -08:00
|
|
|
|
enum isl_format isl_fmt =
|
2018-08-30 15:45:36 -07:00
|
|
|
|
iris_format_for_usage(devinfo, img->format, usage).fmt;
|
2018-10-01 22:18:00 -05:00
|
|
|
|
|
2018-12-26 02:06:13 -08:00
|
|
|
|
bool untyped_fallback = false;
|
|
|
|
|
|
|
|
|
|
|
|
if (img->shader_access & PIPE_IMAGE_ACCESS_READ) {
|
|
|
|
|
|
/* On Gen8, try to use typed surfaces reads (which support a
|
|
|
|
|
|
* limited number of formats), and if not possible, fall back
|
|
|
|
|
|
* to untyped reads.
|
|
|
|
|
|
*/
|
|
|
|
|
|
untyped_fallback = GEN_GEN == 8 &&
|
|
|
|
|
|
!isl_has_matching_typed_storage_image_format(devinfo, isl_fmt);
|
|
|
|
|
|
|
|
|
|
|
|
if (untyped_fallback)
|
|
|
|
|
|
isl_fmt = ISL_FORMAT_RAW;
|
|
|
|
|
|
else
|
|
|
|
|
|
isl_fmt = isl_lower_storage_image_format(devinfo, isl_fmt);
|
|
|
|
|
|
}
|
2018-08-30 15:45:36 -07:00
|
|
|
|
|
2018-10-02 10:09:26 -07:00
|
|
|
|
shs->image[start_slot + i].access = img->shader_access;
|
|
|
|
|
|
|
2018-08-30 15:45:36 -07:00
|
|
|
|
if (res->base.target != PIPE_BUFFER) {
|
|
|
|
|
|
struct isl_view view = {
|
2018-12-26 02:06:13 -08:00
|
|
|
|
.format = isl_fmt,
|
2018-08-30 15:45:36 -07:00
|
|
|
|
.base_level = img->u.tex.level,
|
|
|
|
|
|
.levels = 1,
|
|
|
|
|
|
.base_array_layer = img->u.tex.first_layer,
|
|
|
|
|
|
.array_len = img->u.tex.last_layer - img->u.tex.first_layer + 1,
|
|
|
|
|
|
.swizzle = ISL_SWIZZLE_IDENTITY,
|
|
|
|
|
|
.usage = usage,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-12-26 02:06:13 -08:00
|
|
|
|
if (untyped_fallback) {
|
|
|
|
|
|
fill_buffer_surface_state(&screen->isl_dev, res->bo, map,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
isl_fmt, ISL_SWIZZLE_IDENTITY,
|
|
|
|
|
|
0, res->bo->size);
|
2018-12-26 02:06:13 -08:00
|
|
|
|
} else {
|
2018-12-07 11:33:13 -08:00
|
|
|
|
/* Images don't support compression */
|
|
|
|
|
|
unsigned aux_modes = 1 << ISL_AUX_USAGE_NONE;
|
|
|
|
|
|
while (aux_modes) {
|
|
|
|
|
|
enum isl_aux_usage usage = u_bit_scan(&aux_modes);
|
|
|
|
|
|
|
|
|
|
|
|
fill_surface_state(&screen->isl_dev, map, res, &view, usage);
|
|
|
|
|
|
|
|
|
|
|
|
map += SURFACE_STATE_ALIGNMENT;
|
|
|
|
|
|
}
|
2018-12-26 02:06:13 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-30 02:27:07 -08:00
|
|
|
|
isl_surf_fill_image_param(&screen->isl_dev,
|
|
|
|
|
|
&shs->image[start_slot + i].param,
|
|
|
|
|
|
&res->surf, &view);
|
2018-08-30 15:45:36 -07:00
|
|
|
|
} else {
|
2018-10-22 14:28:54 -07:00
|
|
|
|
fill_buffer_surface_state(&screen->isl_dev, res->bo, map,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
isl_fmt, ISL_SWIZZLE_IDENTITY,
|
|
|
|
|
|
img->u.buf.offset, img->u.buf.size);
|
2018-11-30 02:27:07 -08:00
|
|
|
|
fill_buffer_image_param(&shs->image[start_slot + i].param,
|
|
|
|
|
|
img->format, img->u.buf.size);
|
2018-08-30 15:45:36 -07:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
2018-09-14 00:49:13 -07:00
|
|
|
|
pipe_resource_reference(&shs->image[start_slot + i].res, NULL);
|
|
|
|
|
|
pipe_resource_reference(&shs->image[start_slot + i].surface_state.res,
|
2018-08-30 15:45:36 -07:00
|
|
|
|
NULL);
|
2018-11-30 02:27:07 -08:00
|
|
|
|
fill_default_image_param(&shs->image[start_slot + i].param);
|
2018-08-30 15:45:36 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BINDINGS_VS << stage;
|
2019-03-11 00:04:56 -07:00
|
|
|
|
ice->state.dirty |=
|
|
|
|
|
|
stage == MESA_SHADER_COMPUTE ? IRIS_DIRTY_COMPUTE_RESOLVES_AND_FLUSHES
|
|
|
|
|
|
: IRIS_DIRTY_RENDER_RESOLVES_AND_FLUSHES;
|
2018-11-30 02:27:07 -08:00
|
|
|
|
|
|
|
|
|
|
/* Broadwell also needs brw_image_params re-uploaded */
|
|
|
|
|
|
if (GEN_GEN < 9) {
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CONSTANTS_VS << stage;
|
|
|
|
|
|
shs->cbuf0_needs_upload = true;
|
|
|
|
|
|
}
|
2018-08-30 15:45:36 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_sampler_views() driver hook.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_sampler_views(struct pipe_context *ctx,
|
2018-04-07 06:35:51 -07:00
|
|
|
|
enum pipe_shader_type p_stage,
|
2017-11-23 23:15:14 -08:00
|
|
|
|
unsigned start, unsigned count,
|
|
|
|
|
|
struct pipe_sampler_view **views)
|
|
|
|
|
|
{
|
2018-04-07 06:35:51 -07:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
gl_shader_stage stage = stage_from_pipe(p_stage);
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-04-07 06:35:51 -07:00
|
|
|
|
|
2018-12-02 23:17:44 -08:00
|
|
|
|
shs->bound_sampler_views &= ~u_bit_consecutive(start, count);
|
2018-12-02 23:07:27 -08:00
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
2019-03-14 15:12:28 -04:00
|
|
|
|
struct pipe_sampler_view *pview = views ? views[i] : NULL;
|
2018-04-19 12:07:44 -07:00
|
|
|
|
pipe_sampler_view_reference((struct pipe_sampler_view **)
|
2019-03-14 15:12:28 -04:00
|
|
|
|
&shs->textures[start + i], pview);
|
|
|
|
|
|
struct iris_sampler_view *view = (void *) pview;
|
2018-12-02 23:17:44 -08:00
|
|
|
|
if (view) {
|
2018-11-21 00:38:49 -08:00
|
|
|
|
view->res->bind_history |= PIPE_BIND_SAMPLER_VIEW;
|
2018-12-02 23:17:44 -08:00
|
|
|
|
shs->bound_sampler_views |= 1 << (start + i);
|
|
|
|
|
|
}
|
2018-04-19 12:07:44 -07:00
|
|
|
|
}
|
2018-04-07 06:35:51 -07:00
|
|
|
|
|
2018-06-15 12:33:58 -07:00
|
|
|
|
ice->state.dirty |= (IRIS_DIRTY_BINDINGS_VS << stage);
|
2019-03-11 00:04:56 -07:00
|
|
|
|
ice->state.dirty |=
|
|
|
|
|
|
stage == MESA_SHADER_COMPUTE ? IRIS_DIRTY_COMPUTE_RESOLVES_AND_FLUSHES
|
|
|
|
|
|
: IRIS_DIRTY_RENDER_RESOLVES_AND_FLUSHES;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-21 12:22:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_tess_state() driver hook.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_set_tess_state(struct pipe_context *ctx,
|
|
|
|
|
|
const float default_outer_level[4],
|
|
|
|
|
|
const float default_inner_level[2])
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2019-03-06 20:56:37 -08:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[MESA_SHADER_TESS_CTRL];
|
2018-09-21 12:22:34 -07:00
|
|
|
|
|
|
|
|
|
|
memcpy(&ice->state.default_outer_level[0], &default_outer_level[0], 4 * sizeof(float));
|
|
|
|
|
|
memcpy(&ice->state.default_inner_level[0], &default_inner_level[0], 2 * sizeof(float));
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CONSTANTS_TCS;
|
2019-03-06 20:56:37 -08:00
|
|
|
|
shs->cbuf0_needs_upload = true;
|
2018-09-21 12:22:34 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_surface_destroy(struct pipe_context *ctx, struct pipe_surface *p_surf)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_surface *surf = (void *) p_surf;
|
|
|
|
|
|
pipe_resource_reference(&p_surf->texture, NULL);
|
|
|
|
|
|
pipe_resource_reference(&surf->surface_state.res, NULL);
|
|
|
|
|
|
free(surf);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_clip_state(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_clip_state *state)
|
|
|
|
|
|
{
|
2018-11-09 02:11:16 -08:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[MESA_SHADER_VERTEX];
|
|
|
|
|
|
|
|
|
|
|
|
memcpy(&ice->state.clip_planes, state, sizeof(*state));
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CONSTANTS_VS;
|
|
|
|
|
|
shs->cbuf0_needs_upload = true;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_polygon_stipple() driver hook.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_polygon_stipple(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_poly_stipple *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
memcpy(&ice->state.poly_stipple, state, sizeof(*state));
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_POLYGON_STIPPLE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_sample_mask() driver hook.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
2018-01-10 00:19:29 -08:00
|
|
|
|
iris_set_sample_mask(struct pipe_context *ctx, unsigned sample_mask)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-01-10 00:19:29 -08:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* We only support 16x MSAA, so we have 16 bits of sample maks.
|
|
|
|
|
|
* st/mesa may pass us 0xffffffff though, meaning "enable all samples".
|
|
|
|
|
|
*/
|
2018-07-27 16:02:09 -07:00
|
|
|
|
ice->state.sample_mask = sample_mask & 0xffff;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SAMPLE_MASK;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_scissor_states() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This corresponds to our SCISSOR_RECT state structures. It's an
|
|
|
|
|
|
* exact match, so we just store them, and memcpy them out later.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_scissor_states(struct pipe_context *ctx,
|
|
|
|
|
|
unsigned start_slot,
|
|
|
|
|
|
unsigned num_scissors,
|
2018-10-23 01:36:26 -07:00
|
|
|
|
const struct pipe_scissor_state *rects)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
|
2018-01-21 21:23:48 -08:00
|
|
|
|
for (unsigned i = 0; i < num_scissors; i++) {
|
2018-10-23 01:36:26 -07:00
|
|
|
|
if (rects[i].minx == rects[i].maxx || rects[i].miny == rects[i].maxy) {
|
|
|
|
|
|
/* If the scissor was out of bounds and got clamped to 0 width/height
|
|
|
|
|
|
* at the bounds, the subtraction of 1 from maximums could produce a
|
|
|
|
|
|
* negative number and thus not clip anything. Instead, just provide
|
|
|
|
|
|
* a min > max scissor inside the bounds, which produces the expected
|
|
|
|
|
|
* no rendering.
|
|
|
|
|
|
*/
|
|
|
|
|
|
ice->state.scissors[start_slot + i] = (struct pipe_scissor_state) {
|
|
|
|
|
|
.minx = 1, .maxx = 0, .miny = 1, .maxy = 0,
|
|
|
|
|
|
};
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ice->state.scissors[start_slot + i] = (struct pipe_scissor_state) {
|
|
|
|
|
|
.minx = rects[i].minx, .miny = rects[i].miny,
|
|
|
|
|
|
.maxx = rects[i].maxx - 1, .maxy = rects[i].maxy - 1,
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SCISSOR_RECT;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_stencil_ref() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is added to 3DSTATE_WM_DEPTH_STENCIL dynamically at draw time.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_stencil_ref(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_stencil_ref *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
memcpy(&ice->state.stencil_ref, state, sizeof(*state));
|
2018-11-07 14:23:27 +10:00
|
|
|
|
if (GEN_GEN == 8)
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_COLOR_CALC_STATE;
|
|
|
|
|
|
else
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_WM_DEPTH_STENCIL;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-23 14:33:04 -08:00
|
|
|
|
static float
|
2018-01-30 17:36:24 -08:00
|
|
|
|
viewport_extent(const struct pipe_viewport_state *state, int axis, float sign)
|
2017-12-23 14:33:04 -08:00
|
|
|
|
{
|
2018-01-30 17:36:24 -08:00
|
|
|
|
return copysignf(state->scale[axis], sign) + state->translate[axis];
|
2017-12-23 14:33:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
calculate_guardband_size(uint32_t fb_width, uint32_t fb_height,
|
|
|
|
|
|
float m00, float m11, float m30, float m31,
|
|
|
|
|
|
float *xmin, float *xmax,
|
|
|
|
|
|
float *ymin, float *ymax)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* According to the "Vertex X,Y Clamping and Quantization" section of the
|
|
|
|
|
|
* Strips and Fans documentation:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "The vertex X and Y screen-space coordinates are also /clamped/ to the
|
|
|
|
|
|
* fixed-point "guardband" range supported by the rasterization hardware"
|
|
|
|
|
|
*
|
|
|
|
|
|
* and
|
|
|
|
|
|
*
|
|
|
|
|
|
* "In almost all circumstances, if an object’s vertices are actually
|
|
|
|
|
|
* modified by this clamping (i.e., had X or Y coordinates outside of
|
|
|
|
|
|
* the guardband extent the rendered object will not match the intended
|
|
|
|
|
|
* result. Therefore software should take steps to ensure that this does
|
|
|
|
|
|
* not happen - e.g., by clipping objects such that they do not exceed
|
|
|
|
|
|
* these limits after the Drawing Rectangle is applied."
|
|
|
|
|
|
*
|
|
|
|
|
|
* I believe the fundamental restriction is that the rasterizer (in
|
|
|
|
|
|
* the SF/WM stages) have a limit on the number of pixels that can be
|
|
|
|
|
|
* rasterized. We need to ensure any coordinates beyond the rasterizer
|
|
|
|
|
|
* limit are handled by the clipper. So effectively that limit becomes
|
|
|
|
|
|
* the clipper's guardband size.
|
|
|
|
|
|
*
|
|
|
|
|
|
* It goes on to say:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "In addition, in order to be correctly rendered, objects must have a
|
|
|
|
|
|
* screenspace bounding box not exceeding 8K in the X or Y direction.
|
|
|
|
|
|
* This additional restriction must also be comprehended by software,
|
|
|
|
|
|
* i.e., enforced by use of clipping."
|
|
|
|
|
|
*
|
|
|
|
|
|
* This makes no sense. Gen7+ hardware supports 16K render targets,
|
|
|
|
|
|
* and you definitely need to be able to draw polygons that fill the
|
|
|
|
|
|
* surface. Our assumption is that the rasterizer was limited to 8K
|
|
|
|
|
|
* on Sandybridge, which only supports 8K surfaces, and it was actually
|
|
|
|
|
|
* increased to 16K on Ivybridge and later.
|
|
|
|
|
|
*
|
|
|
|
|
|
* So, limit the guardband to 16K on Gen7+ and 8K on Sandybridge.
|
|
|
|
|
|
*/
|
|
|
|
|
|
const float gb_size = GEN_GEN >= 7 ? 16384.0f : 8192.0f;
|
|
|
|
|
|
|
|
|
|
|
|
if (m00 != 0 && m11 != 0) {
|
|
|
|
|
|
/* First, we compute the screen-space render area */
|
|
|
|
|
|
const float ss_ra_xmin = MIN3( 0, m30 + m00, m30 - m00);
|
|
|
|
|
|
const float ss_ra_xmax = MAX3( fb_width, m30 + m00, m30 - m00);
|
|
|
|
|
|
const float ss_ra_ymin = MIN3( 0, m31 + m11, m31 - m11);
|
|
|
|
|
|
const float ss_ra_ymax = MAX3(fb_height, m31 + m11, m31 - m11);
|
|
|
|
|
|
|
|
|
|
|
|
/* We want the guardband to be centered on that */
|
|
|
|
|
|
const float ss_gb_xmin = (ss_ra_xmin + ss_ra_xmax) / 2 - gb_size;
|
|
|
|
|
|
const float ss_gb_xmax = (ss_ra_xmin + ss_ra_xmax) / 2 + gb_size;
|
|
|
|
|
|
const float ss_gb_ymin = (ss_ra_ymin + ss_ra_ymax) / 2 - gb_size;
|
|
|
|
|
|
const float ss_gb_ymax = (ss_ra_ymin + ss_ra_ymax) / 2 + gb_size;
|
|
|
|
|
|
|
|
|
|
|
|
/* Now we need it in native device coordinates */
|
|
|
|
|
|
const float ndc_gb_xmin = (ss_gb_xmin - m30) / m00;
|
|
|
|
|
|
const float ndc_gb_xmax = (ss_gb_xmax - m30) / m00;
|
|
|
|
|
|
const float ndc_gb_ymin = (ss_gb_ymin - m31) / m11;
|
|
|
|
|
|
const float ndc_gb_ymax = (ss_gb_ymax - m31) / m11;
|
|
|
|
|
|
|
|
|
|
|
|
/* Thanks to Y-flipping and ORIGIN_UPPER_LEFT, the Y coordinates may be
|
|
|
|
|
|
* flipped upside-down. X should be fine though.
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(ndc_gb_xmin <= ndc_gb_xmax);
|
|
|
|
|
|
*xmin = ndc_gb_xmin;
|
|
|
|
|
|
*xmax = ndc_gb_xmax;
|
|
|
|
|
|
*ymin = MIN2(ndc_gb_ymin, ndc_gb_ymax);
|
|
|
|
|
|
*ymax = MAX2(ndc_gb_ymin, ndc_gb_ymax);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
/* The viewport scales to 0, so nothing will be rendered. */
|
|
|
|
|
|
*xmin = 0.0f;
|
|
|
|
|
|
*xmax = 0.0f;
|
|
|
|
|
|
*ymin = 0.0f;
|
|
|
|
|
|
*ymax = 0.0f;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_viewport_states() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This corresponds to our SF_CLIP_VIEWPORT states. We can't calculate
|
|
|
|
|
|
* the guardband yet, as we need the framebuffer dimensions, but we can
|
|
|
|
|
|
* at least fill out the rest.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_viewport_states(struct pipe_context *ctx,
|
|
|
|
|
|
unsigned start_slot,
|
2018-06-20 15:45:48 -07:00
|
|
|
|
unsigned count,
|
2018-06-20 16:03:43 -07:00
|
|
|
|
const struct pipe_viewport_state *states)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-01-09 11:58:28 -08:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-12-17 15:17:54 -08:00
|
|
|
|
|
2018-12-03 02:02:49 -08:00
|
|
|
|
memcpy(&ice->state.viewports[start_slot], states, sizeof(*states) * count);
|
2018-01-09 11:58:28 -08:00
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SF_CL_VIEWPORT;
|
2018-07-14 01:29:33 -07:00
|
|
|
|
|
|
|
|
|
|
if (ice->state.cso_rast && (!ice->state.cso_rast->depth_clip_near ||
|
|
|
|
|
|
!ice->state.cso_rast->depth_clip_far))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_framebuffer_state() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Sets the current draw FBO, including color render targets, depth,
|
|
|
|
|
|
* and stencil buffers.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_framebuffer_state(struct pipe_context *ctx,
|
|
|
|
|
|
const struct pipe_framebuffer_state *state)
|
|
|
|
|
|
{
|
2018-01-09 14:34:15 -08:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-05-08 23:52:07 -07:00
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
|
|
|
|
|
struct isl_device *isl_dev = &screen->isl_dev;
|
2018-01-09 23:13:16 -08:00
|
|
|
|
struct pipe_framebuffer_state *cso = &ice->state.framebuffer;
|
2018-08-03 16:18:09 -07:00
|
|
|
|
struct iris_resource *zres;
|
|
|
|
|
|
struct iris_resource *stencil_res;
|
2018-01-09 14:34:15 -08:00
|
|
|
|
|
2018-07-24 10:59:10 -07:00
|
|
|
|
unsigned samples = util_framebuffer_get_num_samples(state);
|
2018-12-23 18:22:44 -08:00
|
|
|
|
unsigned layers = util_framebuffer_get_num_layers(state);
|
2018-07-24 10:59:10 -07:00
|
|
|
|
|
|
|
|
|
|
if (cso->samples != samples) {
|
2018-01-09 23:13:16 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_MULTISAMPLE;
|
|
|
|
|
|
}
|
2018-01-09 14:34:15 -08:00
|
|
|
|
|
2018-01-30 01:50:44 -08:00
|
|
|
|
if (cso->nr_cbufs != state->nr_cbufs) {
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-23 18:22:44 -08:00
|
|
|
|
if ((cso->layers == 0) != (layers == 0)) {
|
2018-06-15 16:22:58 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CLIP;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-03 02:02:49 -08:00
|
|
|
|
if (cso->width != state->width || cso->height != state->height) {
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SF_CL_VIEWPORT;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-21 00:32:04 -07:00
|
|
|
|
util_copy_framebuffer_state(cso, state);
|
2018-07-24 10:59:10 -07:00
|
|
|
|
cso->samples = samples;
|
2018-12-23 18:22:44 -08:00
|
|
|
|
cso->layers = layers;
|
2018-01-09 14:34:15 -08:00
|
|
|
|
|
2018-07-01 22:13:07 -07:00
|
|
|
|
struct iris_depth_buffer_state *cso_z = &ice->state.genx->depth_buffer;
|
2018-05-08 23:52:07 -07:00
|
|
|
|
|
|
|
|
|
|
struct isl_view view = {
|
|
|
|
|
|
.base_level = 0,
|
|
|
|
|
|
.levels = 1,
|
|
|
|
|
|
.base_array_layer = 0,
|
|
|
|
|
|
.array_len = 1,
|
|
|
|
|
|
.swizzle = ISL_SWIZZLE_IDENTITY,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-12-12 00:02:25 -08:00
|
|
|
|
struct isl_depth_stencil_hiz_emit_info info = { .view = &view };
|
2018-05-08 23:52:07 -07:00
|
|
|
|
|
2018-08-03 16:18:09 -07:00
|
|
|
|
if (cso->zsbuf) {
|
|
|
|
|
|
iris_get_depth_stencil_resources(cso->zsbuf->texture, &zres,
|
|
|
|
|
|
&stencil_res);
|
2018-05-08 23:52:07 -07:00
|
|
|
|
|
|
|
|
|
|
view.base_level = cso->zsbuf->u.tex.level;
|
|
|
|
|
|
view.base_array_layer = cso->zsbuf->u.tex.first_layer;
|
|
|
|
|
|
view.array_len =
|
|
|
|
|
|
cso->zsbuf->u.tex.last_layer - cso->zsbuf->u.tex.first_layer + 1;
|
|
|
|
|
|
|
2018-08-03 16:18:09 -07:00
|
|
|
|
if (zres) {
|
|
|
|
|
|
view.usage |= ISL_SURF_USAGE_DEPTH_BIT;
|
2018-05-08 23:52:07 -07:00
|
|
|
|
|
2018-08-03 16:18:09 -07:00
|
|
|
|
info.depth_surf = &zres->surf;
|
|
|
|
|
|
info.depth_address = zres->bo->gtt_offset;
|
2018-12-12 00:02:25 -08:00
|
|
|
|
info.mocs = mocs(zres->bo);
|
2018-08-03 16:18:09 -07:00
|
|
|
|
|
|
|
|
|
|
view.format = zres->surf.format;
|
2018-12-10 00:35:48 -08:00
|
|
|
|
|
|
|
|
|
|
if (iris_resource_level_has_hiz(zres, view.base_level)) {
|
|
|
|
|
|
info.hiz_usage = ISL_AUX_USAGE_HIZ;
|
|
|
|
|
|
info.hiz_surf = &zres->aux.surf;
|
|
|
|
|
|
info.hiz_address = zres->aux.bo->gtt_offset;
|
|
|
|
|
|
}
|
2018-05-08 23:52:07 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-08-03 16:18:09 -07:00
|
|
|
|
if (stencil_res) {
|
|
|
|
|
|
view.usage |= ISL_SURF_USAGE_STENCIL_BIT;
|
|
|
|
|
|
info.stencil_surf = &stencil_res->surf;
|
|
|
|
|
|
info.stencil_address = stencil_res->bo->gtt_offset;
|
2018-12-12 00:02:25 -08:00
|
|
|
|
if (!zres) {
|
2018-08-03 16:18:09 -07:00
|
|
|
|
view.format = stencil_res->surf.format;
|
2018-12-12 00:02:25 -08:00
|
|
|
|
info.mocs = mocs(stencil_res->bo);
|
|
|
|
|
|
}
|
2018-08-03 16:18:09 -07:00
|
|
|
|
}
|
2018-05-08 23:52:07 -07:00
|
|
|
|
}
|
2018-01-09 23:30:21 -08:00
|
|
|
|
|
2018-05-08 23:52:07 -07:00
|
|
|
|
isl_emit_depth_stencil_hiz_s(isl_dev, cso_z->packets, &info);
|
|
|
|
|
|
|
2018-07-31 10:33:35 +10:00
|
|
|
|
/* Make a null surface for unbound buffers */
|
|
|
|
|
|
void *null_surf_map =
|
|
|
|
|
|
upload_state(ice->state.surface_uploader, &ice->state.null_fb,
|
|
|
|
|
|
4 * GENX(RENDER_SURFACE_STATE_length), 64);
|
2018-11-05 23:16:14 -08:00
|
|
|
|
isl_null_fill_state(&screen->isl_dev, null_surf_map,
|
|
|
|
|
|
isl_extent3d(MAX2(cso->width, 1),
|
|
|
|
|
|
MAX2(cso->height, 1),
|
|
|
|
|
|
cso->layers ? cso->layers : 1));
|
2018-09-11 01:09:27 -07:00
|
|
|
|
ice->state.null_fb.offset +=
|
|
|
|
|
|
iris_bo_offset_from_base_address(iris_resource_bo(ice->state.null_fb.res));
|
2018-07-31 10:33:35 +10:00
|
|
|
|
|
2018-05-08 23:52:07 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_DEPTH_BUFFER;
|
2018-06-15 12:33:58 -07:00
|
|
|
|
|
|
|
|
|
|
/* Render target change */
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BINDINGS_FS;
|
2018-07-16 16:21:22 -07:00
|
|
|
|
|
2019-03-11 00:04:56 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_RENDER_RESOLVES_AND_FLUSHES;
|
|
|
|
|
|
|
2018-07-16 16:21:22 -07:00
|
|
|
|
ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_FRAMEBUFFER];
|
2018-09-18 11:04:44 -07:00
|
|
|
|
|
|
|
|
|
|
#if GEN_GEN == 11
|
|
|
|
|
|
// XXX: we may want to flag IRIS_DIRTY_MULTISAMPLE (or SAMPLE_MASK?)
|
|
|
|
|
|
// XXX: see commit 979fc1bc9bcc64027ff2cfafd285676f31b930a6
|
|
|
|
|
|
|
|
|
|
|
|
/* The PIPE_CONTROL command description says:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Whenever a Binding Table Index (BTI) used by a Render Target Message
|
|
|
|
|
|
* points to a different RENDER_SURFACE_STATE, SW must issue a Render
|
|
|
|
|
|
* Target Cache Flush by enabling this bit. When render target flush
|
|
|
|
|
|
* is set due to new association of BTI, PS Scoreboard Stall bit must
|
|
|
|
|
|
* be set in this packet."
|
|
|
|
|
|
*/
|
|
|
|
|
|
// XXX: does this need to happen at 3DSTATE_BTP_PS time?
|
2018-11-20 09:00:22 -08:00
|
|
|
|
iris_emit_pipe_control_flush(&ice->batches[IRIS_BATCH_RENDER],
|
2018-09-18 11:04:44 -07:00
|
|
|
|
PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD);
|
|
|
|
|
|
#endif
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
static void
|
|
|
|
|
|
upload_ubo_surf_state(struct iris_context *ice,
|
|
|
|
|
|
struct iris_const_buffer *cbuf,
|
|
|
|
|
|
unsigned buffer_size)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct pipe_context *ctx = &ice->ctx;
|
|
|
|
|
|
struct iris_screen *screen = (struct iris_screen *) ctx->screen;
|
|
|
|
|
|
|
|
|
|
|
|
// XXX: these are not retained forever, use a separate uploader?
|
|
|
|
|
|
void *map =
|
|
|
|
|
|
upload_state(ice->state.surface_uploader, &cbuf->surface_state,
|
|
|
|
|
|
4 * GENX(RENDER_SURFACE_STATE_length), 64);
|
|
|
|
|
|
if (!unlikely(map)) {
|
|
|
|
|
|
pipe_resource_reference(&cbuf->data.res, NULL);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_resource *res = (void *) cbuf->data.res;
|
|
|
|
|
|
struct iris_bo *surf_bo = iris_resource_bo(cbuf->surface_state.res);
|
|
|
|
|
|
cbuf->surface_state.offset += iris_bo_offset_from_base_address(surf_bo);
|
|
|
|
|
|
|
|
|
|
|
|
isl_buffer_fill_state(&screen->isl_dev, map,
|
|
|
|
|
|
.address = res->bo->gtt_offset + cbuf->data.offset,
|
|
|
|
|
|
.size_B = MIN2(buffer_size,
|
|
|
|
|
|
res->bo->size - cbuf->data.offset),
|
|
|
|
|
|
.format = ISL_FORMAT_R32G32B32A32_FLOAT,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
.swizzle = ISL_SWIZZLE_IDENTITY,
|
2018-11-08 23:10:46 -08:00
|
|
|
|
.stride_B = 1,
|
2018-12-12 00:02:25 -08:00
|
|
|
|
.mocs = mocs(res->bo))
|
2018-11-08 23:10:46 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_constant_buffer() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This uploads any constant data in user buffers, and references
|
|
|
|
|
|
* any UBO resources containing constant data.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_constant_buffer(struct pipe_context *ctx,
|
2018-02-09 14:21:54 -08:00
|
|
|
|
enum pipe_shader_type p_stage, unsigned index,
|
2018-06-06 02:16:52 -07:00
|
|
|
|
const struct pipe_constant_buffer *input)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-02-09 14:21:54 -08:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
gl_shader_stage stage = stage_from_pipe(p_stage);
|
2018-08-18 23:39:48 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-06-06 14:14:31 -07:00
|
|
|
|
struct iris_const_buffer *cbuf = &shs->constbuf[index];
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
if (input && input->buffer) {
|
|
|
|
|
|
assert(index > 0);
|
2018-06-06 14:37:38 -07:00
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
pipe_resource_reference(&cbuf->data.res, input->buffer);
|
|
|
|
|
|
cbuf->data.offset = input->buffer_offset;
|
2018-06-06 14:37:38 -07:00
|
|
|
|
|
2018-11-21 00:38:49 -08:00
|
|
|
|
struct iris_resource *res = (void *) cbuf->data.res;
|
|
|
|
|
|
res->bind_history |= PIPE_BIND_CONSTANT_BUFFER;
|
|
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
upload_ubo_surf_state(ice, cbuf, input->buffer_size);
|
2018-06-06 02:16:52 -07:00
|
|
|
|
} else {
|
2018-06-28 00:57:49 -07:00
|
|
|
|
pipe_resource_reference(&cbuf->data.res, NULL);
|
|
|
|
|
|
pipe_resource_reference(&cbuf->surface_state.res, NULL);
|
2018-06-06 02:16:52 -07:00
|
|
|
|
}
|
2018-06-15 12:33:58 -07:00
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
if (index == 0) {
|
|
|
|
|
|
if (input)
|
|
|
|
|
|
memcpy(&shs->cbuf0, input, sizeof(shs->cbuf0));
|
|
|
|
|
|
else
|
|
|
|
|
|
memset(&shs->cbuf0, 0, sizeof(shs->cbuf0));
|
|
|
|
|
|
|
|
|
|
|
|
shs->cbuf0_needs_upload = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-15 16:22:58 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_CONSTANTS_VS << stage;
|
2018-06-15 12:33:58 -07:00
|
|
|
|
// XXX: maybe not necessary all the time...?
|
2018-07-25 14:39:02 -07:00
|
|
|
|
// XXX: we need 3DS_BTP to commit these changes, and if we fell back to
|
|
|
|
|
|
// XXX: pull model we may need actual new bindings...
|
2018-06-15 12:33:58 -07:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BINDINGS_VS << stage;
|
2018-02-09 14:21:54 -08:00
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
static void
|
|
|
|
|
|
upload_uniforms(struct iris_context *ice,
|
|
|
|
|
|
gl_shader_stage stage)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
struct iris_const_buffer *cbuf = &shs->constbuf[0];
|
2018-11-08 23:19:53 -08:00
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
|
|
|
|
|
|
2018-11-09 02:04:23 -08:00
|
|
|
|
unsigned upload_size = shader->num_system_values * sizeof(uint32_t) +
|
2018-11-09 00:51:58 -08:00
|
|
|
|
shs->cbuf0.buffer_size;
|
|
|
|
|
|
|
|
|
|
|
|
if (upload_size == 0)
|
|
|
|
|
|
return;
|
2018-11-08 23:19:53 -08:00
|
|
|
|
|
|
|
|
|
|
uint32_t *map =
|
|
|
|
|
|
upload_state(ice->ctx.const_uploader, &cbuf->data, upload_size, 64);
|
|
|
|
|
|
|
2018-11-09 02:04:23 -08:00
|
|
|
|
for (int i = 0; i < shader->num_system_values; i++) {
|
|
|
|
|
|
uint32_t sysval = shader->system_values[i];
|
2018-11-08 23:19:53 -08:00
|
|
|
|
uint32_t value = 0;
|
|
|
|
|
|
|
2018-11-30 02:27:07 -08:00
|
|
|
|
if (BRW_PARAM_DOMAIN(sysval) == BRW_PARAM_DOMAIN_IMAGE) {
|
|
|
|
|
|
unsigned img = BRW_PARAM_IMAGE_IDX(sysval);
|
|
|
|
|
|
unsigned offset = BRW_PARAM_IMAGE_OFFSET(sysval);
|
|
|
|
|
|
struct brw_image_param *param = &shs->image[img].param;
|
|
|
|
|
|
|
|
|
|
|
|
assert(offset < sizeof(struct brw_image_param));
|
|
|
|
|
|
value = ((uint32_t *) param)[offset];
|
|
|
|
|
|
} else if (sysval == BRW_PARAM_BUILTIN_ZERO) {
|
|
|
|
|
|
value = 0;
|
|
|
|
|
|
} else if (BRW_PARAM_BUILTIN_IS_CLIP_PLANE(sysval)) {
|
2018-11-09 02:11:16 -08:00
|
|
|
|
int plane = BRW_PARAM_BUILTIN_CLIP_PLANE_IDX(sysval);
|
|
|
|
|
|
int comp = BRW_PARAM_BUILTIN_CLIP_PLANE_COMP(sysval);
|
|
|
|
|
|
value = fui(ice->state.clip_planes.ucp[plane][comp]);
|
2018-12-04 14:11:51 -08:00
|
|
|
|
} else if (sysval == BRW_PARAM_BUILTIN_PATCH_VERTICES_IN) {
|
|
|
|
|
|
if (stage == MESA_SHADER_TESS_CTRL) {
|
|
|
|
|
|
value = ice->state.vertices_per_patch;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
assert(stage == MESA_SHADER_TESS_EVAL);
|
|
|
|
|
|
const struct shader_info *tcs_info =
|
|
|
|
|
|
iris_get_shader_info(ice, MESA_SHADER_TESS_CTRL);
|
2019-03-07 20:14:59 -08:00
|
|
|
|
if (tcs_info)
|
|
|
|
|
|
value = tcs_info->tess.tcs_vertices_out;
|
|
|
|
|
|
else
|
|
|
|
|
|
value = ice->state.vertices_per_patch;
|
2018-12-04 14:11:51 -08:00
|
|
|
|
}
|
2019-03-06 20:56:37 -08:00
|
|
|
|
} else if (sysval >= BRW_PARAM_BUILTIN_TESS_LEVEL_OUTER_X &&
|
|
|
|
|
|
sysval <= BRW_PARAM_BUILTIN_TESS_LEVEL_OUTER_W) {
|
|
|
|
|
|
unsigned i = sysval - BRW_PARAM_BUILTIN_TESS_LEVEL_OUTER_X;
|
|
|
|
|
|
value = fui(ice->state.default_outer_level[i]);
|
|
|
|
|
|
} else if (sysval == BRW_PARAM_BUILTIN_TESS_LEVEL_INNER_X) {
|
|
|
|
|
|
value = fui(ice->state.default_inner_level[0]);
|
|
|
|
|
|
} else if (sysval == BRW_PARAM_BUILTIN_TESS_LEVEL_INNER_Y) {
|
|
|
|
|
|
value = fui(ice->state.default_inner_level[1]);
|
2018-11-09 02:11:16 -08:00
|
|
|
|
} else {
|
|
|
|
|
|
assert(!"unhandled system value");
|
|
|
|
|
|
}
|
2018-11-08 23:19:53 -08:00
|
|
|
|
|
|
|
|
|
|
*map++ = value;
|
|
|
|
|
|
}
|
2018-11-08 23:10:46 -08:00
|
|
|
|
|
|
|
|
|
|
if (shs->cbuf0.user_buffer) {
|
2018-11-09 00:51:58 -08:00
|
|
|
|
memcpy(map, shs->cbuf0.user_buffer, shs->cbuf0.buffer_size);
|
2018-11-08 23:10:46 -08:00
|
|
|
|
}
|
2018-11-09 00:51:58 -08:00
|
|
|
|
|
|
|
|
|
|
upload_ubo_surf_state(ice, cbuf, upload_size);
|
2018-11-08 23:10:46 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_shader_buffers() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This binds SSBOs and ABOs. Unfortunately, we need to stream out
|
|
|
|
|
|
* SURFACE_STATE here, as the buffer offset may change each time.
|
|
|
|
|
|
*/
|
2018-07-24 15:54:00 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_shader_buffers(struct pipe_context *ctx,
|
|
|
|
|
|
enum pipe_shader_type p_stage,
|
|
|
|
|
|
unsigned start_slot, unsigned count,
|
2019-02-27 21:54:47 -05:00
|
|
|
|
const struct pipe_shader_buffer *buffers,
|
|
|
|
|
|
unsigned writable_bitmask)
|
2018-07-24 15:54:00 -07:00
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
|
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
|
|
|
|
|
gl_shader_stage stage = stage_from_pipe(p_stage);
|
2018-08-18 23:39:48 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-07-24 15:54:00 -07:00
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
2018-07-24 20:57:02 -07:00
|
|
|
|
if (buffers && buffers[i].buffer) {
|
|
|
|
|
|
const struct pipe_shader_buffer *buffer = &buffers[i];
|
2018-07-24 15:54:00 -07:00
|
|
|
|
struct iris_resource *res = (void *) buffer->buffer;
|
|
|
|
|
|
pipe_resource_reference(&shs->ssbo[start_slot + i], &res->base);
|
|
|
|
|
|
|
2018-11-21 00:38:49 -08:00
|
|
|
|
res->bind_history |= PIPE_BIND_SHADER_BUFFER;
|
|
|
|
|
|
|
2018-07-24 15:54:00 -07:00
|
|
|
|
// XXX: these are not retained forever, use a separate uploader?
|
|
|
|
|
|
void *map =
|
|
|
|
|
|
upload_state(ice->state.surface_uploader,
|
|
|
|
|
|
&shs->ssbo_surface_state[start_slot + i],
|
|
|
|
|
|
4 * GENX(RENDER_SURFACE_STATE_length), 64);
|
|
|
|
|
|
if (!unlikely(map)) {
|
|
|
|
|
|
pipe_resource_reference(&shs->ssbo[start_slot + i], NULL);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_bo *surf_state_bo =
|
|
|
|
|
|
iris_resource_bo(shs->ssbo_surface_state[start_slot + i].res);
|
|
|
|
|
|
shs->ssbo_surface_state[start_slot + i].offset +=
|
|
|
|
|
|
iris_bo_offset_from_base_address(surf_state_bo);
|
|
|
|
|
|
|
|
|
|
|
|
isl_buffer_fill_state(&screen->isl_dev, map,
|
|
|
|
|
|
.address =
|
|
|
|
|
|
res->bo->gtt_offset + buffer->buffer_offset,
|
2018-10-22 14:35:33 -07:00
|
|
|
|
.size_B =
|
|
|
|
|
|
MIN2(buffer->buffer_size,
|
|
|
|
|
|
res->bo->size - buffer->buffer_offset),
|
2018-07-24 15:54:00 -07:00
|
|
|
|
.format = ISL_FORMAT_RAW,
|
2019-02-28 01:13:33 -08:00
|
|
|
|
.swizzle = ISL_SWIZZLE_IDENTITY,
|
2018-07-24 15:54:00 -07:00
|
|
|
|
.stride_B = 1,
|
2018-12-12 00:02:25 -08:00
|
|
|
|
.mocs = mocs(res->bo));
|
2018-07-24 15:54:00 -07:00
|
|
|
|
} else {
|
|
|
|
|
|
pipe_resource_reference(&shs->ssbo[start_slot + i], NULL);
|
|
|
|
|
|
pipe_resource_reference(&shs->ssbo_surface_state[start_slot + i].res,
|
|
|
|
|
|
NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_BINDINGS_VS << stage;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_delete_state(struct pipe_context *ctx, void *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
free(state);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_vertex_buffers() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This translates pipe_vertex_buffer to our 3DSTATE_VERTEX_BUFFERS packet.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_vertex_buffers(struct pipe_context *ctx,
|
|
|
|
|
|
unsigned start_slot, unsigned count,
|
|
|
|
|
|
const struct pipe_vertex_buffer *buffers)
|
|
|
|
|
|
{
|
2018-01-10 00:19:29 -08:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-12-04 16:38:14 -08:00
|
|
|
|
struct iris_genx_state *genx = ice->state.genx;
|
2018-01-21 13:14:49 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
ice->state.bound_vertex_buffers &= ~u_bit_consecutive64(start_slot, count);
|
2018-01-21 13:14:49 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
|
|
|
|
|
const struct pipe_vertex_buffer *buffer = buffers ? &buffers[i] : NULL;
|
|
|
|
|
|
struct iris_vertex_buffer_state *state =
|
|
|
|
|
|
&genx->vertex_buffers[start_slot + i];
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
if (!buffer) {
|
|
|
|
|
|
pipe_resource_reference(&state->resource, NULL);
|
|
|
|
|
|
continue;
|
2018-06-18 00:23:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-04-04 15:04:50 +03:00
|
|
|
|
/* We may see user buffers that are NULL bindings. */
|
|
|
|
|
|
assert(!(buffer->is_user_buffer && buffer->buffer.user != NULL));
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
pipe_resource_reference(&state->resource, buffer->buffer.resource);
|
|
|
|
|
|
struct iris_resource *res = (void *) state->resource;
|
2018-01-21 13:14:49 -08:00
|
|
|
|
|
2019-01-06 20:22:15 -08:00
|
|
|
|
if (res) {
|
|
|
|
|
|
ice->state.bound_vertex_buffers |= 1ull << (start_slot + i);
|
2018-11-21 00:38:49 -08:00
|
|
|
|
res->bind_history |= PIPE_BIND_VERTEX_BUFFER;
|
2019-01-06 20:22:15 -08:00
|
|
|
|
}
|
2018-11-21 00:38:49 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
iris_pack_state(GENX(VERTEX_BUFFER_STATE), state->state, vb) {
|
2017-11-23 23:15:14 -08:00
|
|
|
|
vb.VertexBufferIndex = start_slot + i;
|
|
|
|
|
|
vb.AddressModifyEnable = true;
|
2018-12-04 16:38:14 -08:00
|
|
|
|
vb.BufferPitch = buffer->stride;
|
2018-11-02 14:54:35 -07:00
|
|
|
|
if (res) {
|
2019-03-18 00:51:18 -07:00
|
|
|
|
vb.BufferSize = res->bo->size - (int) buffer->buffer_offset;
|
2018-11-02 14:54:35 -07:00
|
|
|
|
vb.BufferStartingAddress =
|
2018-12-05 03:30:42 -08:00
|
|
|
|
ro_bo(NULL, res->bo->gtt_offset + (int) buffer->buffer_offset);
|
2018-12-12 00:02:25 -08:00
|
|
|
|
vb.MOCS = mocs(res->bo);
|
2018-11-02 14:54:35 -07:00
|
|
|
|
} else {
|
|
|
|
|
|
vb.NullVertexBuffer = true;
|
|
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-10 00:19:29 -08:00
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_VERTEX_BUFFERS;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Gallium CSO for vertex elements.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
struct iris_vertex_element_state {
|
|
|
|
|
|
uint32_t vertex_elements[1 + 33 * GENX(VERTEX_ELEMENT_STATE_length)];
|
2018-06-07 01:45:47 -07:00
|
|
|
|
uint32_t vf_instancing[33 * GENX(3DSTATE_VF_INSTANCING_length)];
|
2019-02-27 20:44:27 +01:00
|
|
|
|
uint32_t edgeflag_ve[GENX(VERTEX_ELEMENT_STATE_length)];
|
|
|
|
|
|
uint32_t edgeflag_vfi[GENX(3DSTATE_VF_INSTANCING_length)];
|
2017-11-23 23:15:14 -08:00
|
|
|
|
unsigned count;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_vertex_elements() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This translates pipe_vertex_element to our 3DSTATE_VERTEX_ELEMENTS
|
2019-02-27 20:44:27 +01:00
|
|
|
|
* and 3DSTATE_VF_INSTANCING commands. The vertex_elements and vf_instancing
|
|
|
|
|
|
* arrays are ready to be emitted at draw time if no EdgeFlag or SGVs are
|
|
|
|
|
|
* needed. In these cases we will need information available at draw time.
|
|
|
|
|
|
* We setup edgeflag_ve and edgeflag_vfi as alternatives last
|
|
|
|
|
|
* 3DSTATE_VERTEX_ELEMENT and 3DSTATE_VF_INSTANCING that can be used at
|
|
|
|
|
|
* draw time if we detect that EdgeFlag is needed by the Vertex Shader.
|
2018-07-30 23:49:34 -07:00
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void *
|
|
|
|
|
|
iris_create_vertex_elements(struct pipe_context *ctx,
|
|
|
|
|
|
unsigned count,
|
|
|
|
|
|
const struct pipe_vertex_element *state)
|
|
|
|
|
|
{
|
2018-10-07 20:31:09 -07:00
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
|
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
struct iris_vertex_element_state *cso =
|
|
|
|
|
|
malloc(sizeof(struct iris_vertex_element_state));
|
|
|
|
|
|
|
2018-07-18 16:27:07 -07:00
|
|
|
|
cso->count = count;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-04-26 23:42:10 -07:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_VERTEX_ELEMENTS), cso->vertex_elements, ve) {
|
2018-07-18 16:27:07 -07:00
|
|
|
|
ve.DWordLength =
|
|
|
|
|
|
1 + GENX(VERTEX_ELEMENT_STATE_length) * MAX2(count, 1) - 2;
|
2018-04-26 23:42:10 -07:00
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
|
|
|
|
|
uint32_t *ve_pack_dest = &cso->vertex_elements[1];
|
2018-06-07 01:45:47 -07:00
|
|
|
|
uint32_t *vfi_pack_dest = cso->vf_instancing;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
|
2018-06-26 13:32:19 -07:00
|
|
|
|
if (count == 0) {
|
|
|
|
|
|
iris_pack_state(GENX(VERTEX_ELEMENT_STATE), ve_pack_dest, ve) {
|
|
|
|
|
|
ve.Valid = true;
|
|
|
|
|
|
ve.SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT;
|
|
|
|
|
|
ve.Component0Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component1Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component2Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component3Control = VFCOMP_STORE_1_FP;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_VF_INSTANCING), vfi_pack_dest, vi) {
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
for (int i = 0; i < count; i++) {
|
2018-10-07 20:31:09 -07:00
|
|
|
|
const struct iris_format_info fmt =
|
|
|
|
|
|
iris_format_for_usage(devinfo, state[i].src_format, 0);
|
2018-01-30 02:44:25 -08:00
|
|
|
|
unsigned comp[4] = { VFCOMP_STORE_SRC, VFCOMP_STORE_SRC,
|
|
|
|
|
|
VFCOMP_STORE_SRC, VFCOMP_STORE_SRC };
|
|
|
|
|
|
|
2018-10-07 20:31:09 -07:00
|
|
|
|
switch (isl_format_get_num_channels(fmt.fmt)) {
|
2019-03-19 11:30:58 +02:00
|
|
|
|
case 0: comp[0] = VFCOMP_STORE_0; /* fallthrough */
|
|
|
|
|
|
case 1: comp[1] = VFCOMP_STORE_0; /* fallthrough */
|
|
|
|
|
|
case 2: comp[2] = VFCOMP_STORE_0; /* fallthrough */
|
2018-01-30 02:44:25 -08:00
|
|
|
|
case 3:
|
2018-10-07 20:31:09 -07:00
|
|
|
|
comp[3] = isl_format_has_int_channel(fmt.fmt) ? VFCOMP_STORE_1_INT
|
|
|
|
|
|
: VFCOMP_STORE_1_FP;
|
2018-01-30 02:44:25 -08:00
|
|
|
|
break;
|
|
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
iris_pack_state(GENX(VERTEX_ELEMENT_STATE), ve_pack_dest, ve) {
|
2019-02-27 20:44:27 +01:00
|
|
|
|
ve.EdgeFlagEnable = false;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ve.VertexBufferIndex = state[i].vertex_buffer_index;
|
|
|
|
|
|
ve.Valid = true;
|
|
|
|
|
|
ve.SourceElementOffset = state[i].src_offset;
|
2018-10-07 20:31:09 -07:00
|
|
|
|
ve.SourceElementFormat = fmt.fmt;
|
2018-01-30 02:44:25 -08:00
|
|
|
|
ve.Component0Control = comp[0];
|
|
|
|
|
|
ve.Component1Control = comp[1];
|
|
|
|
|
|
ve.Component2Control = comp[2];
|
|
|
|
|
|
ve.Component3Control = comp[3];
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-07 01:45:47 -07:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_VF_INSTANCING), vfi_pack_dest, vi) {
|
2017-11-23 23:15:14 -08:00
|
|
|
|
vi.VertexElementIndex = i;
|
|
|
|
|
|
vi.InstancingEnable = state[i].instance_divisor > 0;
|
|
|
|
|
|
vi.InstanceDataStepRate = state[i].instance_divisor;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ve_pack_dest += GENX(VERTEX_ELEMENT_STATE_length);
|
2018-06-07 01:45:47 -07:00
|
|
|
|
vfi_pack_dest += GENX(3DSTATE_VF_INSTANCING_length);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-27 20:44:27 +01:00
|
|
|
|
/* An alternative version of the last VE and VFI is stored so it
|
|
|
|
|
|
* can be used at draw time in case Vertex Shader uses EdgeFlag
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (count) {
|
|
|
|
|
|
const unsigned edgeflag_index = count - 1;
|
|
|
|
|
|
const struct iris_format_info fmt =
|
|
|
|
|
|
iris_format_for_usage(devinfo, state[edgeflag_index].src_format, 0);
|
|
|
|
|
|
iris_pack_state(GENX(VERTEX_ELEMENT_STATE), cso->edgeflag_ve, ve) {
|
|
|
|
|
|
ve.EdgeFlagEnable = true ;
|
|
|
|
|
|
ve.VertexBufferIndex = state[edgeflag_index].vertex_buffer_index;
|
|
|
|
|
|
ve.Valid = true;
|
|
|
|
|
|
ve.SourceElementOffset = state[edgeflag_index].src_offset;
|
|
|
|
|
|
ve.SourceElementFormat = fmt.fmt;
|
|
|
|
|
|
ve.Component0Control = VFCOMP_STORE_SRC;
|
|
|
|
|
|
ve.Component1Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component2Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component3Control = VFCOMP_STORE_0;
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_VF_INSTANCING), cso->edgeflag_vfi, vi) {
|
|
|
|
|
|
/* The vi.VertexElementIndex of the EdgeFlag Vertex Element is filled
|
|
|
|
|
|
* at draw time, as it should change if SGVs are emitted.
|
|
|
|
|
|
*/
|
|
|
|
|
|
vi.InstancingEnable = state[edgeflag_index].instance_divisor > 0;
|
|
|
|
|
|
vi.InstanceDataStepRate = state[edgeflag_index].instance_divisor;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
return cso;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->bind_vertex_elements_state() driver hook.
|
|
|
|
|
|
*/
|
2018-01-09 21:29:09 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_bind_vertex_elements_state(struct pipe_context *ctx, void *state)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-07-18 09:23:24 -07:00
|
|
|
|
struct iris_vertex_element_state *old_cso = ice->state.cso_vertex_elements;
|
|
|
|
|
|
struct iris_vertex_element_state *new_cso = state;
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* 3DSTATE_VF_SGVs overrides the last VE, so if the count is changing,
|
|
|
|
|
|
* we need to re-emit it to ensure we're overriding the right one.
|
|
|
|
|
|
*/
|
2018-07-18 09:23:24 -07:00
|
|
|
|
if (new_cso && cso_changed(count))
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_VF_SGVS;
|
2018-01-09 21:29:09 -08:00
|
|
|
|
|
|
|
|
|
|
ice->state.cso_vertex_elements = state;
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_VERTEX_ELEMENTS;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->create_stream_output_target() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Target" here refers to a destination buffer. We translate this into
|
|
|
|
|
|
* a 3DSTATE_SO_BUFFER packet. We can handle most fields, but don't yet
|
|
|
|
|
|
* know which buffer this represents, or whether we ought to zero the
|
|
|
|
|
|
* write-offsets, or append. Those are handled in the set() hook.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static struct pipe_stream_output_target *
|
|
|
|
|
|
iris_create_stream_output_target(struct pipe_context *ctx,
|
2018-11-21 00:38:49 -08:00
|
|
|
|
struct pipe_resource *p_res,
|
2017-11-23 23:15:14 -08:00
|
|
|
|
unsigned buffer_offset,
|
|
|
|
|
|
unsigned buffer_size)
|
|
|
|
|
|
{
|
2018-11-21 00:38:49 -08:00
|
|
|
|
struct iris_resource *res = (void *) p_res;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
struct iris_stream_output_target *cso = calloc(1, sizeof(*cso));
|
|
|
|
|
|
if (!cso)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
2018-11-21 00:38:49 -08:00
|
|
|
|
res->bind_history |= PIPE_BIND_STREAM_OUTPUT;
|
|
|
|
|
|
|
2018-06-29 12:58:31 -07:00
|
|
|
|
pipe_reference_init(&cso->base.reference, 1);
|
2018-11-21 00:38:49 -08:00
|
|
|
|
pipe_resource_reference(&cso->base.buffer, p_res);
|
2018-06-29 12:58:31 -07:00
|
|
|
|
cso->base.buffer_offset = buffer_offset;
|
|
|
|
|
|
cso->base.buffer_size = buffer_size;
|
|
|
|
|
|
cso->base.context = ctx;
|
|
|
|
|
|
|
2018-12-05 01:16:23 -08:00
|
|
|
|
upload_state(ctx->stream_uploader, &cso->offset, sizeof(uint32_t), 4);
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
|
|
|
|
|
return &cso->base;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_stream_output_target_destroy(struct pipe_context *ctx,
|
2018-06-29 12:58:31 -07:00
|
|
|
|
struct pipe_stream_output_target *state)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-06-29 12:58:31 -07:00
|
|
|
|
struct iris_stream_output_target *cso = (void *) state;
|
|
|
|
|
|
|
|
|
|
|
|
pipe_resource_reference(&cso->base.buffer, NULL);
|
|
|
|
|
|
pipe_resource_reference(&cso->offset.res, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
free(cso);
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* The pipe->set_stream_output_targets() driver hook.
|
|
|
|
|
|
*
|
|
|
|
|
|
* At this point, we know which targets are bound to a particular index,
|
|
|
|
|
|
* and also whether we want to append or start over. We can finish the
|
|
|
|
|
|
* 3DSTATE_SO_BUFFER packets we started earlier.
|
|
|
|
|
|
*/
|
2017-11-23 23:15:14 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_set_stream_output_targets(struct pipe_context *ctx,
|
|
|
|
|
|
unsigned num_targets,
|
|
|
|
|
|
struct pipe_stream_output_target **targets,
|
|
|
|
|
|
const unsigned *offsets)
|
|
|
|
|
|
{
|
2018-06-29 12:58:31 -07:00
|
|
|
|
struct iris_context *ice = (struct iris_context *) ctx;
|
2018-07-11 12:45:19 -07:00
|
|
|
|
struct iris_genx_state *genx = ice->state.genx;
|
|
|
|
|
|
uint32_t *so_buffers = genx->so_buffers;
|
|
|
|
|
|
|
|
|
|
|
|
const bool active = num_targets > 0;
|
|
|
|
|
|
if (ice->state.streamout_active != active) {
|
|
|
|
|
|
ice->state.streamout_active = active;
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_STREAMOUT;
|
2018-10-24 14:45:00 -07:00
|
|
|
|
|
|
|
|
|
|
/* We only emit 3DSTATE_SO_DECL_LIST when streamout is active, because
|
|
|
|
|
|
* it's a non-pipelined command. If we're switching streamout on, we
|
|
|
|
|
|
* may have missed emitting it earlier, so do so now. (We're already
|
|
|
|
|
|
* taking a stall to update 3DSTATE_SO_BUFFERS anyway...)
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (active)
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SO_DECL_LIST;
|
2018-07-11 12:45:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-11 17:05:10 -07:00
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
|
pipe_so_target_reference(&ice->state.so_target[i],
|
|
|
|
|
|
i < num_targets ? targets[i] : NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-11 12:45:19 -07:00
|
|
|
|
/* No need to update 3DSTATE_SO_BUFFER unless SOL is active. */
|
|
|
|
|
|
if (!active)
|
|
|
|
|
|
return;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < 4; i++,
|
|
|
|
|
|
so_buffers += GENX(3DSTATE_SO_BUFFER_length)) {
|
|
|
|
|
|
|
|
|
|
|
|
if (i >= num_targets || !targets[i]) {
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_SO_BUFFER), so_buffers, sob)
|
|
|
|
|
|
sob.SOBufferIndex = i;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-12 22:23:50 -07:00
|
|
|
|
struct iris_stream_output_target *tgt = (void *) targets[i];
|
2018-12-05 00:55:45 -08:00
|
|
|
|
struct iris_resource *res = (void *) tgt->base.buffer;
|
2018-09-12 22:23:50 -07:00
|
|
|
|
|
2018-06-29 12:58:31 -07:00
|
|
|
|
/* Note that offsets[i] will either be 0, causing us to zero
|
|
|
|
|
|
* the value in the buffer, or 0xFFFFFFFF, which happens to mean
|
|
|
|
|
|
* "continue appending at the existing offset."
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(offsets[i] == 0 || offsets[i] == 0xFFFFFFFF);
|
|
|
|
|
|
|
2018-12-05 00:55:45 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_SO_BUFFER), so_buffers, sob) {
|
|
|
|
|
|
sob.SurfaceBaseAddress =
|
|
|
|
|
|
rw_bo(NULL, res->bo->gtt_offset + tgt->base.buffer_offset);
|
|
|
|
|
|
sob.SOBufferEnable = true;
|
|
|
|
|
|
sob.StreamOffsetWriteEnable = true;
|
|
|
|
|
|
sob.StreamOutputBufferOffsetAddressEnable = true;
|
2018-12-12 00:02:25 -08:00
|
|
|
|
sob.MOCS = mocs(res->bo);
|
2018-12-05 00:55:45 -08:00
|
|
|
|
|
|
|
|
|
|
sob.SurfaceSize = MAX2(tgt->base.buffer_size / 4, 1) - 1;
|
|
|
|
|
|
|
|
|
|
|
|
sob.SOBufferIndex = i;
|
|
|
|
|
|
sob.StreamOffset = offsets[i];
|
|
|
|
|
|
sob.StreamOutputBufferOffsetAddress =
|
|
|
|
|
|
rw_bo(NULL, iris_resource_bo(tgt->offset.res)->gtt_offset +
|
2018-12-05 01:16:23 -08:00
|
|
|
|
tgt->offset.offset);
|
2018-06-29 12:58:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ice->state.dirty |= IRIS_DIRTY_SO_BUFFERS;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* An iris-vtable helper for encoding the 3DSTATE_SO_DECL_LIST and
|
|
|
|
|
|
* 3DSTATE_STREAMOUT packets.
|
|
|
|
|
|
*
|
|
|
|
|
|
* 3DSTATE_SO_DECL_LIST is a list of shader outputs we want the streamout
|
|
|
|
|
|
* hardware to record. We can create it entirely based on the shader, with
|
|
|
|
|
|
* no dynamic state dependencies.
|
|
|
|
|
|
*
|
|
|
|
|
|
* 3DSTATE_STREAMOUT is an annoying mix of shader-based information and
|
|
|
|
|
|
* state-based settings. We capture the shader-related ones here, and merge
|
|
|
|
|
|
* the rest in at draw time.
|
|
|
|
|
|
*/
|
2018-06-29 12:58:31 -07:00
|
|
|
|
static uint32_t *
|
|
|
|
|
|
iris_create_so_decl_list(const struct pipe_stream_output_info *info,
|
|
|
|
|
|
const struct brw_vue_map *vue_map)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct GENX(SO_DECL) so_decl[MAX_VERTEX_STREAMS][128];
|
|
|
|
|
|
int buffer_mask[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
|
|
|
|
|
|
int next_offset[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
|
|
|
|
|
|
int decls[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
|
|
|
|
|
|
int max_decls = 0;
|
|
|
|
|
|
STATIC_ASSERT(ARRAY_SIZE(so_decl[0]) >= MAX_PROGRAM_OUTPUTS);
|
|
|
|
|
|
|
|
|
|
|
|
memset(so_decl, 0, sizeof(so_decl));
|
|
|
|
|
|
|
|
|
|
|
|
/* Construct the list of SO_DECLs to be emitted. The formatting of the
|
|
|
|
|
|
* command feels strange -- each dword pair contains a SO_DECL per stream.
|
|
|
|
|
|
*/
|
|
|
|
|
|
for (unsigned i = 0; i < info->num_outputs; i++) {
|
|
|
|
|
|
const struct pipe_stream_output *output = &info->output[i];
|
|
|
|
|
|
const int buffer = output->output_buffer;
|
|
|
|
|
|
const int varying = output->register_index;
|
|
|
|
|
|
const unsigned stream_id = output->stream;
|
|
|
|
|
|
assert(stream_id < MAX_VERTEX_STREAMS);
|
|
|
|
|
|
|
|
|
|
|
|
buffer_mask[stream_id] |= 1 << buffer;
|
|
|
|
|
|
|
|
|
|
|
|
assert(vue_map->varying_to_slot[varying] >= 0);
|
|
|
|
|
|
|
|
|
|
|
|
/* Mesa doesn't store entries for gl_SkipComponents in the Outputs[]
|
|
|
|
|
|
* array. Instead, it simply increments DstOffset for the following
|
|
|
|
|
|
* input by the number of components that should be skipped.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Our hardware is unusual in that it requires us to program SO_DECLs
|
|
|
|
|
|
* for fake "hole" components, rather than simply taking the offset
|
|
|
|
|
|
* for each real varying. Each hole can have size 1, 2, 3, or 4; we
|
|
|
|
|
|
* program as many size = 4 holes as we can, then a final hole to
|
|
|
|
|
|
* accommodate the final 1, 2, or 3 remaining.
|
|
|
|
|
|
*/
|
|
|
|
|
|
int skip_components = output->dst_offset - next_offset[buffer];
|
|
|
|
|
|
|
|
|
|
|
|
while (skip_components > 0) {
|
|
|
|
|
|
so_decl[stream_id][decls[stream_id]++] = (struct GENX(SO_DECL)) {
|
|
|
|
|
|
.HoleFlag = 1,
|
|
|
|
|
|
.OutputBufferSlot = output->output_buffer,
|
|
|
|
|
|
.ComponentMask = (1 << MIN2(skip_components, 4)) - 1,
|
|
|
|
|
|
};
|
|
|
|
|
|
skip_components -= 4;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
next_offset[buffer] = output->dst_offset + output->num_components;
|
|
|
|
|
|
|
|
|
|
|
|
so_decl[stream_id][decls[stream_id]++] = (struct GENX(SO_DECL)) {
|
|
|
|
|
|
.OutputBufferSlot = output->output_buffer,
|
|
|
|
|
|
.RegisterIndex = vue_map->varying_to_slot[varying],
|
|
|
|
|
|
.ComponentMask =
|
|
|
|
|
|
((1 << output->num_components) - 1) << output->start_component,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
if (decls[stream_id] > max_decls)
|
|
|
|
|
|
max_decls = decls[stream_id];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-11 12:45:19 -07:00
|
|
|
|
unsigned dwords = GENX(3DSTATE_STREAMOUT_length) + (3 + 2 * max_decls);
|
|
|
|
|
|
uint32_t *map = ralloc_size(NULL, sizeof(uint32_t) * dwords);
|
|
|
|
|
|
uint32_t *so_decl_map = map + GENX(3DSTATE_STREAMOUT_length);
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_STREAMOUT), map, sol) {
|
|
|
|
|
|
int urb_entry_read_offset = 0;
|
|
|
|
|
|
int urb_entry_read_length = (vue_map->num_slots + 1) / 2 -
|
|
|
|
|
|
urb_entry_read_offset;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
2018-07-11 12:45:19 -07:00
|
|
|
|
/* We always read the whole vertex. This could be reduced at some
|
|
|
|
|
|
* point by reading less and offsetting the register index in the
|
|
|
|
|
|
* SO_DECLs.
|
|
|
|
|
|
*/
|
|
|
|
|
|
sol.Stream0VertexReadOffset = urb_entry_read_offset;
|
|
|
|
|
|
sol.Stream0VertexReadLength = urb_entry_read_length - 1;
|
|
|
|
|
|
sol.Stream1VertexReadOffset = urb_entry_read_offset;
|
|
|
|
|
|
sol.Stream1VertexReadLength = urb_entry_read_length - 1;
|
|
|
|
|
|
sol.Stream2VertexReadOffset = urb_entry_read_offset;
|
|
|
|
|
|
sol.Stream2VertexReadLength = urb_entry_read_length - 1;
|
|
|
|
|
|
sol.Stream3VertexReadOffset = urb_entry_read_offset;
|
|
|
|
|
|
sol.Stream3VertexReadLength = urb_entry_read_length - 1;
|
|
|
|
|
|
|
|
|
|
|
|
/* Set buffer pitches; 0 means unbound. */
|
|
|
|
|
|
sol.Buffer0SurfacePitch = 4 * info->stride[0];
|
|
|
|
|
|
sol.Buffer1SurfacePitch = 4 * info->stride[1];
|
|
|
|
|
|
sol.Buffer2SurfacePitch = 4 * info->stride[2];
|
|
|
|
|
|
sol.Buffer3SurfacePitch = 4 * info->stride[3];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_SO_DECL_LIST), so_decl_map, list) {
|
2018-06-29 12:58:31 -07:00
|
|
|
|
list.DWordLength = 3 + 2 * max_decls - 2;
|
|
|
|
|
|
list.StreamtoBufferSelects0 = buffer_mask[0];
|
|
|
|
|
|
list.StreamtoBufferSelects1 = buffer_mask[1];
|
|
|
|
|
|
list.StreamtoBufferSelects2 = buffer_mask[2];
|
|
|
|
|
|
list.StreamtoBufferSelects3 = buffer_mask[3];
|
|
|
|
|
|
list.NumEntries0 = decls[0];
|
|
|
|
|
|
list.NumEntries1 = decls[1];
|
|
|
|
|
|
list.NumEntries2 = decls[2];
|
|
|
|
|
|
list.NumEntries3 = decls[3];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < max_decls; i++) {
|
2018-07-11 16:26:06 -07:00
|
|
|
|
iris_pack_state(GENX(SO_DECL_ENTRY), so_decl_map + 3 + i * 2, entry) {
|
2018-06-29 12:58:31 -07:00
|
|
|
|
entry.Stream0Decl = so_decl[0][i];
|
|
|
|
|
|
entry.Stream1Decl = so_decl[1][i];
|
|
|
|
|
|
entry.Stream2Decl = so_decl[2][i];
|
|
|
|
|
|
entry.Stream3Decl = so_decl[3][i];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-11 12:45:19 -07:00
|
|
|
|
return map;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-29 15:06:04 -08:00
|
|
|
|
static void
|
2018-04-19 19:04:17 -07:00
|
|
|
|
iris_compute_sbe_urb_read_interval(uint64_t fs_input_slots,
|
|
|
|
|
|
const struct brw_vue_map *last_vue_map,
|
|
|
|
|
|
bool two_sided_color,
|
|
|
|
|
|
unsigned *out_offset,
|
|
|
|
|
|
unsigned *out_length)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* The compiler computes the first URB slot without considering COL/BFC
|
|
|
|
|
|
* swizzling (because it doesn't know whether it's enabled), so we need
|
|
|
|
|
|
* to do that here too. This may result in a smaller offset, which
|
|
|
|
|
|
* should be safe.
|
|
|
|
|
|
*/
|
|
|
|
|
|
const unsigned first_slot =
|
|
|
|
|
|
brw_compute_first_urb_slot_required(fs_input_slots, last_vue_map);
|
|
|
|
|
|
|
|
|
|
|
|
/* This becomes the URB read offset (counted in pairs of slots). */
|
|
|
|
|
|
assert(first_slot % 2 == 0);
|
|
|
|
|
|
*out_offset = first_slot / 2;
|
|
|
|
|
|
|
|
|
|
|
|
/* We need to adjust the inputs read to account for front/back color
|
|
|
|
|
|
* swizzling, as it can make the URB length longer.
|
|
|
|
|
|
*/
|
|
|
|
|
|
for (int c = 0; c <= 1; c++) {
|
|
|
|
|
|
if (fs_input_slots & (VARYING_BIT_COL0 << c)) {
|
|
|
|
|
|
/* If two sided color is enabled, the fragment shader's gl_Color
|
|
|
|
|
|
* (COL0) input comes from either the gl_FrontColor (COL0) or
|
|
|
|
|
|
* gl_BackColor (BFC0) input varyings. Mark BFC as used, too.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (two_sided_color)
|
|
|
|
|
|
fs_input_slots |= (VARYING_BIT_BFC0 << c);
|
|
|
|
|
|
|
|
|
|
|
|
/* If front color isn't written, we opt to give them back color
|
|
|
|
|
|
* instead of an undefined value. Switch from COL to BFC.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (last_vue_map->varying_to_slot[VARYING_SLOT_COL0 + c] == -1) {
|
|
|
|
|
|
fs_input_slots &= ~(VARYING_BIT_COL0 << c);
|
|
|
|
|
|
fs_input_slots |= (VARYING_BIT_BFC0 << c);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compute the minimum URB Read Length necessary for the FS inputs.
|
|
|
|
|
|
*
|
|
|
|
|
|
* From the Sandy Bridge PRM, Volume 2, Part 1, documentation for
|
|
|
|
|
|
* 3DSTATE_SF DWord 1 bits 15:11, "Vertex URB Entry Read Length":
|
|
|
|
|
|
*
|
|
|
|
|
|
* "This field should be set to the minimum length required to read the
|
|
|
|
|
|
* maximum source attribute. The maximum source attribute is indicated
|
|
|
|
|
|
* by the maximum value of the enabled Attribute # Source Attribute if
|
|
|
|
|
|
* Attribute Swizzle Enable is set, Number of Output Attributes-1 if
|
|
|
|
|
|
* enable is not set.
|
|
|
|
|
|
* read_length = ceiling((max_source_attr + 1) / 2)
|
|
|
|
|
|
*
|
|
|
|
|
|
* [errata] Corruption/Hang possible if length programmed larger than
|
|
|
|
|
|
* recommended"
|
|
|
|
|
|
*
|
|
|
|
|
|
* Similar text exists for Ivy Bridge.
|
|
|
|
|
|
*
|
|
|
|
|
|
* We find the last URB slot that's actually read by the FS.
|
|
|
|
|
|
*/
|
|
|
|
|
|
unsigned last_read_slot = last_vue_map->num_slots - 1;
|
|
|
|
|
|
while (last_read_slot > first_slot && !(fs_input_slots &
|
|
|
|
|
|
(1ull << last_vue_map->slot_to_varying[last_read_slot])))
|
|
|
|
|
|
--last_read_slot;
|
|
|
|
|
|
|
|
|
|
|
|
/* The URB read length is the difference of the two, counted in pairs. */
|
|
|
|
|
|
*out_length = DIV_ROUND_UP(last_read_slot - first_slot + 1, 2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-20 15:11:09 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_emit_sbe_swiz(struct iris_batch *batch,
|
|
|
|
|
|
const struct iris_context *ice,
|
2018-07-23 15:29:00 -07:00
|
|
|
|
unsigned urb_read_offset,
|
|
|
|
|
|
unsigned sprite_coord_enables)
|
2018-06-20 15:11:09 -07:00
|
|
|
|
{
|
|
|
|
|
|
struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) attr_overrides[16] = {};
|
|
|
|
|
|
const struct brw_wm_prog_data *wm_prog_data = (void *)
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_FRAGMENT]->prog_data;
|
|
|
|
|
|
const struct brw_vue_map *vue_map = ice->shaders.last_vue_map;
|
|
|
|
|
|
const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: this should be generated when putting programs in place */
|
|
|
|
|
|
|
|
|
|
|
|
for (int fs_attr = 0; fs_attr < VARYING_SLOT_MAX; fs_attr++) {
|
|
|
|
|
|
const int input_index = wm_prog_data->urb_setup[fs_attr];
|
|
|
|
|
|
if (input_index < 0 || input_index >= 16)
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) *attr =
|
|
|
|
|
|
&attr_overrides[input_index];
|
2018-08-25 00:11:24 -07:00
|
|
|
|
int slot = vue_map->varying_to_slot[fs_attr];
|
2018-06-20 15:11:09 -07:00
|
|
|
|
|
|
|
|
|
|
/* Viewport and Layer are stored in the VUE header. We need to override
|
|
|
|
|
|
* them to zero if earlier stages didn't write them, as GL requires that
|
|
|
|
|
|
* they read back as zero when not explicitly set.
|
|
|
|
|
|
*/
|
|
|
|
|
|
switch (fs_attr) {
|
|
|
|
|
|
case VARYING_SLOT_VIEWPORT:
|
|
|
|
|
|
case VARYING_SLOT_LAYER:
|
|
|
|
|
|
attr->ComponentOverrideX = true;
|
|
|
|
|
|
attr->ComponentOverrideW = true;
|
|
|
|
|
|
attr->ConstantSource = CONST_0000;
|
|
|
|
|
|
|
|
|
|
|
|
if (!(vue_map->slots_valid & VARYING_BIT_LAYER))
|
|
|
|
|
|
attr->ComponentOverrideY = true;
|
|
|
|
|
|
if (!(vue_map->slots_valid & VARYING_BIT_VIEWPORT))
|
|
|
|
|
|
attr->ComponentOverrideZ = true;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
case VARYING_SLOT_PRIMITIVE_ID:
|
2018-08-25 00:11:24 -07:00
|
|
|
|
/* Override if the previous shader stage didn't write gl_PrimitiveID. */
|
|
|
|
|
|
if (slot == -1) {
|
|
|
|
|
|
attr->ComponentOverrideX = true;
|
|
|
|
|
|
attr->ComponentOverrideY = true;
|
|
|
|
|
|
attr->ComponentOverrideZ = true;
|
|
|
|
|
|
attr->ComponentOverrideW = true;
|
|
|
|
|
|
attr->ConstantSource = PRIM_ID;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
2018-06-20 15:11:09 -07:00
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-23 15:29:00 -07:00
|
|
|
|
if (sprite_coord_enables & (1 << input_index))
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
2018-06-20 15:11:09 -07:00
|
|
|
|
/* If there was only a back color written but not front, use back
|
|
|
|
|
|
* as the color instead of undefined.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (slot == -1 && fs_attr == VARYING_SLOT_COL0)
|
|
|
|
|
|
slot = vue_map->varying_to_slot[VARYING_SLOT_BFC0];
|
|
|
|
|
|
if (slot == -1 && fs_attr == VARYING_SLOT_COL1)
|
|
|
|
|
|
slot = vue_map->varying_to_slot[VARYING_SLOT_BFC1];
|
|
|
|
|
|
|
|
|
|
|
|
/* Not written by the previous stage - undefined. */
|
|
|
|
|
|
if (slot == -1) {
|
|
|
|
|
|
attr->ComponentOverrideX = true;
|
|
|
|
|
|
attr->ComponentOverrideY = true;
|
|
|
|
|
|
attr->ComponentOverrideZ = true;
|
|
|
|
|
|
attr->ComponentOverrideW = true;
|
|
|
|
|
|
attr->ConstantSource = CONST_0001_FLOAT;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compute the location of the attribute relative to the read offset,
|
|
|
|
|
|
* which is counted in 256-bit increments (two 128-bit VUE slots).
|
|
|
|
|
|
*/
|
|
|
|
|
|
const int source_attr = slot - 2 * urb_read_offset;
|
|
|
|
|
|
assert(source_attr >= 0 && source_attr <= 32);
|
|
|
|
|
|
attr->SourceAttribute = source_attr;
|
|
|
|
|
|
|
|
|
|
|
|
/* If we are doing two-sided color, and the VUE slot following this one
|
|
|
|
|
|
* represents a back-facing color, then we need to instruct the SF unit
|
|
|
|
|
|
* to do back-facing swizzling.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (cso_rast->light_twoside &&
|
|
|
|
|
|
((vue_map->slot_to_varying[slot] == VARYING_SLOT_COL0 &&
|
|
|
|
|
|
vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC0) ||
|
|
|
|
|
|
(vue_map->slot_to_varying[slot] == VARYING_SLOT_COL1 &&
|
|
|
|
|
|
vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC1)))
|
|
|
|
|
|
attr->SwizzleSelect = INPUTATTR_FACING;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_SBE_SWIZ), sbes) {
|
|
|
|
|
|
for (int i = 0; i < 16; i++)
|
|
|
|
|
|
sbes.Attribute[i] = attr_overrides[i];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-23 15:29:00 -07:00
|
|
|
|
static unsigned
|
|
|
|
|
|
iris_calculate_point_sprite_overrides(const struct brw_wm_prog_data *prog_data,
|
|
|
|
|
|
const struct iris_rasterizer_state *cso)
|
|
|
|
|
|
{
|
|
|
|
|
|
unsigned overrides = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (prog_data->urb_setup[VARYING_SLOT_PNTC] != -1)
|
|
|
|
|
|
overrides |= 1 << prog_data->urb_setup[VARYING_SLOT_PNTC];
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
|
|
if ((cso->sprite_coord_enable & (1 << i)) &&
|
|
|
|
|
|
prog_data->urb_setup[VARYING_SLOT_TEX0 + i] != -1)
|
|
|
|
|
|
overrides |= 1 << prog_data->urb_setup[VARYING_SLOT_TEX0 + i];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return overrides;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-04-19 19:04:17 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_emit_sbe(struct iris_batch *batch, const struct iris_context *ice)
|
2018-01-29 15:06:04 -08:00
|
|
|
|
{
|
2018-04-19 19:04:17 -07:00
|
|
|
|
const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
|
|
|
|
|
|
const struct brw_wm_prog_data *wm_prog_data = (void *)
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_FRAGMENT]->prog_data;
|
2018-07-26 22:32:08 -07:00
|
|
|
|
const struct shader_info *fs_info =
|
|
|
|
|
|
iris_get_shader_info(ice, MESA_SHADER_FRAGMENT);
|
2018-01-29 15:06:04 -08:00
|
|
|
|
|
|
|
|
|
|
unsigned urb_read_offset, urb_read_length;
|
2018-07-26 22:32:08 -07:00
|
|
|
|
iris_compute_sbe_urb_read_interval(fs_info->inputs_read,
|
2018-04-19 19:04:17 -07:00
|
|
|
|
ice->shaders.last_vue_map,
|
|
|
|
|
|
cso_rast->light_twoside,
|
|
|
|
|
|
&urb_read_offset, &urb_read_length);
|
2018-01-29 15:06:04 -08:00
|
|
|
|
|
2018-07-23 15:29:00 -07:00
|
|
|
|
unsigned sprite_coord_overrides =
|
|
|
|
|
|
iris_calculate_point_sprite_overrides(wm_prog_data, cso_rast);
|
|
|
|
|
|
|
2018-04-19 19:04:17 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_SBE), sbe) {
|
2018-01-29 15:06:04 -08:00
|
|
|
|
sbe.AttributeSwizzleEnable = true;
|
|
|
|
|
|
sbe.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
|
|
|
|
|
|
sbe.PointSpriteTextureCoordinateOrigin = cso_rast->sprite_coord_mode;
|
|
|
|
|
|
sbe.VertexURBEntryReadOffset = urb_read_offset;
|
|
|
|
|
|
sbe.VertexURBEntryReadLength = urb_read_length;
|
|
|
|
|
|
sbe.ForceVertexURBEntryReadOffset = true;
|
|
|
|
|
|
sbe.ForceVertexURBEntryReadLength = true;
|
|
|
|
|
|
sbe.ConstantInterpolationEnable = wm_prog_data->flat_inputs;
|
2018-07-23 15:29:00 -07:00
|
|
|
|
sbe.PointSpriteTextureCoordinateEnable = sprite_coord_overrides;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN >= 9
|
2018-04-19 19:04:17 -07:00
|
|
|
|
for (int i = 0; i < 32; i++) {
|
2018-01-29 15:06:04 -08:00
|
|
|
|
sbe.AttributeActiveComponentFormat[i] = ACTIVE_COMPONENT_XYZW;
|
|
|
|
|
|
}
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#endif
|
2018-01-29 15:06:04 -08:00
|
|
|
|
}
|
2018-06-20 15:11:09 -07:00
|
|
|
|
|
2018-07-23 15:29:00 -07:00
|
|
|
|
iris_emit_sbe_swiz(batch, ice, urb_read_offset, sprite_coord_overrides);
|
2018-01-29 15:06:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* ------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Populate VS program key fields based on the current state.
|
|
|
|
|
|
*/
|
2018-01-25 02:03:18 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_vs_key(const struct iris_context *ice,
|
2018-10-26 22:18:56 -07:00
|
|
|
|
const struct shader_info *info,
|
2018-01-25 02:03:18 -08:00
|
|
|
|
struct brw_vs_prog_key *key)
|
|
|
|
|
|
{
|
2018-10-26 22:18:56 -07:00
|
|
|
|
const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
|
|
|
|
|
|
|
2018-11-09 17:35:29 -08:00
|
|
|
|
if (info->clip_distance_array_size == 0 &&
|
|
|
|
|
|
(info->outputs_written & (VARYING_BIT_POS | VARYING_BIT_CLIP_VERTEX)))
|
2018-10-26 22:18:56 -07:00
|
|
|
|
key->nr_userclip_plane_consts = cso_rast->num_clip_plane_consts;
|
2018-01-25 02:03:18 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Populate TCS program key fields based on the current state.
|
|
|
|
|
|
*/
|
2018-01-25 02:03:18 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_tcs_key(const struct iris_context *ice,
|
|
|
|
|
|
struct brw_tcs_prog_key *key)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Populate TES program key fields based on the current state.
|
|
|
|
|
|
*/
|
2018-01-25 02:03:18 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_tes_key(const struct iris_context *ice,
|
|
|
|
|
|
struct brw_tes_prog_key *key)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Populate GS program key fields based on the current state.
|
|
|
|
|
|
*/
|
2018-01-25 02:03:18 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_gs_key(const struct iris_context *ice,
|
|
|
|
|
|
struct brw_gs_prog_key *key)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Populate FS program key fields based on the current state.
|
|
|
|
|
|
*/
|
2018-01-25 02:03:18 -08:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_fs_key(const struct iris_context *ice,
|
|
|
|
|
|
struct brw_wm_prog_key *key)
|
|
|
|
|
|
{
|
2018-01-29 15:06:08 -08:00
|
|
|
|
const struct pipe_framebuffer_state *fb = &ice->state.framebuffer;
|
|
|
|
|
|
const struct iris_depth_stencil_alpha_state *zsa = ice->state.cso_zsa;
|
|
|
|
|
|
const struct iris_rasterizer_state *rast = ice->state.cso_rast;
|
|
|
|
|
|
const struct iris_blend_state *blend = ice->state.cso_blend;
|
2018-01-25 02:03:18 -08:00
|
|
|
|
|
|
|
|
|
|
key->nr_color_regions = fb->nr_cbufs;
|
|
|
|
|
|
|
2018-01-25 02:09:59 -08:00
|
|
|
|
key->clamp_fragment_color = rast->clamp_fragment_color;
|
|
|
|
|
|
|
i965,iris,anv: Make alpha to coverage work with sample mask
From "Alpha Coverage" section of SKL PRM Volume 7:
"If Pixel Shader outputs oMask, AlphaToCoverage is disabled in
hardware, regardless of the state setting for this feature."
From OpenGL spec 4.6, "15.2 Shader Execution":
"The built-in integer array gl_SampleMask can be used to change
the sample coverage for a fragment from within the shader."
From OpenGL spec 4.6, "17.3.1 Alpha To Coverage":
"If SAMPLE_ALPHA_TO_COVERAGE is enabled, a temporary coverage value
is generated where each bit is determined by the alpha value at the
corresponding sample location. The temporary coverage value is then
ANDed with the fragment coverage value to generate a new fragment
coverage value."
Similar wording could be found in Vulkan spec 1.1.100
"25.6. Multisample Coverage"
Thus we need to compute alpha to coverage dithering manually in shader
and replace sample mask store with the bitwise-AND of sample mask and
alpha to coverage dithering.
The following formula is used to compute final sample mask:
m = int(16.0 * clamp(src0_alpha, 0.0, 1.0))
dither_mask = 0x1111 * ((0xfea80 >> (m & ~3)) & 0xf) |
0x0808 * (m & 2) | 0x0100 * (m & 1)
sample_mask = sample_mask & dither_mask
Credits to Francisco Jerez <currojerez@riseup.net> for creating it.
It gives a number of ones proportional to the alpha for 2, 4, 8 or 16
least significant bits of the result.
GEN6 hardware does not have issue with simultaneous usage of sample mask
and alpha to coverage however due to the wrong sending order of oMask
and src0_alpha it is still affected by it.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109743
Signed-off-by: Danylo Piliaiev <danylo.piliaiev@globallogic.com>
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
2019-02-20 19:39:18 +02:00
|
|
|
|
key->alpha_to_coverage = blend->alpha_to_coverage;
|
|
|
|
|
|
|
|
|
|
|
|
key->alpha_test_replicate_alpha = fb->nr_cbufs > 1 && zsa->alpha.enabled;
|
2018-01-25 02:09:59 -08:00
|
|
|
|
|
2018-06-26 01:00:37 -07:00
|
|
|
|
/* XXX: only bother if COL0/1 are read */
|
|
|
|
|
|
key->flat_shade = rast->flatshade;
|
|
|
|
|
|
|
2018-07-16 15:36:34 -07:00
|
|
|
|
key->persample_interp = rast->force_persample_interp;
|
|
|
|
|
|
key->multisample_fbo = rast->multisample && fb->samples > 1;
|
2018-01-25 02:03:18 -08:00
|
|
|
|
|
|
|
|
|
|
key->coherent_fb_fetch = true;
|
2018-07-16 15:36:34 -07:00
|
|
|
|
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* TODO: support key->force_dual_color_blend for Unigine */
|
|
|
|
|
|
/* TODO: Respect glHint for key->high_quality_derivatives */
|
2018-01-25 02:03:18 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-26 21:59:20 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_cs_key(const struct iris_context *ice,
|
|
|
|
|
|
struct brw_cs_prog_key *key)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 20:12:37 -08:00
|
|
|
|
static uint64_t
|
|
|
|
|
|
KSP(const struct iris_compiled_shader *shader)
|
|
|
|
|
|
{
|
2018-06-28 00:57:49 -07:00
|
|
|
|
struct iris_resource *res = (void *) shader->assembly.res;
|
|
|
|
|
|
return iris_bo_offset_from_base_address(res->bo) + shader->assembly.offset;
|
2018-01-25 20:12:37 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* Gen11 workaround table #2056 WABTPPrefetchDisable suggests to disable
|
|
|
|
|
|
* prefetching of binding tables in A0 and B0 steppings. XXX: Revisit
|
|
|
|
|
|
* this WA on C0 stepping.
|
|
|
|
|
|
*
|
|
|
|
|
|
* TODO: Fill out SamplerCount for prefetching?
|
|
|
|
|
|
*/
|
2018-09-18 11:04:44 -07:00
|
|
|
|
|
2018-11-07 22:05:14 -08:00
|
|
|
|
#define INIT_THREAD_DISPATCH_FIELDS(pkt, prefix, stage) \
|
2018-01-25 20:12:37 -08:00
|
|
|
|
pkt.KernelStartPointer = KSP(shader); \
|
2018-09-18 11:04:44 -07:00
|
|
|
|
pkt.BindingTableEntryCount = GEN_GEN == 11 ? 0 : \
|
|
|
|
|
|
prog_data->binding_table.size_bytes / 4; \
|
2018-01-25 01:36:49 -08:00
|
|
|
|
pkt.FloatingPointMode = prog_data->use_alt_mode; \
|
|
|
|
|
|
\
|
|
|
|
|
|
pkt.DispatchGRFStartRegisterForURBData = \
|
|
|
|
|
|
prog_data->dispatch_grf_start_reg; \
|
|
|
|
|
|
pkt.prefix##URBEntryReadLength = vue_prog_data->urb_read_length; \
|
|
|
|
|
|
pkt.prefix##URBEntryReadOffset = 0; \
|
|
|
|
|
|
\
|
|
|
|
|
|
pkt.StatisticsEnable = true; \
|
2018-11-07 22:05:14 -08:00
|
|
|
|
pkt.Enable = true; \
|
|
|
|
|
|
\
|
|
|
|
|
|
if (prog_data->total_scratch) { \
|
2018-12-12 01:41:39 -08:00
|
|
|
|
struct iris_bo *bo = \
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_get_scratch_space(ice, prog_data->total_scratch, stage); \
|
2018-12-12 01:41:39 -08:00
|
|
|
|
uint32_t scratch_addr = bo->gtt_offset; \
|
2018-11-07 22:05:14 -08:00
|
|
|
|
pkt.PerThreadScratchSpace = ffs(prog_data->total_scratch) - 11; \
|
|
|
|
|
|
pkt.ScratchSpaceBasePointer = rw_bo(NULL, scratch_addr); \
|
|
|
|
|
|
}
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Encode most of 3DSTATE_VS based on the compiled shader.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_vs_state(struct iris_context *ice,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
2018-06-09 00:01:09 -07:00
|
|
|
|
struct iris_compiled_shader *shader)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
|
2018-01-09 11:44:04 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_VS), shader->derived_data, vs) {
|
2018-11-07 22:05:14 -08:00
|
|
|
|
INIT_THREAD_DISPATCH_FIELDS(vs, Vertex, MESA_SHADER_VERTEX);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
vs.MaximumNumberofThreads = devinfo->max_vs_threads - 1;
|
|
|
|
|
|
vs.SIMD8DispatchEnable = true;
|
|
|
|
|
|
vs.UserClipDistanceCullTestEnableBitmask =
|
|
|
|
|
|
vue_prog_data->cull_distance_mask;
|
2018-01-09 11:51:34 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-09 11:51:34 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Encode most of 3DSTATE_HS based on the compiled shader.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_tcs_state(struct iris_context *ice,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
2018-06-09 00:01:09 -07:00
|
|
|
|
struct iris_compiled_shader *shader)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
|
|
|
|
|
|
struct brw_tcs_prog_data *tcs_prog_data = (void *) prog_data;
|
2018-01-09 21:29:09 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_HS), shader->derived_data, hs) {
|
2018-11-07 22:05:14 -08:00
|
|
|
|
INIT_THREAD_DISPATCH_FIELDS(hs, Vertex, MESA_SHADER_TESS_CTRL);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
|
|
|
|
|
|
hs.InstanceCount = tcs_prog_data->instances - 1;
|
|
|
|
|
|
hs.MaximumNumberofThreads = devinfo->max_tcs_threads - 1;
|
|
|
|
|
|
hs.IncludeVertexHandles = true;
|
2018-01-10 00:36:44 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-10 00:36:44 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Encode 3DSTATE_TE and most of 3DSTATE_DS based on the compiled shader.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_tes_state(struct iris_context *ice,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
2018-06-09 00:01:09 -07:00
|
|
|
|
struct iris_compiled_shader *shader)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
|
|
|
|
|
|
struct brw_tes_prog_data *tes_prog_data = (void *) prog_data;
|
2018-01-21 15:28:59 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
uint32_t *te_state = (void *) shader->derived_data;
|
|
|
|
|
|
uint32_t *ds_state = te_state + GENX(3DSTATE_TE_length);
|
2018-01-21 17:34:41 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_TE), te_state, te) {
|
|
|
|
|
|
te.Partitioning = tes_prog_data->partitioning;
|
|
|
|
|
|
te.OutputTopology = tes_prog_data->output_topology;
|
|
|
|
|
|
te.TEDomain = tes_prog_data->domain;
|
|
|
|
|
|
te.TEEnable = true;
|
|
|
|
|
|
te.MaximumTessellationFactorOdd = 63.0;
|
|
|
|
|
|
te.MaximumTessellationFactorNotOdd = 64.0;
|
|
|
|
|
|
}
|
2018-01-21 17:34:41 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_DS), ds_state, ds) {
|
2018-11-07 22:05:14 -08:00
|
|
|
|
INIT_THREAD_DISPATCH_FIELDS(ds, Patch, MESA_SHADER_TESS_EVAL);
|
2018-01-21 15:28:59 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ds.DispatchMode = DISPATCH_MODE_SIMD8_SINGLE_PATCH;
|
|
|
|
|
|
ds.MaximumNumberofThreads = devinfo->max_tes_threads - 1;
|
|
|
|
|
|
ds.ComputeWCoordinateEnable =
|
|
|
|
|
|
tes_prog_data->domain == BRW_TESS_DOMAIN_TRI;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ds.UserClipDistanceCullTestEnableBitmask =
|
|
|
|
|
|
vue_prog_data->cull_distance_mask;
|
2018-01-09 23:13:16 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-09 21:29:09 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Encode most of 3DSTATE_GS based on the compiled shader.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_gs_state(struct iris_context *ice,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
2018-06-09 00:01:09 -07:00
|
|
|
|
struct iris_compiled_shader *shader)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
|
|
|
|
|
|
struct brw_gs_prog_data *gs_prog_data = (void *) prog_data;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_GS), shader->derived_data, gs) {
|
2018-11-07 22:05:14 -08:00
|
|
|
|
INIT_THREAD_DISPATCH_FIELDS(gs, Vertex, MESA_SHADER_GEOMETRY);
|
2018-01-22 22:40:51 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
gs.OutputVertexSize = gs_prog_data->output_vertex_size_hwords * 2 - 1;
|
|
|
|
|
|
gs.OutputTopology = gs_prog_data->output_topology;
|
|
|
|
|
|
gs.ControlDataHeaderSize =
|
|
|
|
|
|
gs_prog_data->control_data_header_size_hwords;
|
|
|
|
|
|
gs.InstanceControl = gs_prog_data->invocations - 1;
|
2018-06-26 13:35:47 -07:00
|
|
|
|
gs.DispatchMode = DISPATCH_MODE_SIMD8;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
gs.IncludePrimitiveID = gs_prog_data->include_primitive_id;
|
|
|
|
|
|
gs.ControlDataFormat = gs_prog_data->control_data_format;
|
|
|
|
|
|
gs.ReorderMode = TRAILING;
|
|
|
|
|
|
gs.ExpectedVertexCount = gs_prog_data->vertices_in;
|
|
|
|
|
|
gs.MaximumNumberofThreads =
|
|
|
|
|
|
GEN_GEN == 8 ? (devinfo->max_gs_threads / 2 - 1)
|
|
|
|
|
|
: (devinfo->max_gs_threads - 1);
|
2018-01-22 22:40:51 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (gs_prog_data->static_vertex_count != -1) {
|
|
|
|
|
|
gs.StaticOutput = true;
|
|
|
|
|
|
gs.StaticOutputVertexCount = gs_prog_data->static_vertex_count;
|
|
|
|
|
|
}
|
|
|
|
|
|
gs.IncludeVertexHandles = vue_prog_data->include_vue_handles;
|
2018-01-11 22:50:12 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
gs.UserClipDistanceCullTestEnableBitmask =
|
|
|
|
|
|
vue_prog_data->cull_distance_mask;
|
2018-01-11 22:50:12 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
const int urb_entry_write_offset = 1;
|
|
|
|
|
|
const uint32_t urb_entry_output_length =
|
|
|
|
|
|
DIV_ROUND_UP(vue_prog_data->vue_map.num_slots, 2) -
|
|
|
|
|
|
urb_entry_write_offset;
|
2018-01-23 01:23:54 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
gs.VertexURBEntryOutputReadOffset = urb_entry_write_offset;
|
|
|
|
|
|
gs.VertexURBEntryOutputLength = MAX2(urb_entry_output_length, 1);
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-11 22:50:12 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Encode most of 3DSTATE_PS and 3DSTATE_PS_EXTRA based on the shader.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_fs_state(struct iris_context *ice,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
2018-06-09 00:01:09 -07:00
|
|
|
|
struct iris_compiled_shader *shader)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_wm_prog_data *wm_prog_data = (void *) shader->prog_data;
|
2018-01-23 01:07:09 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
uint32_t *ps_state = (void *) shader->derived_data;
|
|
|
|
|
|
uint32_t *psx_state = ps_state + GENX(3DSTATE_PS_length);
|
2018-01-23 01:07:09 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_PS), ps_state, ps) {
|
|
|
|
|
|
ps.VectorMaskEnable = true;
|
2018-09-18 11:04:44 -07:00
|
|
|
|
// XXX: WABTPPrefetchDisable, see above, drop at C0
|
|
|
|
|
|
ps.BindingTableEntryCount = GEN_GEN == 11 ? 0 :
|
|
|
|
|
|
prog_data->binding_table.size_bytes / 4;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ps.FloatingPointMode = prog_data->use_alt_mode;
|
|
|
|
|
|
ps.MaximumNumberofThreadsPerPSD = 64 - (GEN_GEN == 8 ? 2 : 1);
|
2018-01-23 01:07:09 -08:00
|
|
|
|
|
2018-12-27 00:49:56 -08:00
|
|
|
|
ps.PushConstantEnable = prog_data->ubo_ranges[0].length > 0;
|
2018-01-23 01:07:09 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
/* From the documentation for this packet:
|
|
|
|
|
|
* "If the PS kernel does not need the Position XY Offsets to
|
|
|
|
|
|
* compute a Position Value, then this field should be programmed
|
|
|
|
|
|
* to POSOFFSET_NONE."
|
|
|
|
|
|
*
|
|
|
|
|
|
* "SW Recommendation: If the PS kernel needs the Position Offsets
|
|
|
|
|
|
* to compute a Position XY value, this field should match Position
|
|
|
|
|
|
* ZW Interpolation Mode to ensure a consistent position.xyzw
|
|
|
|
|
|
* computation."
|
|
|
|
|
|
*
|
|
|
|
|
|
* We only require XY sample offsets. So, this recommendation doesn't
|
|
|
|
|
|
* look useful at the moment. We might need this in future.
|
|
|
|
|
|
*/
|
|
|
|
|
|
ps.PositionXYOffsetSelect =
|
|
|
|
|
|
wm_prog_data->uses_pos_offset ? POSOFFSET_SAMPLE : POSOFFSET_NONE;
|
|
|
|
|
|
ps._8PixelDispatchEnable = wm_prog_data->dispatch_8;
|
|
|
|
|
|
ps._16PixelDispatchEnable = wm_prog_data->dispatch_16;
|
|
|
|
|
|
ps._32PixelDispatchEnable = wm_prog_data->dispatch_32;
|
2018-01-22 23:39:38 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
// XXX: Disable SIMD32 with 16x MSAA
|
2018-01-22 23:39:38 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ps.DispatchGRFStartRegisterForConstantSetupData0 =
|
|
|
|
|
|
brw_wm_prog_data_dispatch_grf_start_reg(wm_prog_data, ps, 0);
|
|
|
|
|
|
ps.DispatchGRFStartRegisterForConstantSetupData1 =
|
|
|
|
|
|
brw_wm_prog_data_dispatch_grf_start_reg(wm_prog_data, ps, 1);
|
|
|
|
|
|
ps.DispatchGRFStartRegisterForConstantSetupData2 =
|
|
|
|
|
|
brw_wm_prog_data_dispatch_grf_start_reg(wm_prog_data, ps, 2);
|
|
|
|
|
|
|
|
|
|
|
|
ps.KernelStartPointer0 =
|
2018-01-25 20:12:37 -08:00
|
|
|
|
KSP(shader) + brw_wm_prog_data_prog_offset(wm_prog_data, ps, 0);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ps.KernelStartPointer1 =
|
2018-01-25 20:12:37 -08:00
|
|
|
|
KSP(shader) + brw_wm_prog_data_prog_offset(wm_prog_data, ps, 1);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ps.KernelStartPointer2 =
|
2018-01-25 20:12:37 -08:00
|
|
|
|
KSP(shader) + brw_wm_prog_data_prog_offset(wm_prog_data, ps, 2);
|
2018-11-07 22:05:14 -08:00
|
|
|
|
|
|
|
|
|
|
if (prog_data->total_scratch) {
|
2018-12-12 01:41:39 -08:00
|
|
|
|
struct iris_bo *bo =
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_get_scratch_space(ice, prog_data->total_scratch,
|
|
|
|
|
|
MESA_SHADER_FRAGMENT);
|
2018-12-12 01:41:39 -08:00
|
|
|
|
uint32_t scratch_addr = bo->gtt_offset;
|
2018-11-07 22:05:14 -08:00
|
|
|
|
ps.PerThreadScratchSpace = ffs(prog_data->total_scratch) - 11;
|
|
|
|
|
|
ps.ScratchSpaceBasePointer = rw_bo(NULL, scratch_addr);
|
|
|
|
|
|
}
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_PS_EXTRA), psx_state, psx) {
|
|
|
|
|
|
psx.PixelShaderValid = true;
|
|
|
|
|
|
psx.PixelShaderComputedDepthMode = wm_prog_data->computed_depth_mode;
|
2019-02-11 11:40:38 -08:00
|
|
|
|
psx.PixelShaderKillsPixel = wm_prog_data->uses_kill;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
psx.AttributeEnable = wm_prog_data->num_varying_inputs != 0;
|
|
|
|
|
|
psx.PixelShaderUsesSourceDepth = wm_prog_data->uses_src_depth;
|
|
|
|
|
|
psx.PixelShaderUsesSourceW = wm_prog_data->uses_src_w;
|
|
|
|
|
|
psx.PixelShaderIsPerSample = wm_prog_data->persample_dispatch;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
psx.oMaskPresenttoRenderTarget = wm_prog_data->uses_omask;
|
2018-01-22 23:39:38 -08:00
|
|
|
|
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN >= 9
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (wm_prog_data->uses_sample_mask) {
|
|
|
|
|
|
/* TODO: conservative rasterization */
|
|
|
|
|
|
if (wm_prog_data->post_depth_coverage)
|
|
|
|
|
|
psx.InputCoverageMaskState = ICMS_DEPTH_COVERAGE;
|
|
|
|
|
|
else
|
|
|
|
|
|
psx.InputCoverageMaskState = ICMS_NORMAL;
|
2018-01-11 22:50:12 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
psx.PixelShaderPullsBary = wm_prog_data->pulls_bary;
|
|
|
|
|
|
psx.PixelShaderComputesStencil = wm_prog_data->computed_stencil;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#else
|
|
|
|
|
|
psx.PixelShaderUsesInputCoverageMask = wm_prog_data->uses_sample_mask;
|
|
|
|
|
|
#endif
|
2018-01-25 01:36:49 -08:00
|
|
|
|
// XXX: UAV bit
|
2018-01-11 22:50:12 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-11 22:50:12 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Compute the size of the derived data (shader command packets).
|
|
|
|
|
|
*
|
|
|
|
|
|
* This must match the data written by the iris_store_xs_state() functions.
|
|
|
|
|
|
*/
|
2018-07-26 21:59:20 -07:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_cs_state(struct iris_context *ice,
|
|
|
|
|
|
const struct gen_device_info *devinfo,
|
2018-07-26 21:59:20 -07:00
|
|
|
|
struct iris_compiled_shader *shader)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_cs_prog_data *cs_prog_data = (void *) shader->prog_data;
|
|
|
|
|
|
void *map = shader->derived_data;
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_state(GENX(INTERFACE_DESCRIPTOR_DATA), map, desc) {
|
|
|
|
|
|
desc.KernelStartPointer = KSP(shader);
|
|
|
|
|
|
desc.ConstantURBEntryReadLength = cs_prog_data->push.per_thread.regs;
|
|
|
|
|
|
desc.NumberofThreadsinGPGPUThreadGroup = cs_prog_data->threads;
|
|
|
|
|
|
desc.SharedLocalMemorySize =
|
|
|
|
|
|
encode_slm_size(GEN_GEN, prog_data->total_shared);
|
|
|
|
|
|
desc.BarrierEnable = cs_prog_data->uses_barrier;
|
|
|
|
|
|
desc.CrossThreadConstantDataReadLength =
|
|
|
|
|
|
cs_prog_data->push.cross_thread.regs;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static unsigned
|
|
|
|
|
|
iris_derived_program_state_size(enum iris_program_cache_id cache_id)
|
|
|
|
|
|
{
|
2018-04-21 23:27:15 -07:00
|
|
|
|
assert(cache_id <= IRIS_CACHE_BLORP);
|
2018-01-22 23:39:38 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static const unsigned dwords[] = {
|
|
|
|
|
|
[IRIS_CACHE_VS] = GENX(3DSTATE_VS_length),
|
|
|
|
|
|
[IRIS_CACHE_TCS] = GENX(3DSTATE_HS_length),
|
|
|
|
|
|
[IRIS_CACHE_TES] = GENX(3DSTATE_TE_length) + GENX(3DSTATE_DS_length),
|
|
|
|
|
|
[IRIS_CACHE_GS] = GENX(3DSTATE_GS_length),
|
|
|
|
|
|
[IRIS_CACHE_FS] =
|
|
|
|
|
|
GENX(3DSTATE_PS_length) + GENX(3DSTATE_PS_EXTRA_length),
|
2018-07-26 21:59:20 -07:00
|
|
|
|
[IRIS_CACHE_CS] = GENX(INTERFACE_DESCRIPTOR_DATA_length),
|
2018-04-21 23:27:15 -07:00
|
|
|
|
[IRIS_CACHE_BLORP] = 0,
|
2018-01-25 01:36:49 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return sizeof(uint32_t) * dwords[cache_id];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Create any state packets corresponding to the given shader stage
|
|
|
|
|
|
* (i.e. 3DSTATE_VS) and save them as "derived data" in the shader variant.
|
|
|
|
|
|
* This means that we can look up a program in the in-memory cache and
|
|
|
|
|
|
* get most of the state packet without having to reconstruct it.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_derived_program_state(struct iris_context *ice,
|
2018-06-09 00:01:09 -07:00
|
|
|
|
enum iris_program_cache_id cache_id,
|
|
|
|
|
|
struct iris_compiled_shader *shader)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
2018-11-07 22:05:14 -08:00
|
|
|
|
struct iris_screen *screen = (void *) ice->ctx.screen;
|
|
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
switch (cache_id) {
|
|
|
|
|
|
case IRIS_CACHE_VS:
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_vs_state(ice, devinfo, shader);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
break;
|
|
|
|
|
|
case IRIS_CACHE_TCS:
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_tcs_state(ice, devinfo, shader);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
break;
|
|
|
|
|
|
case IRIS_CACHE_TES:
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_tes_state(ice, devinfo, shader);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
break;
|
|
|
|
|
|
case IRIS_CACHE_GS:
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_gs_state(ice, devinfo, shader);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
break;
|
|
|
|
|
|
case IRIS_CACHE_FS:
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_fs_state(ice, devinfo, shader);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
break;
|
|
|
|
|
|
case IRIS_CACHE_CS:
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_store_cs_state(ice, devinfo, shader);
|
2018-04-21 23:27:15 -07:00
|
|
|
|
case IRIS_CACHE_BLORP:
|
2018-01-25 01:36:49 -08:00
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* ------------------------------------------------------------------- */
|
|
|
|
|
|
|
2018-01-25 21:39:44 -08:00
|
|
|
|
static const uint32_t push_constant_opcodes[] = {
|
|
|
|
|
|
[MESA_SHADER_VERTEX] = 21,
|
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 25, /* HS */
|
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 26, /* DS */
|
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 22,
|
|
|
|
|
|
[MESA_SHADER_FRAGMENT] = 23,
|
|
|
|
|
|
[MESA_SHADER_COMPUTE] = 0,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2018-10-02 10:21:57 -07:00
|
|
|
|
static uint32_t
|
|
|
|
|
|
use_null_surface(struct iris_batch *batch, struct iris_context *ice)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct iris_bo *state_bo = iris_resource_bo(ice->state.unbound_tex.res);
|
|
|
|
|
|
|
|
|
|
|
|
iris_use_pinned_bo(batch, state_bo, false);
|
|
|
|
|
|
|
|
|
|
|
|
return ice->state.unbound_tex.offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
|
use_null_fb_surface(struct iris_batch *batch, struct iris_context *ice)
|
|
|
|
|
|
{
|
2018-10-24 14:16:38 -07:00
|
|
|
|
/* If set_framebuffer_state() was never called, fall back to 1x1x1 */
|
|
|
|
|
|
if (!ice->state.null_fb.res)
|
|
|
|
|
|
return use_null_surface(batch, ice);
|
|
|
|
|
|
|
2018-10-02 10:21:57 -07:00
|
|
|
|
struct iris_bo *state_bo = iris_resource_bo(ice->state.null_fb.res);
|
|
|
|
|
|
|
|
|
|
|
|
iris_use_pinned_bo(batch, state_bo, false);
|
|
|
|
|
|
|
|
|
|
|
|
return ice->state.null_fb.offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-07 19:51:05 -08:00
|
|
|
|
static uint32_t
|
|
|
|
|
|
surf_state_offset_for_aux(struct iris_resource *res,
|
2019-03-27 14:42:12 -07:00
|
|
|
|
unsigned aux_modes,
|
2018-12-07 19:51:05 -08:00
|
|
|
|
enum isl_aux_usage aux_usage)
|
|
|
|
|
|
{
|
|
|
|
|
|
return SURFACE_STATE_ALIGNMENT *
|
|
|
|
|
|
util_bitcount(res->aux.possible_usages & ((1 << aux_usage) - 1));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-01 10:34:40 -08:00
|
|
|
|
static void
|
|
|
|
|
|
surf_state_update_clear_value(struct iris_batch *batch,
|
|
|
|
|
|
struct iris_resource *res,
|
|
|
|
|
|
struct iris_state_ref *state,
|
2019-03-27 14:42:12 -07:00
|
|
|
|
unsigned aux_modes,
|
2019-03-01 10:34:40 -08:00
|
|
|
|
enum isl_aux_usage aux_usage)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct isl_device *isl_dev = &batch->screen->isl_dev;
|
|
|
|
|
|
struct iris_bo *state_bo = iris_resource_bo(state->res);
|
|
|
|
|
|
uint64_t real_offset = state->offset +
|
|
|
|
|
|
IRIS_MEMZONE_BINDER_START;
|
|
|
|
|
|
uint32_t offset_into_bo = real_offset - state_bo->gtt_offset;
|
|
|
|
|
|
uint32_t clear_offset = offset_into_bo +
|
|
|
|
|
|
isl_dev->ss.clear_value_offset +
|
2019-03-27 14:42:12 -07:00
|
|
|
|
surf_state_offset_for_aux(res, aux_modes, aux_usage);
|
2019-03-01 10:34:40 -08:00
|
|
|
|
|
|
|
|
|
|
batch->vtbl->copy_mem_mem(batch, state_bo, clear_offset,
|
|
|
|
|
|
res->aux.clear_color_bo,
|
|
|
|
|
|
res->aux.clear_color_offset,
|
|
|
|
|
|
isl_dev->ss.clear_value_size);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-19 12:47:58 -07:00
|
|
|
|
static void
|
2019-03-27 13:09:34 -07:00
|
|
|
|
update_clear_value(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
2019-03-19 12:47:58 -07:00
|
|
|
|
struct iris_resource *res,
|
2019-03-27 13:09:34 -07:00
|
|
|
|
struct iris_state_ref *state,
|
2019-03-27 14:42:12 -07:00
|
|
|
|
unsigned aux_modes,
|
2019-03-27 13:09:34 -07:00
|
|
|
|
struct isl_view *view)
|
2019-03-19 12:47:58 -07:00
|
|
|
|
{
|
2019-03-26 11:08:22 -07:00
|
|
|
|
struct iris_screen *screen = batch->screen;
|
|
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
|
|
|
|
|
|
|
|
|
|
|
/* We only need to update the clear color in the surface state for gen8 and
|
|
|
|
|
|
* gen9. Newer gens can read it directly from the clear color state buffer.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (devinfo->gen > 9)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
2019-03-27 13:09:34 -07:00
|
|
|
|
if (devinfo->gen == 9) {
|
|
|
|
|
|
/* Skip updating the ISL_AUX_USAGE_NONE surface state */
|
|
|
|
|
|
aux_modes &= ~(1 << ISL_AUX_USAGE_NONE);
|
|
|
|
|
|
|
|
|
|
|
|
while (aux_modes) {
|
|
|
|
|
|
enum isl_aux_usage aux_usage = u_bit_scan(&aux_modes);
|
2019-03-27 14:42:12 -07:00
|
|
|
|
|
|
|
|
|
|
surf_state_update_clear_value(batch, res, state, aux_modes,
|
|
|
|
|
|
aux_usage);
|
2019-03-27 13:09:34 -07:00
|
|
|
|
}
|
|
|
|
|
|
} else if (devinfo->gen == 8) {
|
|
|
|
|
|
pipe_resource_reference(&state->res, NULL);
|
|
|
|
|
|
void *map = alloc_surface_states(ice->state.surface_uploader,
|
|
|
|
|
|
state, res->aux.possible_usages);
|
|
|
|
|
|
while (aux_modes) {
|
|
|
|
|
|
enum isl_aux_usage aux_usage = u_bit_scan(&aux_modes);
|
|
|
|
|
|
fill_surface_state(&screen->isl_dev, map, res, view, aux_usage);
|
|
|
|
|
|
map += SURFACE_STATE_ALIGNMENT;
|
|
|
|
|
|
}
|
2019-03-19 12:47:58 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-04-06 23:57:45 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Add a surface to the validation list, as well as the buffer containing
|
|
|
|
|
|
* the corresponding SURFACE_STATE.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Returns the binding table entry (offset to SURFACE_STATE).
|
|
|
|
|
|
*/
|
|
|
|
|
|
static uint32_t
|
2019-03-27 13:09:34 -07:00
|
|
|
|
use_surface(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
2018-04-06 23:57:45 -07:00
|
|
|
|
struct pipe_surface *p_surf,
|
2018-12-07 19:51:05 -08:00
|
|
|
|
bool writeable,
|
|
|
|
|
|
enum isl_aux_usage aux_usage)
|
2018-04-06 23:57:45 -07:00
|
|
|
|
{
|
|
|
|
|
|
struct iris_surface *surf = (void *) p_surf;
|
2018-12-07 19:51:05 -08:00
|
|
|
|
struct iris_resource *res = (void *) p_surf->texture;
|
2018-04-06 23:57:45 -07:00
|
|
|
|
|
2018-06-28 00:57:49 -07:00
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(p_surf->texture), writeable);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(surf->surface_state.res), false);
|
|
|
|
|
|
|
2019-03-01 10:34:40 -08:00
|
|
|
|
if (res->aux.bo) {
|
2018-12-08 11:52:55 -08:00
|
|
|
|
iris_use_pinned_bo(batch, res->aux.bo, writeable);
|
2019-03-26 16:28:10 -07:00
|
|
|
|
if (res->aux.clear_color_bo)
|
|
|
|
|
|
iris_use_pinned_bo(batch, res->aux.clear_color_bo, false);
|
2019-03-19 12:47:58 -07:00
|
|
|
|
|
|
|
|
|
|
if (memcmp(&res->aux.clear_color, &surf->clear_color,
|
|
|
|
|
|
sizeof(surf->clear_color)) != 0) {
|
2019-03-27 14:42:12 -07:00
|
|
|
|
update_clear_value(ice, batch, res, &surf->surface_state,
|
|
|
|
|
|
res->aux.possible_usages, &surf->view);
|
2019-03-19 12:47:58 -07:00
|
|
|
|
surf->clear_color = res->aux.clear_color;
|
|
|
|
|
|
}
|
2019-03-01 10:34:40 -08:00
|
|
|
|
}
|
2018-12-08 11:52:55 -08:00
|
|
|
|
|
2018-12-07 19:51:05 -08:00
|
|
|
|
return surf->surface_state.offset +
|
2019-03-27 14:42:12 -07:00
|
|
|
|
surf_state_offset_for_aux(res, res->aux.possible_usages, aux_usage);
|
2018-04-06 23:57:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-04-07 06:35:51 -07:00
|
|
|
|
static uint32_t
|
2018-12-07 19:51:05 -08:00
|
|
|
|
use_sampler_view(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
struct iris_sampler_view *isv)
|
2018-04-07 06:35:51 -07:00
|
|
|
|
{
|
2018-12-07 19:51:05 -08:00
|
|
|
|
// XXX: ASTC hacks
|
|
|
|
|
|
enum isl_aux_usage aux_usage =
|
|
|
|
|
|
iris_resource_texture_aux_usage(ice, isv->res, isv->view.format, 0);
|
|
|
|
|
|
|
2018-10-04 19:49:06 -07:00
|
|
|
|
iris_use_pinned_bo(batch, isv->res->bo, false);
|
2018-06-28 00:57:49 -07:00
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(isv->surface_state.res), false);
|
2018-04-07 06:35:51 -07:00
|
|
|
|
|
2019-03-01 10:34:40 -08:00
|
|
|
|
if (isv->res->aux.bo) {
|
2018-12-08 11:52:55 -08:00
|
|
|
|
iris_use_pinned_bo(batch, isv->res->aux.bo, false);
|
2019-03-26 16:28:10 -07:00
|
|
|
|
if (isv->res->aux.clear_color_bo)
|
|
|
|
|
|
iris_use_pinned_bo(batch, isv->res->aux.clear_color_bo, false);
|
2019-03-19 12:47:58 -07:00
|
|
|
|
if (memcmp(&isv->res->aux.clear_color, &isv->clear_color,
|
|
|
|
|
|
sizeof(isv->clear_color)) != 0) {
|
2019-03-27 14:42:12 -07:00
|
|
|
|
update_clear_value(ice, batch, isv->res, &isv->surface_state,
|
|
|
|
|
|
isv->res->aux.sampler_usages, &isv->view);
|
2019-03-19 12:47:58 -07:00
|
|
|
|
isv->clear_color = isv->res->aux.clear_color;
|
|
|
|
|
|
}
|
2019-03-01 10:34:40 -08:00
|
|
|
|
}
|
2018-12-08 11:52:55 -08:00
|
|
|
|
|
2018-12-07 19:51:05 -08:00
|
|
|
|
return isv->surface_state.offset +
|
2019-03-27 14:42:12 -07:00
|
|
|
|
surf_state_offset_for_aux(isv->res, isv->res->aux.sampler_usages,
|
|
|
|
|
|
aux_usage);
|
2018-04-07 06:35:51 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-06 14:56:10 -07:00
|
|
|
|
static uint32_t
|
2018-10-02 10:21:57 -07:00
|
|
|
|
use_const_buffer(struct iris_batch *batch,
|
|
|
|
|
|
struct iris_context *ice,
|
|
|
|
|
|
struct iris_const_buffer *cbuf)
|
2018-06-06 14:56:10 -07:00
|
|
|
|
{
|
2018-10-02 10:21:57 -07:00
|
|
|
|
if (!cbuf->surface_state.res)
|
|
|
|
|
|
return use_null_surface(batch, ice);
|
|
|
|
|
|
|
2018-06-28 00:57:49 -07:00
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(cbuf->data.res), false);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(cbuf->surface_state.res), false);
|
2018-06-06 14:56:10 -07:00
|
|
|
|
|
2018-06-28 00:57:49 -07:00
|
|
|
|
return cbuf->surface_state.offset;
|
2018-06-06 14:56:10 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-24 16:03:32 -07:00
|
|
|
|
static uint32_t
|
|
|
|
|
|
use_ssbo(struct iris_batch *batch, struct iris_context *ice,
|
|
|
|
|
|
struct iris_shader_state *shs, int i)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!shs->ssbo[i])
|
|
|
|
|
|
return use_null_surface(batch, ice);
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_state_ref *surf_state = &shs->ssbo_surface_state[i];
|
|
|
|
|
|
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(shs->ssbo[i]), true);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(surf_state->res), false);
|
|
|
|
|
|
|
|
|
|
|
|
return surf_state->offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-08-30 15:49:32 -07:00
|
|
|
|
static uint32_t
|
|
|
|
|
|
use_image(struct iris_batch *batch, struct iris_context *ice,
|
|
|
|
|
|
struct iris_shader_state *shs, int i)
|
|
|
|
|
|
{
|
2018-09-14 00:49:13 -07:00
|
|
|
|
if (!shs->image[i].res)
|
2018-08-30 15:49:32 -07:00
|
|
|
|
return use_null_surface(batch, ice);
|
|
|
|
|
|
|
2018-12-08 11:52:55 -08:00
|
|
|
|
struct iris_resource *res = (void *) shs->image[i].res;
|
2018-09-14 00:49:13 -07:00
|
|
|
|
struct iris_state_ref *surf_state = &shs->image[i].surface_state;
|
2018-12-08 11:52:55 -08:00
|
|
|
|
bool write = shs->image[i].access & PIPE_IMAGE_ACCESS_WRITE;
|
2018-08-30 15:49:32 -07:00
|
|
|
|
|
2018-12-08 11:52:55 -08:00
|
|
|
|
iris_use_pinned_bo(batch, res->bo, write);
|
2018-08-30 15:49:32 -07:00
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(surf_state->res), false);
|
|
|
|
|
|
|
2018-12-08 11:52:55 -08:00
|
|
|
|
if (res->aux.bo)
|
|
|
|
|
|
iris_use_pinned_bo(batch, res->aux.bo, write);
|
|
|
|
|
|
|
2018-08-30 15:49:32 -07:00
|
|
|
|
return surf_state->offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-08 19:43:34 -07:00
|
|
|
|
#define push_bt_entry(addr) \
|
2018-09-15 14:50:26 -07:00
|
|
|
|
assert(addr >= binder_addr); \
|
2018-11-24 02:55:40 -08:00
|
|
|
|
assert(s < prog_data->binding_table.size_bytes / sizeof(uint32_t)); \
|
2018-09-15 14:50:26 -07:00
|
|
|
|
if (!pin_only) bt_map[s++] = (addr) - binder_addr;
|
2018-11-24 02:55:40 -08:00
|
|
|
|
|
2018-11-23 19:12:36 -08:00
|
|
|
|
#define bt_assert(section, exists) \
|
|
|
|
|
|
if (!pin_only) assert(prog_data->binding_table.section == \
|
|
|
|
|
|
(exists) ? s : 0xd0d0d0d0)
|
2018-09-08 19:43:34 -07:00
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Populate the binding table for a given shader stage.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This fills out the table of pointers to surfaces required by the shader,
|
|
|
|
|
|
* and also adds those buffers to the validation list so the kernel can make
|
|
|
|
|
|
* resident before running our batch.
|
|
|
|
|
|
*/
|
2018-06-06 11:59:17 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_populate_binding_table(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
2018-09-15 14:50:26 -07:00
|
|
|
|
gl_shader_stage stage,
|
2018-10-19 01:14:38 -07:00
|
|
|
|
bool pin_only)
|
2018-06-06 11:59:17 -07:00
|
|
|
|
{
|
2018-09-08 19:43:34 -07:00
|
|
|
|
const struct iris_binder *binder = &ice->state.binder;
|
2018-06-06 11:59:17 -07:00
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
|
|
|
|
|
if (!shader)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
2018-11-23 19:12:36 -08:00
|
|
|
|
UNUSED struct brw_stage_prog_data *prog_data = shader->prog_data;
|
2018-08-18 23:39:48 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-09-08 19:43:34 -07:00
|
|
|
|
uint32_t binder_addr = binder->bo->gtt_offset;
|
2018-07-24 16:03:32 -07:00
|
|
|
|
|
2018-06-17 21:47:52 -07:00
|
|
|
|
//struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
|
2018-06-06 11:59:17 -07:00
|
|
|
|
uint32_t *bt_map = binder->map + binder->bt_offset[stage];
|
|
|
|
|
|
int s = 0;
|
|
|
|
|
|
|
2018-09-21 12:22:34 -07:00
|
|
|
|
const struct shader_info *info = iris_get_shader_info(ice, stage);
|
|
|
|
|
|
if (!info) {
|
|
|
|
|
|
/* TCS passthrough doesn't need a binding table. */
|
|
|
|
|
|
assert(stage == MESA_SHADER_TESS_CTRL);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-23 15:25:10 -07:00
|
|
|
|
if (stage == MESA_SHADER_COMPUTE) {
|
|
|
|
|
|
/* surface for gl_NumWorkGroups */
|
2018-10-19 01:14:38 -07:00
|
|
|
|
struct iris_state_ref *grid_data = &ice->state.grid_size;
|
|
|
|
|
|
struct iris_state_ref *grid_state = &ice->state.grid_surf_state;
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(grid_data->res), false);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(grid_state->res), false);
|
|
|
|
|
|
push_bt_entry(grid_state->offset);
|
2018-09-23 15:25:10 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-06 11:59:17 -07:00
|
|
|
|
if (stage == MESA_SHADER_FRAGMENT) {
|
|
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
2018-07-30 22:59:52 -07:00
|
|
|
|
/* Note that cso_fb->nr_cbufs == fs_key->nr_color_regions. */
|
2018-07-31 10:33:35 +10:00
|
|
|
|
if (cso_fb->nr_cbufs) {
|
|
|
|
|
|
for (unsigned i = 0; i < cso_fb->nr_cbufs; i++) {
|
2018-12-07 19:51:05 -08:00
|
|
|
|
uint32_t addr;
|
|
|
|
|
|
if (cso_fb->cbufs[i]) {
|
2019-03-27 13:09:34 -07:00
|
|
|
|
addr = use_surface(ice, batch, cso_fb->cbufs[i], true,
|
2018-12-07 19:51:05 -08:00
|
|
|
|
ice->state.draw_aux_usage[i]);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addr = use_null_fb_surface(batch, ice);
|
|
|
|
|
|
}
|
2018-09-08 19:43:34 -07:00
|
|
|
|
push_bt_entry(addr);
|
2018-07-31 10:33:35 +10:00
|
|
|
|
}
|
2018-07-30 22:59:52 -07:00
|
|
|
|
} else {
|
2018-09-08 19:43:34 -07:00
|
|
|
|
uint32_t addr = use_null_fb_surface(batch, ice);
|
|
|
|
|
|
push_bt_entry(addr);
|
2018-07-30 22:59:52 -07:00
|
|
|
|
}
|
2018-06-06 11:59:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-13 11:36:10 -08:00
|
|
|
|
unsigned num_textures = util_last_bit(info->textures_used);
|
2018-06-06 11:59:17 -07:00
|
|
|
|
|
2019-01-13 11:36:10 -08:00
|
|
|
|
bt_assert(texture_start, num_textures > 0);
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < num_textures; i++) {
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_sampler_view *view = shs->textures[i];
|
2018-12-07 19:51:05 -08:00
|
|
|
|
uint32_t addr = view ? use_sampler_view(ice, batch, view)
|
2018-09-08 19:43:34 -07:00
|
|
|
|
: use_null_surface(batch, ice);
|
|
|
|
|
|
push_bt_entry(addr);
|
2018-06-06 11:59:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-23 19:12:36 -08:00
|
|
|
|
bt_assert(image_start, info->num_images > 0);
|
|
|
|
|
|
|
2018-10-10 21:44:43 -07:00
|
|
|
|
for (int i = 0; i < info->num_images; i++) {
|
|
|
|
|
|
uint32_t addr = use_image(batch, ice, shs, i);
|
|
|
|
|
|
push_bt_entry(addr);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-19 11:32:37 -08:00
|
|
|
|
bt_assert(ubo_start, shader->num_cbufs > 0);
|
2018-06-06 14:56:10 -07:00
|
|
|
|
|
2019-01-19 11:32:37 -08:00
|
|
|
|
for (int i = 0; i < shader->num_cbufs; i++) {
|
2018-10-02 10:21:57 -07:00
|
|
|
|
uint32_t addr = use_const_buffer(batch, ice, &shs->constbuf[i]);
|
2018-09-08 19:43:34 -07:00
|
|
|
|
push_bt_entry(addr);
|
2018-06-06 14:56:10 -07:00
|
|
|
|
}
|
2018-07-24 16:03:32 -07:00
|
|
|
|
|
2018-11-23 19:12:36 -08:00
|
|
|
|
bt_assert(ssbo_start, info->num_abos + info->num_ssbos > 0);
|
|
|
|
|
|
|
2018-07-24 17:44:09 -07:00
|
|
|
|
/* XXX: st is wasting 16 binding table slots for ABOs. Should add a cap
|
|
|
|
|
|
* for changing nir_lower_atomics_to_ssbos setting and buffer_base offset
|
|
|
|
|
|
* in st_atom_storagebuf.c so it'll compact them into one range, with
|
|
|
|
|
|
* SSBOs starting at info->num_abos. Ideally it'd reset num_abos to 0 too
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (info->num_abos + info->num_ssbos > 0) {
|
|
|
|
|
|
for (int i = 0; i < IRIS_MAX_ABOS + info->num_ssbos; i++) {
|
2018-09-08 19:43:34 -07:00
|
|
|
|
uint32_t addr = use_ssbo(batch, ice, shs, i);
|
|
|
|
|
|
push_bt_entry(addr);
|
2018-07-24 17:44:09 -07:00
|
|
|
|
}
|
2018-07-24 16:03:32 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-06 11:59:17 -07:00
|
|
|
|
#if 0
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* XXX: YUV surfaces not implemented yet */
|
2018-11-23 19:12:36 -08:00
|
|
|
|
bt_assert(plane_start[1], ...);
|
|
|
|
|
|
bt_assert(plane_start[2], ...);
|
2018-06-06 11:59:17 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-13 03:07:00 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_use_optional_res(struct iris_batch *batch,
|
|
|
|
|
|
struct pipe_resource *res,
|
|
|
|
|
|
bool writeable)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (res) {
|
|
|
|
|
|
struct iris_bo *bo = iris_resource_bo(res);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, writeable);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-09 00:50:24 -08:00
|
|
|
|
static void
|
2019-03-09 01:02:06 -08:00
|
|
|
|
pin_depth_and_stencil_buffers(struct iris_batch *batch,
|
|
|
|
|
|
struct pipe_surface *zsbuf,
|
|
|
|
|
|
struct iris_depth_stencil_alpha_state *cso_zsa)
|
2019-03-09 00:50:24 -08:00
|
|
|
|
{
|
|
|
|
|
|
if (!zsbuf)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_resource *zres, *sres;
|
|
|
|
|
|
iris_get_depth_stencil_resources(zsbuf->texture, &zres, &sres);
|
|
|
|
|
|
|
|
|
|
|
|
if (zres) {
|
2019-03-09 01:02:06 -08:00
|
|
|
|
iris_use_pinned_bo(batch, zres->bo, cso_zsa->depth_writes_enabled);
|
2019-03-09 00:50:24 -08:00
|
|
|
|
if (zres->aux.bo) {
|
|
|
|
|
|
iris_use_pinned_bo(batch, zres->aux.bo,
|
2019-03-09 01:02:06 -08:00
|
|
|
|
cso_zsa->depth_writes_enabled);
|
2019-03-09 00:50:24 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (sres) {
|
2019-03-09 01:02:06 -08:00
|
|
|
|
iris_use_pinned_bo(batch, sres->bo, cso_zsa->stencil_writes_enabled);
|
2019-03-09 00:50:24 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* ------------------------------------------------------------------- */
|
2018-06-13 03:07:00 -07:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Pin any BOs which were installed by a previous batch, and restored
|
|
|
|
|
|
* via the hardware logical context mechanism.
|
|
|
|
|
|
*
|
|
|
|
|
|
* We don't need to re-emit all state every batch - the hardware context
|
|
|
|
|
|
* mechanism will save and restore it for us. This includes pointers to
|
|
|
|
|
|
* various BOs...which won't exist unless we ask the kernel to pin them
|
|
|
|
|
|
* by adding them to the validation list.
|
|
|
|
|
|
*
|
|
|
|
|
|
* We can skip buffers if we've re-emitted those packets, as we're
|
|
|
|
|
|
* overwriting those stale pointers with new ones, and don't actually
|
|
|
|
|
|
* refer to the old BOs.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
2018-09-19 12:25:18 -07:00
|
|
|
|
iris_restore_render_saved_bos(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
const struct pipe_draw_info *draw)
|
2018-06-13 03:07:00 -07:00
|
|
|
|
{
|
2018-12-04 16:38:14 -08:00
|
|
|
|
struct iris_genx_state *genx = ice->state.genx;
|
|
|
|
|
|
|
2018-06-25 08:25:22 -07:00
|
|
|
|
const uint64_t clean = ~ice->state.dirty;
|
2018-06-13 03:07:00 -07:00
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_CC_VIEWPORT) {
|
|
|
|
|
|
iris_use_optional_res(batch, ice->state.last_res.cc_vp, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_SF_CL_VIEWPORT) {
|
|
|
|
|
|
iris_use_optional_res(batch, ice->state.last_res.sf_cl_vp, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_BLEND_STATE) {
|
|
|
|
|
|
iris_use_optional_res(batch, ice->state.last_res.blend, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_COLOR_CALC_STATE) {
|
|
|
|
|
|
iris_use_optional_res(batch, ice->state.last_res.color_calc, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-15 16:22:58 -07:00
|
|
|
|
if (clean & IRIS_DIRTY_SCISSOR_RECT) {
|
2018-06-13 03:07:00 -07:00
|
|
|
|
iris_use_optional_res(batch, ice->state.last_res.scissor, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-02 16:06:01 -08:00
|
|
|
|
if (ice->state.streamout_active && (clean & IRIS_DIRTY_SO_BUFFERS)) {
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
|
struct iris_stream_output_target *tgt =
|
|
|
|
|
|
(void *) ice->state.so_target[i];
|
|
|
|
|
|
if (tgt) {
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(tgt->base.buffer),
|
|
|
|
|
|
true);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(tgt->offset.res),
|
|
|
|
|
|
true);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-13 03:07:00 -07:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
2018-09-20 13:32:07 -07:00
|
|
|
|
if (!(clean & (IRIS_DIRTY_CONSTANTS_VS << stage)))
|
2018-06-13 03:07:00 -07:00
|
|
|
|
continue;
|
|
|
|
|
|
|
2018-08-18 23:39:48 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-06-13 03:07:00 -07:00
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
|
|
|
|
|
|
|
|
|
|
|
if (!shader)
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
|
const struct brw_ubo_range *range = &prog_data->ubo_ranges[i];
|
|
|
|
|
|
|
|
|
|
|
|
if (range->length == 0)
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_const_buffer *cbuf = &shs->constbuf[range->block];
|
2018-06-28 00:57:49 -07:00
|
|
|
|
struct iris_resource *res = (void *) cbuf->data.res;
|
2018-06-13 03:07:00 -07:00
|
|
|
|
|
2018-06-19 23:37:10 -07:00
|
|
|
|
if (res)
|
|
|
|
|
|
iris_use_pinned_bo(batch, res->bo, false);
|
|
|
|
|
|
else
|
|
|
|
|
|
iris_use_pinned_bo(batch, batch->screen->workaround_bo, false);
|
2018-06-13 03:07:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-15 14:50:26 -07:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
|
|
|
|
|
if (clean & (IRIS_DIRTY_BINDINGS_VS << stage)) {
|
|
|
|
|
|
/* Re-pin any buffers referred to by the binding table. */
|
2018-10-19 01:14:38 -07:00
|
|
|
|
iris_populate_binding_table(ice, batch, stage, true);
|
2018-09-15 14:50:26 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-13 03:07:00 -07:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
struct pipe_resource *res = shs->sampler_table.res;
|
2018-06-13 03:07:00 -07:00
|
|
|
|
if (res)
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(res), false);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
|
|
|
|
|
if (clean & (IRIS_DIRTY_VS << stage)) {
|
|
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
2018-12-12 01:41:39 -08:00
|
|
|
|
|
2018-06-28 00:57:49 -07:00
|
|
|
|
if (shader) {
|
|
|
|
|
|
struct iris_bo *bo = iris_resource_bo(shader->assembly.res);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, false);
|
2018-06-13 03:07:00 -07:00
|
|
|
|
|
2018-12-12 01:41:39 -08:00
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
|
|
|
|
|
|
if (prog_data->total_scratch > 0) {
|
|
|
|
|
|
struct iris_bo *bo =
|
|
|
|
|
|
iris_get_scratch_space(ice, prog_data->total_scratch, stage);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, true);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-06-13 03:07:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-09 01:02:06 -08:00
|
|
|
|
if ((clean & IRIS_DIRTY_DEPTH_BUFFER) &&
|
|
|
|
|
|
(clean & IRIS_DIRTY_WM_DEPTH_STENCIL)) {
|
2018-06-13 03:07:00 -07:00
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
2019-03-09 01:02:06 -08:00
|
|
|
|
pin_depth_and_stencil_buffers(batch, cso_fb->zsbuf, ice->state.cso_zsa);
|
2018-06-13 03:07:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-20 17:27:47 -07:00
|
|
|
|
if (draw->index_size == 0 && ice->state.last_res.index_buffer) {
|
|
|
|
|
|
/* This draw didn't emit a new index buffer, so we are inheriting the
|
|
|
|
|
|
* older index buffer. This draw didn't need it, but future ones may.
|
|
|
|
|
|
*/
|
|
|
|
|
|
struct iris_bo *bo = iris_resource_bo(ice->state.last_res.index_buffer);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, false);
|
2018-06-13 03:07:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_VERTEX_BUFFERS) {
|
2018-12-04 16:38:14 -08:00
|
|
|
|
uint64_t bound = ice->state.bound_vertex_buffers;
|
|
|
|
|
|
while (bound) {
|
|
|
|
|
|
const int i = u_bit_scan64(&bound);
|
|
|
|
|
|
struct pipe_resource *res = genx->vertex_buffers[i].resource;
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(res), false);
|
2018-06-13 03:07:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-19 12:25:18 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_restore_compute_saved_bos(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
const struct pipe_grid_info *grid)
|
|
|
|
|
|
{
|
|
|
|
|
|
const uint64_t clean = ~ice->state.dirty;
|
|
|
|
|
|
|
|
|
|
|
|
const int stage = MESA_SHADER_COMPUTE;
|
|
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_CONSTANTS_CS) {
|
|
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
|
|
|
|
|
|
|
|
|
|
|
if (shader) {
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
|
|
|
|
|
|
const struct brw_ubo_range *range = &prog_data->ubo_ranges[0];
|
|
|
|
|
|
|
|
|
|
|
|
if (range->length > 0) {
|
|
|
|
|
|
struct iris_const_buffer *cbuf = &shs->constbuf[range->block];
|
|
|
|
|
|
struct iris_resource *res = (void *) cbuf->data.res;
|
|
|
|
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
|
|
iris_use_pinned_bo(batch, res->bo, false);
|
|
|
|
|
|
else
|
|
|
|
|
|
iris_use_pinned_bo(batch, batch->screen->workaround_bo, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_BINDINGS_CS) {
|
|
|
|
|
|
/* Re-pin any buffers referred to by the binding table. */
|
2018-10-19 01:14:38 -07:00
|
|
|
|
iris_populate_binding_table(ice, batch, stage, true);
|
2018-09-19 12:25:18 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct pipe_resource *sampler_res = shs->sampler_table.res;
|
|
|
|
|
|
if (sampler_res)
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(sampler_res), false);
|
|
|
|
|
|
|
|
|
|
|
|
if (clean & IRIS_DIRTY_CS) {
|
|
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
2018-12-12 01:41:39 -08:00
|
|
|
|
|
2018-09-19 12:25:18 -07:00
|
|
|
|
if (shader) {
|
|
|
|
|
|
struct iris_bo *bo = iris_resource_bo(shader->assembly.res);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, false);
|
|
|
|
|
|
|
2018-12-12 01:41:39 -08:00
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
|
|
|
|
|
|
if (prog_data->total_scratch > 0) {
|
|
|
|
|
|
struct iris_bo *bo =
|
|
|
|
|
|
iris_get_scratch_space(ice, prog_data->total_scratch, stage);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, true);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-09-19 12:25:18 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-08 19:43:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Possibly emit STATE_BASE_ADDRESS to update Surface State Base Address.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_update_surface_base_address(struct iris_batch *batch,
|
|
|
|
|
|
struct iris_binder *binder)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (batch->last_surface_base_address == binder->bo->gtt_offset)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
flush_for_state_base_change(batch);
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(STATE_BASE_ADDRESS), sba) {
|
2018-12-12 00:02:25 -08:00
|
|
|
|
sba.SurfaceStateMOCS = MOCS_WB;
|
2018-09-08 19:43:34 -07:00
|
|
|
|
sba.SurfaceStateBaseAddressModifyEnable = true;
|
|
|
|
|
|
sba.SurfaceStateBaseAddress = ro_bo(binder->bo, 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
batch->last_surface_base_address = binder->bo->gtt_offset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-09-01 00:58:29 -07:00
|
|
|
|
iris_upload_dirty_render_state(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
const struct pipe_draw_info *draw)
|
2018-01-25 01:36:49 -08:00
|
|
|
|
{
|
2018-06-25 08:25:22 -07:00
|
|
|
|
const uint64_t dirty = ice->state.dirty;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
|
2018-11-03 07:24:54 -07:00
|
|
|
|
if (!(dirty & IRIS_ALL_DIRTY_FOR_RENDER))
|
2018-09-01 00:58:29 -07:00
|
|
|
|
return;
|
|
|
|
|
|
|
2018-06-29 12:58:31 -07:00
|
|
|
|
struct iris_genx_state *genx = ice->state.genx;
|
2018-09-08 19:43:34 -07:00
|
|
|
|
struct iris_binder *binder = &ice->state.binder;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
struct brw_wm_prog_data *wm_prog_data = (void *)
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_FRAGMENT]->prog_data;
|
|
|
|
|
|
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_CC_VIEWPORT) {
|
2018-07-14 01:29:33 -07:00
|
|
|
|
const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
|
|
|
|
|
|
uint32_t cc_vp_address;
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: could avoid streaming for depth_clip [0,1] case. */
|
|
|
|
|
|
uint32_t *cc_vp_map =
|
|
|
|
|
|
stream_state(batch, ice->state.dynamic_uploader,
|
|
|
|
|
|
&ice->state.last_res.cc_vp,
|
|
|
|
|
|
4 * ice->state.num_viewports *
|
|
|
|
|
|
GENX(CC_VIEWPORT_length), 32, &cc_vp_address);
|
|
|
|
|
|
for (int i = 0; i < ice->state.num_viewports; i++) {
|
|
|
|
|
|
float zmin, zmax;
|
|
|
|
|
|
util_viewport_zmin_zmax(&ice->state.viewports[i],
|
|
|
|
|
|
cso_rast->clip_halfz, &zmin, &zmax);
|
|
|
|
|
|
if (cso_rast->depth_clip_near)
|
|
|
|
|
|
zmin = 0.0;
|
|
|
|
|
|
if (cso_rast->depth_clip_far)
|
|
|
|
|
|
zmax = 1.0;
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_state(GENX(CC_VIEWPORT), cc_vp_map, ccv) {
|
|
|
|
|
|
ccv.MinimumDepth = zmin;
|
|
|
|
|
|
ccv.MaximumDepth = zmax;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cc_vp_map += GENX(CC_VIEWPORT_length);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_CC), ptr) {
|
2018-07-14 01:29:33 -07:00
|
|
|
|
ptr.CCViewportPointer = cc_vp_address;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_SF_CL_VIEWPORT) {
|
2018-12-03 02:02:49 -08:00
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
|
|
|
|
|
uint32_t sf_cl_vp_address;
|
|
|
|
|
|
uint32_t *vp_map =
|
|
|
|
|
|
stream_state(batch, ice->state.dynamic_uploader,
|
|
|
|
|
|
&ice->state.last_res.sf_cl_vp,
|
|
|
|
|
|
4 * ice->state.num_viewports *
|
|
|
|
|
|
GENX(SF_CLIP_VIEWPORT_length), 64, &sf_cl_vp_address);
|
|
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < ice->state.num_viewports; i++) {
|
|
|
|
|
|
const struct pipe_viewport_state *state = &ice->state.viewports[i];
|
2018-12-03 02:08:23 -08:00
|
|
|
|
float gb_xmin, gb_xmax, gb_ymin, gb_ymax;
|
2018-12-03 02:02:49 -08:00
|
|
|
|
|
|
|
|
|
|
float vp_xmin = viewport_extent(state, 0, -1.0f);
|
|
|
|
|
|
float vp_xmax = viewport_extent(state, 0, 1.0f);
|
|
|
|
|
|
float vp_ymin = viewport_extent(state, 1, -1.0f);
|
|
|
|
|
|
float vp_ymax = viewport_extent(state, 1, 1.0f);
|
|
|
|
|
|
|
2018-12-03 02:08:23 -08:00
|
|
|
|
calculate_guardband_size(cso_fb->width, cso_fb->height,
|
|
|
|
|
|
state->scale[0], state->scale[1],
|
|
|
|
|
|
state->translate[0], state->translate[1],
|
|
|
|
|
|
&gb_xmin, &gb_xmax, &gb_ymin, &gb_ymax);
|
|
|
|
|
|
|
2018-12-03 02:02:49 -08:00
|
|
|
|
iris_pack_state(GENX(SF_CLIP_VIEWPORT), vp_map, vp) {
|
|
|
|
|
|
vp.ViewportMatrixElementm00 = state->scale[0];
|
|
|
|
|
|
vp.ViewportMatrixElementm11 = state->scale[1];
|
|
|
|
|
|
vp.ViewportMatrixElementm22 = state->scale[2];
|
|
|
|
|
|
vp.ViewportMatrixElementm30 = state->translate[0];
|
|
|
|
|
|
vp.ViewportMatrixElementm31 = state->translate[1];
|
|
|
|
|
|
vp.ViewportMatrixElementm32 = state->translate[2];
|
2018-12-03 02:08:23 -08:00
|
|
|
|
vp.XMinClipGuardband = gb_xmin;
|
|
|
|
|
|
vp.XMaxClipGuardband = gb_xmax;
|
|
|
|
|
|
vp.YMinClipGuardband = gb_ymin;
|
|
|
|
|
|
vp.YMaxClipGuardband = gb_ymax;
|
2018-12-03 02:02:49 -08:00
|
|
|
|
vp.XMinViewPort = MAX2(vp_xmin, 0);
|
|
|
|
|
|
vp.XMaxViewPort = MIN2(vp_xmax, cso_fb->width) - 1;
|
|
|
|
|
|
vp.YMinViewPort = MAX2(vp_ymin, 0);
|
|
|
|
|
|
vp.YMaxViewPort = MIN2(vp_ymax, cso_fb->height) - 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
vp_map += GENX(SF_CLIP_VIEWPORT_length);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP), ptr) {
|
2018-12-03 02:02:49 -08:00
|
|
|
|
ptr.SFClipViewportPointer = sf_cl_vp_address;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_URB) {
|
2019-03-06 13:27:28 -08:00
|
|
|
|
unsigned size[4];
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = MESA_SHADER_VERTEX; i <= MESA_SHADER_GEOMETRY; i++) {
|
|
|
|
|
|
if (!ice->shaders.prog[i]) {
|
|
|
|
|
|
size[i] = 1;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
struct brw_vue_prog_data *vue_prog_data =
|
|
|
|
|
|
(void *) ice->shaders.prog[i]->prog_data;
|
|
|
|
|
|
size[i] = vue_prog_data->urb_entry_size;
|
|
|
|
|
|
}
|
|
|
|
|
|
assert(size[i] != 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
genX(emit_urb_setup)(ice, batch, size,
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_TESS_EVAL] != NULL,
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_GEOMETRY] != NULL);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_BLEND_STATE) {
|
2018-01-25 21:53:41 -08:00
|
|
|
|
struct iris_blend_state *cso_blend = ice->state.cso_blend;
|
2018-01-30 01:50:44 -08:00
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
2018-01-25 21:53:41 -08:00
|
|
|
|
struct iris_depth_stencil_alpha_state *cso_zsa = ice->state.cso_zsa;
|
2018-08-29 15:24:45 -07:00
|
|
|
|
const int header_dwords = GENX(BLEND_STATE_length);
|
2019-02-15 14:22:52 -08:00
|
|
|
|
|
|
|
|
|
|
/* Always write at least one BLEND_STATE - the final RT message will
|
|
|
|
|
|
* reference BLEND_STATE[0] even if there aren't color writes. There
|
|
|
|
|
|
* may still be alpha testing, computed depth, and so on.
|
|
|
|
|
|
*/
|
|
|
|
|
|
const int rt_dwords =
|
|
|
|
|
|
MAX2(cso_fb->nr_cbufs, 1) * GENX(BLEND_STATE_ENTRY_length);
|
|
|
|
|
|
|
2018-01-25 21:53:41 -08:00
|
|
|
|
uint32_t blend_offset;
|
|
|
|
|
|
uint32_t *blend_map =
|
2018-06-15 11:55:28 -07:00
|
|
|
|
stream_state(batch, ice->state.dynamic_uploader,
|
|
|
|
|
|
&ice->state.last_res.blend,
|
2018-08-29 15:24:45 -07:00
|
|
|
|
4 * (header_dwords + rt_dwords), 64, &blend_offset);
|
2018-01-25 21:53:41 -08:00
|
|
|
|
|
|
|
|
|
|
uint32_t blend_state_header;
|
|
|
|
|
|
iris_pack_state(GENX(BLEND_STATE), &blend_state_header, bs) {
|
|
|
|
|
|
bs.AlphaTestEnable = cso_zsa->alpha.enabled;
|
|
|
|
|
|
bs.AlphaTestFunction = translate_compare_func(cso_zsa->alpha.func);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
blend_map[0] = blend_state_header | cso_blend->blend_state[0];
|
2018-08-29 15:24:45 -07:00
|
|
|
|
memcpy(&blend_map[1], &cso_blend->blend_state[1], 4 * rt_dwords);
|
2018-01-25 21:53:41 -08:00
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_BLEND_STATE_POINTERS), ptr) {
|
|
|
|
|
|
ptr.BlendStatePointer = blend_offset;
|
|
|
|
|
|
ptr.BlendStatePointerValid = true;
|
|
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_COLOR_CALC_STATE) {
|
|
|
|
|
|
struct iris_depth_stencil_alpha_state *cso = ice->state.cso_zsa;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN == 8
|
|
|
|
|
|
struct pipe_stencil_ref *p_stencil_refs = &ice->state.stencil_ref;
|
|
|
|
|
|
#endif
|
2018-01-25 01:36:49 -08:00
|
|
|
|
uint32_t cc_offset;
|
|
|
|
|
|
void *cc_map =
|
2018-04-06 00:05:24 -07:00
|
|
|
|
stream_state(batch, ice->state.dynamic_uploader,
|
2018-06-15 11:55:28 -07:00
|
|
|
|
&ice->state.last_res.color_calc,
|
2018-04-06 00:05:24 -07:00
|
|
|
|
sizeof(uint32_t) * GENX(COLOR_CALC_STATE_length),
|
|
|
|
|
|
64, &cc_offset);
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_state(GENX(COLOR_CALC_STATE), cc_map, cc) {
|
|
|
|
|
|
cc.AlphaTestFormat = ALPHATEST_FLOAT32;
|
|
|
|
|
|
cc.AlphaReferenceValueAsFLOAT32 = cso->alpha.ref_value;
|
|
|
|
|
|
cc.BlendConstantColorRed = ice->state.blend_color.color[0];
|
|
|
|
|
|
cc.BlendConstantColorGreen = ice->state.blend_color.color[1];
|
|
|
|
|
|
cc.BlendConstantColorBlue = ice->state.blend_color.color[2];
|
|
|
|
|
|
cc.BlendConstantColorAlpha = ice->state.blend_color.color[3];
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN == 8
|
|
|
|
|
|
cc.StencilReferenceValue = p_stencil_refs->ref_value[0];
|
|
|
|
|
|
cc.BackfaceStencilReferenceValue = p_stencil_refs->ref_value[1];
|
|
|
|
|
|
#endif
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
|
|
|
|
|
|
ptr.ColorCalcStatePointer = cc_offset;
|
|
|
|
|
|
ptr.ColorCalcStatePointerValid = true;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
}
|
2018-01-20 01:07:41 -08:00
|
|
|
|
}
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 21:39:44 -08:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
2018-02-09 14:21:54 -08:00
|
|
|
|
if (!(dirty & (IRIS_DIRTY_CONSTANTS_VS << stage)))
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
2018-08-18 23:39:48 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
2018-05-29 07:32:43 -07:00
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
2018-02-09 14:21:54 -08:00
|
|
|
|
|
2018-06-06 02:16:52 -07:00
|
|
|
|
if (!shader)
|
2018-01-25 21:39:44 -08:00
|
|
|
|
continue;
|
|
|
|
|
|
|
2018-11-08 23:10:46 -08:00
|
|
|
|
if (shs->cbuf0_needs_upload)
|
|
|
|
|
|
upload_uniforms(ice, stage);
|
|
|
|
|
|
|
2018-06-06 02:16:52 -07:00
|
|
|
|
struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
|
2018-02-09 14:21:54 -08:00
|
|
|
|
|
2018-01-25 21:39:44 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_CONSTANT_VS), pkt) {
|
|
|
|
|
|
pkt._3DCommandSubOpcode = push_constant_opcodes[stage];
|
2018-06-06 02:16:52 -07:00
|
|
|
|
if (prog_data) {
|
|
|
|
|
|
/* The Skylake PRM contains the following restriction:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "The driver must ensure The following case does not occur
|
|
|
|
|
|
* without a flush to the 3D engine: 3DSTATE_CONSTANT_* with
|
|
|
|
|
|
* buffer 3 read length equal to zero committed followed by a
|
|
|
|
|
|
* 3DSTATE_CONSTANT_* with buffer 0 read length not equal to
|
|
|
|
|
|
* zero committed."
|
|
|
|
|
|
*
|
|
|
|
|
|
* To avoid this, we program the buffers in the highest slots.
|
|
|
|
|
|
* This way, slot 0 is only used if slot 3 is also used.
|
|
|
|
|
|
*/
|
|
|
|
|
|
int n = 3;
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 3; i >= 0; i--) {
|
|
|
|
|
|
const struct brw_ubo_range *range = &prog_data->ubo_ranges[i];
|
|
|
|
|
|
|
|
|
|
|
|
if (range->length == 0)
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
2018-06-06 14:14:31 -07:00
|
|
|
|
struct iris_const_buffer *cbuf = &shs->constbuf[range->block];
|
2018-06-28 00:57:49 -07:00
|
|
|
|
struct iris_resource *res = (void *) cbuf->data.res;
|
2018-06-06 02:16:52 -07:00
|
|
|
|
|
2018-06-28 00:57:49 -07:00
|
|
|
|
assert(cbuf->data.offset % 32 == 0);
|
2018-06-06 02:16:52 -07:00
|
|
|
|
|
|
|
|
|
|
pkt.ConstantBody.ReadLength[n] = range->length;
|
|
|
|
|
|
pkt.ConstantBody.Buffer[n] =
|
2018-06-28 00:57:49 -07:00
|
|
|
|
res ? ro_bo(res->bo, range->start * 32 + cbuf->data.offset)
|
2018-06-19 23:37:10 -07:00
|
|
|
|
: ro_bo(batch->screen->workaround_bo, 0);
|
2018-06-06 02:16:52 -07:00
|
|
|
|
n--;
|
|
|
|
|
|
}
|
2018-01-25 21:39:44 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-15 12:33:58 -07:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
|
|
|
|
|
if (dirty & (IRIS_DIRTY_BINDINGS_VS << stage)) {
|
2018-06-06 11:59:17 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_VS), ptr) {
|
|
|
|
|
|
ptr._3DCommandSubOpcode = 38 + stage;
|
|
|
|
|
|
ptr.PointertoVSBindingTable = binder->bt_offset[stage];
|
2018-01-30 01:40:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-06-15 12:33:58 -07:00
|
|
|
|
}
|
2018-03-26 14:11:55 -07:00
|
|
|
|
|
2018-06-15 12:33:58 -07:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
|
|
|
|
|
if (dirty & (IRIS_DIRTY_BINDINGS_VS << stage)) {
|
2018-10-19 01:14:38 -07:00
|
|
|
|
iris_populate_binding_table(ice, batch, stage, false);
|
2018-03-26 14:11:55 -07:00
|
|
|
|
}
|
2018-01-30 01:40:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
2018-01-30 01:44:07 -08:00
|
|
|
|
if (!(dirty & (IRIS_DIRTY_SAMPLER_STATES_VS << stage)) ||
|
|
|
|
|
|
!ice->shaders.prog[stage])
|
2018-01-25 01:36:49 -08:00
|
|
|
|
continue;
|
2018-01-22 23:39:38 -08:00
|
|
|
|
|
2018-12-04 15:34:30 -08:00
|
|
|
|
iris_upload_sampler_states(ice, stage);
|
|
|
|
|
|
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
struct pipe_resource *res = shs->sampler_table.res;
|
2018-06-13 03:06:50 -07:00
|
|
|
|
if (res)
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(res), false);
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_SAMPLER_STATE_POINTERS_VS), ptr) {
|
|
|
|
|
|
ptr._3DCommandSubOpcode = 43 + stage;
|
2018-08-18 23:43:14 -07:00
|
|
|
|
ptr.PointertoVSSamplerState = shs->sampler_table.offset;
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-12-04 15:34:30 -08:00
|
|
|
|
if (ice->state.need_border_colors)
|
|
|
|
|
|
iris_use_pinned_bo(batch, ice->state.border_color_pool.bo, false);
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_MULTISAMPLE) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_MULTISAMPLE), ms) {
|
|
|
|
|
|
ms.PixelLocation =
|
|
|
|
|
|
ice->state.cso_rast->half_pixel_center ? CENTER : UL_CORNER;
|
|
|
|
|
|
if (ice->state.framebuffer.samples > 0)
|
|
|
|
|
|
ms.NumberofMultisamples = ffs(ice->state.framebuffer.samples) - 1;
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_SAMPLE_MASK) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_SAMPLE_MASK), ms) {
|
2019-01-15 23:22:48 -08:00
|
|
|
|
ms.SampleMask = ice->state.sample_mask;
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
|
|
|
|
|
|
if (!(dirty & (IRIS_DIRTY_VS << stage)))
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
2018-01-30 02:16:34 -08:00
|
|
|
|
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
|
|
|
|
|
|
|
|
|
|
|
|
if (shader) {
|
2019-04-11 11:51:26 -07:00
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
2018-06-28 00:57:49 -07:00
|
|
|
|
struct iris_resource *cache = (void *) shader->assembly.res;
|
2018-04-06 00:19:57 -07:00
|
|
|
|
iris_use_pinned_bo(batch, cache->bo, false);
|
2019-04-11 11:51:26 -07:00
|
|
|
|
|
|
|
|
|
|
if (prog_data->total_scratch > 0) {
|
|
|
|
|
|
struct iris_bo *bo =
|
|
|
|
|
|
iris_get_scratch_space(ice, prog_data->total_scratch, stage);
|
|
|
|
|
|
iris_use_pinned_bo(batch, bo, true);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-30 02:16:34 -08:00
|
|
|
|
iris_batch_emit(batch, shader->derived_data,
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_derived_program_state_size(stage));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (stage == MESA_SHADER_TESS_EVAL) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_HS), hs);
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_TE), te);
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_DS), ds);
|
|
|
|
|
|
} else if (stage == MESA_SHADER_GEOMETRY) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_GS), gs);
|
2018-01-22 23:39:38 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-18 09:02:35 -07:00
|
|
|
|
if (ice->state.streamout_active) {
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_SO_BUFFERS) {
|
|
|
|
|
|
iris_batch_emit(batch, genx->so_buffers,
|
|
|
|
|
|
4 * 4 * GENX(3DSTATE_SO_BUFFER_length));
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
|
struct iris_stream_output_target *tgt =
|
|
|
|
|
|
(void *) ice->state.so_target[i];
|
|
|
|
|
|
if (tgt) {
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(tgt->base.buffer),
|
|
|
|
|
|
true);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(tgt->offset.res),
|
|
|
|
|
|
true);
|
|
|
|
|
|
}
|
2018-07-11 17:05:10 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
2018-07-18 09:02:35 -07:00
|
|
|
|
if ((dirty & IRIS_DIRTY_SO_DECL_LIST) && ice->state.streamout) {
|
|
|
|
|
|
uint32_t *decl_list =
|
|
|
|
|
|
ice->state.streamout + GENX(3DSTATE_STREAMOUT_length);
|
|
|
|
|
|
iris_batch_emit(batch, decl_list, 4 * ((decl_list[0] & 0xff) + 2));
|
|
|
|
|
|
}
|
2018-06-29 12:58:31 -07:00
|
|
|
|
|
2018-07-18 09:02:35 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_STREAMOUT) {
|
|
|
|
|
|
const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
|
2018-07-11 12:45:19 -07:00
|
|
|
|
|
|
|
|
|
|
uint32_t dynamic_sol[GENX(3DSTATE_STREAMOUT_length)];
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_STREAMOUT), dynamic_sol, sol) {
|
|
|
|
|
|
sol.SOFunctionEnable = true;
|
|
|
|
|
|
sol.SOStatisticsEnable = true;
|
|
|
|
|
|
|
2018-09-28 12:07:54 +02:00
|
|
|
|
sol.RenderingDisable = cso_rast->rasterizer_discard &&
|
|
|
|
|
|
!ice->state.prims_generated_query_active;
|
2018-07-11 12:45:19 -07:00
|
|
|
|
sol.ReorderMode = cso_rast->flatshade_first ? LEADING : TRAILING;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
assert(ice->state.streamout);
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_merge(batch, ice->state.streamout, dynamic_sol,
|
|
|
|
|
|
GENX(3DSTATE_STREAMOUT_length));
|
|
|
|
|
|
}
|
2018-07-18 09:02:35 -07:00
|
|
|
|
} else {
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_STREAMOUT) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_STREAMOUT), sol);
|
|
|
|
|
|
}
|
2018-07-11 12:45:19 -07:00
|
|
|
|
}
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_CLIP) {
|
|
|
|
|
|
struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
|
|
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
uint32_t dynamic_clip[GENX(3DSTATE_CLIP_length)];
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_CLIP), &dynamic_clip, cl) {
|
2018-12-02 14:39:29 -08:00
|
|
|
|
cl.StatisticsEnable = ice->state.statistics_counters_enabled;
|
2018-12-03 02:59:08 -08:00
|
|
|
|
cl.ClipMode = cso_rast->rasterizer_discard ? CLIPMODE_REJECT_ALL
|
|
|
|
|
|
: CLIPMODE_NORMAL;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (wm_prog_data->barycentric_interp_modes &
|
|
|
|
|
|
BRW_BARYCENTRIC_NONPERSPECTIVE_BITS)
|
|
|
|
|
|
cl.NonPerspectiveBarycentricEnable = true;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
cl.ForceZeroRTAIndexEnable = cso_fb->layers == 0;
|
2018-06-20 15:35:10 -07:00
|
|
|
|
cl.MaximumVPIndex = ice->state.num_viewports - 1;
|
2018-01-10 00:19:29 -08:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_merge(batch, cso_rast->clip, dynamic_clip,
|
|
|
|
|
|
ARRAY_SIZE(cso_rast->clip));
|
2018-01-10 00:19:29 -08:00
|
|
|
|
}
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_RASTER) {
|
|
|
|
|
|
struct iris_rasterizer_state *cso = ice->state.cso_rast;
|
|
|
|
|
|
iris_batch_emit(batch, cso->raster, sizeof(cso->raster));
|
|
|
|
|
|
iris_batch_emit(batch, cso->sf, sizeof(cso->sf));
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-06-09 00:01:09 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_WM) {
|
2018-01-25 01:36:49 -08:00
|
|
|
|
struct iris_rasterizer_state *cso = ice->state.cso_rast;
|
|
|
|
|
|
uint32_t dynamic_wm[GENX(3DSTATE_WM_length)];
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_pack_command(GENX(3DSTATE_WM), &dynamic_wm, wm) {
|
2018-11-08 01:14:27 -08:00
|
|
|
|
wm.StatisticsEnable = ice->state.statistics_counters_enabled;
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
wm.BarycentricInterpolationMode =
|
|
|
|
|
|
wm_prog_data->barycentric_interp_modes;
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (wm_prog_data->early_fragment_tests)
|
|
|
|
|
|
wm.EarlyDepthStencilControl = EDSC_PREPS;
|
|
|
|
|
|
else if (wm_prog_data->has_side_effects)
|
|
|
|
|
|
wm.EarlyDepthStencilControl = EDSC_PSEXEC;
|
2019-02-11 14:22:50 -08:00
|
|
|
|
|
|
|
|
|
|
/* We could skip this bit if color writes are enabled. */
|
|
|
|
|
|
if (wm_prog_data->has_side_effects || wm_prog_data->uses_kill)
|
|
|
|
|
|
wm.ForceThreadDispatchEnable = ForceON;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
|
|
|
|
|
iris_emit_merge(batch, cso->wm, dynamic_wm, ARRAY_SIZE(cso->wm));
|
|
|
|
|
|
}
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-08-18 01:24:38 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_SBE) {
|
2018-04-19 19:04:17 -07:00
|
|
|
|
iris_emit_sbe(batch, ice);
|
2018-01-29 15:06:04 -08:00
|
|
|
|
}
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_PS_BLEND) {
|
2018-01-25 21:58:31 -08:00
|
|
|
|
struct iris_blend_state *cso_blend = ice->state.cso_blend;
|
|
|
|
|
|
struct iris_depth_stencil_alpha_state *cso_zsa = ice->state.cso_zsa;
|
2019-02-11 12:07:51 -08:00
|
|
|
|
const struct shader_info *fs_info =
|
|
|
|
|
|
iris_get_shader_info(ice, MESA_SHADER_FRAGMENT);
|
|
|
|
|
|
|
2018-01-25 21:58:31 -08:00
|
|
|
|
uint32_t dynamic_pb[GENX(3DSTATE_PS_BLEND_length)];
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_PS_BLEND), &dynamic_pb, pb) {
|
2019-02-11 12:07:51 -08:00
|
|
|
|
pb.HasWriteableRT = has_writeable_rt(cso_blend, fs_info);
|
2018-01-25 21:58:31 -08:00
|
|
|
|
pb.AlphaTestEnable = cso_zsa->alpha.enabled;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_merge(batch, cso_blend->ps_blend, dynamic_pb,
|
|
|
|
|
|
ARRAY_SIZE(cso_blend->ps_blend));
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2017-12-27 02:54:26 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_WM_DEPTH_STENCIL) {
|
|
|
|
|
|
struct iris_depth_stencil_alpha_state *cso = ice->state.cso_zsa;
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN >= 9
|
2018-01-25 01:36:49 -08:00
|
|
|
|
struct pipe_stencil_ref *p_stencil_refs = &ice->state.stencil_ref;
|
|
|
|
|
|
uint32_t stencil_refs[GENX(3DSTATE_WM_DEPTH_STENCIL_length)];
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_WM_DEPTH_STENCIL), &stencil_refs, wmds) {
|
|
|
|
|
|
wmds.StencilReferenceValue = p_stencil_refs->ref_value[0];
|
|
|
|
|
|
wmds.BackfaceStencilReferenceValue = p_stencil_refs->ref_value[1];
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_merge(batch, cso->wmds, stencil_refs, ARRAY_SIZE(cso->wmds));
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#else
|
|
|
|
|
|
iris_batch_emit(batch, cso->wmds, sizeof(cso->wmds));
|
|
|
|
|
|
#endif
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-06-15 16:22:58 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_SCISSOR_RECT) {
|
2018-06-20 16:07:05 -07:00
|
|
|
|
uint32_t scissor_offset =
|
2018-06-15 11:55:28 -07:00
|
|
|
|
emit_state(batch, ice->state.dynamic_uploader,
|
|
|
|
|
|
&ice->state.last_res.scissor,
|
|
|
|
|
|
ice->state.scissors,
|
2018-04-06 00:05:24 -07:00
|
|
|
|
sizeof(struct pipe_scissor_state) *
|
2018-06-20 16:07:05 -07:00
|
|
|
|
ice->state.num_viewports, 32);
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_SCISSOR_STATE_POINTERS), ptr) {
|
|
|
|
|
|
ptr.ScissorRectPointer = scissor_offset;
|
|
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-08 23:52:07 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_DEPTH_BUFFER) {
|
2018-07-01 22:13:07 -07:00
|
|
|
|
struct iris_depth_buffer_state *cso_z = &ice->state.genx->depth_buffer;
|
2018-05-08 23:52:07 -07:00
|
|
|
|
|
2019-02-26 12:02:35 -08:00
|
|
|
|
/* Do not emit the clear params yets. We need to update the clear value
|
|
|
|
|
|
* first.
|
|
|
|
|
|
*/
|
|
|
|
|
|
uint32_t clear_length = GENX(3DSTATE_CLEAR_PARAMS_length) * 4;
|
|
|
|
|
|
uint32_t cso_z_size = sizeof(cso_z->packets) - clear_length;
|
|
|
|
|
|
iris_batch_emit(batch, cso_z->packets, cso_z_size);
|
|
|
|
|
|
|
|
|
|
|
|
union isl_color_value clear_value = { .f32 = { 0, } };
|
|
|
|
|
|
|
|
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
|
|
|
|
|
if (cso_fb->zsbuf) {
|
|
|
|
|
|
struct iris_resource *zres, *sres;
|
|
|
|
|
|
iris_get_depth_stencil_resources(cso_fb->zsbuf->texture,
|
|
|
|
|
|
&zres, &sres);
|
|
|
|
|
|
if (zres && zres->aux.bo)
|
|
|
|
|
|
clear_value = iris_resource_get_clear_color(zres, NULL, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t clear_params[GENX(3DSTATE_CLEAR_PARAMS_length)];
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_CLEAR_PARAMS), clear_params, clear) {
|
|
|
|
|
|
clear.DepthClearValueValid = true;
|
|
|
|
|
|
clear.DepthClearValue = clear_value.f32[0];
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_batch_emit(batch, clear_params, clear_length);
|
2019-03-09 01:02:06 -08:00
|
|
|
|
}
|
2018-05-08 23:52:07 -07:00
|
|
|
|
|
2019-03-09 01:02:06 -08:00
|
|
|
|
if (dirty & (IRIS_DIRTY_DEPTH_BUFFER | IRIS_DIRTY_WM_DEPTH_STENCIL)) {
|
|
|
|
|
|
/* Listen for buffer changes, and also write enable changes. */
|
|
|
|
|
|
struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
|
|
|
|
|
|
pin_depth_and_stencil_buffers(batch, cso_fb->zsbuf, ice->state.cso_zsa);
|
2018-05-08 23:52:07 -07:00
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_POLYGON_STIPPLE) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_POLY_STIPPLE_PATTERN), poly) {
|
|
|
|
|
|
for (int i = 0; i < 32; i++) {
|
|
|
|
|
|
poly.PatternRow[i] = ice->state.poly_stipple.stipple[i];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_LINE_STIPPLE) {
|
|
|
|
|
|
struct iris_rasterizer_state *cso = ice->state.cso_rast;
|
|
|
|
|
|
iris_batch_emit(batch, cso->line_stipple, sizeof(cso->line_stipple));
|
|
|
|
|
|
}
|
2018-01-22 23:25:18 -08:00
|
|
|
|
|
2018-08-31 18:03:19 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_VF_TOPOLOGY) {
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_VF_TOPOLOGY), topo) {
|
|
|
|
|
|
topo.PrimitiveTopologyType =
|
|
|
|
|
|
translate_prim_type(draw->mode, draw->vertices_per_patch);
|
|
|
|
|
|
}
|
2018-01-22 23:25:18 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_VERTEX_BUFFERS) {
|
2018-12-04 16:38:14 -08:00
|
|
|
|
int count = util_bitcount64(ice->state.bound_vertex_buffers);
|
2019-02-26 14:37:23 +01:00
|
|
|
|
int dynamic_bound = ice->state.bound_vertex_buffers;
|
|
|
|
|
|
|
|
|
|
|
|
if (ice->state.vs_uses_draw_params) {
|
|
|
|
|
|
if (ice->draw.draw_params_offset == 0) {
|
|
|
|
|
|
u_upload_data(ice->state.dynamic_uploader, 0, sizeof(ice->draw.params),
|
|
|
|
|
|
4, &ice->draw.params, &ice->draw.draw_params_offset,
|
|
|
|
|
|
&ice->draw.draw_params_res);
|
|
|
|
|
|
}
|
|
|
|
|
|
assert(ice->draw.draw_params_res);
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_vertex_buffer_state *state =
|
|
|
|
|
|
&(ice->state.genx->vertex_buffers[count]);
|
|
|
|
|
|
pipe_resource_reference(&state->resource, ice->draw.draw_params_res);
|
|
|
|
|
|
struct iris_resource *res = (void *) state->resource;
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_state(GENX(VERTEX_BUFFER_STATE), state->state, vb) {
|
|
|
|
|
|
vb.VertexBufferIndex = count;
|
|
|
|
|
|
vb.AddressModifyEnable = true;
|
|
|
|
|
|
vb.BufferPitch = 0;
|
|
|
|
|
|
vb.BufferSize = res->bo->size - ice->draw.draw_params_offset;
|
|
|
|
|
|
vb.BufferStartingAddress =
|
|
|
|
|
|
ro_bo(NULL, res->bo->gtt_offset +
|
|
|
|
|
|
(int) ice->draw.draw_params_offset);
|
|
|
|
|
|
vb.MOCS = mocs(res->bo);
|
|
|
|
|
|
}
|
|
|
|
|
|
dynamic_bound |= 1ull << count;
|
|
|
|
|
|
count++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (ice->state.vs_uses_derived_draw_params) {
|
|
|
|
|
|
u_upload_data(ice->state.dynamic_uploader, 0,
|
|
|
|
|
|
sizeof(ice->draw.derived_params), 4,
|
|
|
|
|
|
&ice->draw.derived_params,
|
|
|
|
|
|
&ice->draw.derived_draw_params_offset,
|
|
|
|
|
|
&ice->draw.derived_draw_params_res);
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_vertex_buffer_state *state =
|
|
|
|
|
|
&(ice->state.genx->vertex_buffers[count]);
|
|
|
|
|
|
pipe_resource_reference(&state->resource,
|
|
|
|
|
|
ice->draw.derived_draw_params_res);
|
|
|
|
|
|
struct iris_resource *res = (void *) ice->draw.derived_draw_params_res;
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_state(GENX(VERTEX_BUFFER_STATE), state->state, vb) {
|
|
|
|
|
|
vb.VertexBufferIndex = count;
|
|
|
|
|
|
vb.AddressModifyEnable = true;
|
|
|
|
|
|
vb.BufferPitch = 0;
|
|
|
|
|
|
vb.BufferSize =
|
|
|
|
|
|
res->bo->size - ice->draw.derived_draw_params_offset;
|
|
|
|
|
|
vb.BufferStartingAddress =
|
|
|
|
|
|
ro_bo(NULL, res->bo->gtt_offset +
|
|
|
|
|
|
(int) ice->draw.derived_draw_params_offset);
|
|
|
|
|
|
vb.MOCS = mocs(res->bo);
|
|
|
|
|
|
}
|
|
|
|
|
|
dynamic_bound |= 1ull << count;
|
|
|
|
|
|
count++;
|
|
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
if (count) {
|
2018-11-21 00:06:46 -08:00
|
|
|
|
/* The VF cache designers cut corners, and made the cache key's
|
|
|
|
|
|
* <VertexBufferIndex, Memory Address> tuple only consider the bottom
|
|
|
|
|
|
* 32 bits of the address. If you have two vertex buffers which get
|
|
|
|
|
|
* placed exactly 4 GiB apart and use them in back-to-back draw calls,
|
|
|
|
|
|
* you can get collisions (even within a single batch).
|
|
|
|
|
|
*
|
|
|
|
|
|
* So, we need to do a VF cache invalidate if the buffer for a VB
|
|
|
|
|
|
* slot slot changes [48:32] address bits from the previous time.
|
|
|
|
|
|
*/
|
2018-12-02 14:16:08 -08:00
|
|
|
|
unsigned flush_flags = 0;
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2019-02-26 14:37:23 +01:00
|
|
|
|
uint64_t bound = dynamic_bound;
|
2018-12-04 16:38:14 -08:00
|
|
|
|
while (bound) {
|
|
|
|
|
|
const int i = u_bit_scan64(&bound);
|
2018-11-21 00:06:46 -08:00
|
|
|
|
uint16_t high_bits = 0;
|
|
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
struct iris_resource *res =
|
|
|
|
|
|
(void *) genx->vertex_buffers[i].resource;
|
2018-11-21 00:06:46 -08:00
|
|
|
|
if (res) {
|
2018-11-07 11:49:04 +10:00
|
|
|
|
iris_use_pinned_bo(batch, res->bo, false);
|
2018-11-21 00:06:46 -08:00
|
|
|
|
|
|
|
|
|
|
high_bits = res->bo->gtt_offset >> 32ull;
|
|
|
|
|
|
if (high_bits != ice->state.last_vbo_high_bits[i]) {
|
2019-01-17 23:44:09 -08:00
|
|
|
|
flush_flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE |
|
|
|
|
|
|
PIPE_CONTROL_CS_STALL;
|
2018-11-21 00:06:46 -08:00
|
|
|
|
ice->state.last_vbo_high_bits[i] = high_bits;
|
|
|
|
|
|
}
|
2018-12-02 14:16:08 -08:00
|
|
|
|
|
|
|
|
|
|
/* If the buffer was written to by streamout, we may need
|
|
|
|
|
|
* to stall so those writes land and become visible to the
|
|
|
|
|
|
* vertex fetcher.
|
|
|
|
|
|
*
|
|
|
|
|
|
* TODO: This may stall more than necessary.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (res->bind_history & PIPE_BIND_STREAM_OUTPUT)
|
|
|
|
|
|
flush_flags |= PIPE_CONTROL_CS_STALL;
|
2018-11-21 00:06:46 -08:00
|
|
|
|
}
|
2018-06-26 13:25:22 -07:00
|
|
|
|
}
|
2018-11-21 00:06:46 -08:00
|
|
|
|
|
2018-12-02 14:16:08 -08:00
|
|
|
|
if (flush_flags)
|
|
|
|
|
|
iris_emit_pipe_control_flush(batch, flush_flags);
|
2018-11-21 00:06:46 -08:00
|
|
|
|
|
2018-12-04 16:38:14 -08:00
|
|
|
|
const unsigned vb_dwords = GENX(VERTEX_BUFFER_STATE_length);
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t *map =
|
|
|
|
|
|
iris_get_command_space(batch, 4 * (1 + vb_dwords * count));
|
|
|
|
|
|
_iris_pack_command(batch, GENX(3DSTATE_VERTEX_BUFFERS), map, vb) {
|
|
|
|
|
|
vb.DWordLength = (vb_dwords * count + 1) - 2;
|
|
|
|
|
|
}
|
|
|
|
|
|
map += 1;
|
|
|
|
|
|
|
2019-02-26 14:37:23 +01:00
|
|
|
|
bound = dynamic_bound;
|
2018-12-04 16:38:14 -08:00
|
|
|
|
while (bound) {
|
|
|
|
|
|
const int i = u_bit_scan64(&bound);
|
|
|
|
|
|
memcpy(map, genx->vertex_buffers[i].state,
|
|
|
|
|
|
sizeof(uint32_t) * vb_dwords);
|
|
|
|
|
|
map += vb_dwords;
|
|
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_VERTEX_ELEMENTS) {
|
|
|
|
|
|
struct iris_vertex_element_state *cso = ice->state.cso_vertex_elements;
|
2018-07-18 16:27:07 -07:00
|
|
|
|
const unsigned entries = MAX2(cso->count, 1);
|
2019-02-26 14:37:23 +01:00
|
|
|
|
if (!(ice->state.vs_needs_sgvs_element ||
|
2019-02-27 20:44:27 +01:00
|
|
|
|
ice->state.vs_uses_derived_draw_params ||
|
|
|
|
|
|
ice->state.vs_needs_edge_flag)) {
|
2019-02-26 14:37:23 +01:00
|
|
|
|
iris_batch_emit(batch, cso->vertex_elements, sizeof(uint32_t) *
|
|
|
|
|
|
(1 + entries * GENX(VERTEX_ELEMENT_STATE_length)));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
uint32_t dynamic_ves[1 + 33 * GENX(VERTEX_ELEMENT_STATE_length)];
|
2019-02-27 20:44:27 +01:00
|
|
|
|
const unsigned dyn_count = cso->count +
|
2019-02-26 14:37:23 +01:00
|
|
|
|
ice->state.vs_needs_sgvs_element +
|
|
|
|
|
|
ice->state.vs_uses_derived_draw_params;
|
|
|
|
|
|
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_VERTEX_ELEMENTS),
|
|
|
|
|
|
&dynamic_ves, ve) {
|
|
|
|
|
|
ve.DWordLength =
|
|
|
|
|
|
1 + GENX(VERTEX_ELEMENT_STATE_length) * dyn_count - 2;
|
|
|
|
|
|
}
|
2019-02-27 20:44:27 +01:00
|
|
|
|
memcpy(&dynamic_ves[1], &cso->vertex_elements[1],
|
|
|
|
|
|
(cso->count - ice->state.vs_needs_edge_flag) *
|
2019-02-26 14:37:23 +01:00
|
|
|
|
GENX(VERTEX_ELEMENT_STATE_length) * sizeof(uint32_t));
|
|
|
|
|
|
uint32_t *ve_pack_dest =
|
2019-02-27 20:44:27 +01:00
|
|
|
|
&dynamic_ves[1 + (cso->count - ice->state.vs_needs_edge_flag) *
|
|
|
|
|
|
GENX(VERTEX_ELEMENT_STATE_length)];
|
2019-02-26 14:37:23 +01:00
|
|
|
|
|
|
|
|
|
|
if (ice->state.vs_needs_sgvs_element) {
|
|
|
|
|
|
uint32_t base_ctrl = ice->state.vs_uses_draw_params ?
|
|
|
|
|
|
VFCOMP_STORE_SRC : VFCOMP_STORE_0;
|
|
|
|
|
|
iris_pack_state(GENX(VERTEX_ELEMENT_STATE), ve_pack_dest, ve) {
|
|
|
|
|
|
ve.Valid = true;
|
|
|
|
|
|
ve.VertexBufferIndex =
|
|
|
|
|
|
util_bitcount64(ice->state.bound_vertex_buffers);
|
|
|
|
|
|
ve.SourceElementFormat = ISL_FORMAT_R32G32_UINT;
|
|
|
|
|
|
ve.Component0Control = base_ctrl;
|
|
|
|
|
|
ve.Component1Control = base_ctrl;
|
|
|
|
|
|
ve.Component2Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component3Control = VFCOMP_STORE_0;
|
|
|
|
|
|
}
|
|
|
|
|
|
ve_pack_dest += GENX(VERTEX_ELEMENT_STATE_length);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (ice->state.vs_uses_derived_draw_params) {
|
|
|
|
|
|
iris_pack_state(GENX(VERTEX_ELEMENT_STATE), ve_pack_dest, ve) {
|
|
|
|
|
|
ve.Valid = true;
|
|
|
|
|
|
ve.VertexBufferIndex =
|
|
|
|
|
|
util_bitcount64(ice->state.bound_vertex_buffers) +
|
|
|
|
|
|
ice->state.vs_uses_draw_params;
|
|
|
|
|
|
ve.SourceElementFormat = ISL_FORMAT_R32G32_UINT;
|
|
|
|
|
|
ve.Component0Control = VFCOMP_STORE_SRC;
|
|
|
|
|
|
ve.Component1Control = VFCOMP_STORE_SRC;
|
|
|
|
|
|
ve.Component2Control = VFCOMP_STORE_0;
|
|
|
|
|
|
ve.Component3Control = VFCOMP_STORE_0;
|
|
|
|
|
|
}
|
|
|
|
|
|
ve_pack_dest += GENX(VERTEX_ELEMENT_STATE_length);
|
|
|
|
|
|
}
|
2019-02-27 20:44:27 +01:00
|
|
|
|
if (ice->state.vs_needs_edge_flag) {
|
|
|
|
|
|
for (int i = 0; i < GENX(VERTEX_ELEMENT_STATE_length); i++)
|
|
|
|
|
|
ve_pack_dest[i] = cso->edgeflag_ve[i];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-26 14:37:23 +01:00
|
|
|
|
iris_batch_emit(batch, &dynamic_ves, sizeof(uint32_t) *
|
|
|
|
|
|
(1 + dyn_count * GENX(VERTEX_ELEMENT_STATE_length)));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-27 20:44:27 +01:00
|
|
|
|
if (!ice->state.vs_needs_edge_flag) {
|
|
|
|
|
|
iris_batch_emit(batch, cso->vf_instancing, sizeof(uint32_t) *
|
|
|
|
|
|
entries * GENX(3DSTATE_VF_INSTANCING_length));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
assert(cso->count > 0);
|
|
|
|
|
|
const unsigned edgeflag_index = cso->count - 1;
|
|
|
|
|
|
uint32_t dynamic_vfi[33 * GENX(3DSTATE_VF_INSTANCING_length)];
|
|
|
|
|
|
memcpy(&dynamic_vfi[0], cso->vf_instancing, edgeflag_index *
|
|
|
|
|
|
GENX(3DSTATE_VF_INSTANCING_length) * sizeof(uint32_t));
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t *vfi_pack_dest = &dynamic_vfi[0] +
|
|
|
|
|
|
edgeflag_index * GENX(3DSTATE_VF_INSTANCING_length);
|
|
|
|
|
|
iris_pack_command(GENX(3DSTATE_VF_INSTANCING), vfi_pack_dest, vi) {
|
|
|
|
|
|
vi.VertexElementIndex = edgeflag_index +
|
|
|
|
|
|
ice->state.vs_needs_sgvs_element +
|
|
|
|
|
|
ice->state.vs_uses_derived_draw_params;
|
|
|
|
|
|
}
|
|
|
|
|
|
for (int i = 0; i < GENX(3DSTATE_VF_INSTANCING_length); i++)
|
|
|
|
|
|
vfi_pack_dest[i] |= cso->edgeflag_vfi[i];
|
|
|
|
|
|
|
|
|
|
|
|
iris_batch_emit(batch, &dynamic_vfi[0], sizeof(uint32_t) *
|
|
|
|
|
|
entries * GENX(3DSTATE_VF_INSTANCING_length));
|
|
|
|
|
|
}
|
2018-07-18 09:23:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_VF_SGVS) {
|
|
|
|
|
|
const struct brw_vs_prog_data *vs_prog_data = (void *)
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_VERTEX]->prog_data;
|
|
|
|
|
|
struct iris_vertex_element_state *cso = ice->state.cso_vertex_elements;
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_VF_SGVS), sgv) {
|
|
|
|
|
|
if (vs_prog_data->uses_vertexid) {
|
|
|
|
|
|
sgv.VertexIDEnable = true;
|
|
|
|
|
|
sgv.VertexIDComponentNumber = 2;
|
2019-02-27 20:44:27 +01:00
|
|
|
|
sgv.VertexIDElementOffset =
|
|
|
|
|
|
cso->count - ice->state.vs_needs_edge_flag;
|
2018-07-18 09:23:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (vs_prog_data->uses_instanceid) {
|
|
|
|
|
|
sgv.InstanceIDEnable = true;
|
|
|
|
|
|
sgv.InstanceIDComponentNumber = 3;
|
2019-02-27 20:44:27 +01:00
|
|
|
|
sgv.InstanceIDElementOffset =
|
|
|
|
|
|
cso->count - ice->state.vs_needs_edge_flag;
|
2018-07-18 09:23:24 -07:00
|
|
|
|
}
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-08-31 18:03:19 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_VF) {
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_VF), vf) {
|
|
|
|
|
|
if (draw->primitive_restart) {
|
|
|
|
|
|
vf.IndexedDrawCutIndexEnable = true;
|
|
|
|
|
|
vf.CutIndex = draw->restart_index;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* TODO: Gen8 PMA fix */
|
2018-09-01 00:58:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_upload_render_state(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
const struct pipe_draw_info *draw)
|
|
|
|
|
|
{
|
2018-09-15 14:35:47 -07:00
|
|
|
|
/* Always pin the binder. If we're emitting new binding table pointers,
|
|
|
|
|
|
* we need it. If not, we're probably inheriting old tables via the
|
|
|
|
|
|
* context, and need it anyway. Since true zero-bindings cases are
|
|
|
|
|
|
* practically non-existent, just pin it and avoid last_res tracking.
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_use_pinned_bo(batch, ice->state.binder.bo, false);
|
|
|
|
|
|
|
2018-11-21 11:54:37 -08:00
|
|
|
|
if (!batch->contains_draw) {
|
|
|
|
|
|
iris_restore_render_saved_bos(ice, batch, draw);
|
|
|
|
|
|
batch->contains_draw = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-01 00:58:29 -07:00
|
|
|
|
iris_upload_dirty_render_state(ice, batch, draw);
|
|
|
|
|
|
|
|
|
|
|
|
if (draw->index_size > 0) {
|
|
|
|
|
|
unsigned offset;
|
|
|
|
|
|
|
|
|
|
|
|
if (draw->has_user_indices) {
|
|
|
|
|
|
u_upload_data(ice->ctx.stream_uploader, 0,
|
|
|
|
|
|
draw->count * draw->index_size, 4, draw->index.user,
|
2018-09-20 17:27:47 -07:00
|
|
|
|
&offset, &ice->state.last_res.index_buffer);
|
2018-09-01 00:58:29 -07:00
|
|
|
|
} else {
|
2018-11-21 00:38:49 -08:00
|
|
|
|
struct iris_resource *res = (void *) draw->index.resource;
|
|
|
|
|
|
res->bind_history |= PIPE_BIND_INDEX_BUFFER;
|
|
|
|
|
|
|
2018-09-20 17:27:47 -07:00
|
|
|
|
pipe_resource_reference(&ice->state.last_res.index_buffer,
|
|
|
|
|
|
draw->index.resource);
|
2018-09-01 00:58:29 -07:00
|
|
|
|
offset = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-20 17:27:47 -07:00
|
|
|
|
struct iris_bo *bo = iris_resource_bo(ice->state.last_res.index_buffer);
|
|
|
|
|
|
|
2018-09-01 00:58:29 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_INDEX_BUFFER), ib) {
|
|
|
|
|
|
ib.IndexFormat = draw->index_size >> 1;
|
2018-12-12 00:02:25 -08:00
|
|
|
|
ib.MOCS = mocs(bo);
|
2019-03-18 00:51:18 -07:00
|
|
|
|
ib.BufferSize = bo->size - offset;
|
2018-09-20 17:27:47 -07:00
|
|
|
|
ib.BufferStartingAddress = ro_bo(bo, offset);
|
2018-09-01 00:58:29 -07:00
|
|
|
|
}
|
2018-11-21 00:06:46 -08:00
|
|
|
|
|
|
|
|
|
|
/* The VF cache key only uses 32-bits, see vertex buffer comment above */
|
|
|
|
|
|
uint16_t high_bits = bo->gtt_offset >> 32ull;
|
|
|
|
|
|
if (high_bits != ice->state.last_index_bo_high_bits) {
|
2019-01-17 23:44:09 -08:00
|
|
|
|
iris_emit_pipe_control_flush(batch, PIPE_CONTROL_VF_CACHE_INVALIDATE |
|
|
|
|
|
|
PIPE_CONTROL_CS_STALL);
|
2018-11-21 00:06:46 -08:00
|
|
|
|
ice->state.last_index_bo_high_bits = high_bits;
|
|
|
|
|
|
}
|
2018-09-01 00:58:29 -07:00
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-07-14 22:15:39 -07:00
|
|
|
|
#define _3DPRIM_END_OFFSET 0x2420
|
|
|
|
|
|
#define _3DPRIM_START_VERTEX 0x2430
|
|
|
|
|
|
#define _3DPRIM_VERTEX_COUNT 0x2434
|
|
|
|
|
|
#define _3DPRIM_INSTANCE_COUNT 0x2438
|
|
|
|
|
|
#define _3DPRIM_START_INSTANCE 0x243C
|
|
|
|
|
|
#define _3DPRIM_BASE_VERTEX 0x2440
|
|
|
|
|
|
|
|
|
|
|
|
if (draw->indirect) {
|
|
|
|
|
|
/* We don't support this MultidrawIndirect. */
|
|
|
|
|
|
assert(!draw->indirect->indirect_draw_count);
|
|
|
|
|
|
|
|
|
|
|
|
struct iris_bo *bo = iris_resource_bo(draw->indirect->buffer);
|
|
|
|
|
|
assert(bo);
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = _3DPRIM_VERTEX_COUNT;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = _3DPRIM_INSTANCE_COUNT;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 4);
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = _3DPRIM_START_VERTEX;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 8);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (draw->index_size) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = _3DPRIM_BASE_VERTEX;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 12);
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = _3DPRIM_START_INSTANCE;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 16);
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = _3DPRIM_START_INSTANCE;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 12);
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_IMM), lri) {
|
|
|
|
|
|
lri.RegisterOffset = _3DPRIM_BASE_VERTEX;
|
|
|
|
|
|
lri.DataDWord = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-12-04 22:19:33 -08:00
|
|
|
|
} else if (draw->count_from_stream_output) {
|
|
|
|
|
|
struct iris_stream_output_target *so =
|
|
|
|
|
|
(void *) draw->count_from_stream_output;
|
|
|
|
|
|
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* XXX: Replace with actual cache tracking */
|
2018-12-04 22:19:33 -08:00
|
|
|
|
iris_emit_pipe_control_flush(batch, PIPE_CONTROL_CS_STALL);
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = CS_GPR(0);
|
|
|
|
|
|
lrm.MemoryAddress =
|
|
|
|
|
|
ro_bo(iris_resource_bo(so->offset.res), so->offset.offset);
|
|
|
|
|
|
}
|
|
|
|
|
|
iris_math_div32_gpr0(ice, batch, so->stride);
|
|
|
|
|
|
_iris_emit_lrr(batch, _3DPRIM_VERTEX_COUNT, CS_GPR(0));
|
|
|
|
|
|
|
|
|
|
|
|
_iris_emit_lri(batch, _3DPRIM_START_VERTEX, 0);
|
|
|
|
|
|
_iris_emit_lri(batch, _3DPRIM_BASE_VERTEX, 0);
|
|
|
|
|
|
_iris_emit_lri(batch, _3DPRIM_START_INSTANCE, 0);
|
|
|
|
|
|
_iris_emit_lri(batch, _3DPRIM_INSTANCE_COUNT, draw->instance_count);
|
2018-07-14 22:15:39 -07:00
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
iris_emit_cmd(batch, GENX(3DPRIMITIVE), prim) {
|
|
|
|
|
|
prim.VertexAccessType = draw->index_size > 0 ? RANDOM : SEQUENTIAL;
|
2018-11-27 15:30:16 -08:00
|
|
|
|
prim.PredicateEnable =
|
|
|
|
|
|
ice->state.predicate == IRIS_PREDICATE_STATE_USE_BIT;
|
|
|
|
|
|
|
2018-12-04 22:19:33 -08:00
|
|
|
|
if (draw->indirect || draw->count_from_stream_output) {
|
|
|
|
|
|
prim.IndirectParameterEnable = true;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
prim.StartInstanceLocation = draw->start_instance;
|
|
|
|
|
|
prim.InstanceCount = draw->instance_count;
|
|
|
|
|
|
prim.VertexCountPerInstance = draw->count;
|
|
|
|
|
|
|
|
|
|
|
|
// XXX: this is probably bonkers.
|
|
|
|
|
|
prim.StartVertexLocation = draw->start;
|
2018-01-21 23:55:04 -08:00
|
|
|
|
|
2018-12-04 22:19:33 -08:00
|
|
|
|
if (draw->index_size) {
|
|
|
|
|
|
prim.BaseVertexLocation += draw->index_bias;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
prim.StartVertexLocation += draw->index_bias;
|
|
|
|
|
|
}
|
2018-07-14 22:15:39 -07:00
|
|
|
|
|
2018-12-04 22:19:33 -08:00
|
|
|
|
//prim.BaseVertexLocation = ...;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
}
|
2018-01-21 23:55:04 -08:00
|
|
|
|
}
|
2018-01-22 22:31:27 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-26 21:59:20 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_upload_compute_state(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
const struct pipe_grid_info *grid)
|
|
|
|
|
|
{
|
|
|
|
|
|
const uint64_t dirty = ice->state.dirty;
|
|
|
|
|
|
struct iris_screen *screen = batch->screen;
|
|
|
|
|
|
const struct gen_device_info *devinfo = &screen->devinfo;
|
|
|
|
|
|
struct iris_binder *binder = &ice->state.binder;
|
|
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[MESA_SHADER_COMPUTE];
|
|
|
|
|
|
struct iris_compiled_shader *shader =
|
|
|
|
|
|
ice->shaders.prog[MESA_SHADER_COMPUTE];
|
|
|
|
|
|
struct brw_stage_prog_data *prog_data = shader->prog_data;
|
|
|
|
|
|
struct brw_cs_prog_data *cs_prog_data = (void *) prog_data;
|
|
|
|
|
|
|
2018-12-11 22:46:40 -08:00
|
|
|
|
/* Always pin the binder. If we're emitting new binding table pointers,
|
|
|
|
|
|
* we need it. If not, we're probably inheriting old tables via the
|
|
|
|
|
|
* context, and need it anyway. Since true zero-bindings cases are
|
|
|
|
|
|
* practically non-existent, just pin it and avoid last_res tracking.
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_use_pinned_bo(batch, ice->state.binder.bo, false);
|
|
|
|
|
|
|
2018-11-09 16:56:29 -08:00
|
|
|
|
if ((dirty & IRIS_DIRTY_CONSTANTS_CS) && shs->cbuf0_needs_upload)
|
|
|
|
|
|
upload_uniforms(ice, MESA_SHADER_COMPUTE);
|
|
|
|
|
|
|
2018-10-19 01:14:38 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_BINDINGS_CS)
|
|
|
|
|
|
iris_populate_binding_table(ice, batch, MESA_SHADER_COMPUTE, false);
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-12-04 15:34:30 -08:00
|
|
|
|
if (dirty & IRIS_DIRTY_SAMPLER_STATES_CS)
|
|
|
|
|
|
iris_upload_sampler_states(ice, MESA_SHADER_COMPUTE);
|
|
|
|
|
|
|
2018-07-26 21:59:20 -07:00
|
|
|
|
iris_use_optional_res(batch, shs->sampler_table.res, false);
|
|
|
|
|
|
iris_use_pinned_bo(batch, iris_resource_bo(shader->assembly.res), false);
|
|
|
|
|
|
|
|
|
|
|
|
if (ice->state.need_border_colors)
|
|
|
|
|
|
iris_use_pinned_bo(batch, ice->state.border_color_pool.bo, false);
|
|
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
if (dirty & IRIS_DIRTY_CS) {
|
|
|
|
|
|
/* The MEDIA_VFE_STATE documentation for Gen8+ says:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "A stalling PIPE_CONTROL is required before MEDIA_VFE_STATE unless
|
|
|
|
|
|
* the only bits that are changed are scoreboard related: Scoreboard
|
|
|
|
|
|
* Enable, Scoreboard Type, Scoreboard Mask, Scoreboard Delta. For
|
|
|
|
|
|
* these scoreboard related states, a MEDIA_STATE_FLUSH is
|
|
|
|
|
|
* sufficient."
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_emit_pipe_control_flush(batch, PIPE_CONTROL_CS_STALL);
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(MEDIA_VFE_STATE), vfe) {
|
|
|
|
|
|
if (prog_data->total_scratch) {
|
2018-12-12 01:41:39 -08:00
|
|
|
|
struct iris_bo *bo =
|
2018-11-07 22:05:14 -08:00
|
|
|
|
iris_get_scratch_space(ice, prog_data->total_scratch,
|
|
|
|
|
|
MESA_SHADER_COMPUTE);
|
|
|
|
|
|
vfe.PerThreadScratchSpace = ffs(prog_data->total_scratch) - 11;
|
2018-12-21 01:00:34 -08:00
|
|
|
|
vfe.ScratchSpaceBasePointer = rw_bo(bo, 0);
|
2018-10-19 01:29:05 -07:00
|
|
|
|
}
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
vfe.MaximumNumberofThreads =
|
|
|
|
|
|
devinfo->max_cs_threads * screen->subslice_total - 1;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
#if GEN_GEN < 11
|
2018-10-19 01:29:05 -07:00
|
|
|
|
vfe.ResetGatewayTimer =
|
|
|
|
|
|
Resettingrelativetimerandlatchingtheglobaltimestamp;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
#endif
|
2018-11-07 14:23:27 +10:00
|
|
|
|
#if GEN_GEN == 8
|
|
|
|
|
|
vfe.BypassGatewayControl = true;
|
|
|
|
|
|
#endif
|
2018-10-19 01:29:05 -07:00
|
|
|
|
vfe.NumberofURBEntries = 2;
|
|
|
|
|
|
vfe.URBEntryAllocationSize = 2;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
vfe.CURBEAllocationSize =
|
|
|
|
|
|
ALIGN(cs_prog_data->push.per_thread.regs * cs_prog_data->threads +
|
|
|
|
|
|
cs_prog_data->push.cross_thread.regs, 2);
|
|
|
|
|
|
}
|
2018-07-26 21:59:20 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-24 09:26:38 -08:00
|
|
|
|
/* TODO: Combine subgroup-id with cbuf0 so we can push regular uniforms */
|
2018-09-18 16:24:13 -07:00
|
|
|
|
uint32_t curbe_data_offset = 0;
|
|
|
|
|
|
assert(cs_prog_data->push.cross_thread.dwords == 0 &&
|
|
|
|
|
|
cs_prog_data->push.per_thread.dwords == 1 &&
|
|
|
|
|
|
cs_prog_data->base.param[0] == BRW_PARAM_BUILTIN_SUBGROUP_ID);
|
|
|
|
|
|
struct pipe_resource *curbe_data_res = NULL;
|
|
|
|
|
|
uint32_t *curbe_data_map =
|
|
|
|
|
|
stream_state(batch, ice->state.dynamic_uploader, &curbe_data_res,
|
|
|
|
|
|
ALIGN(cs_prog_data->push.total.size, 64), 64,
|
|
|
|
|
|
&curbe_data_offset);
|
|
|
|
|
|
assert(curbe_data_map);
|
|
|
|
|
|
memset(curbe_data_map, 0x5a, ALIGN(cs_prog_data->push.total.size, 64));
|
|
|
|
|
|
iris_fill_cs_push_const_buffer(cs_prog_data, curbe_data_map);
|
2018-10-19 01:29:05 -07:00
|
|
|
|
|
|
|
|
|
|
if (dirty & IRIS_DIRTY_CONSTANTS_CS) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MEDIA_CURBE_LOAD), curbe) {
|
|
|
|
|
|
curbe.CURBETotalDataLength =
|
|
|
|
|
|
ALIGN(cs_prog_data->push.total.size, 64);
|
|
|
|
|
|
curbe.CURBEDataStartAddress = curbe_data_offset;
|
|
|
|
|
|
}
|
2018-07-26 21:59:20 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
if (dirty & (IRIS_DIRTY_SAMPLER_STATES_CS |
|
|
|
|
|
|
IRIS_DIRTY_BINDINGS_CS |
|
|
|
|
|
|
IRIS_DIRTY_CONSTANTS_CS |
|
|
|
|
|
|
IRIS_DIRTY_CS)) {
|
|
|
|
|
|
struct pipe_resource *desc_res = NULL;
|
|
|
|
|
|
uint32_t desc[GENX(INTERFACE_DESCRIPTOR_DATA_length)];
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
iris_pack_state(GENX(INTERFACE_DESCRIPTOR_DATA), desc, idd) {
|
|
|
|
|
|
idd.SamplerStatePointer = shs->sampler_table.offset;
|
|
|
|
|
|
idd.BindingTablePointer = binder->bt_offset[MESA_SHADER_COMPUTE];
|
|
|
|
|
|
}
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
for (int i = 0; i < GENX(INTERFACE_DESCRIPTOR_DATA_length); i++)
|
|
|
|
|
|
desc[i] |= ((uint32_t *) shader->derived_data)[i];
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(MEDIA_INTERFACE_DESCRIPTOR_LOAD), load) {
|
|
|
|
|
|
load.InterfaceDescriptorTotalLength =
|
|
|
|
|
|
GENX(INTERFACE_DESCRIPTOR_DATA_length) * sizeof(uint32_t);
|
|
|
|
|
|
load.InterfaceDescriptorDataStartAddress =
|
|
|
|
|
|
emit_state(batch, ice->state.dynamic_uploader,
|
|
|
|
|
|
&desc_res, desc, sizeof(desc), 32);
|
|
|
|
|
|
}
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
2018-10-19 01:29:05 -07:00
|
|
|
|
pipe_resource_reference(&desc_res, NULL);
|
|
|
|
|
|
}
|
2018-07-26 21:59:20 -07:00
|
|
|
|
|
|
|
|
|
|
uint32_t group_size = grid->block[0] * grid->block[1] * grid->block[2];
|
|
|
|
|
|
uint32_t remainder = group_size & (cs_prog_data->simd_size - 1);
|
|
|
|
|
|
uint32_t right_mask;
|
|
|
|
|
|
|
|
|
|
|
|
if (remainder > 0)
|
|
|
|
|
|
right_mask = ~0u >> (32 - remainder);
|
|
|
|
|
|
else
|
|
|
|
|
|
right_mask = ~0u >> (32 - cs_prog_data->simd_size);
|
|
|
|
|
|
|
2018-09-21 02:28:44 -07:00
|
|
|
|
#define GPGPU_DISPATCHDIMX 0x2500
|
|
|
|
|
|
#define GPGPU_DISPATCHDIMY 0x2504
|
|
|
|
|
|
#define GPGPU_DISPATCHDIMZ 0x2508
|
|
|
|
|
|
|
|
|
|
|
|
if (grid->indirect) {
|
2018-10-19 01:14:38 -07:00
|
|
|
|
struct iris_state_ref *grid_size = &ice->state.grid_size;
|
|
|
|
|
|
struct iris_bo *bo = iris_resource_bo(grid_size->res);
|
2018-09-21 02:28:44 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = GPGPU_DISPATCHDIMX;
|
2018-10-19 01:14:38 -07:00
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, grid_size->offset + 0);
|
2018-09-21 02:28:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = GPGPU_DISPATCHDIMY;
|
2018-10-19 01:14:38 -07:00
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, grid_size->offset + 4);
|
2018-09-21 02:28:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = GPGPU_DISPATCHDIMZ;
|
2018-10-19 01:14:38 -07:00
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, grid_size->offset + 8);
|
2018-09-21 02:28:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-26 21:59:20 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(GPGPU_WALKER), ggw) {
|
2018-09-21 02:28:44 -07:00
|
|
|
|
ggw.IndirectParameterEnable = grid->indirect != NULL;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
ggw.SIMDSize = cs_prog_data->simd_size / 16;
|
|
|
|
|
|
ggw.ThreadDepthCounterMaximum = 0;
|
|
|
|
|
|
ggw.ThreadHeightCounterMaximum = 0;
|
|
|
|
|
|
ggw.ThreadWidthCounterMaximum = cs_prog_data->threads - 1;
|
2018-09-18 13:04:59 -07:00
|
|
|
|
ggw.ThreadGroupIDXDimension = grid->grid[0];
|
|
|
|
|
|
ggw.ThreadGroupIDYDimension = grid->grid[1];
|
|
|
|
|
|
ggw.ThreadGroupIDZDimension = grid->grid[2];
|
2018-07-26 21:59:20 -07:00
|
|
|
|
ggw.RightExecutionMask = right_mask;
|
|
|
|
|
|
ggw.BottomExecutionMask = 0xffffffff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-23 15:09:55 -07:00
|
|
|
|
iris_emit_cmd(batch, GENX(MEDIA_STATE_FLUSH), msf);
|
|
|
|
|
|
|
2018-07-26 21:59:20 -07:00
|
|
|
|
if (!batch->contains_draw) {
|
2018-09-19 12:25:18 -07:00
|
|
|
|
iris_restore_compute_saved_bos(ice, batch, grid);
|
2018-07-26 21:59:20 -07:00
|
|
|
|
batch->contains_draw = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-16 09:56:59 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* State module teardown.
|
|
|
|
|
|
*/
|
2018-01-25 01:36:49 -08:00
|
|
|
|
static void
|
2018-01-09 14:34:15 -08:00
|
|
|
|
iris_destroy_state(struct iris_context *ice)
|
|
|
|
|
|
{
|
2018-12-04 16:38:14 -08:00
|
|
|
|
struct iris_genx_state *genx = ice->state.genx;
|
|
|
|
|
|
|
|
|
|
|
|
uint64_t bound_vbs = ice->state.bound_vertex_buffers;
|
|
|
|
|
|
while (bound_vbs) {
|
|
|
|
|
|
const int i = u_bit_scan64(&bound_vbs);
|
|
|
|
|
|
pipe_resource_reference(&genx->vertex_buffers[i].resource, NULL);
|
|
|
|
|
|
}
|
2019-01-24 09:01:53 -08:00
|
|
|
|
free(ice->state.genx);
|
2018-06-16 09:56:59 -07:00
|
|
|
|
|
2018-01-09 23:13:16 -08:00
|
|
|
|
for (unsigned i = 0; i < ice->state.framebuffer.nr_cbufs; i++) {
|
|
|
|
|
|
pipe_surface_reference(&ice->state.framebuffer.cbufs[i], NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
pipe_surface_reference(&ice->state.framebuffer.zsbuf, NULL);
|
2018-06-16 09:56:59 -07:00
|
|
|
|
|
2018-06-16 10:39:26 -07:00
|
|
|
|
for (int stage = 0; stage < MESA_SHADER_STAGES; stage++) {
|
2018-08-18 23:43:14 -07:00
|
|
|
|
struct iris_shader_state *shs = &ice->state.shaders[stage];
|
|
|
|
|
|
pipe_resource_reference(&shs->sampler_table.res, NULL);
|
2019-01-24 09:01:53 -08:00
|
|
|
|
for (int i = 0; i < PIPE_MAX_CONSTANT_BUFFERS; i++) {
|
|
|
|
|
|
pipe_resource_reference(&shs->constbuf[i].data.res, NULL);
|
|
|
|
|
|
pipe_resource_reference(&shs->constbuf[i].surface_state.res, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
for (int i = 0; i < PIPE_MAX_SHADER_IMAGES; i++) {
|
|
|
|
|
|
pipe_resource_reference(&shs->image[i].res, NULL);
|
|
|
|
|
|
pipe_resource_reference(&shs->image[i].surface_state.res, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
for (int i = 0; i < PIPE_MAX_SHADER_BUFFERS; i++) {
|
|
|
|
|
|
pipe_resource_reference(&shs->ssbo[i], NULL);
|
|
|
|
|
|
pipe_resource_reference(&shs->ssbo_surface_state[i].res, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
for (int i = 0; i < IRIS_MAX_TEXTURE_SAMPLERS; i++) {
|
|
|
|
|
|
pipe_sampler_view_reference((struct pipe_sampler_view **)
|
|
|
|
|
|
&shs->textures[i], NULL);
|
|
|
|
|
|
}
|
2018-06-16 10:39:26 -07:00
|
|
|
|
}
|
2018-06-16 09:56:59 -07:00
|
|
|
|
|
2019-01-24 09:01:53 -08:00
|
|
|
|
pipe_resource_reference(&ice->state.grid_size.res, NULL);
|
|
|
|
|
|
pipe_resource_reference(&ice->state.grid_surf_state.res, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
pipe_resource_reference(&ice->state.null_fb.res, NULL);
|
2018-11-28 15:22:07 -08:00
|
|
|
|
pipe_resource_reference(&ice->state.unbound_tex.res, NULL);
|
|
|
|
|
|
|
2018-06-16 09:56:59 -07:00
|
|
|
|
pipe_resource_reference(&ice->state.last_res.cc_vp, NULL);
|
|
|
|
|
|
pipe_resource_reference(&ice->state.last_res.sf_cl_vp, NULL);
|
|
|
|
|
|
pipe_resource_reference(&ice->state.last_res.color_calc, NULL);
|
|
|
|
|
|
pipe_resource_reference(&ice->state.last_res.scissor, NULL);
|
|
|
|
|
|
pipe_resource_reference(&ice->state.last_res.blend, NULL);
|
2018-09-20 17:27:47 -07:00
|
|
|
|
pipe_resource_reference(&ice->state.last_res.index_buffer, NULL);
|
2018-01-09 14:34:15 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-30 23:49:34 -07:00
|
|
|
|
/* ------------------------------------------------------------------- */
|
|
|
|
|
|
|
2018-11-09 12:13:17 +10:00
|
|
|
|
static void
|
2018-12-04 22:02:50 -08:00
|
|
|
|
iris_load_register_reg32(struct iris_batch *batch, uint32_t dst,
|
|
|
|
|
|
uint32_t src)
|
2018-11-09 12:13:17 +10:00
|
|
|
|
{
|
2018-12-04 22:02:50 -08:00
|
|
|
|
_iris_emit_lrr(batch, dst, src);
|
2018-11-09 12:13:17 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2018-12-04 22:02:50 -08:00
|
|
|
|
iris_load_register_reg64(struct iris_batch *batch, uint32_t dst,
|
|
|
|
|
|
uint32_t src)
|
2018-11-09 12:13:17 +10:00
|
|
|
|
{
|
2018-12-04 22:02:50 -08:00
|
|
|
|
_iris_emit_lrr(batch, dst, src);
|
|
|
|
|
|
_iris_emit_lrr(batch, dst + 4, src + 4);
|
2018-11-09 12:13:17 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-17 16:37:26 -07:00
|
|
|
|
static void
|
|
|
|
|
|
iris_load_register_imm32(struct iris_batch *batch, uint32_t reg,
|
|
|
|
|
|
uint32_t val)
|
|
|
|
|
|
{
|
|
|
|
|
|
_iris_emit_lri(batch, reg, val);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_load_register_imm64(struct iris_batch *batch, uint32_t reg,
|
|
|
|
|
|
uint64_t val)
|
|
|
|
|
|
{
|
|
|
|
|
|
_iris_emit_lri(batch, reg + 0, val & 0xffffffff);
|
|
|
|
|
|
_iris_emit_lri(batch, reg + 4, val >> 32);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Emit MI_LOAD_REGISTER_MEM to load a 32-bit MMIO register from a buffer.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_load_register_mem32(struct iris_batch *batch, uint32_t reg,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset)
|
|
|
|
|
|
{
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
|
|
|
|
|
|
lrm.RegisterAddress = reg;
|
|
|
|
|
|
lrm.MemoryAddress = ro_bo(bo, offset);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Load a 64-bit value from a buffer into a MMIO register via
|
|
|
|
|
|
* two MI_LOAD_REGISTER_MEM commands.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_load_register_mem64(struct iris_batch *batch, uint32_t reg,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset)
|
|
|
|
|
|
{
|
|
|
|
|
|
iris_load_register_mem32(batch, reg + 0, bo, offset + 0);
|
|
|
|
|
|
iris_load_register_mem32(batch, reg + 4, bo, offset + 4);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_store_register_mem32(struct iris_batch *batch, uint32_t reg,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset,
|
|
|
|
|
|
bool predicated)
|
|
|
|
|
|
{
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_STORE_REGISTER_MEM), srm) {
|
|
|
|
|
|
srm.RegisterAddress = reg;
|
|
|
|
|
|
srm.MemoryAddress = rw_bo(bo, offset);
|
|
|
|
|
|
srm.PredicateEnable = predicated;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_store_register_mem64(struct iris_batch *batch, uint32_t reg,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset,
|
|
|
|
|
|
bool predicated)
|
|
|
|
|
|
{
|
|
|
|
|
|
iris_store_register_mem32(batch, reg + 0, bo, offset + 0, predicated);
|
|
|
|
|
|
iris_store_register_mem32(batch, reg + 4, bo, offset + 4, predicated);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_store_data_imm32(struct iris_batch *batch,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset,
|
|
|
|
|
|
uint32_t imm)
|
|
|
|
|
|
{
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_STORE_DATA_IMM), sdi) {
|
|
|
|
|
|
sdi.Address = rw_bo(bo, offset);
|
|
|
|
|
|
sdi.ImmediateData = imm;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_store_data_imm64(struct iris_batch *batch,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset,
|
|
|
|
|
|
uint64_t imm)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Can't use iris_emit_cmd because MI_STORE_DATA_IMM has a length of
|
|
|
|
|
|
* 2 in genxml but it's actually variable length and we need 5 DWords.
|
|
|
|
|
|
*/
|
|
|
|
|
|
void *map = iris_get_command_space(batch, 4 * 5);
|
|
|
|
|
|
_iris_pack_command(batch, GENX(MI_STORE_DATA_IMM), map, sdi) {
|
|
|
|
|
|
sdi.DWordLength = 5 - 2;
|
|
|
|
|
|
sdi.Address = rw_bo(bo, offset);
|
|
|
|
|
|
sdi.ImmediateData = imm;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-27 10:39:04 +02:00
|
|
|
|
static void
|
|
|
|
|
|
iris_copy_mem_mem(struct iris_batch *batch,
|
|
|
|
|
|
struct iris_bo *dst_bo, uint32_t dst_offset,
|
|
|
|
|
|
struct iris_bo *src_bo, uint32_t src_offset,
|
|
|
|
|
|
unsigned bytes)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* MI_COPY_MEM_MEM operates on DWords. */
|
|
|
|
|
|
assert(bytes % 4 == 0);
|
|
|
|
|
|
assert(dst_offset % 4 == 0);
|
|
|
|
|
|
assert(src_offset % 4 == 0);
|
|
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < bytes; i += 4) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(MI_COPY_MEM_MEM), cp) {
|
|
|
|
|
|
cp.DestinationMemoryAddress = rw_bo(dst_bo, dst_offset + i);
|
|
|
|
|
|
cp.SourceMemoryAddress = ro_bo(src_bo, src_offset + i);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-17 16:37:26 -07:00
|
|
|
|
/* ------------------------------------------------------------------- */
|
|
|
|
|
|
|
2018-04-19 12:52:51 -07:00
|
|
|
|
static unsigned
|
|
|
|
|
|
flags_to_post_sync_op(uint32_t flags)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (flags & PIPE_CONTROL_WRITE_IMMEDIATE)
|
|
|
|
|
|
return WriteImmediateData;
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_WRITE_DEPTH_COUNT)
|
|
|
|
|
|
return WritePSDepthCount;
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_WRITE_TIMESTAMP)
|
|
|
|
|
|
return WriteTimestamp;
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Do the given flags have a Post Sync or LRI Post Sync operation?
|
|
|
|
|
|
*/
|
|
|
|
|
|
static enum pipe_control_flags
|
|
|
|
|
|
get_post_sync_flags(enum pipe_control_flags flags)
|
|
|
|
|
|
{
|
|
|
|
|
|
flags &= PIPE_CONTROL_WRITE_IMMEDIATE |
|
|
|
|
|
|
PIPE_CONTROL_WRITE_DEPTH_COUNT |
|
|
|
|
|
|
PIPE_CONTROL_WRITE_TIMESTAMP |
|
|
|
|
|
|
PIPE_CONTROL_LRI_POST_SYNC_OP;
|
|
|
|
|
|
|
|
|
|
|
|
/* Only one "Post Sync Op" is allowed, and it's mutually exclusive with
|
|
|
|
|
|
* "LRI Post Sync Operation". So more than one bit set would be illegal.
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(util_bitcount(flags) <= 1);
|
|
|
|
|
|
|
|
|
|
|
|
return flags;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-20 09:12:54 -08:00
|
|
|
|
#define IS_COMPUTE_PIPELINE(batch) (batch->name == IRIS_BATCH_COMPUTE)
|
2018-04-19 12:52:51 -07:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Emit a series of PIPE_CONTROL commands, taking into account any
|
|
|
|
|
|
* workarounds necessary to actually accomplish the caller's request.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Unless otherwise noted, spec quotations in this function come from:
|
|
|
|
|
|
*
|
|
|
|
|
|
* Synchronization of the 3D Pipeline > PIPE_CONTROL Command > Programming
|
|
|
|
|
|
* Restrictions for PIPE_CONTROL.
|
2018-07-30 23:49:34 -07:00
|
|
|
|
*
|
|
|
|
|
|
* You should not use this function directly. Use the helpers in
|
|
|
|
|
|
* iris_pipe_control.c instead, which may split the pipe control further.
|
2018-04-19 12:52:51 -07:00
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
iris_emit_raw_pipe_control(struct iris_batch *batch, uint32_t flags,
|
|
|
|
|
|
struct iris_bo *bo, uint32_t offset, uint64_t imm)
|
|
|
|
|
|
{
|
|
|
|
|
|
UNUSED const struct gen_device_info *devinfo = &batch->screen->devinfo;
|
|
|
|
|
|
enum pipe_control_flags post_sync_flags = get_post_sync_flags(flags);
|
|
|
|
|
|
enum pipe_control_flags non_lri_post_sync_flags =
|
|
|
|
|
|
post_sync_flags & ~PIPE_CONTROL_LRI_POST_SYNC_OP;
|
|
|
|
|
|
|
|
|
|
|
|
/* Recursive PIPE_CONTROL workarounds --------------------------------
|
|
|
|
|
|
* (http://knowyourmeme.com/memes/xzibit-yo-dawg)
|
|
|
|
|
|
*
|
|
|
|
|
|
* We do these first because we want to look at the original operation,
|
|
|
|
|
|
* rather than any workarounds we set.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (GEN_GEN == 9 && (flags & PIPE_CONTROL_VF_CACHE_INVALIDATE)) {
|
|
|
|
|
|
/* The PIPE_CONTROL "VF Cache Invalidation Enable" bit description
|
|
|
|
|
|
* lists several workarounds:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Project: SKL, KBL, BXT
|
|
|
|
|
|
*
|
|
|
|
|
|
* If the VF Cache Invalidation Enable is set to a 1 in a
|
|
|
|
|
|
* PIPE_CONTROL, a separate Null PIPE_CONTROL, all bitfields
|
|
|
|
|
|
* sets to 0, with the VF Cache Invalidation Enable set to 0
|
|
|
|
|
|
* needs to be sent prior to the PIPE_CONTROL with VF Cache
|
|
|
|
|
|
* Invalidation Enable set to a 1."
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_emit_raw_pipe_control(batch, 0, NULL, 0, 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (GEN_GEN == 9 && IS_COMPUTE_PIPELINE(batch) && post_sync_flags) {
|
|
|
|
|
|
/* Project: SKL / Argument: LRI Post Sync Operation [23]
|
|
|
|
|
|
*
|
|
|
|
|
|
* "PIPECONTROL command with “Command Streamer Stall Enable” must be
|
|
|
|
|
|
* programmed prior to programming a PIPECONTROL command with "LRI
|
|
|
|
|
|
* Post Sync Operation" in GPGPU mode of operation (i.e when
|
|
|
|
|
|
* PIPELINE_SELECT command is set to GPGPU mode of operation)."
|
|
|
|
|
|
*
|
|
|
|
|
|
* The same text exists a few rows below for Post Sync Op.
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_emit_raw_pipe_control(batch, PIPE_CONTROL_CS_STALL, bo, offset, imm);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (GEN_GEN == 10 && (flags & PIPE_CONTROL_RENDER_TARGET_FLUSH)) {
|
|
|
|
|
|
/* Cannonlake:
|
|
|
|
|
|
* "Before sending a PIPE_CONTROL command with bit 12 set, SW must issue
|
|
|
|
|
|
* another PIPE_CONTROL with Render Target Cache Flush Enable (bit 12)
|
|
|
|
|
|
* = 0 and Pipe Control Flush Enable (bit 7) = 1"
|
|
|
|
|
|
*/
|
|
|
|
|
|
iris_emit_raw_pipe_control(batch, PIPE_CONTROL_FLUSH_ENABLE, bo,
|
|
|
|
|
|
offset, imm);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* "Flush Types" workarounds ---------------------------------------------
|
|
|
|
|
|
* We do these now because they may add post-sync operations or CS stalls.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2018-11-01 16:11:31 -07:00
|
|
|
|
if (GEN_GEN < 11 && flags & PIPE_CONTROL_VF_CACHE_INVALIDATE) {
|
2018-04-19 12:52:51 -07:00
|
|
|
|
/* Project: BDW, SKL+ (stopping at CNL) / Argument: VF Invalidate
|
|
|
|
|
|
*
|
|
|
|
|
|
* "'Post Sync Operation' must be enabled to 'Write Immediate Data' or
|
|
|
|
|
|
* 'Write PS Depth Count' or 'Write Timestamp'."
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (!bo) {
|
|
|
|
|
|
flags |= PIPE_CONTROL_WRITE_IMMEDIATE;
|
|
|
|
|
|
post_sync_flags |= PIPE_CONTROL_WRITE_IMMEDIATE;
|
|
|
|
|
|
non_lri_post_sync_flags |= PIPE_CONTROL_WRITE_IMMEDIATE;
|
|
|
|
|
|
bo = batch->screen->workaround_bo;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* #1130 from Gen10 workarounds page:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Enable Depth Stall on every Post Sync Op if Render target Cache
|
|
|
|
|
|
* Flush is not enabled in same PIPE CONTROL and Enable Pixel score
|
|
|
|
|
|
* board stall if Render target cache flush is enabled."
|
|
|
|
|
|
*
|
|
|
|
|
|
* Applicable to CNL B0 and C0 steppings only.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The wording here is unclear, and this workaround doesn't look anything
|
|
|
|
|
|
* like the internal bug report recommendations, but leave it be for now...
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (GEN_GEN == 10) {
|
|
|
|
|
|
if (flags & PIPE_CONTROL_RENDER_TARGET_FLUSH) {
|
|
|
|
|
|
flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
|
|
|
|
|
|
} else if (flags & non_lri_post_sync_flags) {
|
|
|
|
|
|
flags |= PIPE_CONTROL_DEPTH_STALL;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_DEPTH_STALL) {
|
|
|
|
|
|
/* From the PIPE_CONTROL instruction table, bit 13 (Depth Stall Enable):
|
|
|
|
|
|
*
|
|
|
|
|
|
* "This bit must be DISABLED for operations other than writing
|
|
|
|
|
|
* PS_DEPTH_COUNT."
|
|
|
|
|
|
*
|
|
|
|
|
|
* This seems like nonsense. An Ivybridge workaround requires us to
|
|
|
|
|
|
* emit a PIPE_CONTROL with a depth stall and write immediate post-sync
|
|
|
|
|
|
* operation. Gen8+ requires us to emit depth stalls and depth cache
|
|
|
|
|
|
* flushes together. So, it's hard to imagine this means anything other
|
|
|
|
|
|
* than "we originally intended this to be used for PS_DEPTH_COUNT".
|
|
|
|
|
|
*
|
|
|
|
|
|
* We ignore the supposed restriction and do nothing.
|
|
|
|
|
|
*/
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & (PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD)) {
|
|
|
|
|
|
/* From the PIPE_CONTROL instruction table, bit 12 and bit 1:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "This bit must be DISABLED for End-of-pipe (Read) fences,
|
|
|
|
|
|
* PS_DEPTH_COUNT or TIMESTAMP queries."
|
|
|
|
|
|
*
|
|
|
|
|
|
* TODO: Implement end-of-pipe checking.
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(!(post_sync_flags & (PIPE_CONTROL_WRITE_DEPTH_COUNT |
|
|
|
|
|
|
PIPE_CONTROL_WRITE_TIMESTAMP)));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-08 13:44:01 -07:00
|
|
|
|
if (GEN_GEN < 11 && (flags & PIPE_CONTROL_STALL_AT_SCOREBOARD)) {
|
2018-04-19 12:52:51 -07:00
|
|
|
|
/* From the PIPE_CONTROL instruction table, bit 1:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "This bit is ignored if Depth Stall Enable is set.
|
|
|
|
|
|
* Further, the render cache is not flushed even if Write Cache
|
|
|
|
|
|
* Flush Enable bit is set."
|
|
|
|
|
|
*
|
|
|
|
|
|
* We assert that the caller doesn't do this combination, to try and
|
|
|
|
|
|
* prevent mistakes. It shouldn't hurt the GPU, though.
|
2018-10-08 13:44:01 -07:00
|
|
|
|
*
|
|
|
|
|
|
* We skip this check on Gen11+ as the "Stall at Pixel Scoreboard"
|
|
|
|
|
|
* and "Render Target Flush" combo is explicitly required for BTI
|
|
|
|
|
|
* update workarounds.
|
2018-04-19 12:52:51 -07:00
|
|
|
|
*/
|
|
|
|
|
|
assert(!(flags & (PIPE_CONTROL_DEPTH_STALL |
|
|
|
|
|
|
PIPE_CONTROL_RENDER_TARGET_FLUSH)));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* PIPE_CONTROL page workarounds ------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
if (GEN_GEN <= 8 && (flags & PIPE_CONTROL_STATE_CACHE_INVALIDATE)) {
|
|
|
|
|
|
/* From the PIPE_CONTROL page itself:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "IVB, HSW, BDW
|
|
|
|
|
|
* Restriction: Pipe_control with CS-stall bit set must be issued
|
|
|
|
|
|
* before a pipe-control command that has the State Cache
|
|
|
|
|
|
* Invalidate bit set."
|
|
|
|
|
|
*/
|
|
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_FLUSH_LLC) {
|
|
|
|
|
|
/* From the PIPE_CONTROL instruction table, bit 26 (Flush LLC):
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Project: ALL
|
|
|
|
|
|
* SW must always program Post-Sync Operation to "Write Immediate
|
|
|
|
|
|
* Data" when Flush LLC is set."
|
|
|
|
|
|
*
|
|
|
|
|
|
* For now, we just require the caller to do it.
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(flags & PIPE_CONTROL_WRITE_IMMEDIATE);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* "Post-Sync Operation" workarounds -------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* Project: All / Argument: Global Snapshot Count Reset [19]
|
|
|
|
|
|
*
|
|
|
|
|
|
* "This bit must not be exercised on any product.
|
|
|
|
|
|
* Requires stall bit ([20] of DW1) set."
|
|
|
|
|
|
*
|
|
|
|
|
|
* We don't use this, so we just assert that it isn't used. The
|
|
|
|
|
|
* PIPE_CONTROL instruction page indicates that they intended this
|
|
|
|
|
|
* as a debug feature and don't think it is useful in production,
|
|
|
|
|
|
* but it may actually be usable, should we ever want to.
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert((flags & PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET) == 0);
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & (PIPE_CONTROL_MEDIA_STATE_CLEAR |
|
|
|
|
|
|
PIPE_CONTROL_INDIRECT_STATE_POINTERS_DISABLE)) {
|
|
|
|
|
|
/* Project: All / Arguments:
|
|
|
|
|
|
*
|
|
|
|
|
|
* - Generic Media State Clear [16]
|
|
|
|
|
|
* - Indirect State Pointers Disable [16]
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Requires stall bit ([20] of DW1) set."
|
|
|
|
|
|
*
|
|
|
|
|
|
* Also, the PIPE_CONTROL instruction table, bit 16 (Generic Media
|
|
|
|
|
|
* State Clear) says:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "PIPECONTROL command with “Command Streamer Stall Enable” must be
|
|
|
|
|
|
* programmed prior to programming a PIPECONTROL command with "Media
|
|
|
|
|
|
* State Clear" set in GPGPU mode of operation"
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is a subset of the earlier rule, so there's nothing to do.
|
|
|
|
|
|
*/
|
|
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_STORE_DATA_INDEX) {
|
|
|
|
|
|
/* Project: All / Argument: Store Data Index
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Post-Sync Operation ([15:14] of DW1) must be set to something other
|
|
|
|
|
|
* than '0'."
|
|
|
|
|
|
*
|
|
|
|
|
|
* For now, we just assert that the caller does this. We might want to
|
|
|
|
|
|
* automatically add a write to the workaround BO...
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(non_lri_post_sync_flags != 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_SYNC_GFDT) {
|
|
|
|
|
|
/* Project: All / Argument: Sync GFDT
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Post-Sync Operation ([15:14] of DW1) must be set to something other
|
|
|
|
|
|
* than '0' or 0x2520[13] must be set."
|
|
|
|
|
|
*
|
|
|
|
|
|
* For now, we just assert that the caller does this.
|
|
|
|
|
|
*/
|
|
|
|
|
|
assert(non_lri_post_sync_flags != 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (flags & PIPE_CONTROL_TLB_INVALIDATE) {
|
|
|
|
|
|
/* Project: IVB+ / Argument: TLB inv
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Requires stall bit ([20] of DW1) set."
|
|
|
|
|
|
*
|
|
|
|
|
|
* Also, from the PIPE_CONTROL instruction table:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Project: SKL+
|
|
|
|
|
|
* Post Sync Operation or CS stall must be set to ensure a TLB
|
|
|
|
|
|
* invalidation occurs. Otherwise no cycle will occur to the TLB
|
|
|
|
|
|
* cache to invalidate."
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is not a subset of the earlier rule, so there's nothing to do.
|
|
|
|
|
|
*/
|
|
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (GEN_GEN == 9 && devinfo->gt == 4) {
|
|
|
|
|
|
/* TODO: The big Skylake GT4 post sync op workaround */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* "GPGPU specific workarounds" (both post-sync and flush) ------------ */
|
|
|
|
|
|
|
|
|
|
|
|
if (IS_COMPUTE_PIPELINE(batch)) {
|
|
|
|
|
|
if (GEN_GEN >= 9 && (flags & PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE)) {
|
|
|
|
|
|
/* Project: SKL+ / Argument: Tex Invalidate
|
|
|
|
|
|
* "Requires stall bit ([20] of DW) set for all GPGPU Workloads."
|
|
|
|
|
|
*/
|
|
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (GEN_GEN == 8 && (post_sync_flags ||
|
|
|
|
|
|
(flags & (PIPE_CONTROL_NOTIFY_ENABLE |
|
|
|
|
|
|
PIPE_CONTROL_DEPTH_STALL |
|
|
|
|
|
|
PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DEPTH_CACHE_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DATA_CACHE_FLUSH)))) {
|
|
|
|
|
|
/* Project: BDW / Arguments:
|
|
|
|
|
|
*
|
|
|
|
|
|
* - LRI Post Sync Operation [23]
|
|
|
|
|
|
* - Post Sync Op [15:14]
|
|
|
|
|
|
* - Notify En [8]
|
|
|
|
|
|
* - Depth Stall [13]
|
|
|
|
|
|
* - Render Target Cache Flush [12]
|
|
|
|
|
|
* - Depth Cache Flush [0]
|
|
|
|
|
|
* - DC Flush Enable [5]
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Requires stall bit ([20] of DW) set for all GPGPU and Media
|
|
|
|
|
|
* Workloads."
|
|
|
|
|
|
*/
|
|
|
|
|
|
flags |= PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
|
|
|
|
|
|
/* Also, from the PIPE_CONTROL instruction table, bit 20:
|
|
|
|
|
|
*
|
|
|
|
|
|
* "Project: BDW
|
|
|
|
|
|
* This bit must be always set when PIPE_CONTROL command is
|
|
|
|
|
|
* programmed by GPGPU and MEDIA workloads, except for the cases
|
|
|
|
|
|
* when only Read Only Cache Invalidation bits are set (State
|
|
|
|
|
|
* Cache Invalidation Enable, Instruction cache Invalidation
|
|
|
|
|
|
* Enable, Texture Cache Invalidation Enable, Constant Cache
|
|
|
|
|
|
* Invalidation Enable). This is to WA FFDOP CG issue, this WA
|
|
|
|
|
|
* need not implemented when FF_DOP_CG is disable via "Fixed
|
|
|
|
|
|
* Function DOP Clock Gate Disable" bit in RC_PSMI_CTRL register."
|
|
|
|
|
|
*
|
|
|
|
|
|
* It sounds like we could avoid CS stalls in some cases, but we
|
|
|
|
|
|
* don't currently bother. This list isn't exactly the list above,
|
|
|
|
|
|
* either...
|
|
|
|
|
|
*/
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* "Stall" workarounds ----------------------------------------------
|
|
|
|
|
|
* These have to come after the earlier ones because we may have added
|
|
|
|
|
|
* some additional CS stalls above.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
if (GEN_GEN < 9 && (flags & PIPE_CONTROL_CS_STALL)) {
|
|
|
|
|
|
/* Project: PRE-SKL, VLV, CHV
|
|
|
|
|
|
*
|
|
|
|
|
|
* "[All Stepping][All SKUs]:
|
|
|
|
|
|
*
|
|
|
|
|
|
* One of the following must also be set:
|
|
|
|
|
|
*
|
|
|
|
|
|
* - Render Target Cache Flush Enable ([12] of DW1)
|
|
|
|
|
|
* - Depth Cache Flush Enable ([0] of DW1)
|
|
|
|
|
|
* - Stall at Pixel Scoreboard ([1] of DW1)
|
|
|
|
|
|
* - Depth Stall ([13] of DW1)
|
|
|
|
|
|
* - Post-Sync Operation ([13] of DW1)
|
|
|
|
|
|
* - DC Flush Enable ([5] of DW1)"
|
|
|
|
|
|
*
|
|
|
|
|
|
* If we don't already have one of those bits set, we choose to add
|
|
|
|
|
|
* "Stall at Pixel Scoreboard". Some of the other bits require a
|
|
|
|
|
|
* CS stall as a workaround (see above), which would send us into
|
|
|
|
|
|
* an infinite recursion of PIPE_CONTROLs. "Stall at Pixel Scoreboard"
|
|
|
|
|
|
* appears to be safe, so we choose that.
|
|
|
|
|
|
*/
|
|
|
|
|
|
const uint32_t wa_bits = PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_DEPTH_CACHE_FLUSH |
|
|
|
|
|
|
PIPE_CONTROL_WRITE_IMMEDIATE |
|
|
|
|
|
|
PIPE_CONTROL_WRITE_DEPTH_COUNT |
|
|
|
|
|
|
PIPE_CONTROL_WRITE_TIMESTAMP |
|
|
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD |
|
|
|
|
|
|
PIPE_CONTROL_DEPTH_STALL |
|
|
|
|
|
|
PIPE_CONTROL_DATA_CACHE_FLUSH;
|
|
|
|
|
|
if (!(flags & wa_bits))
|
|
|
|
|
|
flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Emit --------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(PIPE_CONTROL), pc) {
|
|
|
|
|
|
pc.LRIPostSyncOperation = NoLRIOperation;
|
|
|
|
|
|
pc.PipeControlFlushEnable = flags & PIPE_CONTROL_FLUSH_ENABLE;
|
|
|
|
|
|
pc.DCFlushEnable = flags & PIPE_CONTROL_DATA_CACHE_FLUSH;
|
|
|
|
|
|
pc.StoreDataIndex = 0;
|
|
|
|
|
|
pc.CommandStreamerStallEnable = flags & PIPE_CONTROL_CS_STALL;
|
|
|
|
|
|
pc.GlobalSnapshotCountReset =
|
|
|
|
|
|
flags & PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET;
|
|
|
|
|
|
pc.TLBInvalidate = flags & PIPE_CONTROL_TLB_INVALIDATE;
|
|
|
|
|
|
pc.GenericMediaStateClear = flags & PIPE_CONTROL_MEDIA_STATE_CLEAR;
|
|
|
|
|
|
pc.StallAtPixelScoreboard = flags & PIPE_CONTROL_STALL_AT_SCOREBOARD;
|
|
|
|
|
|
pc.RenderTargetCacheFlushEnable =
|
|
|
|
|
|
flags & PIPE_CONTROL_RENDER_TARGET_FLUSH;
|
|
|
|
|
|
pc.DepthCacheFlushEnable = flags & PIPE_CONTROL_DEPTH_CACHE_FLUSH;
|
|
|
|
|
|
pc.StateCacheInvalidationEnable =
|
|
|
|
|
|
flags & PIPE_CONTROL_STATE_CACHE_INVALIDATE;
|
|
|
|
|
|
pc.VFCacheInvalidationEnable = flags & PIPE_CONTROL_VF_CACHE_INVALIDATE;
|
|
|
|
|
|
pc.ConstantCacheInvalidationEnable =
|
|
|
|
|
|
flags & PIPE_CONTROL_CONST_CACHE_INVALIDATE;
|
|
|
|
|
|
pc.PostSyncOperation = flags_to_post_sync_op(flags);
|
|
|
|
|
|
pc.DepthStallEnable = flags & PIPE_CONTROL_DEPTH_STALL;
|
|
|
|
|
|
pc.InstructionCacheInvalidateEnable =
|
|
|
|
|
|
flags & PIPE_CONTROL_INSTRUCTION_INVALIDATE;
|
|
|
|
|
|
pc.NotifyEnable = flags & PIPE_CONTROL_NOTIFY_ENABLE;
|
|
|
|
|
|
pc.IndirectStatePointersDisable =
|
|
|
|
|
|
flags & PIPE_CONTROL_INDIRECT_STATE_POINTERS_DISABLE;
|
|
|
|
|
|
pc.TextureCacheInvalidationEnable =
|
|
|
|
|
|
flags & PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
|
2018-09-17 21:15:48 -07:00
|
|
|
|
pc.Address = rw_bo(bo, offset);
|
2018-04-19 12:52:51 -07:00
|
|
|
|
pc.ImmediateData = imm;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-06 13:27:28 -08:00
|
|
|
|
void
|
|
|
|
|
|
genX(emit_urb_setup)(struct iris_context *ice,
|
|
|
|
|
|
struct iris_batch *batch,
|
|
|
|
|
|
const unsigned size[4],
|
|
|
|
|
|
bool tess_present, bool gs_present)
|
|
|
|
|
|
{
|
|
|
|
|
|
const struct gen_device_info *devinfo = &batch->screen->devinfo;
|
|
|
|
|
|
const unsigned push_size_kB = 32;
|
|
|
|
|
|
unsigned entries[4];
|
|
|
|
|
|
unsigned start[4];
|
|
|
|
|
|
|
2019-03-06 17:05:23 -08:00
|
|
|
|
ice->shaders.last_vs_entry_size = size[MESA_SHADER_VERTEX];
|
|
|
|
|
|
|
2019-03-06 13:27:28 -08:00
|
|
|
|
gen_get_urb_config(devinfo, 1024 * push_size_kB,
|
|
|
|
|
|
1024 * ice->shaders.urb_size,
|
|
|
|
|
|
tess_present, gs_present,
|
|
|
|
|
|
size, entries, start);
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = MESA_SHADER_VERTEX; i <= MESA_SHADER_GEOMETRY; i++) {
|
|
|
|
|
|
iris_emit_cmd(batch, GENX(3DSTATE_URB_VS), urb) {
|
|
|
|
|
|
urb._3DCommandSubOpcode += i;
|
|
|
|
|
|
urb.VSURBStartingAddress = start[i];
|
|
|
|
|
|
urb.VSURBEntryAllocationSize = size[i] - 1;
|
|
|
|
|
|
urb.VSNumberofURBEntries = entries[i];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
void
|
2018-01-25 01:36:49 -08:00
|
|
|
|
genX(init_state)(struct iris_context *ice)
|
2017-11-23 23:15:14 -08:00
|
|
|
|
{
|
2018-01-21 18:04:05 -08:00
|
|
|
|
struct pipe_context *ctx = &ice->ctx;
|
2018-06-27 16:59:59 -07:00
|
|
|
|
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
|
2018-01-21 18:04:05 -08:00
|
|
|
|
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ctx->create_blend_state = iris_create_blend_state;
|
2017-12-27 02:54:26 -08:00
|
|
|
|
ctx->create_depth_stencil_alpha_state = iris_create_zsa_state;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ctx->create_rasterizer_state = iris_create_rasterizer_state;
|
|
|
|
|
|
ctx->create_sampler_state = iris_create_sampler_state;
|
|
|
|
|
|
ctx->create_sampler_view = iris_create_sampler_view;
|
|
|
|
|
|
ctx->create_surface = iris_create_surface;
|
|
|
|
|
|
ctx->create_vertex_elements_state = iris_create_vertex_elements;
|
2017-12-27 02:54:26 -08:00
|
|
|
|
ctx->bind_blend_state = iris_bind_blend_state;
|
|
|
|
|
|
ctx->bind_depth_stencil_alpha_state = iris_bind_zsa_state;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ctx->bind_sampler_states = iris_bind_sampler_states;
|
2018-01-09 11:44:04 -08:00
|
|
|
|
ctx->bind_rasterizer_state = iris_bind_rasterizer_state;
|
2018-01-09 21:29:09 -08:00
|
|
|
|
ctx->bind_vertex_elements_state = iris_bind_vertex_elements_state;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ctx->delete_blend_state = iris_delete_state;
|
|
|
|
|
|
ctx->delete_depth_stencil_alpha_state = iris_delete_state;
|
|
|
|
|
|
ctx->delete_rasterizer_state = iris_delete_state;
|
|
|
|
|
|
ctx->delete_sampler_state = iris_delete_state;
|
|
|
|
|
|
ctx->delete_vertex_elements_state = iris_delete_state;
|
|
|
|
|
|
ctx->set_blend_color = iris_set_blend_color;
|
|
|
|
|
|
ctx->set_clip_state = iris_set_clip_state;
|
|
|
|
|
|
ctx->set_constant_buffer = iris_set_constant_buffer;
|
2018-07-24 15:54:00 -07:00
|
|
|
|
ctx->set_shader_buffers = iris_set_shader_buffers;
|
2018-08-30 15:45:36 -07:00
|
|
|
|
ctx->set_shader_images = iris_set_shader_images;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ctx->set_sampler_views = iris_set_sampler_views;
|
2018-09-21 12:22:34 -07:00
|
|
|
|
ctx->set_tess_state = iris_set_tess_state;
|
2017-11-23 23:15:14 -08:00
|
|
|
|
ctx->set_framebuffer_state = iris_set_framebuffer_state;
|
|
|
|
|
|
ctx->set_polygon_stipple = iris_set_polygon_stipple;
|
|
|
|
|
|
ctx->set_sample_mask = iris_set_sample_mask;
|
|
|
|
|
|
ctx->set_scissor_states = iris_set_scissor_states;
|
|
|
|
|
|
ctx->set_stencil_ref = iris_set_stencil_ref;
|
|
|
|
|
|
ctx->set_vertex_buffers = iris_set_vertex_buffers;
|
|
|
|
|
|
ctx->set_viewport_states = iris_set_viewport_states;
|
|
|
|
|
|
ctx->sampler_view_destroy = iris_sampler_view_destroy;
|
|
|
|
|
|
ctx->surface_destroy = iris_surface_destroy;
|
|
|
|
|
|
ctx->draw_vbo = iris_draw_vbo;
|
|
|
|
|
|
ctx->launch_grid = iris_launch_grid;
|
|
|
|
|
|
ctx->create_stream_output_target = iris_create_stream_output_target;
|
|
|
|
|
|
ctx->stream_output_target_destroy = iris_stream_output_target_destroy;
|
|
|
|
|
|
ctx->set_stream_output_targets = iris_set_stream_output_targets;
|
2018-01-25 01:36:49 -08:00
|
|
|
|
|
2018-04-20 23:28:03 -07:00
|
|
|
|
ice->vtbl.destroy_state = iris_destroy_state;
|
|
|
|
|
|
ice->vtbl.init_render_context = iris_init_render_context;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
ice->vtbl.init_compute_context = iris_init_compute_context;
|
2018-04-20 23:28:03 -07:00
|
|
|
|
ice->vtbl.upload_render_state = iris_upload_render_state;
|
2018-09-08 19:43:34 -07:00
|
|
|
|
ice->vtbl.update_surface_base_address = iris_update_surface_base_address;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
ice->vtbl.upload_compute_state = iris_upload_compute_state;
|
2018-04-20 23:28:03 -07:00
|
|
|
|
ice->vtbl.emit_raw_pipe_control = iris_emit_raw_pipe_control;
|
2018-11-09 12:13:17 +10:00
|
|
|
|
ice->vtbl.load_register_reg32 = iris_load_register_reg32;
|
|
|
|
|
|
ice->vtbl.load_register_reg64 = iris_load_register_reg64;
|
2018-09-17 16:37:26 -07:00
|
|
|
|
ice->vtbl.load_register_imm32 = iris_load_register_imm32;
|
|
|
|
|
|
ice->vtbl.load_register_imm64 = iris_load_register_imm64;
|
|
|
|
|
|
ice->vtbl.load_register_mem32 = iris_load_register_mem32;
|
|
|
|
|
|
ice->vtbl.load_register_mem64 = iris_load_register_mem64;
|
|
|
|
|
|
ice->vtbl.store_register_mem32 = iris_store_register_mem32;
|
|
|
|
|
|
ice->vtbl.store_register_mem64 = iris_store_register_mem64;
|
|
|
|
|
|
ice->vtbl.store_data_imm32 = iris_store_data_imm32;
|
|
|
|
|
|
ice->vtbl.store_data_imm64 = iris_store_data_imm64;
|
2018-09-27 10:39:04 +02:00
|
|
|
|
ice->vtbl.copy_mem_mem = iris_copy_mem_mem;
|
2018-04-20 23:28:03 -07:00
|
|
|
|
ice->vtbl.derived_program_state_size = iris_derived_program_state_size;
|
2018-06-09 00:01:09 -07:00
|
|
|
|
ice->vtbl.store_derived_program_state = iris_store_derived_program_state;
|
2018-06-29 12:58:31 -07:00
|
|
|
|
ice->vtbl.create_so_decl_list = iris_create_so_decl_list;
|
2018-04-20 23:28:03 -07:00
|
|
|
|
ice->vtbl.populate_vs_key = iris_populate_vs_key;
|
|
|
|
|
|
ice->vtbl.populate_tcs_key = iris_populate_tcs_key;
|
|
|
|
|
|
ice->vtbl.populate_tes_key = iris_populate_tes_key;
|
|
|
|
|
|
ice->vtbl.populate_gs_key = iris_populate_gs_key;
|
|
|
|
|
|
ice->vtbl.populate_fs_key = iris_populate_fs_key;
|
2018-07-26 21:59:20 -07:00
|
|
|
|
ice->vtbl.populate_cs_key = iris_populate_cs_key;
|
2019-03-06 14:49:39 -08:00
|
|
|
|
ice->vtbl.mocs = mocs;
|
2018-01-25 02:03:18 -08:00
|
|
|
|
|
2018-01-25 01:36:49 -08:00
|
|
|
|
ice->state.dirty = ~0ull;
|
2018-06-18 00:23:25 -07:00
|
|
|
|
|
2018-11-08 01:14:27 -08:00
|
|
|
|
ice->state.statistics_counters_enabled = true;
|
|
|
|
|
|
|
2018-07-27 16:02:09 -07:00
|
|
|
|
ice->state.sample_mask = 0xffff;
|
2018-06-20 16:11:08 -07:00
|
|
|
|
ice->state.num_viewports = 1;
|
2018-07-01 22:13:07 -07:00
|
|
|
|
ice->state.genx = calloc(1, sizeof(struct iris_genx_state));
|
2018-06-27 16:59:59 -07:00
|
|
|
|
|
|
|
|
|
|
/* Make a 1x1x1 null surface for unbound textures */
|
2018-06-28 00:57:49 -07:00
|
|
|
|
void *null_surf_map =
|
|
|
|
|
|
upload_state(ice->state.surface_uploader, &ice->state.unbound_tex,
|
|
|
|
|
|
4 * GENX(RENDER_SURFACE_STATE_length), 64);
|
2018-06-27 16:59:59 -07:00
|
|
|
|
isl_null_fill_state(&screen->isl_dev, null_surf_map, isl_extent3d(1, 1, 1));
|
2018-09-11 01:09:27 -07:00
|
|
|
|
ice->state.unbound_tex.offset +=
|
|
|
|
|
|
iris_bo_offset_from_base_address(iris_resource_bo(ice->state.unbound_tex.res));
|
2018-10-23 01:36:26 -07:00
|
|
|
|
|
|
|
|
|
|
/* Default all scissor rectangles to be empty regions. */
|
|
|
|
|
|
for (int i = 0; i < IRIS_MAX_VIEWPORTS; i++) {
|
|
|
|
|
|
ice->state.scissors[i] = (struct pipe_scissor_state) {
|
|
|
|
|
|
.minx = 1, .maxx = 0, .miny = 1, .maxy = 0,
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
2017-11-23 23:15:14 -08:00
|
|
|
|
}
|