diff options
author | Marek Olšák <[email protected]> | 2019-04-01 12:29:43 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-04-02 08:46:49 -0400 |
commit | 7be26976b8e8bc34fa7d55550014197ed2af488f (patch) | |
tree | c72bcc0eb095b684b52e5e9ad1da4ac5c86d5268 /src/gallium | |
parent | 1e5381f93458dbc4fd6011ff8ad89f71d575332e (diff) |
radeonsi: don't use PFP_SYNC_ME with compute-only contexts
Compute rings don't have PFP.
Fixes: a1378639ab1 "radeonsi: always use compute rings for clover on CI and newer (v2)"
Reviewed-by: Samuel Pitoiset <[email protected]>
Tested-by: Jan Vesely <[email protected]>
Tested-by: Dieter Nützel <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_cp_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_cp_dma.c b/src/gallium/drivers/radeonsi/si_cp_dma.c index 5993369d2da..f349325202c 100644 --- a/src/gallium/drivers/radeonsi/si_cp_dma.c +++ b/src/gallium/drivers/radeonsi/si_cp_dma.c @@ -131,7 +131,7 @@ static void si_emit_cp_dma(struct si_context *sctx, struct radeon_cmdbuf *cs, * indices. If we wanted to execute CP DMA in PFP, this packet * should precede it. */ - if (flags & CP_DMA_PFP_SYNC_ME) { + if (sctx->has_graphics && flags & CP_DMA_PFP_SYNC_ME) { radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0)); radeon_emit(cs, 0); } |