[Mesa-dev] [PATCH] radv: Use correct flush bits for flushing L2 during CB/DB flushes.

Samuel Pitoiset samuel.pitoiset at gmail.com
Thu Jan 4 09:12:35 UTC 2018


Reviewed-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>

On 01/04/2018 02:29 AM, Bas Nieuwenhuizen wrote:
> Copied from radeonsi.
> 
> Putting in the correct metadata flush commands for eventually not
> flushing L2 on CB/DB switch.
> 
> Does not remove the need for V_028A90_CACHE_FLUSH_AND_INV_TS_EVENT
> at the moment.
> ---
>   src/amd/vulkan/si_cmd_buffer.c | 29 ++++++++++++++++-------------
>   1 file changed, 16 insertions(+), 13 deletions(-)
> 
> diff --git a/src/amd/vulkan/si_cmd_buffer.c b/src/amd/vulkan/si_cmd_buffer.c
> index 7d75d69a9a..e16765b5ae 100644
> --- a/src/amd/vulkan/si_cmd_buffer.c
> +++ b/src/amd/vulkan/si_cmd_buffer.c
> @@ -1006,24 +1006,27 @@ si_cs_emit_cache_flush(struct radeon_winsys_cs *cs,
>   #else
>   		cb_db_event = V_028A90_CACHE_FLUSH_AND_INV_TS_EVENT;
>   #endif
> -		/* TC    | TC_WB         = invalidate L2 data
> -		 * TC_MD | TC_WB         = invalidate L2 metadata
> -		 * TC    | TC_WB | TC_MD = invalidate L2 data & metadata
> +		/* These are the only allowed combinations. If you need to
> +		 * do multiple operations at once, do them separately.
> +		 * All operations that invalidate L2 also seem to invalidate
> +		 * metadata. Volatile (VOL) and WC flushes are not listed here.
>   		 *
> -		 * The metadata cache must always be invalidated for coherency
> -		 * between CB/DB and shaders. (metadata = HTILE, CMASK, DCC)
> -		 *
> -		 * TC must be invalidated on GFX9 only if the CB/DB surface is
> -		 * not pipe-aligned. If the surface is RB-aligned, it might not
> -		 * strictly be pipe-aligned since RB alignment takes precendence.
> +		 * TC    | TC_WB         = writeback & invalidate L2 & L1
> +		 * TC    | TC_WB | TC_NC = writeback & invalidate L2 for MTYPE == NC
> +		 *         TC_WB | TC_NC = writeback L2 for MTYPE == NC
> +		 * TC            | TC_NC = invalidate L2 for MTYPE == NC
> +		 * TC    | TC_MD         = writeback & invalidate L2 metadata (DCC, etc.)
> +		 * TCL1                  = invalidate L1
>   		 */
> -		tc_flags = EVENT_TC_WB_ACTION_ENA |
> -			   EVENT_TC_MD_ACTION_ENA;
> +		tc_flags = EVENT_TC_ACTION_ENA |
> +		           EVENT_TC_MD_ACTION_ENA;
>   
>   		/* Ideally flush TC together with CB/DB. */
>   		if (flush_bits & RADV_CMD_FLAG_INV_GLOBAL_L2) {
> -			tc_flags |= EVENT_TC_ACTION_ENA |
> -				    EVENT_TCL1_ACTION_ENA;
> +			/* Writeback and invalidate everything in L2 & L1. */
> +			tc_flags = EVENT_TC_ACTION_ENA |
> +			           EVENT_TC_WB_ACTION_ENA;
> +
>   
>   			/* Clear the flags. */
>   		        flush_bits &= ~(RADV_CMD_FLAG_INV_GLOBAL_L2 |
> 


More information about the mesa-dev mailing list