diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2013-07-11 15:00:14 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-07-14 10:11:24 -0400 |
commit | 9847b36af413f32528fc929a0b11d32c2872a05c (patch) | |
tree | ac50edfd56284f3412bdfe3583155d450595ec27 | |
parent | c2b4cacfe9816c1fe378c785ce8a678cf0635ec6 (diff) |
drm/radeon/dpm: disable gfx PG on PALM
Gfx PG doesn't seem to work properly when UVD is initialized
on certain PALM boards. Disable gfx PG for now until we sort
out a proper fix.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/radeon/sumo_dpm.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/sumo_dpm.c b/drivers/gpu/drm/radeon/sumo_dpm.c index 11b6b9924f1b..ca381028bd7b 100644 --- a/drivers/gpu/drm/radeon/sumo_dpm.c +++ b/drivers/gpu/drm/radeon/sumo_dpm.c | |||
@@ -1732,7 +1732,13 @@ int sumo_dpm_init(struct radeon_device *rdev) | |||
1732 | pi->enable_sclk_ds = true; | 1732 | pi->enable_sclk_ds = true; |
1733 | pi->enable_dynamic_m3_arbiter = false; | 1733 | pi->enable_dynamic_m3_arbiter = false; |
1734 | pi->enable_dynamic_patch_ps = true; | 1734 | pi->enable_dynamic_patch_ps = true; |
1735 | pi->enable_gfx_power_gating = true; | 1735 | /* Some PALM chips don't seem to properly ungate gfx when UVD is in use; |
1736 | * for now just disable gfx PG. | ||
1737 | */ | ||
1738 | if (rdev->family == CHIP_PALM) | ||
1739 | pi->enable_gfx_power_gating = false; | ||
1740 | else | ||
1741 | pi->enable_gfx_power_gating = true; | ||
1736 | pi->enable_gfx_clock_gating = true; | 1742 | pi->enable_gfx_clock_gating = true; |
1737 | pi->enable_mg_clock_gating = true; | 1743 | pi->enable_mg_clock_gating = true; |
1738 | pi->enable_auto_thermal_throttling = true; | 1744 | pi->enable_auto_thermal_throttling = true; |