mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 21:01:29 +00:00
drm/radeon: adjust default dispclk on DCE6 (v2)
Set the default to 600Mhz if it's not set in the bios, and bump the default to 600Mhz if it's lower than that. This fixes display issues with certain 4k DP monitors when using 5.4 Ghz DP clocks. v2: fix typo. Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
0fcb70c301
commit
9368931db8
@ -1227,11 +1227,19 @@ bool radeon_atom_get_clock_info(struct drm_device *dev)
|
||||
rdev->clock.default_dispclk =
|
||||
le32_to_cpu(firmware_info->info_21.ulDefaultDispEngineClkFreq);
|
||||
if (rdev->clock.default_dispclk == 0) {
|
||||
if (ASIC_IS_DCE5(rdev))
|
||||
if (ASIC_IS_DCE6(rdev))
|
||||
rdev->clock.default_dispclk = 60000; /* 600 Mhz */
|
||||
else if (ASIC_IS_DCE5(rdev))
|
||||
rdev->clock.default_dispclk = 54000; /* 540 Mhz */
|
||||
else
|
||||
rdev->clock.default_dispclk = 60000; /* 600 Mhz */
|
||||
}
|
||||
/* set a reasonable default for DP */
|
||||
if (ASIC_IS_DCE6(rdev) && (rdev->clock.default_dispclk < 53900)) {
|
||||
DRM_INFO("Changing default dispclk from %dMhz to 600Mhz\n",
|
||||
rdev->clock.default_dispclk / 100);
|
||||
rdev->clock.default_dispclk = 60000;
|
||||
}
|
||||
rdev->clock.dp_extclk =
|
||||
le16_to_cpu(firmware_info->info_21.usUniphyDPModeExtClkFreq);
|
||||
rdev->clock.current_dispclk = rdev->clock.default_dispclk;
|
||||
|
Loading…
Reference in New Issue
Block a user