mirror of https://github.com/torvalds/linux.git
drm/amd: Re-enable common modes for eDP and LVDS
[Why] Although compositors will add their own modes, Xorg won't use it's own modes and will only stick to modes advertised by the driver. This mean a user that used to pick 1024x768 could no longer access it unless the panel's native resolution was 1024x768. [How] Revert commit6d396e7ac1("drm/amd/display: Disable common modes for LVDS") and commit7948afb46a("drm/amd/display: Disable common modes for eDP"). The panel will still use scaling for any non-native modes due to commit978fa2f6d0("drm/amd/display: Use scaling for non-native resolutions on eDP") Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/4538 Acked-by: Alex Deucher <alexander.deucher@amd.com> Link: https://lore.kernel.org/r/20250828140856.2887993-1-superm1@kernel.org Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
9f28af76fa
commit
c2fbf72fe3
|
|
@ -8433,8 +8433,7 @@ static int amdgpu_dm_connector_get_modes(struct drm_connector *connector)
|
||||||
drm_add_modes_noedid(connector, 1920, 1080);
|
drm_add_modes_noedid(connector, 1920, 1080);
|
||||||
} else {
|
} else {
|
||||||
amdgpu_dm_connector_ddc_get_modes(connector, drm_edid);
|
amdgpu_dm_connector_ddc_get_modes(connector, drm_edid);
|
||||||
if (encoder && (connector->connector_type != DRM_MODE_CONNECTOR_eDP) &&
|
if (encoder)
|
||||||
(connector->connector_type != DRM_MODE_CONNECTOR_LVDS))
|
|
||||||
amdgpu_dm_connector_add_common_modes(encoder, connector);
|
amdgpu_dm_connector_add_common_modes(encoder, connector);
|
||||||
amdgpu_dm_connector_add_freesync_modes(connector, drm_edid);
|
amdgpu_dm_connector_add_freesync_modes(connector, drm_edid);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue