OSDN Git Service

drm/amdgpu: remove SRIOV and MCBP dependencies from the CS
authorChristian König <christian.koenig@amd.com>
Mon, 28 Feb 2022 19:46:57 +0000 (20:46 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 13 Sep 2022 18:33:01 +0000 (14:33 -0400)
We should not have any different CS constrains based
on the execution environment.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c

index b7bae83..6f80cf2 100644 (file)
@@ -814,7 +814,7 @@ static int amdgpu_cs_vm_handling(struct amdgpu_cs_parser *p)
        if (r)
                return r;
 
-       if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
+       if (fpriv->csa_va) {
                bo_va = fpriv->csa_va;
                BUG_ON(!bo_va);
                r = amdgpu_vm_bo_update(adev, bo_va, false);
@@ -898,13 +898,11 @@ static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
                        continue;
 
                if (chunk_ib->ip_type == AMDGPU_HW_IP_GFX &&
-                   (amdgpu_mcbp || amdgpu_sriov_vf(adev))) {
-                       if (chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) {
-                               if (chunk_ib->flags & AMDGPU_IB_FLAG_CE)
-                                       ce_preempt++;
-                               else
-                                       de_preempt++;
-                       }
+                   chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) {
+                       if (chunk_ib->flags & AMDGPU_IB_FLAG_CE)
+                               ce_preempt++;
+                       else
+                               de_preempt++;
 
                        /* each GFX command submit allows 0 or 1 IB preemptible for CE & DE */
                        if (ce_preempt > 1 || de_preempt > 1)