2018-04-21 00:05:57 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 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:
|
2018-04-21 00:05:57 -07: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.
|
2018-04-21 00:05:57 -07: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.
|
2018-04-21 00:05:57 -07:00
|
|
|
*/
|
2018-07-30 23:49:34 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file iris_blorp.c
|
|
|
|
*
|
|
|
|
* ============================= GENXML CODE =============================
|
|
|
|
* [This file is compiled once per generation.]
|
|
|
|
* =======================================================================
|
|
|
|
*
|
|
|
|
* GenX specific code for working with BLORP (blitting, resolves, clears
|
|
|
|
* on the 3D engine). This provides the driver-specific hooks needed to
|
|
|
|
* implement the BLORP API.
|
|
|
|
*
|
|
|
|
* See iris_blit.c, iris_clear.c, and so on.
|
|
|
|
*/
|
|
|
|
|
2018-04-21 00:05:57 -07:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "iris_batch.h"
|
|
|
|
#include "iris_resource.h"
|
|
|
|
#include "iris_context.h"
|
|
|
|
|
2018-04-28 16:55:54 -07:00
|
|
|
#include "util/u_upload_mgr.h"
|
2018-04-23 13:26:06 -07:00
|
|
|
#include "intel/common/gen_l3_config.h"
|
2018-04-28 16:55:54 -07:00
|
|
|
|
|
|
|
#define BLORP_USE_SOFTPIN
|
2018-04-21 00:05:57 -07:00
|
|
|
#include "blorp/blorp_genX_exec.h"
|
|
|
|
|
|
|
|
static uint32_t *
|
|
|
|
stream_state(struct iris_batch *batch,
|
|
|
|
struct u_upload_mgr *uploader,
|
|
|
|
unsigned size,
|
|
|
|
unsigned alignment,
|
|
|
|
uint32_t *out_offset,
|
2018-04-28 16:55:54 -07:00
|
|
|
struct iris_bo **out_bo)
|
2018-04-21 00:05:57 -07:00
|
|
|
{
|
|
|
|
struct pipe_resource *res = NULL;
|
|
|
|
void *ptr = NULL;
|
|
|
|
|
|
|
|
u_upload_alloc(uploader, 0, size, alignment, out_offset, &res, &ptr);
|
|
|
|
|
2018-04-21 23:27:15 -07:00
|
|
|
struct iris_bo *bo = iris_resource_bo(res);
|
2020-05-29 16:38:43 -07:00
|
|
|
iris_use_pinned_bo(batch, bo, false, IRIS_DOMAIN_NONE);
|
2018-04-21 00:05:57 -07:00
|
|
|
|
iris: Record state sizes for INTEL_DEBUG=bat decoding.
Felix noticed a crash when using INTEL_DEBUG=bat decoding. It turned
out that we were sometimes placing variable length data near the end
of a buffer, and with the decoder guessing random lengths rather than
having an actual count, it was walking off the end and crashing. So
this does more than improve the decoder output.
Unfortunately, this is a bit more complicated than i965's handling,
because we don't have a single state buffer. Various places upload
data via u_upload_mgr, and so there isn't a central place to record
the size. We don't need to catch every single place, however, since
it's only important to record variable length packets (like viewports
and binding tables).
State data also lives arbitrarily long, rather than being discarded on
every batch like i965, so we don't know when to clear out old entries
either. (We also don't have a callback when an upload buffer is
released.) So, this tracking may space leak over time. That's probably
okay though, as this is only a debugging feature and it's a slow leak.
We may also get lucky and overwrite existing entries as we reuse BOs,
though I find this unlikely to happen.
The fact that the decoder works in terms of offsets from a state base
address is also not ideal, as dynamic state base address and surface
state base address differ for iris. However, because dynamic state
addresses start from the top of a 4GB region, and binding tables start
from addresses [0, 64K), it's highly unlikely that we'll get overlap.
We can always improve this, but for now it's better than what we had.
2019-05-22 18:14:38 -07:00
|
|
|
iris_record_state_size(batch->state_sizes,
|
|
|
|
bo->gtt_offset + *out_offset, size);
|
|
|
|
|
2018-04-28 16:55:54 -07:00
|
|
|
/* If the caller has asked for a BO, we leave them the responsibility of
|
|
|
|
* adding bo->gtt_offset (say, by handing an address to genxml). If not,
|
|
|
|
* we assume they want the offset from a base address.
|
|
|
|
*/
|
|
|
|
if (out_bo)
|
|
|
|
*out_bo = bo;
|
|
|
|
else
|
|
|
|
*out_offset += iris_bo_offset_from_base_address(bo);
|
2018-04-21 00:05:57 -07:00
|
|
|
|
|
|
|
pipe_resource_reference(&res, NULL);
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
blorp_emit_dwords(struct blorp_batch *blorp_batch, unsigned n)
|
|
|
|
{
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
return iris_get_command_space(batch, n * sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
2018-04-21 22:20:32 -07:00
|
|
|
combine_and_pin_address(struct blorp_batch *blorp_batch,
|
|
|
|
struct blorp_address addr)
|
2018-04-21 00:05:57 -07:00
|
|
|
{
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
struct iris_bo *bo = addr.buffer;
|
|
|
|
|
2020-05-29 16:38:43 -07:00
|
|
|
iris_use_pinned_bo(batch, bo, addr.reloc_flags & RELOC_WRITE,
|
|
|
|
IRIS_DOMAIN_NONE);
|
2018-04-21 00:05:57 -07:00
|
|
|
|
2018-04-21 22:20:32 -07:00
|
|
|
/* Assume this is a general address, not relative to a base. */
|
|
|
|
return bo->gtt_offset + addr.offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
blorp_emit_reloc(struct blorp_batch *blorp_batch, UNUSED void *location,
|
|
|
|
struct blorp_address addr, uint32_t delta)
|
|
|
|
{
|
|
|
|
return combine_and_pin_address(blorp_batch, addr) + delta;
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
blorp_surface_reloc(struct blorp_batch *blorp_batch, uint32_t ss_offset,
|
|
|
|
struct blorp_address addr, uint32_t delta)
|
|
|
|
{
|
2018-04-21 22:20:32 -07:00
|
|
|
/* Let blorp_get_surface_address do the pinning. */
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
blorp_get_surface_address(struct blorp_batch *blorp_batch,
|
|
|
|
struct blorp_address addr)
|
|
|
|
{
|
|
|
|
return combine_and_pin_address(blorp_batch, addr);
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
UNUSED static struct blorp_address
|
|
|
|
blorp_get_surface_base_address(UNUSED struct blorp_batch *blorp_batch)
|
|
|
|
{
|
2018-09-08 19:43:34 -07:00
|
|
|
return (struct blorp_address) { .offset = IRIS_MEMZONE_BINDER_START };
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
blorp_alloc_dynamic_state(struct blorp_batch *blorp_batch,
|
|
|
|
uint32_t size,
|
|
|
|
uint32_t alignment,
|
|
|
|
uint32_t *offset)
|
|
|
|
{
|
|
|
|
struct iris_context *ice = blorp_batch->blorp->driver_ctx;
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
|
|
|
|
return stream_state(batch, ice->state.dynamic_uploader,
|
2018-04-28 16:55:54 -07:00
|
|
|
size, alignment, offset, NULL);
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
blorp_alloc_binding_table(struct blorp_batch *blorp_batch,
|
|
|
|
unsigned num_entries,
|
|
|
|
unsigned state_size,
|
|
|
|
unsigned state_alignment,
|
|
|
|
uint32_t *bt_offset,
|
|
|
|
uint32_t *surface_offsets,
|
|
|
|
void **surface_maps)
|
|
|
|
{
|
|
|
|
struct iris_context *ice = blorp_batch->blorp->driver_ctx;
|
2018-09-08 19:43:34 -07:00
|
|
|
struct iris_binder *binder = &ice->state.binder;
|
2018-04-21 00:05:57 -07:00
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
|
2018-09-08 19:43:34 -07:00
|
|
|
*bt_offset = iris_binder_reserve(ice, num_entries * sizeof(uint32_t));
|
|
|
|
uint32_t *bt_map = binder->map + *bt_offset;
|
2018-04-21 00:05:57 -07:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < num_entries; i++) {
|
|
|
|
surface_maps[i] = stream_state(batch, ice->state.surface_uploader,
|
|
|
|
state_size, state_alignment,
|
2018-04-28 16:55:54 -07:00
|
|
|
&surface_offsets[i], NULL);
|
2018-09-08 19:43:34 -07:00
|
|
|
bt_map[i] = surface_offsets[i] - (uint32_t) binder->bo->gtt_offset;
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
2018-09-08 19:43:34 -07:00
|
|
|
|
2020-05-29 16:38:43 -07:00
|
|
|
iris_use_pinned_bo(batch, binder->bo, false, IRIS_DOMAIN_NONE);
|
2018-09-08 19:43:34 -07:00
|
|
|
|
2020-03-30 10:37:29 -04:00
|
|
|
batch->screen->vtbl.update_surface_base_address(batch, binder);
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
blorp_alloc_vertex_buffer(struct blorp_batch *blorp_batch,
|
|
|
|
uint32_t size,
|
|
|
|
struct blorp_address *addr)
|
|
|
|
{
|
|
|
|
struct iris_context *ice = blorp_batch->blorp->driver_ctx;
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
struct iris_bo *bo;
|
|
|
|
uint32_t offset;
|
|
|
|
|
|
|
|
void *map = stream_state(batch, ice->ctx.stream_uploader, size, 64,
|
2018-04-28 16:55:54 -07:00
|
|
|
&offset, &bo);
|
2018-04-21 00:05:57 -07:00
|
|
|
|
|
|
|
*addr = (struct blorp_address) {
|
|
|
|
.buffer = bo,
|
|
|
|
.offset = offset,
|
2020-02-05 00:52:45 -08:00
|
|
|
.mocs = iris_mocs(bo, &batch->screen->isl_dev),
|
2018-04-21 00:05:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2018-04-21 22:20:32 -07:00
|
|
|
/**
|
2018-11-21 00:06:46 -08:00
|
|
|
* See iris_upload_render_state's IRIS_DIRTY_VERTEX_BUFFERS handling for
|
|
|
|
* a comment about why these VF invalidations are needed.
|
2018-04-21 22:20:32 -07:00
|
|
|
*/
|
|
|
|
static void
|
2018-11-21 00:06:46 -08:00
|
|
|
blorp_vf_invalidate_for_vb_48b_transitions(struct blorp_batch *blorp_batch,
|
2018-04-21 22:20:32 -07:00
|
|
|
const struct blorp_address *addrs,
|
2019-11-25 12:42:42 -06:00
|
|
|
UNUSED uint32_t *sizes,
|
2018-04-21 22:20:32 -07:00
|
|
|
unsigned num_vbs)
|
|
|
|
{
|
2019-11-25 10:04:38 -08:00
|
|
|
#if GEN_GEN < 11
|
2018-04-21 22:20:32 -07:00
|
|
|
struct iris_context *ice = blorp_batch->blorp->driver_ctx;
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
bool need_invalidate = false;
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < num_vbs; i++) {
|
|
|
|
struct iris_bo *bo = addrs[i].buffer;
|
2019-06-21 18:05:27 -05:00
|
|
|
uint16_t high_bits = bo->gtt_offset >> 32u;
|
2018-04-21 22:20:32 -07:00
|
|
|
|
2019-06-21 18:04:52 -05:00
|
|
|
if (high_bits != ice->state.last_vbo_high_bits[i]) {
|
2018-04-21 22:20:32 -07:00
|
|
|
need_invalidate = true;
|
|
|
|
ice->state.last_vbo_high_bits[i] = high_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_invalidate) {
|
2019-06-19 16:04:50 -05:00
|
|
|
iris_emit_pipe_control_flush(batch,
|
|
|
|
"workaround: VF cache 32-bit key [blorp]",
|
|
|
|
PIPE_CONTROL_VF_CACHE_INVALIDATE |
|
|
|
|
PIPE_CONTROL_CS_STALL);
|
2018-04-21 22:20:32 -07:00
|
|
|
}
|
2019-11-25 10:04:38 -08:00
|
|
|
#endif
|
2018-04-21 22:20:32 -07:00
|
|
|
}
|
|
|
|
|
2018-04-21 00:05:57 -07:00
|
|
|
static struct blorp_address
|
2020-02-23 14:34:49 +02:00
|
|
|
blorp_get_workaround_address(struct blorp_batch *blorp_batch)
|
2018-04-21 00:05:57 -07:00
|
|
|
{
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
|
2020-02-21 18:06:18 +02:00
|
|
|
return (struct blorp_address) {
|
|
|
|
.buffer = batch->screen->workaround_address.bo,
|
|
|
|
.offset = batch->screen->workaround_address.offset,
|
|
|
|
};
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
blorp_flush_range(UNUSED struct blorp_batch *blorp_batch,
|
|
|
|
UNUSED void *start,
|
|
|
|
UNUSED size_t size)
|
|
|
|
{
|
|
|
|
/* All allocated states come from the batch which we will flush before we
|
|
|
|
* submit it. There's nothing for us to do here.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2020-01-17 12:09:13 -06:00
|
|
|
static const struct gen_l3_config *
|
|
|
|
blorp_get_l3_config(struct blorp_batch *blorp_batch)
|
2018-04-21 00:05:57 -07:00
|
|
|
{
|
2018-04-23 13:26:06 -07:00
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
2020-01-17 12:09:13 -06:00
|
|
|
return batch->screen->l3_config_3d;
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iris_blorp_exec(struct blorp_batch *blorp_batch,
|
|
|
|
const struct blorp_params *params)
|
|
|
|
{
|
|
|
|
struct iris_context *ice = blorp_batch->blorp->driver_ctx;
|
|
|
|
struct iris_batch *batch = blorp_batch->driver_batch;
|
|
|
|
|
2018-09-18 11:04:44 -07:00
|
|
|
#if GEN_GEN >= 11
|
|
|
|
/* 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."
|
|
|
|
*/
|
|
|
|
iris_emit_pipe_control_flush(batch,
|
2019-06-19 16:04:50 -05:00
|
|
|
"workaround: RT BTI change [blorp]",
|
2018-09-18 11:04:44 -07:00
|
|
|
PIPE_CONTROL_RENDER_TARGET_FLUSH |
|
|
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD);
|
|
|
|
#endif
|
|
|
|
|
2018-04-21 00:05:57 -07:00
|
|
|
/* Flush the sampler and render caches. We definitely need to flush the
|
|
|
|
* sampler cache so that we get updated contents from the render cache for
|
|
|
|
* the glBlitFramebuffer() source. Also, we are sometimes warned in the
|
|
|
|
* docs to flush the cache between reinterpretations of the same surface
|
|
|
|
* data with different formats, which blorp does for stencil and depth
|
|
|
|
* data.
|
|
|
|
*/
|
|
|
|
if (params->src.enabled)
|
|
|
|
iris_cache_flush_for_read(batch, params->src.addr.buffer);
|
|
|
|
if (params->dst.enabled) {
|
|
|
|
iris_cache_flush_for_render(batch, params->dst.addr.buffer,
|
|
|
|
params->dst.view.format,
|
|
|
|
params->dst.aux_usage);
|
|
|
|
}
|
|
|
|
if (params->depth.enabled)
|
|
|
|
iris_cache_flush_for_depth(batch, params->depth.addr.buffer);
|
|
|
|
if (params->stencil.enabled)
|
|
|
|
iris_cache_flush_for_depth(batch, params->stencil.addr.buffer);
|
|
|
|
|
|
|
|
iris_require_command_space(batch, 1400);
|
|
|
|
|
2019-09-25 00:31:07 -07:00
|
|
|
#if GEN_GEN == 8
|
|
|
|
genX(update_pma_fix)(ice, batch, false);
|
|
|
|
#endif
|
|
|
|
|
2019-08-10 12:45:46 -07:00
|
|
|
const unsigned scale = params->fast_clear_op ? UINT_MAX : 1;
|
|
|
|
if (ice->state.current_hash_scale != scale) {
|
|
|
|
genX(emit_hashing_mode)(ice, batch, params->x1 - params->x0,
|
|
|
|
params->y1 - params->y0, scale);
|
|
|
|
}
|
|
|
|
|
2018-04-27 16:39:30 -07:00
|
|
|
#if GEN_GEN >= 12
|
2020-02-25 15:04:08 -08:00
|
|
|
genX(invalidate_aux_map_state)(batch);
|
2018-04-27 16:39:30 -07:00
|
|
|
#endif
|
|
|
|
|
2019-09-07 21:18:51 -07:00
|
|
|
iris_handle_always_flush_cache(batch);
|
|
|
|
|
2018-04-21 00:05:57 -07:00
|
|
|
blorp_exec(blorp_batch, params);
|
|
|
|
|
2019-09-07 21:18:51 -07:00
|
|
|
iris_handle_always_flush_cache(batch);
|
|
|
|
|
2018-04-21 00:05:57 -07:00
|
|
|
/* We've smashed all state compared to what the normal 3D pipeline
|
|
|
|
* rendering tracks for GL.
|
|
|
|
*/
|
2019-02-13 22:22:16 -08:00
|
|
|
|
|
|
|
uint64_t skip_bits = (IRIS_DIRTY_POLYGON_STIPPLE |
|
2019-01-18 00:01:05 -08:00
|
|
|
IRIS_DIRTY_SO_BUFFERS |
|
|
|
|
IRIS_DIRTY_SO_DECL_LIST |
|
2019-02-13 22:22:16 -08:00
|
|
|
IRIS_DIRTY_LINE_STIPPLE |
|
|
|
|
IRIS_ALL_DIRTY_FOR_COMPUTE |
|
|
|
|
IRIS_DIRTY_SCISSOR_RECT |
|
|
|
|
IRIS_DIRTY_VF |
|
2020-05-29 16:57:01 -07:00
|
|
|
IRIS_DIRTY_SF_CL_VIEWPORT);
|
|
|
|
uint64_t skip_stage_bits = (IRIS_ALL_STAGE_DIRTY_FOR_COMPUTE |
|
|
|
|
IRIS_STAGE_DIRTY_UNCOMPILED_VS |
|
|
|
|
IRIS_STAGE_DIRTY_UNCOMPILED_TCS |
|
|
|
|
IRIS_STAGE_DIRTY_UNCOMPILED_TES |
|
|
|
|
IRIS_STAGE_DIRTY_UNCOMPILED_GS |
|
|
|
|
IRIS_STAGE_DIRTY_UNCOMPILED_FS |
|
|
|
|
IRIS_STAGE_DIRTY_SAMPLER_STATES_VS |
|
|
|
|
IRIS_STAGE_DIRTY_SAMPLER_STATES_TCS |
|
|
|
|
IRIS_STAGE_DIRTY_SAMPLER_STATES_TES |
|
|
|
|
IRIS_STAGE_DIRTY_SAMPLER_STATES_GS);
|
2019-02-13 22:22:16 -08:00
|
|
|
|
2019-09-19 00:33:28 -07:00
|
|
|
if (!ice->shaders.uncompiled[MESA_SHADER_TESS_EVAL]) {
|
|
|
|
/* BLORP disabled tessellation, that's fine for the next draw */
|
2020-05-29 16:57:01 -07:00
|
|
|
skip_stage_bits |= IRIS_STAGE_DIRTY_TCS |
|
|
|
|
IRIS_STAGE_DIRTY_TES |
|
|
|
|
IRIS_STAGE_DIRTY_CONSTANTS_TCS |
|
|
|
|
IRIS_STAGE_DIRTY_CONSTANTS_TES |
|
|
|
|
IRIS_STAGE_DIRTY_BINDINGS_TCS |
|
|
|
|
IRIS_STAGE_DIRTY_BINDINGS_TES;
|
2019-09-19 00:33:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!ice->shaders.uncompiled[MESA_SHADER_GEOMETRY]) {
|
|
|
|
/* BLORP disabled geometry shaders, that's fine for the next draw */
|
2020-05-29 16:57:01 -07:00
|
|
|
skip_stage_bits |= IRIS_STAGE_DIRTY_GS |
|
|
|
|
IRIS_STAGE_DIRTY_CONSTANTS_GS |
|
|
|
|
IRIS_STAGE_DIRTY_BINDINGS_GS;
|
2019-09-19 00:33:28 -07:00
|
|
|
}
|
|
|
|
|
2019-02-13 22:22:16 -08:00
|
|
|
/* we can skip flagging IRIS_DIRTY_DEPTH_BUFFER, if
|
|
|
|
* BLORP_BATCH_NO_EMIT_DEPTH_STENCIL is set.
|
|
|
|
*/
|
|
|
|
if (blorp_batch->flags & BLORP_BATCH_NO_EMIT_DEPTH_STENCIL)
|
|
|
|
skip_bits |= IRIS_DIRTY_DEPTH_BUFFER;
|
|
|
|
|
|
|
|
if (!params->wm_prog_data)
|
|
|
|
skip_bits |= IRIS_DIRTY_BLEND_STATE | IRIS_DIRTY_PS_BLEND;
|
|
|
|
|
|
|
|
ice->state.dirty |= ~skip_bits;
|
2020-05-29 16:57:01 -07:00
|
|
|
ice->state.stage_dirty |= ~skip_stage_bits;
|
2018-04-21 00:05:57 -07:00
|
|
|
|
|
|
|
if (params->dst.enabled) {
|
|
|
|
iris_render_cache_add_bo(batch, params->dst.addr.buffer,
|
|
|
|
params->dst.view.format,
|
|
|
|
params->dst.aux_usage);
|
|
|
|
}
|
|
|
|
if (params->depth.enabled)
|
|
|
|
iris_depth_cache_add_bo(batch, params->depth.addr.buffer);
|
|
|
|
if (params->stencil.enabled)
|
|
|
|
iris_depth_cache_add_bo(batch, params->stencil.addr.buffer);
|
2020-05-29 16:38:43 -07:00
|
|
|
|
|
|
|
if (params->src.enabled)
|
|
|
|
iris_bo_bump_seqno(params->src.addr.buffer, batch->next_seqno,
|
|
|
|
IRIS_DOMAIN_OTHER_READ);
|
|
|
|
if (params->dst.enabled)
|
|
|
|
iris_bo_bump_seqno(params->dst.addr.buffer, batch->next_seqno,
|
|
|
|
IRIS_DOMAIN_RENDER_WRITE);
|
|
|
|
if (params->depth.enabled)
|
|
|
|
iris_bo_bump_seqno(params->depth.addr.buffer, batch->next_seqno,
|
|
|
|
IRIS_DOMAIN_DEPTH_WRITE);
|
|
|
|
if (params->stencil.enabled)
|
|
|
|
iris_bo_bump_seqno(params->stencil.addr.buffer, batch->next_seqno,
|
|
|
|
IRIS_DOMAIN_DEPTH_WRITE);
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
genX(init_blorp)(struct iris_context *ice)
|
|
|
|
{
|
2018-04-21 22:20:32 -07:00
|
|
|
struct iris_screen *screen = (struct iris_screen *)ice->ctx.screen;
|
|
|
|
|
|
|
|
blorp_init(&ice->blorp, ice, &screen->isl_dev);
|
|
|
|
ice->blorp.compiler = screen->compiler;
|
2018-04-21 23:27:15 -07:00
|
|
|
ice->blorp.lookup_shader = iris_blorp_lookup_shader;
|
|
|
|
ice->blorp.upload_shader = iris_blorp_upload_shader;
|
|
|
|
ice->blorp.exec = iris_blorp_exec;
|
2018-04-21 00:05:57 -07:00
|
|
|
}
|