Commit 12cdff6b authored by Solomon Chiu's avatar Solomon Chiu Committed by Alex Deucher
Browse files

drm/amd/display: Add 120Hz support for freesync video mode



[Why]
For those video format with 60 fps, the user space player could
ask for 120Hz for playback.

[How]
Add 120 in the table of common rates.

Signed-off-by: default avatarSolomon Chiu <solomon.chiu@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 12b2cab7
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -6018,7 +6018,7 @@ static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector,
 * - Cinema HFR (48 FPS)
 * - TV/PAL (50 FPS)
 * - Commonly used (60 FPS)
 * - Multiples of 24 (48,72,96 FPS)
 * - Multiples of 24 (48,72,96,120 FPS)
 *
 * The list of standards video format is not huge and can be added to the
 * connector modeset list beforehand. With that, userspace can leverage
@@ -7988,11 +7988,11 @@ static uint add_fs_modes(struct amdgpu_dm_connector *aconnector)
	 * 48 	        - Cinema HFR
	 * 50 	        - TV/PAL
	 * 60 	        - Commonly used
	 * 48,72,96 - Multiples of 24
	 * 48,72,96,120 - Multiples of 24
	 */
	static const uint32_t common_rates[] = {
		23976, 24000, 25000, 29970, 30000,
		48000, 50000, 60000, 72000, 96000
		48000, 50000, 60000, 72000, 96000, 120000
	};

	/*