drm/amd/display: Add additional IPS entry/exit for PSR/Replay

[Why]
Multiple paths issue DMUB commands without managing IPS state, causing
dc_wake_and_execute_gpint/dmub_cmd to internally wake from IPS and
reallow idle. This flips idle_allowed back to true while
idle_optimizations_allowed remains false during in-flight commits,
desynchronizing the two flags.

Affected paths:

- amdgpu_dm_psr_set_event() and amdgpu_dm_replay_set_event() calls from
  amdgpu_dm_handle_vrr_transition(), amdgpu_dm_commit_planes() and
  amdgpu_dm_mod_power_update_streams(), that are invoked on atomic commits.
- debugfs psr_get(), psr_read_residency(), replay_get_state(),
  replay_set_residency() access hardware without holding dc_lock or
  disabling IPS.

[How]
- Explicitly exit IPS before PSR/Replay set_event w/ hw_programming,
  called within atomic commit.
- Wrap debugfs PSR/Replay state getters and setters with IPS exit/entry +
  dc_lock.

Reviewed-by: Sunpeng Li <sunpeng.li@amd.com>
Signed-off-by: Ivan Lipski <ivan.lipski@amd.com>
Signed-off-by: James Lin <pinglei.lin@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Ivan Lipski 2026-04-29 19:05:20 -04:00 committed by Alex Deucher
parent 254a47ce0c
commit 17d0aeff8b
2 changed files with 81 additions and 0 deletions

View File

@ -9941,6 +9941,7 @@ static void amdgpu_dm_handle_vrr_transition(struct amdgpu_display_manager *dm,
__func__, new_state->base.crtc->base.id);
scoped_guard(mutex, &dm->dc_lock) {
dc_exit_ips_for_hw_access(dm->dc);
amdgpu_dm_psr_set_event(dm, new_state->stream, true,
psr_event_vrr_transition, true);
amdgpu_dm_replay_set_event(dm, new_state->stream, true,
@ -9956,6 +9957,7 @@ static void amdgpu_dm_handle_vrr_transition(struct amdgpu_display_manager *dm,
__func__, new_state->base.crtc->base.id);
scoped_guard(mutex, &dm->dc_lock) {
dc_exit_ips_for_hw_access(dm->dc);
amdgpu_dm_psr_set_event(dm, new_state->stream, false,
psr_event_vrr_transition, false);
amdgpu_dm_replay_set_event(dm, new_state->stream, false,
@ -10257,6 +10259,7 @@ static void amdgpu_dm_commit_planes(struct drm_atomic_commit *state,
mutex_lock(&dm->dc_lock);
acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns =
timestamp_ns;
dc_exit_ips_for_hw_access(dm->dc);
amdgpu_dm_psr_set_event(dm, acrtc_state->stream, true,
psr_event_hw_programming, true);
mutex_unlock(&dm->dc_lock);
@ -10614,6 +10617,7 @@ static void amdgpu_dm_mod_power_update_streams(struct drm_atomic_commit *state,
*/
if (old_crtc_state->active) {
scoped_guard(mutex, &dm->dc_lock) {
dc_exit_ips_for_hw_access(dm->dc);
amdgpu_dm_psr_set_event(dm, dm_old_crtc_state->stream, true,
psr_event_hw_programming, true);
amdgpu_dm_replay_set_event(dm, dm_old_crtc_state->stream, true,

View File

@ -3163,10 +3163,25 @@ static int replay_get_state(void *data, u64 *val)
{
struct amdgpu_dm_connector *connector = data;
struct dc_link *link = connector->dc_link;
struct amdgpu_device *adev = drm_to_adev(connector->base.dev);
struct dc *dc = adev->dm.dc;
uint64_t state = REPLAY_STATE_INVALID;
bool reallow_idle = false;
mutex_lock(&adev->dm.dc_lock);
if (dc->idle_optimizations_allowed) {
dc_allow_idle_optimizations(dc, false);
reallow_idle = true;
}
dc_link_get_replay_state(link, &state);
if (reallow_idle)
dc_allow_idle_optimizations(dc, true);
mutex_unlock(&adev->dm.dc_lock);
*val = state;
return 0;
@ -3179,10 +3194,26 @@ static int replay_set_residency(void *data, u64 val)
{
struct amdgpu_dm_connector *connector = data;
struct dc_link *link = connector->dc_link;
struct amdgpu_device *adev = drm_to_adev(connector->base.dev);
struct dc *dc = adev->dm.dc;
bool is_start = (val != 0);
u32 residency = 0;
bool reallow_idle = false;
mutex_lock(&adev->dm.dc_lock);
if (dc->idle_optimizations_allowed) {
dc_allow_idle_optimizations(dc, false);
reallow_idle = true;
}
link->dc->link_srv->edp_replay_residency(link, &residency, is_start, PR_RESIDENCY_MODE_PHY);
if (reallow_idle)
dc_allow_idle_optimizations(dc, true);
mutex_unlock(&adev->dm.dc_lock);
return 0;
}
@ -3193,9 +3224,25 @@ static int replay_get_residency(void *data, u64 *val)
{
struct amdgpu_dm_connector *connector = data;
struct dc_link *link = connector->dc_link;
struct amdgpu_device *adev = drm_to_adev(connector->base.dev);
struct dc *dc = adev->dm.dc;
u32 residency = 0;
bool reallow_idle = false;
mutex_lock(&adev->dm.dc_lock);
if (dc->idle_optimizations_allowed) {
dc_allow_idle_optimizations(dc, false);
reallow_idle = true;
}
link->dc->link_srv->edp_replay_residency(link, &residency, false, PR_RESIDENCY_MODE_PHY);
if (reallow_idle)
dc_allow_idle_optimizations(dc, true);
mutex_unlock(&adev->dm.dc_lock);
*val = (u64)residency;
return 0;
@ -3208,10 +3255,25 @@ static int psr_get(void *data, u64 *val)
{
struct amdgpu_dm_connector *connector = data;
struct dc_link *link = connector->dc_link;
struct amdgpu_device *adev = drm_to_adev(connector->base.dev);
struct dc *dc = adev->dm.dc;
enum dc_psr_state state = PSR_STATE0;
bool reallow_idle = false;
mutex_lock(&adev->dm.dc_lock);
if (dc->idle_optimizations_allowed) {
dc_allow_idle_optimizations(dc, false);
reallow_idle = true;
}
dc_link_get_psr_state(link, &state);
if (reallow_idle)
dc_allow_idle_optimizations(dc, true);
mutex_unlock(&adev->dm.dc_lock);
*val = state;
return 0;
@ -3224,10 +3286,25 @@ static int psr_read_residency(void *data, u64 *val)
{
struct amdgpu_dm_connector *connector = data;
struct dc_link *link = connector->dc_link;
struct amdgpu_device *adev = drm_to_adev(connector->base.dev);
struct dc *dc = adev->dm.dc;
u32 residency = 0;
bool reallow_idle = false;
mutex_lock(&adev->dm.dc_lock);
if (dc->idle_optimizations_allowed) {
dc_allow_idle_optimizations(dc, false);
reallow_idle = true;
}
link->dc->link_srv->edp_get_psr_residency(link, &residency, PSR_RESIDENCY_MODE_PHY);
if (reallow_idle)
dc_allow_idle_optimizations(dc, true);
mutex_unlock(&adev->dm.dc_lock);
*val = (u64)residency;
return 0;