[Mesa-dev] [PATCH v2 19/34] i965/state: Add a helper for emitting a surface state using isl
Pohjolainen, Topi
topi.pohjolainen at intel.com
Mon Jun 27 19:53:47 UTC 2016
On Thu, Jun 23, 2016 at 02:00:18PM -0700, Jason Ekstrand wrote:
> ---
> src/mesa/drivers/dri/i965/brw_state.h | 8 +++
> src/mesa/drivers/dri/i965/brw_wm_surface_state.c | 83 ++++++++++++++++++++++++
> 2 files changed, 91 insertions(+)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_state.h b/src/mesa/drivers/dri/i965/brw_state.h
> index b29412e..c582873 100644
> --- a/src/mesa/drivers/dri/i965/brw_state.h
> +++ b/src/mesa/drivers/dri/i965/brw_state.h
> @@ -275,6 +275,14 @@ GLuint translate_tex_format(struct brw_context *brw,
> int brw_get_texture_swizzle(const struct gl_context *ctx,
> const struct gl_texture_object *t);
>
> +struct isl_view;
> +void brw_emit_surface_state(struct brw_context *brw,
> + struct intel_mipmap_tree *mt,
> + const struct isl_view *view,
> + uint32_t mocs, bool for_gather,
> + uint32_t *surf_offset, int surf_index,
> + unsigned read_domains, unsigned write_domains);
> +
> void brw_update_renderbuffer_surfaces(struct brw_context *brw,
> const struct gl_framebuffer *fb,
> uint32_t render_target_start,
> diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
> index cfce2c9..ab45959 100644
> --- a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
> +++ b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
> @@ -35,6 +35,7 @@
> #include "main/mtypes.h"
> #include "main/samplerobj.h"
> #include "main/shaderimage.h"
> +#include "main/teximage.h"
> #include "program/prog_parameter.h"
> #include "program/prog_instruction.h"
> #include "main/framebuffer.h"
> @@ -52,6 +53,88 @@
> #include "brw_defines.h"
> #include "brw_wm.h"
>
> +struct surface_state_info {
> + unsigned num_dwords;
> + unsigned ss_align; /* Required alignment of RENDER_SURFACE_STATE in bytes */
> + unsigned reloc_dw;
> + unsigned aux_reloc_dw;
> + unsigned tex_mocs;
> + unsigned rb_mocs;
> +};
> +
> +static const struct surface_state_info surface_state_infos[] = {
> + [4] = {6, 32, 1, 0},
> + [5] = {6, 32, 1, 0},
> + [6] = {6, 32, 1, 0},
> + [7] = {8, 32, 1, 6, GEN7_MOCS_L3, GEN7_MOCS_L3},
> + [8] = {13, 64, 8, 10, BDW_MOCS_WB, BDW_MOCS_PTE},
> + [9] = {16, 64, 8, 10, SKL_MOCS_WB, SKL_MOCS_PTE},
> +};
> +
> +void
> +brw_emit_surface_state(struct brw_context *brw,
> + struct intel_mipmap_tree *mt,
> + const struct isl_view *view,
> + uint32_t mocs, bool for_gather,
> + uint32_t *surf_offset, int surf_index,
> + unsigned read_domains, unsigned write_domains)
> +{
> + /* TODO: This should go in the context */
> + struct isl_device isl_dev;
> + isl_device_init(&isl_dev, brw->intelScreen->devinfo, brw->has_swizzling);
> +
> + const struct surface_state_info ss_info = surface_state_infos[brw->gen];
> +
> + struct isl_surf surf;
> + intel_miptree_get_isl_surf(brw, mt, &surf);
> +
> + union isl_color_value clear_color = { .u32 = { 0, 0, 0, 0 } };
> +
> + struct isl_surf *aux_surf = NULL, aux_surf_s;
> + uint64_t aux_offset = 0;
> + enum isl_aux_layout aux_layout = ISL_AUX_LAYOUT_NONE;
> + if (mt->mcs_mt &&
> + ((view->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) ||
> + mt->fast_clear_state != INTEL_FAST_CLEAR_STATE_RESOLVED)) {
> + intel_miptree_get_aux_isl_surf(brw, mt, &aux_surf_s, &aux_layout);
> + aux_surf = &aux_surf_s;
> + assert(mt->mcs_mt->offset == 0);
> + aux_offset = mt->mcs_mt->bo->offset64;
> +
> + /* We only really need a clear color if we also have an auxiliary
> + * surfacae. Without one, it does nothing.
> + */
> + clear_color = intel_miptree_get_isl_clear_color(brw, mt);
> + }
> +
> + uint32_t *dw = __brw_state_batch(brw, AUB_TRACE_SURFACE_STATE,
> + ss_info.num_dwords * 4, ss_info.ss_align,
> + surf_index, surf_offset);
> +
> + isl_surf_fill_state(&isl_dev, dw, .surf = &surf, .view = view,
> + .address = mt->bo->offset64 + mt->offset,
> + .aux_surf = aux_surf, .aux_layout = aux_layout,
> + .aux_address = aux_offset,
> + .mocs = mocs, .clear_color = clear_color);
> +
> + drm_intel_bo_emit_reloc(brw->batch.bo,
> + *surf_offset + 4 * ss_info.reloc_dw,
> + mt->bo, mt->offset,
> + read_domains, write_domains);
> +
> + if (aux_surf) {
> + /* On gen7 and prior, the bottom 12 bits of the MCS base address are
> + * used to store other information. This should be ok, however, because
> + * surface buffer addresses are always 4K page alinged.
> + */
> + assert((aux_offset & 0xfff) == 0);
> + drm_intel_bo_emit_reloc(brw->batch.bo,
> + *surf_offset + 4 * ss_info.aux_reloc_dw,
> + mt->mcs_mt->bo, dw[ss_info.aux_reloc_dw] & 0xfff,
> + read_domains, write_domains);
> + }
> +}
This looks pretty identical to patch 13 (except the blorp specific overrides).
This and patch 20:
Reviewed-by: Topi Pohjolainen <topi.pohjolainen at intel.com>
> +
> GLuint
> translate_tex_target(GLenum target)
> {
> --
> 2.5.0.400.gff86faf
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list