Skip to content

Commit 269aad0

Browse files
Leo Chenalexdeucher
authored andcommitted
drm/amd/display: Fixing DIG FIFO Error
[Why & How] DIG_FIFO_READ_START_LEVEL should only be set to default value (7) by software. Removed all instances of resetting the register to 0 Tested-by: Daniel Wheeler <[email protected]> Reviewed-by: Nicholas Kazlauskas <[email protected]> Acked-by: Pavle Kotarac <[email protected]> Signed-off-by: Leo Chen <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 58d97c9 commit 269aad0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/gpu/drm/amd/display/dc/dcn314/dcn314_dio_stream_encoder.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ static void enc314_disable_fifo(struct stream_encoder *enc)
6767
{
6868
struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
6969

70-
REG_UPDATE_2(DIG_FIFO_CTRL0, DIG_FIFO_ENABLE, 0,
71-
DIG_FIFO_READ_START_LEVEL, 0);
70+
REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_ENABLE, 0);
7271
}
7372

7473
static void enc314_dp_set_odm_combine(

0 commit comments

Comments
 (0)