From: Samuel Pitoiset Date: Mon, 24 Oct 2022 11:21:59 +0000 (+0200) Subject: ac: fix has_vrs_ds_export_bug for VanGogh X-Git-Tag: upstream/22.3.5~1214 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ec5b6774dd2af05abf34fcb74cac0c71692b763;p=platform%2Fupstream%2Fmesa.git ac: fix has_vrs_ds_export_bug for VanGogh Missed it. Fixes: 0a8a9d9d638 ("ac: add radeon_info::has_vrs_ds_export_bug") Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen Part-of: --- diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 5be47ff..00dec3b 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -1105,7 +1105,8 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info) * depth/stencil from a FS for multi-pixel fragments. */ info->has_vrs_ds_export_bug = info->family == CHIP_NAVI21 || - info->family == CHIP_NAVI22; + info->family == CHIP_NAVI22 || + info->family == CHIP_VANGOGH; /* HW bug workaround when CS threadgroups > 256 threads and async compute * isn't used, i.e. only one compute job can run at a time. If async