diff options
author | Anthony Koo <anthony.koo@amd.com> | 2024-01-20 20:54:33 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-29 15:46:40 -0500 |
commit | e8911e0a53de64ee954ef536bc7706dac930dbeb (patch) | |
tree | 840affd3ca72751bfd287c0de3cff1b54d66e60e /drivers/gpu/drm/amd/display/dmub/inc | |
parent | b26b943a8dcf627a80aac6aad64a30490774691c (diff) | |
download | linux-e8911e0a53de64ee954ef536bc7706dac930dbeb.tar.gz linux-e8911e0a53de64ee954ef536bc7706dac930dbeb.tar.bz2 linux-e8911e0a53de64ee954ef536bc7706dac930dbeb.zip |
drm/amd/display: [FW Promotion] Release 0.0.202.0
- Add control flag for IPS residency profiling
Reviewed-by: Tom Chung <chiahsuan.chung@amd.com>
Acked-by: Tom Chung <chiahsuan.chung@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 | 8 |
1 files changed, 7 insertions, 1 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 49bc1e41ac67..aaa211c828ed 100644 --- a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h +++ b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h @@ -408,7 +408,13 @@ union replay_debug_flags { */ uint32_t enable_ips_visual_confirm : 1; - uint32_t reserved : 21; + /** + * 0x800 (bit 11) + * @enable_ips_residency_profiling: Enable IPS residency profiling + */ + uint32_t enable_ips_residency_profiling : 1; + + uint32_t reserved : 20; } bitfields; uint32_t u32All; |