Skip to content

Commit 3606115

Browse files
Taimur Hassanalexdeucher
authored andcommitted
drm/amd/display: [FW Promotion] Release 0.0.248.0
Refactoring some flags for replay Acked-by: Wayne Lin <[email protected]> Signed-off-by: Taimur Hassan <[email protected]> Signed-off-by: Tom Chung <[email protected]> Tested-by: Daniel Wheeler <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 7d8a4bf commit 3606115

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,13 @@ union replay_debug_flags {
436436
* @enable_coasting_vtotal_check: Enable Coasting_vtotal_check
437437
*/
438438
uint32_t enable_coasting_vtotal_check : 1;
439+
/**
440+
* 0x2000 (bit 13)
441+
* @enable_visual_confirm_debug: Enable Visual Confirm Debug
442+
*/
443+
uint32_t enable_visual_confirm_debug : 1;
439444

440-
uint32_t reserved : 19;
445+
uint32_t reserved : 18;
441446
} bitfields;
442447

443448
uint32_t u32All;
@@ -446,7 +451,7 @@ union replay_debug_flags {
446451
/**
447452
* Flags record error state.
448453
*/
449-
union replay_error_state_flags {
454+
union replay_visual_confirm_error_state_flags {
450455
struct {
451456
/**
452457
* 0x1 (bit 0) - Desync Error flag.
@@ -483,15 +488,11 @@ union replay_error_state_flags {
483488
* Reserved bit 6-7
484489
*/
485490
uint32_t reserved_6_7 : 2;
486-
/**
487-
* 0x100 (bit 8) - DQE Only.
488-
*/
489-
uint32_t pass_low_hz : 1;
490491

491492
/**
492493
* Reserved bit 9-31
493494
*/
494-
uint32_t reserved_9_31 : 23;
495+
uint32_t reserved_9_31 : 24;
495496
} bitfields;
496497

497498
uint32_t u32All;

0 commit comments

Comments
 (0)