[Mesa-dev] [PATCH V2 2/8] i965: Use intel_get_tile_dims() to get tile masks
Chad Versace
chad.versace at intel.com
Wed Sep 16 15:53:49 PDT 2015
On Wed 19 Aug 2015, Anuj Phogat wrote:
> This will require change in the parameters passed to
> intel_miptree_get_tile_masks().
>
> V2: Rearrange the order of parameters. (Ben)
> Change the name to intel_get_tile_masks(). (Topi)
>
> Cc: Ben Widawsky <ben at bwidawsk.net>
> Cc: Topi Pohjolainen <topi.pohjolainen at intel.com>
> Signed-off-by: Anuj Phogat <anuj.phogat at gmail.com>
> ---
> src/mesa/drivers/dri/i965/brw_blorp.cpp | 4 +++-
> src/mesa/drivers/dri/i965/brw_misc_state.c | 20 +++++++++++-------
> src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 30 +++++++--------------------
> src/mesa/drivers/dri/i965/intel_mipmap_tree.h | 6 +++---
> 4 files changed, 27 insertions(+), 33 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_blorp.cpp b/src/mesa/drivers/dri/i965/brw_blorp.cpp
> index eac1f00..df2969d 100644
> --- a/src/mesa/drivers/dri/i965/brw_blorp.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_blorp.cpp
> @@ -144,7 +144,9 @@ brw_blorp_surface_info::compute_tile_offsets(uint32_t *tile_x,
> {
> uint32_t mask_x, mask_y;
>
> - intel_miptree_get_tile_masks(mt, &mask_x, &mask_y, map_stencil_as_y_tiled);
> + intel_get_tile_masks(mt->tiling, mt->tr_mode, mt->cpp,
> + map_stencil_as_y_tiled,
> + &mask_x, &mask_y);
>
> *tile_x = x_offset & mask_x;
> *tile_y = y_offset & mask_y;
> diff --git a/src/mesa/drivers/dri/i965/brw_misc_state.c b/src/mesa/drivers/dri/i965/brw_misc_state.c
> index e9d9467..2a3195a 100644
> --- a/src/mesa/drivers/dri/i965/brw_misc_state.c
> +++ b/src/mesa/drivers/dri/i965/brw_misc_state.c
> @@ -174,13 +174,17 @@ brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
> uint32_t tile_mask_x = 0, tile_mask_y = 0;
>
> if (depth_mt) {
> - intel_miptree_get_tile_masks(depth_mt, &tile_mask_x, &tile_mask_y, false);
> + intel_get_tile_masks(depth_mt->tiling, depth_mt->tr_mode,
> + depth_mt->cpp, false,
> + &tile_mask_x, &tile_mask_y);
>
> if (intel_miptree_level_has_hiz(depth_mt, depth_level)) {
> uint32_t hiz_tile_mask_x, hiz_tile_mask_y;
> - intel_miptree_get_tile_masks(depth_mt->hiz_buf->mt,
> - &hiz_tile_mask_x, &hiz_tile_mask_y,
> - false);
> + intel_get_tile_masks(depth_mt->hiz_buf->mt->tiling,
> + depth_mt->hiz_buf->mt->tr_mode,
> + depth_mt->hiz_buf->mt->cpp,
> + false, &hiz_tile_mask_x,
> + &hiz_tile_mask_y);
>
> /* Each HiZ row represents 2 rows of pixels */
> hiz_tile_mask_y = hiz_tile_mask_y << 1 | 1;
> @@ -200,9 +204,11 @@ brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
> tile_mask_y |= 63;
> } else {
> uint32_t stencil_tile_mask_x, stencil_tile_mask_y;
> - intel_miptree_get_tile_masks(stencil_mt,
> - &stencil_tile_mask_x,
> - &stencil_tile_mask_y, false);
> + intel_get_tile_masks(stencil_mt->tiling,
> + stencil_mt->tr_mode,
> + stencil_mt->cpp,
> + false, &stencil_tile_mask_x,
> + &stencil_tile_mask_y);
>
> tile_mask_x |= stencil_tile_mask_x;
> tile_mask_y |= stencil_tile_mask_y;
> diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
> index c282e94..13a33c6 100644
> --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
> +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
> @@ -1124,31 +1124,17 @@ intel_get_tile_dims(uint32_t tiling, uint32_t tr_mode, uint32_t cpp,
> * untiled, the masks are set to 0.
> */
> void
> -intel_miptree_get_tile_masks(const struct intel_mipmap_tree *mt,
> - uint32_t *mask_x, uint32_t *mask_y,
> - bool map_stencil_as_y_tiled)
> +intel_get_tile_masks(uint32_t tiling, uint32_t tr_mode, uint32_t cpp,
> + bool map_stencil_as_y_tiled,
> + uint32_t *mask_x, uint32_t *mask_y)
> {
> - int cpp = mt->cpp;
> - uint32_t tiling = mt->tiling;
> -
> if (map_stencil_as_y_tiled)
> tiling = I915_TILING_Y;
>
> - switch (tiling) {
> - default:
> - unreachable("not reached");
> - case I915_TILING_NONE:
> - *mask_x = *mask_y = 0;
> - break;
> - case I915_TILING_X:
> - *mask_x = 512 / cpp - 1;
> - *mask_y = 7;
> - break;
> - case I915_TILING_Y:
> - *mask_x = 128 / cpp - 1;
> - *mask_y = 31;
> - break;
> - }
> + intel_get_tile_dims(tiling, tr_mode, cpp, mask_x, mask_y);
> +
> + *mask_x = *mask_x / cpp - 1;
> + *mask_y = *mask_y / cpp - 1;
> }
mask_y should be exactly (tile_height - 1) for all tiling modes.
> diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.h b/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
> index dc6a7a5..d5e22df 100644
> --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
> +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
> @@ -622,9 +622,9 @@ intel_miptree_get_dimensions_for_image(struct gl_texture_image *image,
> int *width, int *height, int *depth);
>
> void
> -intel_miptree_get_tile_masks(const struct intel_mipmap_tree *mt,
> - uint32_t *mask_x, uint32_t *mask_y,
> - bool map_stencil_as_y_tiled);
> +intel_get_tile_masks(uint32_t tiling, uint32_t tr_mode, uint32_t cpp,
> + bool map_stencil_as_y_tiled,
> + uint32_t *mask_x, uint32_t *mask_y);
I like this function prototype. Other than the mask_y bug, the patch
looks good to me.
More information about the mesa-dev
mailing list