drm/radeon/kms/pm: fix power state indexing on igp chips in dynpm mode

Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=28745

Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Tested-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Alex Deucher 2010-06-25 16:21:27 -04:00 committed by Dave Airlie
parent 3f53eb6f84
commit 773c3fa3a0
1 changed files with 8 additions and 3 deletions

View File

@ -130,9 +130,14 @@ void r600_pm_get_dynpm_state(struct radeon_device *rdev)
break; break;
} }
} }
} else } else {
rdev->pm.requested_power_state_index = if (rdev->pm.current_power_state_index == 0)
rdev->pm.current_power_state_index - 1; rdev->pm.requested_power_state_index =
rdev->pm.num_power_states - 1;
else
rdev->pm.requested_power_state_index =
rdev->pm.current_power_state_index - 1;
}
} }
rdev->pm.requested_clock_mode_index = 0; rdev->pm.requested_clock_mode_index = 0;
/* don't use the power state if crtcs are active and no display flag is set */ /* don't use the power state if crtcs are active and no display flag is set */