Skip to content

Commit

Permalink
drm/radeon/dpm: add reclocking quirk for ASUS K70AF
Browse files Browse the repository at this point in the history
The LCD has a relatively short vblank time (216us), but
the card is able to reclock memory fine in that time.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Reported-by: normalrawr@gmail.com
  • Loading branch information
Alex Deucher committed Aug 30, 2013
1 parent 942bdf7 commit f75195c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion drivers/gpu/drm/radeon/rv770_dpm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2517,8 +2517,16 @@ u32 rv770_dpm_get_mclk(struct radeon_device *rdev, bool low)
bool rv770_dpm_vblank_too_short(struct radeon_device *rdev)
{
u32 vblank_time = r600_dpm_get_vblank_time(rdev);
u32 switch_limit = 300;

if (vblank_time < 300)
/* quirks */
/* ASUS K70AF */
if ((rdev->pdev->device == 0x9553) &&
(rdev->pdev->subsystem_vendor == 0x1043) &&
(rdev->pdev->subsystem_device == 0x1c42))
switch_limit = 200;

if (vblank_time < switch_limit)
return true;
else
return false;
Expand Down

0 comments on commit f75195c

Please sign in to comment.