Re: [PATCH 6/6] drm/amdgpu: remove MM engine related WARN_ON for user fence

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Am 08.05.19 um 21:02 schrieb Liu, Leo:
On 5/8/19 1:45 PM, Alex Deucher wrote:
[CAUTION: External Email]

On Wed, May 8, 2019 at 11:51 AM Liu, Leo <Leo.Liu@xxxxxxx> wrote:
Since the check aleady done with command submission check
Missing signed-off-by.

patches 1-5 are:
Reviewed-by: Alex Deucher <alexander.deucher@xxxxxxx>

As for this patch, I don't think these are directly related to user
fences and we may want to keep them.
Okay. I will drop this patch.

Yeah, could be that we internally in the kernel try to submit a 64bit fence to an MM engine at some point.

patches 1-5 are Reviewed-by: Christian König <christian.koenig@xxxxxxx> as well.

Thanks,
Christian.


Thanks for the reviews.

Leo



Alex

---
   drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c | 2 --
   drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c   | 2 --
   drivers/gpu/drm/amd/amdgpu/uvd_v5_0.c   | 2 --
   drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c   | 4 ----
   drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c   | 5 -----
   drivers/gpu/drm/amd/amdgpu/vce_v4_0.c   | 2 --
   drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c   | 6 ------
   7 files changed, 23 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
index c021b114c8a4..967a5f080863 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
@@ -1053,8 +1053,6 @@ void amdgpu_vce_ring_emit_ib(struct amdgpu_ring *ring,
   void amdgpu_vce_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
                                  unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, VCE_CMD_FENCE);
          amdgpu_ring_write(ring, addr);
          amdgpu_ring_write(ring, upper_32_bits(addr));
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c b/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c
index bf3385280d3f..dc60c8753752 100644
--- a/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c
+++ b/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c
@@ -446,8 +446,6 @@ static void uvd_v4_2_stop(struct amdgpu_device *adev)
   static void uvd_v4_2_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
                                       unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
          amdgpu_ring_write(ring, seq);
          amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v5_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v5_0.c
index 3210a7bd9a6d..86234178d440 100644
--- a/drivers/gpu/drm/amd/amdgpu/uvd_v5_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/uvd_v5_0.c
@@ -462,8 +462,6 @@ static void uvd_v5_0_stop(struct amdgpu_device *adev)
   static void uvd_v5_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
                                       unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
          amdgpu_ring_write(ring, seq);
          amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
index c61a314c56cc..486fa743c594 100644
--- a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
@@ -882,8 +882,6 @@ static void uvd_v6_0_stop(struct amdgpu_device *adev)
   static void uvd_v6_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
                                       unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
          amdgpu_ring_write(ring, seq);
          amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
@@ -912,8 +910,6 @@ static void uvd_v6_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq
   static void uvd_v6_0_enc_ring_emit_fence(struct amdgpu_ring *ring, u64 addr,
                          u64 seq, unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, HEVC_ENC_CMD_FENCE);
          amdgpu_ring_write(ring, addr);
          amdgpu_ring_write(ring, upper_32_bits(addr));
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c
index cdb96d4cb424..18bec3605a80 100644
--- a/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c
@@ -1143,8 +1143,6 @@ static void uvd_v7_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq
   {
          struct amdgpu_device *adev = ring->adev;

-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring,
                  PACKET0(SOC15_REG_OFFSET(UVD, ring->me, mmUVD_CONTEXT_ID), 0));
          amdgpu_ring_write(ring, seq);
@@ -1180,9 +1178,6 @@ static void uvd_v7_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq
   static void uvd_v7_0_enc_ring_emit_fence(struct amdgpu_ring *ring, u64 addr,
                          u64 seq, unsigned flags)
   {
-
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, HEVC_ENC_CMD_FENCE);
          amdgpu_ring_write(ring, addr);
          amdgpu_ring_write(ring, upper_32_bits(addr));
diff --git a/drivers/gpu/drm/amd/amdgpu/vce_v4_0.c b/drivers/gpu/drm/amd/amdgpu/vce_v4_0.c
index e267b073f525..06544f728085 100644
--- a/drivers/gpu/drm/amd/amdgpu/vce_v4_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/vce_v4_0.c
@@ -963,8 +963,6 @@ static void vce_v4_0_ring_emit_ib(struct amdgpu_ring *ring, struct amdgpu_job *j
   static void vce_v4_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr,
                          u64 seq, unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, VCE_CMD_FENCE);
          amdgpu_ring_write(ring, addr);
          amdgpu_ring_write(ring, upper_32_bits(addr));
diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
index ac2e5a1eb576..b00bd45bc258 100644
--- a/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
@@ -1334,8 +1334,6 @@ static void vcn_v1_0_dec_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64
   {
          struct amdgpu_device *adev = ring->adev;

-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring,
                  PACKET0(SOC15_REG_OFFSET(UVD, 0, mmUVD_CONTEXT_ID), 0));
          amdgpu_ring_write(ring, seq);
@@ -1506,8 +1504,6 @@ static void vcn_v1_0_enc_ring_set_wptr(struct amdgpu_ring *ring)
   static void vcn_v1_0_enc_ring_emit_fence(struct amdgpu_ring *ring, u64 addr,
                          u64 seq, unsigned flags)
   {
-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring, VCN_ENC_CMD_FENCE);
          amdgpu_ring_write(ring, addr);
          amdgpu_ring_write(ring, upper_32_bits(addr));
@@ -1666,8 +1662,6 @@ static void vcn_v1_0_jpeg_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u6
   {
          struct amdgpu_device *adev = ring->adev;

-       WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
-
          amdgpu_ring_write(ring,
                  PACKETJ(SOC15_REG_OFFSET(UVD, 0, mmUVD_JPEG_GPCOM_DATA0), 0, 0, PACKETJ_TYPE0));
          amdgpu_ring_write(ring, seq);
--
2.17.1

_______________________________________________
amd-gfx mailing list
amd-gfx@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

_______________________________________________
amd-gfx mailing list
amd-gfx@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/amd-gfx




[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux