From: Marek Olšák Date: Tue, 13 Nov 2018 21:19:42 +0000 (-0500) Subject: radeonsi: go back to using bottom-of-pipe for beginning of TIME_ELAPSED X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ea9f95e2a67eca90bb84eea24e7b4b804b3b1345;p=mesa.git radeonsi: go back to using bottom-of-pipe for beginning of TIME_ELAPSED Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=102597 Cc: 18.3 Tested-by: Dieter Nützel Reviewed-by: Dave Airlie --- diff --git a/src/gallium/drivers/radeonsi/si_query.c b/src/gallium/drivers/radeonsi/si_query.c index 21b9aeeac28..aed3e1e80c1 100644 --- a/src/gallium/drivers/radeonsi/si_query.c +++ b/src/gallium/drivers/radeonsi/si_query.c @@ -793,17 +793,10 @@ static void si_query_hw_do_emit_start(struct si_context *sctx, emit_sample_streamout(cs, va + 32 * stream, stream); break; case PIPE_QUERY_TIME_ELAPSED: - /* Write the timestamp from the CP not waiting for - * outstanding draws (top-of-pipe). - */ - radeon_emit(cs, PKT3(PKT3_COPY_DATA, 4, 0)); - radeon_emit(cs, COPY_DATA_COUNT_SEL | - COPY_DATA_SRC_SEL(COPY_DATA_TIMESTAMP) | - COPY_DATA_DST_SEL(COPY_DATA_DST_MEM)); - radeon_emit(cs, 0); - radeon_emit(cs, 0); - radeon_emit(cs, va); - radeon_emit(cs, va >> 32); + si_cp_release_mem(sctx, V_028A90_BOTTOM_OF_PIPE_TS, 0, + EOP_DST_SEL_MEM, EOP_INT_SEL_NONE, + EOP_DATA_SEL_TIMESTAMP, NULL, va, + 0, query->b.type); break; case PIPE_QUERY_PIPELINE_STATISTICS: radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 2, 0));