diff options
author | Anthony Koo <anthony.koo@amd.com> | 2024-01-13 16:32:02 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-22 17:13:27 -0500 |
commit | a125206c20049e5e70431323788065bbc3c4130e (patch) | |
tree | f9bc4bdfde0f24eea77b1fdd241c342b37122d4c /drivers/gpu/drm/amd/display/dmub/inc | |
parent | f980579c29a6df2d30b44af958992be07baa0fcc (diff) | |
download | linux-a125206c20049e5e70431323788065bbc3c4130e.tar.gz linux-a125206c20049e5e70431323788065bbc3c4130e.tar.bz2 linux-a125206c20049e5e70431323788065bbc3c4130e.zip |
drm/amd/display: [FW Promotion] Release 0.0.201.0
- Add debug flag for Replay IPS visual confirm
- Remove unused debug flags that should not
be controlled inside Replay FSM
Acked-by: Roman Li <roman.li@amd.com>
Signed-off-by: Anthony Koo <anthony.koo@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dmub/inc')
-rw-r--r-- | drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h index e699731ee68e..89717076933e 100644 --- a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h +++ b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h @@ -403,17 +403,12 @@ union replay_debug_flags { /** * 0x400 (bit 10) - * @force_disable_ips1: Force disable IPS1 state + * @enable_ips_visual_confirm: Enable IPS visual confirm when entering IPS + * If we enter IPS2, the Visual confirm bar will change to yellow */ - uint32_t force_disable_ips1 : 1; + uint32_t enable_ips_visual_confirm : 1; - /** - * 0x800 (bit 11) - * @force_disable_ips2: Force disable IPS2 state - */ - uint32_t force_disable_ips2 : 1; - - uint32_t reserved : 20; + uint32_t reserved : 21; } bitfields; uint32_t u32All; |