Skip to content

Commit 670bb4f

Browse files
committed
drm/radeon/si/dpm: add workaround for for Jet parts
Add clock quirks for Jet parts. Reviewed-by: Sonny Jiang <[email protected]> Tested-by: Sonny Jiang <[email protected]> Signed-off-by: Alex Deucher <[email protected]> Cc: [email protected] Signed-off-by: Alex Deucher <[email protected]>
1 parent a951ed8 commit 670bb4f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/gpu/drm/radeon/si_dpm.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3015,6 +3015,12 @@ static void si_apply_state_adjust_rules(struct radeon_device *rdev,
30153015
if (rdev->pdev->device == 0x6811 &&
30163016
rdev->pdev->revision == 0x81)
30173017
max_mclk = 120000;
3018+
/* limit sclk/mclk on Jet parts for stability */
3019+
if (rdev->pdev->device == 0x6665 &&
3020+
rdev->pdev->revision == 0xc3) {
3021+
max_sclk = 75000;
3022+
max_mclk = 80000;
3023+
}
30183024

30193025
if (rps->vce_active) {
30203026
rps->evclk = rdev->pm.dpm.vce_states[rdev->pm.dpm.vce_level].evclk;

0 commit comments

Comments
 (0)