drm/amd/display: Add entry and exit counters
authorAnthony Koo <anthony.koo@amd.com>
Sat, 17 Feb 2024 22:28:09 +0000 (17:28 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 20 Mar 2024 17:37:37 +0000 (13:37 -0400)
[WHY & HOW]
Add new counters in the shared IPS firmware state.

Acked-by: Alex Hung <alex.hung@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>
drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h

index af3fe8bb0728b114a735faddfb68ae38360af334..4a650ac571d749aa3661fd0889304ead189867b4 100644 (file)
@@ -724,7 +724,13 @@ union dmub_shared_state_ips_driver_signals {
  */
 struct dmub_shared_state_ips_fw {
        union dmub_shared_state_ips_fw_signals signals; /**< 4 bytes, IPS signal bits */
-       uint32_t reserved[61]; /**< Reversed, to be updated when adding new fields. */
+       uint32_t rcg_entry_count; /**< Entry counter for RCG */
+       uint32_t rcg_exit_count; /**< Exit counter for RCG */
+       uint32_t ips1_entry_count; /**< Entry counter for IPS1 */
+       uint32_t ips1_exit_count; /**< Exit counter for IPS1 */
+       uint32_t ips2_entry_count; /**< Entry counter for IPS2 */
+       uint32_t ips2_exit_count; /**< Exit counter for IPS2 */
+       uint32_t reserved[55]; /**< Reversed, to be updated when adding new fields. */
 }; /* 248-bytes, fixed */
 
 /**