drm/amd/display: Unify dm resume sequence into a single call
Merge amdgpu_dm_display_resume function into dm_resume, as it is not called anywhere else anymore. Initially the call was broken down into 2 functions for cursor corruption issue. Now the issue is not visible, hence the dm_resume will perform dm_display_resume in it. Signed-off-by: Mikita Lipski <mikita.lipski@amd.com> Reviewed-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
40c21ed6b3
commit
a80aa93de1
1 changed files with 10 additions and 21 deletions
|
@ -644,18 +644,6 @@ amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
|
||||||
static int dm_resume(void *handle)
|
static int dm_resume(void *handle)
|
||||||
{
|
{
|
||||||
struct amdgpu_device *adev = handle;
|
struct amdgpu_device *adev = handle;
|
||||||
struct amdgpu_display_manager *dm = &adev->dm;
|
|
||||||
int ret = 0;
|
|
||||||
|
|
||||||
/* power on hardware */
|
|
||||||
dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
|
|
||||||
|
|
||||||
ret = amdgpu_dm_display_resume(adev);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
|
||||||
{
|
|
||||||
struct drm_device *ddev = adev->ddev;
|
struct drm_device *ddev = adev->ddev;
|
||||||
struct amdgpu_display_manager *dm = &adev->dm;
|
struct amdgpu_display_manager *dm = &adev->dm;
|
||||||
struct amdgpu_dm_connector *aconnector;
|
struct amdgpu_dm_connector *aconnector;
|
||||||
|
@ -666,10 +654,12 @@ int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
||||||
struct drm_plane *plane;
|
struct drm_plane *plane;
|
||||||
struct drm_plane_state *new_plane_state;
|
struct drm_plane_state *new_plane_state;
|
||||||
struct dm_plane_state *dm_new_plane_state;
|
struct dm_plane_state *dm_new_plane_state;
|
||||||
|
int ret;
|
||||||
int ret = 0;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
/* power on hardware */
|
||||||
|
dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
|
||||||
|
|
||||||
/* program HPD filter */
|
/* program HPD filter */
|
||||||
dc_resume(dm->dc);
|
dc_resume(dm->dc);
|
||||||
|
|
||||||
|
@ -683,8 +673,7 @@ int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
||||||
amdgpu_dm_irq_resume_early(adev);
|
amdgpu_dm_irq_resume_early(adev);
|
||||||
|
|
||||||
/* Do detection*/
|
/* Do detection*/
|
||||||
list_for_each_entry(connector,
|
list_for_each_entry(connector, &ddev->mode_config.connector_list, head) {
|
||||||
&ddev->mode_config.connector_list, head) {
|
|
||||||
aconnector = to_amdgpu_dm_connector(connector);
|
aconnector = to_amdgpu_dm_connector(connector);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -706,7 +695,7 @@ int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Force mode set in atomic comit */
|
/* Force mode set in atomic comit */
|
||||||
for_each_new_crtc_in_state(adev->dm.cached_state, crtc, new_crtc_state, i)
|
for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i)
|
||||||
new_crtc_state->active_changed = true;
|
new_crtc_state->active_changed = true;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -714,7 +703,7 @@ int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
||||||
* them here, since they were duplicated as part of the suspend
|
* them here, since they were duplicated as part of the suspend
|
||||||
* procedure.
|
* procedure.
|
||||||
*/
|
*/
|
||||||
for_each_new_crtc_in_state(adev->dm.cached_state, crtc, new_crtc_state, i) {
|
for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) {
|
||||||
dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
|
dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
|
||||||
if (dm_new_crtc_state->stream) {
|
if (dm_new_crtc_state->stream) {
|
||||||
WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
|
WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
|
||||||
|
@ -723,7 +712,7 @@ int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for_each_new_plane_in_state(adev->dm.cached_state, plane, new_plane_state, i) {
|
for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
|
||||||
dm_new_plane_state = to_dm_plane_state(new_plane_state);
|
dm_new_plane_state = to_dm_plane_state(new_plane_state);
|
||||||
if (dm_new_plane_state->dc_state) {
|
if (dm_new_plane_state->dc_state) {
|
||||||
WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
|
WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
|
||||||
|
@ -732,9 +721,9 @@ int amdgpu_dm_display_resume(struct amdgpu_device *adev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = drm_atomic_helper_resume(ddev, adev->dm.cached_state);
|
ret = drm_atomic_helper_resume(ddev, dm->cached_state);
|
||||||
|
|
||||||
adev->dm.cached_state = NULL;
|
dm->cached_state = NULL;
|
||||||
|
|
||||||
amdgpu_dm_irq_resume_late(adev);
|
amdgpu_dm_irq_resume_late(adev);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue