[PATCH 23/34] drm/amd/display: Skip 2 frames when first reading CRC
Harry Wentland
harry.wentland at amd.com
Mon Feb 12 17:16:14 UTC 2018
From: "Leo (Sunpeng) Li" <sunpeng.li at amd.com>
Skipping the first frame will prevent uncoooked values most of the time.
However, in some unlikely cases, the second frame will be uncooked as
well.
Change-Id: Ie811bd27a732a474b575350decc216b6fffb75d6
Signed-off-by: Leo (Sunpeng) Li <sunpeng.li at amd.com>
Reviewed-by: Harry Wentland <Harry.Wentland at amd.com>
---
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 2 +-
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c | 12 ++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
index c40c13a9f614..5b5fa80916cb 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
@@ -198,7 +198,7 @@ struct dm_crtc_state {
struct drm_crtc_state base;
struct dc_stream_state *stream;
- bool crc_first_skipped;
+ int crc_skip_count;
bool crc_enabled;
};
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
index 55aa379cfcbe..52f2c01349e3 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
@@ -84,8 +84,8 @@ int amdgpu_dm_crtc_set_crc_source(struct drm_crtc *crtc, const char *src_name,
}
*values_cnt = 3;
- /* Reset crc_skipped flag on dm state */
- crtc_state->crc_first_skipped = false;
+ /* Reset crc_skipped on dm state */
+ crtc_state->crc_skip_count = 0;
return 0;
}
@@ -109,11 +109,11 @@ void amdgpu_dm_crtc_handle_crc_irq(struct drm_crtc *crtc)
/*
* Since flipping and crc enablement happen asynchronously, we - more
* often than not - will be returning an 'uncooked' crc on first frame.
- * Probably because hw isn't ready yet. Simply skip the first crc
- * value.
+ * Probably because hw isn't ready yet. For added security, skip the
+ * first two CRC values.
*/
- if (!crtc_state->crc_first_skipped) {
- crtc_state->crc_first_skipped = true;
+ if (crtc_state->crc_skip_count < 2) {
+ crtc_state->crc_skip_count += 1;
return;
}
--
2.14.1
More information about the amd-gfx
mailing list