OSDN Git Service

drm/amdgpu:Add error message when register failed to reach expected value
authorJames Zhu <James.Zhu@amd.com>
Mon, 10 Sep 2018 16:53:25 +0000 (12:53 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 13 Sep 2018 20:14:08 +0000 (15:14 -0500)
Add error message when register failed to reach expected value, It will
help discover potential issue.

Signed-off-by: James Zhu <James.Zhu@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/soc15_common.h

index 0942f49..f5d6025 100644 (file)
@@ -56,6 +56,8 @@
                        tmp_ = RREG32(adev->reg_offset[ip##_HWIP][inst][reg##_BASE_IDX] + reg); \
                        loop--;                                 \
                        if (!loop) {                            \
+                               DRM_ERROR("Register(%d) [%s] failed to reach value 0x%08x != 0x%08x\n", \
+                                                       inst, #reg, expected_value, (tmp_ & (mask))); \
                                ret = -ETIMEDOUT;               \
                                break;                          \
                        }                                       \