Re: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

2020-03-02 Thread Yin, Tianci (Rico)
Thanks Feifei and Monk!

From: Liu, Monk 
Sent: Monday, March 2, 2020 17:35
To: Xu, Feifei ; Yin, Tianci (Rico) ; 
amd-gfx@lists.freedesktop.org 
Cc: Long, Gang ; Li, Pauline ; Yin, 
Tianci (Rico) ; Gao, Likun ; Zhang, 
Hawking ; Yuan, Xiaojie 
Subject: RE: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

Reviewed-by: Monk Liu 

_
Monk Liu|GPU Virtualization Team |AMD


-Original Message-
From: amd-gfx  On Behalf Of Xu, Feifei
Sent: Monday, March 2, 2020 5:32 PM
To: Yin, Tianci (Rico) ; amd-gfx@lists.freedesktop.org
Cc: Long, Gang ; Li, Pauline ; Yin, 
Tianci (Rico) ; Gao, Likun ; Zhang, 
Hawking ; Yuan, Xiaojie 
Subject: RE: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

[AMD Official Use Only - Internal Distribution Only]



Reviewed-by: Feifei Xu 


-Original Message-
From: Tianci Yin 
Sent: 2020年3月2日 9:57
To: amd-gfx@lists.freedesktop.org
Cc: Zhang, Hawking ; Xu, Feifei ; 
Gao, Likun ; Yuan, Xiaojie ; Long, 
Gang ; Li, Pauline ; Yin, Tianci (Rico) 

Subject: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

From: "Tianci.Yin" 

[why]
CP firmware decide to skip setting the state for 3D pipe 1 for Navi1x as there 
is no use case.

[how]
Disable 3D pipe 1 on Navi1x.

Change-Id: I6898bdfe31d4e7908bd9bcfa82b6a75e118e8727
Reviewed-by: Hawking Zhang 
Signed-off-by: Tianci.Yin 
---
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 97 ++
 1 file changed, 51 insertions(+), 46 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c 
b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
index 760fe2ebe799..f348512eb8c3 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
@@ -52,7 +52,7 @@
  * 1. Primary ring
  * 2. Async ring
  */
-#define GFX10_NUM_GFX_RINGS2
+#define GFX10_NUM_GFX_RINGS_NV1X   1
 #define GFX10_MEC_HPD_SIZE  2048

 #define F32_CE_PROGRAM_RAM_SIZE 65536
@@ -1305,7 +1305,7 @@ static int gfx_v10_0_sw_init(void *handle)
 case CHIP_NAVI14:
 case CHIP_NAVI12:
 adev->gfx.me.num_me = 1;
-   adev->gfx.me.num_pipe_per_me = 2;
+   adev->gfx.me.num_pipe_per_me = 1;
 adev->gfx.me.num_queue_per_pipe = 1;
 adev->gfx.mec.num_mec = 2;
 adev->gfx.mec.num_pipe_per_mec = 4;
@@ -2711,18 +2711,20 @@ static int gfx_v10_0_cp_gfx_start(struct amdgpu_device 
*adev)
 amdgpu_ring_commit(ring);

 /* submit cs packet to copy state 0 to next available state */
-   ring = &adev->gfx.gfx_ring[1];
-   r = amdgpu_ring_alloc(ring, 2);
-   if (r) {
-   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
-   return r;
-   }
-
-   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
-   amdgpu_ring_write(ring, 0);
+   if (adev->gfx.num_gfx_rings > 1) {
+   /* maximum supported gfx ring is 2 */
+   ring = &adev->gfx.gfx_ring[1];
+   r = amdgpu_ring_alloc(ring, 2);
+   if (r) {
+   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
+   return r;
+   }

-   amdgpu_ring_commit(ring);
+   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
+   amdgpu_ring_write(ring, 0);

+   amdgpu_ring_commit(ring);
+   }
 return 0;
 }

@@ -2819,39 +2821,41 @@ static int gfx_v10_0_cp_gfx_resume(struct amdgpu_device 
*adev)
 mutex_unlock(&adev->srbm_mutex);

 /* Init gfx ring 1 for pipe 1 */
-   mutex_lock(&adev->srbm_mutex);
-   gfx_v10_0_cp_gfx_switch_pipe(adev, PIPE_ID1);
-   ring = &adev->gfx.gfx_ring[1];
-   rb_bufsz = order_base_2(ring->ring_size / 8);
-   tmp = REG_SET_FIELD(0, CP_RB1_CNTL, RB_BUFSZ, rb_bufsz);
-   tmp = REG_SET_FIELD(tmp, CP_RB1_CNTL, RB_BLKSZ, rb_bufsz - 2);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-   /* Initialize the ring buffer's write pointers */
-   ring->wptr = 0;
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR, lower_32_bits(ring->wptr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR_HI, upper_32_bits(ring->wptr));
-   /* Set the wb address wether it's enabled or not */
-   rptr_addr = adev->wb.gpu_addr + (ring->rptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR, lower_32_bits(rptr_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR_HI, upper_32_bits(rptr_addr) &
-   CP_RB1_RPTR_ADDR_HI__RB_RPTR_ADDR_HI_MASK);
-   wptr_gpu_addr = adev->wb.gpu_addr + (ring->wptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_LO,
-   lower_32_bits(wptr_gpu_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_HI,
-   upper_32_bits(wptr_gpu_addr));
-
-   mdelay(1);
-   WREG3

RE: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

2020-03-02 Thread Liu, Monk
Reviewed-by: Monk Liu 

_
Monk Liu|GPU Virtualization Team |AMD


-Original Message-
From: amd-gfx  On Behalf Of Xu, Feifei
Sent: Monday, March 2, 2020 5:32 PM
To: Yin, Tianci (Rico) ; amd-gfx@lists.freedesktop.org
Cc: Long, Gang ; Li, Pauline ; Yin, 
Tianci (Rico) ; Gao, Likun ; Zhang, 
Hawking ; Yuan, Xiaojie 
Subject: RE: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

[AMD Official Use Only - Internal Distribution Only]



Reviewed-by: Feifei Xu 


-Original Message-
From: Tianci Yin  
Sent: 2020年3月2日 9:57
To: amd-gfx@lists.freedesktop.org
Cc: Zhang, Hawking ; Xu, Feifei ; 
Gao, Likun ; Yuan, Xiaojie ; Long, 
Gang ; Li, Pauline ; Yin, Tianci (Rico) 

Subject: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

From: "Tianci.Yin" 

[why]
CP firmware decide to skip setting the state for 3D pipe 1 for Navi1x as there 
is no use case.

[how]
Disable 3D pipe 1 on Navi1x.

Change-Id: I6898bdfe31d4e7908bd9bcfa82b6a75e118e8727
Reviewed-by: Hawking Zhang 
Signed-off-by: Tianci.Yin 
---
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 97 ++
 1 file changed, 51 insertions(+), 46 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c 
b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
index 760fe2ebe799..f348512eb8c3 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
@@ -52,7 +52,7 @@
  * 1. Primary ring
  * 2. Async ring
  */
-#define GFX10_NUM_GFX_RINGS2
+#define GFX10_NUM_GFX_RINGS_NV1X   1
 #define GFX10_MEC_HPD_SIZE 2048
 
 #define F32_CE_PROGRAM_RAM_SIZE65536
@@ -1305,7 +1305,7 @@ static int gfx_v10_0_sw_init(void *handle)
case CHIP_NAVI14:
case CHIP_NAVI12:
adev->gfx.me.num_me = 1;
-   adev->gfx.me.num_pipe_per_me = 2;
+   adev->gfx.me.num_pipe_per_me = 1;
adev->gfx.me.num_queue_per_pipe = 1;
adev->gfx.mec.num_mec = 2;
adev->gfx.mec.num_pipe_per_mec = 4;
@@ -2711,18 +2711,20 @@ static int gfx_v10_0_cp_gfx_start(struct amdgpu_device 
*adev)
amdgpu_ring_commit(ring);
 
/* submit cs packet to copy state 0 to next available state */
-   ring = &adev->gfx.gfx_ring[1];
-   r = amdgpu_ring_alloc(ring, 2);
-   if (r) {
-   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
-   return r;
-   }
-
-   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
-   amdgpu_ring_write(ring, 0);
+   if (adev->gfx.num_gfx_rings > 1) {
+   /* maximum supported gfx ring is 2 */
+   ring = &adev->gfx.gfx_ring[1];
+   r = amdgpu_ring_alloc(ring, 2);
+   if (r) {
+   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
+   return r;
+   }
 
-   amdgpu_ring_commit(ring);
+   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
+   amdgpu_ring_write(ring, 0);
 
+   amdgpu_ring_commit(ring);
+   }
return 0;
 }
 
@@ -2819,39 +2821,41 @@ static int gfx_v10_0_cp_gfx_resume(struct amdgpu_device 
*adev)
mutex_unlock(&adev->srbm_mutex);
 
/* Init gfx ring 1 for pipe 1 */
-   mutex_lock(&adev->srbm_mutex);
-   gfx_v10_0_cp_gfx_switch_pipe(adev, PIPE_ID1);
-   ring = &adev->gfx.gfx_ring[1];
-   rb_bufsz = order_base_2(ring->ring_size / 8);
-   tmp = REG_SET_FIELD(0, CP_RB1_CNTL, RB_BUFSZ, rb_bufsz);
-   tmp = REG_SET_FIELD(tmp, CP_RB1_CNTL, RB_BLKSZ, rb_bufsz - 2);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-   /* Initialize the ring buffer's write pointers */
-   ring->wptr = 0;
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR, lower_32_bits(ring->wptr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR_HI, upper_32_bits(ring->wptr));
-   /* Set the wb address wether it's enabled or not */
-   rptr_addr = adev->wb.gpu_addr + (ring->rptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR, lower_32_bits(rptr_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR_HI, upper_32_bits(rptr_addr) &
-   CP_RB1_RPTR_ADDR_HI__RB_RPTR_ADDR_HI_MASK);
-   wptr_gpu_addr = adev->wb.gpu_addr + (ring->wptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_LO,
-   lower_32_bits(wptr_gpu_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_HI,
-   upper_32_bits(wptr_gpu_addr));
-
-   mdelay(1);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-
-   rb_addr = ring->gpu_addr >> 8;
-   WREG32_SOC15(GC, 0, mmCP_RB1_BASE, rb_addr);
-   WREG32_SOC15(GC, 0, mmCP_RB1_BASE_HI, upper_32_bits(rb_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_ACTIVE, 1);
-
-   gfx_v10_0_cp_gfx_set_doorbell(adev, r

RE: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

2020-03-02 Thread Xu, Feifei
[AMD Official Use Only - Internal Distribution Only]



Reviewed-by: Feifei Xu 


-Original Message-
From: Tianci Yin  
Sent: 2020年3月2日 9:57
To: amd-gfx@lists.freedesktop.org
Cc: Zhang, Hawking ; Xu, Feifei ; 
Gao, Likun ; Yuan, Xiaojie ; Long, 
Gang ; Li, Pauline ; Yin, Tianci (Rico) 

Subject: [PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

From: "Tianci.Yin" 

[why]
CP firmware decide to skip setting the state for 3D pipe 1 for Navi1x as there 
is no use case.

[how]
Disable 3D pipe 1 on Navi1x.

Change-Id: I6898bdfe31d4e7908bd9bcfa82b6a75e118e8727
Reviewed-by: Hawking Zhang 
Signed-off-by: Tianci.Yin 
---
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 97 ++
 1 file changed, 51 insertions(+), 46 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c 
b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
index 760fe2ebe799..f348512eb8c3 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
@@ -52,7 +52,7 @@
  * 1. Primary ring
  * 2. Async ring
  */
-#define GFX10_NUM_GFX_RINGS2
+#define GFX10_NUM_GFX_RINGS_NV1X   1
 #define GFX10_MEC_HPD_SIZE 2048
 
 #define F32_CE_PROGRAM_RAM_SIZE65536
@@ -1305,7 +1305,7 @@ static int gfx_v10_0_sw_init(void *handle)
case CHIP_NAVI14:
case CHIP_NAVI12:
adev->gfx.me.num_me = 1;
-   adev->gfx.me.num_pipe_per_me = 2;
+   adev->gfx.me.num_pipe_per_me = 1;
adev->gfx.me.num_queue_per_pipe = 1;
adev->gfx.mec.num_mec = 2;
adev->gfx.mec.num_pipe_per_mec = 4;
@@ -2711,18 +2711,20 @@ static int gfx_v10_0_cp_gfx_start(struct amdgpu_device 
*adev)
amdgpu_ring_commit(ring);
 
/* submit cs packet to copy state 0 to next available state */
-   ring = &adev->gfx.gfx_ring[1];
-   r = amdgpu_ring_alloc(ring, 2);
-   if (r) {
-   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
-   return r;
-   }
-
-   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
-   amdgpu_ring_write(ring, 0);
+   if (adev->gfx.num_gfx_rings > 1) {
+   /* maximum supported gfx ring is 2 */
+   ring = &adev->gfx.gfx_ring[1];
+   r = amdgpu_ring_alloc(ring, 2);
+   if (r) {
+   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
+   return r;
+   }
 
-   amdgpu_ring_commit(ring);
+   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
+   amdgpu_ring_write(ring, 0);
 
+   amdgpu_ring_commit(ring);
+   }
return 0;
 }
 
@@ -2819,39 +2821,41 @@ static int gfx_v10_0_cp_gfx_resume(struct amdgpu_device 
*adev)
mutex_unlock(&adev->srbm_mutex);
 
/* Init gfx ring 1 for pipe 1 */
-   mutex_lock(&adev->srbm_mutex);
-   gfx_v10_0_cp_gfx_switch_pipe(adev, PIPE_ID1);
-   ring = &adev->gfx.gfx_ring[1];
-   rb_bufsz = order_base_2(ring->ring_size / 8);
-   tmp = REG_SET_FIELD(0, CP_RB1_CNTL, RB_BUFSZ, rb_bufsz);
-   tmp = REG_SET_FIELD(tmp, CP_RB1_CNTL, RB_BLKSZ, rb_bufsz - 2);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-   /* Initialize the ring buffer's write pointers */
-   ring->wptr = 0;
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR, lower_32_bits(ring->wptr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR_HI, upper_32_bits(ring->wptr));
-   /* Set the wb address wether it's enabled or not */
-   rptr_addr = adev->wb.gpu_addr + (ring->rptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR, lower_32_bits(rptr_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR_HI, upper_32_bits(rptr_addr) &
-   CP_RB1_RPTR_ADDR_HI__RB_RPTR_ADDR_HI_MASK);
-   wptr_gpu_addr = adev->wb.gpu_addr + (ring->wptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_LO,
-   lower_32_bits(wptr_gpu_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_HI,
-   upper_32_bits(wptr_gpu_addr));
-
-   mdelay(1);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-
-   rb_addr = ring->gpu_addr >> 8;
-   WREG32_SOC15(GC, 0, mmCP_RB1_BASE, rb_addr);
-   WREG32_SOC15(GC, 0, mmCP_RB1_BASE_HI, upper_32_bits(rb_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_ACTIVE, 1);
-
-   gfx_v10_0_cp_gfx_set_doorbell(adev, ring);
-   mutex_unlock(&adev->srbm_mutex);
-
+   if (adev->gfx.num_gfx_rings > 1) {
+   mutex_lock(&adev->srbm_mutex);
+   gfx_v10_0_cp_gfx_switch_pipe(adev, PIPE_ID1);
+   /* maximum supported gfx ring is 2 */
+   ring = &adev->gfx.gfx_ring[1];
+   rb_bufsz = order_base_2(ring->ring_size / 8);
+   tmp = REG_SET_FIELD(0, C

[PATCH] drm/amdgpu: disable 3D pipe 1 on Navi1x

2020-03-01 Thread Tianci Yin
From: "Tianci.Yin" 

[why]
CP firmware decide to skip setting the state for 3D pipe 1 for Navi1x as there
is no use case.

[how]
Disable 3D pipe 1 on Navi1x.

Change-Id: I6898bdfe31d4e7908bd9bcfa82b6a75e118e8727
Reviewed-by: Hawking Zhang 
Signed-off-by: Tianci.Yin 
---
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 97 ++
 1 file changed, 51 insertions(+), 46 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c 
b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
index 760fe2ebe799..f348512eb8c3 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
@@ -52,7 +52,7 @@
  * 1. Primary ring
  * 2. Async ring
  */
-#define GFX10_NUM_GFX_RINGS2
+#define GFX10_NUM_GFX_RINGS_NV1X   1
 #define GFX10_MEC_HPD_SIZE 2048
 
 #define F32_CE_PROGRAM_RAM_SIZE65536
@@ -1305,7 +1305,7 @@ static int gfx_v10_0_sw_init(void *handle)
case CHIP_NAVI14:
case CHIP_NAVI12:
adev->gfx.me.num_me = 1;
-   adev->gfx.me.num_pipe_per_me = 2;
+   adev->gfx.me.num_pipe_per_me = 1;
adev->gfx.me.num_queue_per_pipe = 1;
adev->gfx.mec.num_mec = 2;
adev->gfx.mec.num_pipe_per_mec = 4;
@@ -2711,18 +2711,20 @@ static int gfx_v10_0_cp_gfx_start(struct amdgpu_device 
*adev)
amdgpu_ring_commit(ring);
 
/* submit cs packet to copy state 0 to next available state */
-   ring = &adev->gfx.gfx_ring[1];
-   r = amdgpu_ring_alloc(ring, 2);
-   if (r) {
-   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
-   return r;
-   }
-
-   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
-   amdgpu_ring_write(ring, 0);
+   if (adev->gfx.num_gfx_rings > 1) {
+   /* maximum supported gfx ring is 2 */
+   ring = &adev->gfx.gfx_ring[1];
+   r = amdgpu_ring_alloc(ring, 2);
+   if (r) {
+   DRM_ERROR("amdgpu: cp failed to lock ring (%d).\n", r);
+   return r;
+   }
 
-   amdgpu_ring_commit(ring);
+   amdgpu_ring_write(ring, PACKET3(PACKET3_CLEAR_STATE, 0));
+   amdgpu_ring_write(ring, 0);
 
+   amdgpu_ring_commit(ring);
+   }
return 0;
 }
 
@@ -2819,39 +2821,41 @@ static int gfx_v10_0_cp_gfx_resume(struct amdgpu_device 
*adev)
mutex_unlock(&adev->srbm_mutex);
 
/* Init gfx ring 1 for pipe 1 */
-   mutex_lock(&adev->srbm_mutex);
-   gfx_v10_0_cp_gfx_switch_pipe(adev, PIPE_ID1);
-   ring = &adev->gfx.gfx_ring[1];
-   rb_bufsz = order_base_2(ring->ring_size / 8);
-   tmp = REG_SET_FIELD(0, CP_RB1_CNTL, RB_BUFSZ, rb_bufsz);
-   tmp = REG_SET_FIELD(tmp, CP_RB1_CNTL, RB_BLKSZ, rb_bufsz - 2);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-   /* Initialize the ring buffer's write pointers */
-   ring->wptr = 0;
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR, lower_32_bits(ring->wptr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR_HI, upper_32_bits(ring->wptr));
-   /* Set the wb address wether it's enabled or not */
-   rptr_addr = adev->wb.gpu_addr + (ring->rptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR, lower_32_bits(rptr_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_RPTR_ADDR_HI, upper_32_bits(rptr_addr) &
-   CP_RB1_RPTR_ADDR_HI__RB_RPTR_ADDR_HI_MASK);
-   wptr_gpu_addr = adev->wb.gpu_addr + (ring->wptr_offs * 4);
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_LO,
-   lower_32_bits(wptr_gpu_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB_WPTR_POLL_ADDR_HI,
-   upper_32_bits(wptr_gpu_addr));
-
-   mdelay(1);
-   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
-
-   rb_addr = ring->gpu_addr >> 8;
-   WREG32_SOC15(GC, 0, mmCP_RB1_BASE, rb_addr);
-   WREG32_SOC15(GC, 0, mmCP_RB1_BASE_HI, upper_32_bits(rb_addr));
-   WREG32_SOC15(GC, 0, mmCP_RB1_ACTIVE, 1);
-
-   gfx_v10_0_cp_gfx_set_doorbell(adev, ring);
-   mutex_unlock(&adev->srbm_mutex);
-
+   if (adev->gfx.num_gfx_rings > 1) {
+   mutex_lock(&adev->srbm_mutex);
+   gfx_v10_0_cp_gfx_switch_pipe(adev, PIPE_ID1);
+   /* maximum supported gfx ring is 2 */
+   ring = &adev->gfx.gfx_ring[1];
+   rb_bufsz = order_base_2(ring->ring_size / 8);
+   tmp = REG_SET_FIELD(0, CP_RB1_CNTL, RB_BUFSZ, rb_bufsz);
+   tmp = REG_SET_FIELD(tmp, CP_RB1_CNTL, RB_BLKSZ, rb_bufsz - 2);
+   WREG32_SOC15(GC, 0, mmCP_RB1_CNTL, tmp);
+   /* Initialize the ring buffer's write pointers */
+   ring->wptr = 0;
+   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR, lower_32_bits(ring->wptr));
+   WREG32_SOC15(GC, 0, mmCP_RB1_WPTR_HI, 
upper_32_bits(ring->wptr));
+   /* Set the wb address wether it's enabled or not */
+   rptr_addr = adev->wb.gpu_addr + (ring