aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/linux-yocto-4.19.8/1494-drm-amd-powerplay-fix-smc-messsage-index-report.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/linux-yocto-4.19.8/1494-drm-amd-powerplay-fix-smc-messsage-index-report.patch')
-rw-r--r--common/recipes-kernel/linux/linux-yocto-4.19.8/1494-drm-amd-powerplay-fix-smc-messsage-index-report.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/common/recipes-kernel/linux/linux-yocto-4.19.8/1494-drm-amd-powerplay-fix-smc-messsage-index-report.patch b/common/recipes-kernel/linux/linux-yocto-4.19.8/1494-drm-amd-powerplay-fix-smc-messsage-index-report.patch
new file mode 100644
index 00000000..660a24d7
--- /dev/null
+++ b/common/recipes-kernel/linux/linux-yocto-4.19.8/1494-drm-amd-powerplay-fix-smc-messsage-index-report.patch
@@ -0,0 +1,52 @@
+From b00f10416dfdf569fac930a7e991004115ee6403 Mon Sep 17 00:00:00 2001
+From: Huang Rui <ray.huang@amd.com>
+Date: Thu, 31 Jan 2019 21:09:00 +0800
+Subject: [PATCH 1494/2940] drm/amd/powerplay: fix smc messsage index report
+
+We actually want to know the index of PPSMC_MSG.
+
+Signed-off-by: Huang Rui <ray.huang@amd.com>
+Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
+Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
+---
+ drivers/gpu/drm/amd/powerplay/smu_v11_0.c | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
+index bc60b4b3131d..77c7ac8001f4 100644
+--- a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
++++ b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c
+@@ -113,7 +113,7 @@ static int smu_v11_0_send_msg(struct smu_context *smu, uint16_t msg)
+ ret = smu_v11_0_wait_for_response(smu);
+
+ if (ret)
+- pr_err("Failed to send message 0x%x, response 0x%x\n", msg,
++ pr_err("Failed to send message 0x%x, response 0x%x\n", index,
+ ret);
+
+ return ret;
+@@ -134,8 +134,8 @@ smu_v11_0_send_msg_with_param(struct smu_context *smu, uint16_t msg,
+
+ ret = smu_v11_0_wait_for_response(smu);
+ if (ret)
+- pr_err("Failed to send message 0x%x, response 0x%x\n", msg,
+- ret);
++ pr_err("Failed to send message 0x%x, response 0x%x, param 0x%x\n",
++ index, ret, param);
+
+ WREG32_SOC15(MP1, 0, mmMP1_SMN_C2PMSG_90, 0);
+
+@@ -145,8 +145,8 @@ smu_v11_0_send_msg_with_param(struct smu_context *smu, uint16_t msg,
+
+ ret = smu_v11_0_wait_for_response(smu);
+ if (ret)
+- pr_err("Failed to send message 0x%x, response 0x%x\n", msg,
+- ret);
++ pr_err("Failed to send message 0x%x, response 0x%x param 0x%x\n",
++ index, ret, param);
+
+ return ret;
+ }
+--
+2.17.1
+