mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
drm/radeon: Add HAINAN clock adjustment
This patch limits the clock speeds of the AMD Radeon R5 M420 GPU from 850/1000MHz (core/memory) to 800/950 MHz, making it work stably. This patch is for radeon. Signed-off-by: decce6 <decce6@proton.me> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
f38bb9b092
commit
908d318f23
|
|
@ -2925,6 +2925,11 @@ static void si_apply_state_adjust_rules(struct radeon_device *rdev,
|
|||
max_sclk = 60000;
|
||||
max_mclk = 80000;
|
||||
}
|
||||
if ((rdev->pdev->device == 0x666f) &&
|
||||
(rdev->pdev->revision == 0x00)) {
|
||||
max_sclk = 80000;
|
||||
max_mclk = 95000;
|
||||
}
|
||||
} else if (rdev->family == CHIP_OLAND) {
|
||||
if ((rdev->pdev->revision == 0xC7) ||
|
||||
(rdev->pdev->revision == 0x80) ||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user