drm/amd/display: Define PSR ERROR Status bit VSC_SDP

[why]
So we can track VSC SDP errors from display

[how]
Define the bit, and use it in driver logic

Signed-off-by: Reza Amini <Reza.Amini@amd.com>
Acked-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Reza Amini
2020-10-01 11:33:51 -04:00
committed by Alex Deucher
parent a47cc3ab05
commit a10ba3827a

View File

@@ -90,7 +90,8 @@ union psr_error_status {
struct {
unsigned char LINK_CRC_ERROR :1;
unsigned char RFB_STORAGE_ERROR :1;
unsigned char RESERVED :6;
unsigned char VSC_SDP_ERROR :1;
unsigned char RESERVED :5;
} bits;
unsigned char raw;
};