Commit 6052b121 authored by Dave Stevenson's avatar Dave Stevenson Committed by popcornmix
Browse files

drm/vc4: Remove 340MHz clock limit from FKMS now scrambling issues resolved



Firmware TMDS scrambling is now being correctly configured, so
we can use it.

Signed-off-by: default avatarDave Stevenson <dave.stevenson@raspberrypi.org>
parent 5a2844ae
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -830,12 +830,6 @@ vc4_crtc_mode_valid(struct drm_crtc *crtc, const struct drm_display_mode *mode)
		break;
	}

	/* Limit the pixel clock until we can get dynamic HDMI 2.0 scrambling
	 * working.
	 */
	if (mode->clock > 340000)
		return MODE_CLOCK_HIGH;

	return MODE_OK;
}