aboutsummaryrefslogtreecommitdiffstats
path: root/meta-amd-bsp/recipes-kernel/linux-4.19/linux-yocto-4.19.8/0405-drm-amdgpu-Remove-redundant-code-in-gfx_v8_0.c.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-amd-bsp/recipes-kernel/linux-4.19/linux-yocto-4.19.8/0405-drm-amdgpu-Remove-redundant-code-in-gfx_v8_0.c.patch')
-rw-r--r--meta-amd-bsp/recipes-kernel/linux-4.19/linux-yocto-4.19.8/0405-drm-amdgpu-Remove-redundant-code-in-gfx_v8_0.c.patch54
1 files changed, 54 insertions, 0 deletions
diff --git a/meta-amd-bsp/recipes-kernel/linux-4.19/linux-yocto-4.19.8/0405-drm-amdgpu-Remove-redundant-code-in-gfx_v8_0.c.patch b/meta-amd-bsp/recipes-kernel/linux-4.19/linux-yocto-4.19.8/0405-drm-amdgpu-Remove-redundant-code-in-gfx_v8_0.c.patch
new file mode 100644
index 00000000..ac8b35ba
--- /dev/null
+++ b/meta-amd-bsp/recipes-kernel/linux-4.19/linux-yocto-4.19.8/0405-drm-amdgpu-Remove-redundant-code-in-gfx_v8_0.c.patch
@@ -0,0 +1,54 @@
+From a06db5e3aef3e7aeb3fa2f428ac99e0a20820887 Mon Sep 17 00:00:00 2001
+From: Rex Zhu <Rex.Zhu@amd.com>
+Date: Thu, 20 Sep 2018 17:06:22 +0800
+Subject: [PATCH 0405/2940] drm/amdgpu: Remove redundant code in gfx_v8_0.c
+
+the CG related registers have been programed in golden setting
+PG register default value is 0.
+
+Acked-by: Alex Deucher <alexander.deucher@amd.com>
+Signed-off-by: Hang Zhou <hang.zhou@amd.com>
+Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
+---
+ drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c | 20 --------------------
+ 1 file changed, 20 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
+index 93d7fe5c94dc..463d07e186d4 100644
+--- a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
++++ b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
+@@ -4208,31 +4208,11 @@ static int gfx_v8_0_rlc_load_microcode(struct amdgpu_device *adev)
+ static int gfx_v8_0_rlc_resume(struct amdgpu_device *adev)
+ {
+ int r;
+- u32 tmp;
+
+ gfx_v8_0_rlc_stop(adev);
+-
+- /* disable CG */
+- tmp = RREG32(mmRLC_CGCG_CGLS_CTRL);
+- tmp &= ~(RLC_CGCG_CGLS_CTRL__CGCG_EN_MASK |
+- RLC_CGCG_CGLS_CTRL__CGLS_EN_MASK);
+- WREG32(mmRLC_CGCG_CGLS_CTRL, tmp);
+- if (adev->asic_type == CHIP_POLARIS11 ||
+- adev->asic_type == CHIP_POLARIS10 ||
+- adev->asic_type == CHIP_POLARIS12 ||
+- adev->asic_type == CHIP_VEGAM) {
+- tmp = RREG32(mmRLC_CGCG_CGLS_CTRL_3D);
+- tmp &= ~0x3;
+- WREG32(mmRLC_CGCG_CGLS_CTRL_3D, tmp);
+- }
+-
+- /* disable PG */
+- WREG32(mmRLC_PG_CNTL, 0);
+-
+ gfx_v8_0_rlc_reset(adev);
+ gfx_v8_0_init_pg(adev);
+
+-
+ if (adev->firmware.load_type == AMDGPU_FW_LOAD_DIRECT) {
+ /* legacy rlc firmware loading */
+ r = gfx_v8_0_rlc_load_microcode(adev);
+--
+2.17.1
+