Skip to content

Commit

Permalink
drm/amd/display: [FW Promotion] Release 0.0.248.0
Browse files Browse the repository at this point in the history
Refactoring some flags for replay

Acked-by: Wayne Lin <wayne.lin@amd.com>
Signed-off-by: Taimur Hassan <Syed.Hassan@amd.com>
Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Taimur Hassan authored and Alex Deucher committed Jan 10, 2025
1 parent 7d8a4bf commit 3606115
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,13 @@ union replay_debug_flags {
* @enable_coasting_vtotal_check: Enable Coasting_vtotal_check
*/
uint32_t enable_coasting_vtotal_check : 1;
/**
* 0x2000 (bit 13)
* @enable_visual_confirm_debug: Enable Visual Confirm Debug
*/
uint32_t enable_visual_confirm_debug : 1;

uint32_t reserved : 19;
uint32_t reserved : 18;
} bitfields;

uint32_t u32All;
Expand All @@ -446,7 +451,7 @@ union replay_debug_flags {
/**
* Flags record error state.
*/
union replay_error_state_flags {
union replay_visual_confirm_error_state_flags {
struct {
/**
* 0x1 (bit 0) - Desync Error flag.
Expand Down Expand Up @@ -483,15 +488,11 @@ union replay_error_state_flags {
* Reserved bit 6-7
*/
uint32_t reserved_6_7 : 2;
/**
* 0x100 (bit 8) - DQE Only.
*/
uint32_t pass_low_hz : 1;

/**
* Reserved bit 9-31
*/
uint32_t reserved_9_31 : 23;
uint32_t reserved_9_31 : 24;
} bitfields;

uint32_t u32All;
Expand Down

0 comments on commit 3606115

Please sign in to comment.