We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d058e commit 8cef3e5Copy full SHA for 8cef3e5
drivers/gpu/drm/i915/intel_psr.c
@@ -523,9 +523,9 @@ void intel_psr_compute_config(struct intel_dp *intel_dp,
523
return;
524
}
525
526
- /* PSR2 is restricted to work with panel resolutions upto 3200x2000 */
527
- if (adjusted_mode->crtc_hdisplay > 3200 ||
528
- adjusted_mode->crtc_vdisplay > 2000) {
+ /* PSR2 is restricted to work with panel resolutions up to 3640x2304 */
+ if (adjusted_mode->crtc_hdisplay > 3640 ||
+ adjusted_mode->crtc_vdisplay > 2304) {
529
DRM_DEBUG_KMS("PSR2 disabled, panel resolution too big\n");
530
531
0 commit comments