xref: /linux/drivers/gpu/drm/amd/display/modules/freesync/freesync.c (revision c6e9dba3be5ef3b701b29b143609561915e5d0e9)
1 /*
2  * Copyright 2016-2023 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: AMD
23  *
24  */
25 
26 #include "dm_services.h"
27 #include "dc.h"
28 #include "mod_freesync.h"
29 #include "core_types.h"
30 
31 #define MOD_FREESYNC_MAX_CONCURRENT_STREAMS  32
32 
33 #define MIN_REFRESH_RANGE 10
34 /* Refresh rate ramp at a fixed rate of 65 Hz/second */
35 #define STATIC_SCREEN_RAMP_DELTA_REFRESH_RATE_PER_FRAME ((1000 / 60) * 65)
36 /* Number of elements in the render times cache array */
37 #define RENDER_TIMES_MAX_COUNT 10
38 /* Threshold to exit/exit BTR (to avoid frequent enter-exits at the lower limit) */
39 #define BTR_MAX_MARGIN 2500
40 /* Threshold to change BTR multiplier (to avoid frequent changes) */
41 #define BTR_DRIFT_MARGIN 2000
42 /* Threshold to exit fixed refresh rate */
43 #define FIXED_REFRESH_EXIT_MARGIN_IN_HZ 1
44 /* Number of consecutive frames to check before entering/exiting fixed refresh */
45 #define FIXED_REFRESH_ENTER_FRAME_COUNT 5
46 #define FIXED_REFRESH_EXIT_FRAME_COUNT 10
47 /* Flip interval workaround constants */
48 #define VSYNCS_BETWEEN_FLIP_THRESHOLD 2
49 #define FREESYNC_CONSEC_FLIP_AFTER_VSYNC 5
50 #define FREESYNC_VSYNC_TO_FLIP_DELTA_IN_US 500
51 
52 struct core_freesync {
53 	struct mod_freesync public;
54 	struct dc *dc;
55 };
56 
57 #define MOD_FREESYNC_TO_CORE(mod_freesync)\
58 		container_of(mod_freesync, struct core_freesync, public)
59 
60 struct mod_freesync *mod_freesync_create(struct dc *dc)
61 {
62 	struct core_freesync *core_freesync =
63 			kzalloc(sizeof(struct core_freesync), GFP_KERNEL);
64 
65 	if (core_freesync == NULL)
66 		goto fail_alloc_context;
67 
68 	if (dc == NULL)
69 		goto fail_construct;
70 
71 	core_freesync->dc = dc;
72 	return &core_freesync->public;
73 
74 fail_construct:
75 	kfree(core_freesync);
76 
77 fail_alloc_context:
78 	return NULL;
79 }
80 
81 void mod_freesync_destroy(struct mod_freesync *mod_freesync)
82 {
83 	struct core_freesync *core_freesync = NULL;
84 	if (mod_freesync == NULL)
85 		return;
86 	core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync);
87 	kfree(core_freesync);
88 }
89 
90 #if 0 /* Unused currently */
91 static unsigned int calc_refresh_in_uhz_from_duration(
92 		unsigned int duration_in_ns)
93 {
94 	unsigned int refresh_in_uhz =
95 			((unsigned int)(div64_u64((1000000000ULL * 1000000),
96 					duration_in_ns)));
97 	return refresh_in_uhz;
98 }
99 #endif
100 
101 static unsigned int calc_duration_in_us_from_refresh_in_uhz(
102 		unsigned int refresh_in_uhz)
103 {
104 	unsigned int duration_in_us =
105 			((unsigned int)(div64_u64((1000000000ULL * 1000),
106 					refresh_in_uhz)));
107 	return duration_in_us;
108 }
109 
110 static unsigned int calc_duration_in_us_from_v_total(
111 		const struct dc_stream_state *stream,
112 		const struct mod_vrr_params *in_vrr,
113 		unsigned int v_total)
114 {
115 	unsigned int duration_in_us =
116 			(unsigned int)(div64_u64(((unsigned long long)(v_total)
117 				* 10000) * stream->timing.h_total,
118 					stream->timing.pix_clk_100hz));
119 
120 	return duration_in_us;
121 }
122 
123 unsigned int mod_freesync_calc_v_total_from_refresh(
124 		const struct dc_stream_state *stream,
125 		unsigned int refresh_in_uhz)
126 {
127 	unsigned int v_total;
128 	unsigned int frame_duration_in_ns;
129 
130 	frame_duration_in_ns =
131 			((unsigned int)(div64_u64((1000000000ULL * 1000000),
132 					refresh_in_uhz)));
133 
134 	v_total = div64_u64(div64_u64(((unsigned long long)(
135 			frame_duration_in_ns) * (stream->timing.pix_clk_100hz / 10)),
136 			stream->timing.h_total), 1000000);
137 
138 	/* v_total cannot be less than nominal */
139 	if (v_total < stream->timing.v_total) {
140 		ASSERT(v_total < stream->timing.v_total);
141 		v_total = stream->timing.v_total;
142 	}
143 
144 	return v_total;
145 }
146 
147 static unsigned int calc_v_total_from_duration(
148 		const struct dc_stream_state *stream,
149 		const struct mod_vrr_params *vrr,
150 		unsigned int duration_in_us)
151 {
152 	unsigned int v_total = 0;
153 
154 	if (duration_in_us < vrr->min_duration_in_us)
155 		duration_in_us = vrr->min_duration_in_us;
156 
157 	if (duration_in_us > vrr->max_duration_in_us)
158 		duration_in_us = vrr->max_duration_in_us;
159 
160 	if (dc_is_hdmi_signal(stream->signal)) {
161 		uint32_t h_total_up_scaled;
162 
163 		h_total_up_scaled = stream->timing.h_total * 10000;
164 		v_total = div_u64((unsigned long long)duration_in_us
165 					* stream->timing.pix_clk_100hz + (h_total_up_scaled - 1),
166 					h_total_up_scaled);
167 	} else {
168 		v_total = div64_u64(div64_u64(((unsigned long long)(
169 					duration_in_us) * (stream->timing.pix_clk_100hz / 10)),
170 					stream->timing.h_total), 1000);
171 	}
172 
173 	/* v_total cannot be less than nominal */
174 	if (v_total < stream->timing.v_total) {
175 		ASSERT(v_total < stream->timing.v_total);
176 		v_total = stream->timing.v_total;
177 	}
178 
179 	return v_total;
180 }
181 
182 static void update_v_total_for_static_ramp(
183 		struct core_freesync *core_freesync,
184 		const struct dc_stream_state *stream,
185 		struct mod_vrr_params *in_out_vrr)
186 {
187 	unsigned int v_total = 0;
188 	unsigned int current_duration_in_us =
189 			calc_duration_in_us_from_v_total(
190 				stream, in_out_vrr,
191 				in_out_vrr->adjust.v_total_max);
192 	unsigned int target_duration_in_us =
193 			calc_duration_in_us_from_refresh_in_uhz(
194 				in_out_vrr->fixed.target_refresh_in_uhz);
195 	bool ramp_direction_is_up = (current_duration_in_us >
196 				target_duration_in_us) ? true : false;
197 
198 	/* Calculate ratio between new and current frame duration with 3 digit */
199 	unsigned int frame_duration_ratio = div64_u64(1000000,
200 		(1000 +  div64_u64(((unsigned long long)(
201 		STATIC_SCREEN_RAMP_DELTA_REFRESH_RATE_PER_FRAME) *
202 		current_duration_in_us),
203 		1000000)));
204 
205 	/* Calculate delta between new and current frame duration in us */
206 	unsigned int frame_duration_delta = div64_u64(((unsigned long long)(
207 		current_duration_in_us) *
208 		(1000 - frame_duration_ratio)), 1000);
209 
210 	/* Adjust frame duration delta based on ratio between current and
211 	 * standard frame duration (frame duration at 60 Hz refresh rate).
212 	 */
213 	unsigned int ramp_rate_interpolated = div64_u64(((unsigned long long)(
214 		frame_duration_delta) * current_duration_in_us), 16666);
215 
216 	/* Going to a higher refresh rate (lower frame duration) */
217 	if (ramp_direction_is_up) {
218 		/* Reduce frame duration */
219 		current_duration_in_us -= ramp_rate_interpolated;
220 
221 		/* Adjust for frame duration below min */
222 		if (current_duration_in_us <= target_duration_in_us) {
223 			in_out_vrr->fixed.ramping_active = false;
224 			in_out_vrr->fixed.ramping_done = true;
225 			current_duration_in_us =
226 				calc_duration_in_us_from_refresh_in_uhz(
227 				in_out_vrr->fixed.target_refresh_in_uhz);
228 		}
229 	/* Going to a lower refresh rate (larger frame duration) */
230 	} else {
231 		/* Increase frame duration */
232 		current_duration_in_us += ramp_rate_interpolated;
233 
234 		/* Adjust for frame duration above max */
235 		if (current_duration_in_us >= target_duration_in_us) {
236 			in_out_vrr->fixed.ramping_active = false;
237 			in_out_vrr->fixed.ramping_done = true;
238 			current_duration_in_us =
239 				calc_duration_in_us_from_refresh_in_uhz(
240 				in_out_vrr->fixed.target_refresh_in_uhz);
241 		}
242 	}
243 
244 	v_total = div64_u64(div64_u64(((unsigned long long)(
245 			current_duration_in_us) * (stream->timing.pix_clk_100hz / 10)),
246 				stream->timing.h_total), 1000);
247 
248 	/* v_total cannot be less than nominal */
249 	if (v_total < stream->timing.v_total)
250 		v_total = stream->timing.v_total;
251 
252 	in_out_vrr->adjust.v_total_min = v_total;
253 	in_out_vrr->adjust.v_total_max = v_total;
254 }
255 
256 static void apply_below_the_range(struct core_freesync *core_freesync,
257 		const struct dc_stream_state *stream,
258 		unsigned int last_render_time_in_us,
259 		struct mod_vrr_params *in_out_vrr)
260 {
261 	unsigned int inserted_frame_duration_in_us = 0;
262 	unsigned int mid_point_frames_ceil = 0;
263 	unsigned int mid_point_frames_floor = 0;
264 	unsigned int frame_time_in_us = 0;
265 	unsigned int delta_from_mid_point_in_us_1 = 0xFFFFFFFF;
266 	unsigned int delta_from_mid_point_in_us_2 = 0xFFFFFFFF;
267 	unsigned int frames_to_insert = 0;
268 	unsigned int delta_from_mid_point_delta_in_us;
269 	unsigned int max_render_time_in_us =
270 			in_out_vrr->max_duration_in_us - in_out_vrr->btr.margin_in_us;
271 
272 	/* Program BTR */
273 	if ((last_render_time_in_us + in_out_vrr->btr.margin_in_us / 2) < max_render_time_in_us) {
274 		/* Exit Below the Range */
275 		if (in_out_vrr->btr.btr_active) {
276 			in_out_vrr->btr.frame_counter = 0;
277 			in_out_vrr->btr.btr_active = false;
278 		}
279 	} else if (last_render_time_in_us > (max_render_time_in_us + in_out_vrr->btr.margin_in_us / 2)) {
280 		/* Enter Below the Range */
281 		if (!in_out_vrr->btr.btr_active) {
282 			in_out_vrr->btr.btr_active = true;
283 		}
284 	}
285 
286 	/* BTR set to "not active" so disengage */
287 	if (!in_out_vrr->btr.btr_active) {
288 		in_out_vrr->btr.inserted_duration_in_us = 0;
289 		in_out_vrr->btr.frames_to_insert = 0;
290 		in_out_vrr->btr.frame_counter = 0;
291 
292 		/* Restore FreeSync */
293 		in_out_vrr->adjust.v_total_min =
294 			mod_freesync_calc_v_total_from_refresh(stream,
295 				in_out_vrr->max_refresh_in_uhz);
296 		in_out_vrr->adjust.v_total_max =
297 			mod_freesync_calc_v_total_from_refresh(stream,
298 				in_out_vrr->min_refresh_in_uhz);
299 	/* BTR set to "active" so engage */
300 	} else {
301 
302 		/* Calculate number of midPoint frames that could fit within
303 		 * the render time interval - take ceil of this value
304 		 */
305 		mid_point_frames_ceil = (last_render_time_in_us +
306 				in_out_vrr->btr.mid_point_in_us - 1) /
307 					in_out_vrr->btr.mid_point_in_us;
308 
309 		if (mid_point_frames_ceil > 0) {
310 			frame_time_in_us = last_render_time_in_us /
311 				mid_point_frames_ceil;
312 			delta_from_mid_point_in_us_1 =
313 				(in_out_vrr->btr.mid_point_in_us >
314 				frame_time_in_us) ?
315 				(in_out_vrr->btr.mid_point_in_us - frame_time_in_us) :
316 				(frame_time_in_us - in_out_vrr->btr.mid_point_in_us);
317 		}
318 
319 		/* Calculate number of midPoint frames that could fit within
320 		 * the render time interval - take floor of this value
321 		 */
322 		mid_point_frames_floor = last_render_time_in_us /
323 				in_out_vrr->btr.mid_point_in_us;
324 
325 		if (mid_point_frames_floor > 0) {
326 
327 			frame_time_in_us = last_render_time_in_us /
328 				mid_point_frames_floor;
329 			delta_from_mid_point_in_us_2 =
330 				(in_out_vrr->btr.mid_point_in_us >
331 				frame_time_in_us) ?
332 				(in_out_vrr->btr.mid_point_in_us - frame_time_in_us) :
333 				(frame_time_in_us - in_out_vrr->btr.mid_point_in_us);
334 		}
335 
336 		/* Choose number of frames to insert based on how close it
337 		 * can get to the mid point of the variable range.
338 		 *  - Delta for CEIL: delta_from_mid_point_in_us_1
339 		 *  - Delta for FLOOR: delta_from_mid_point_in_us_2
340 		 */
341 		if (mid_point_frames_ceil &&
342 		    (last_render_time_in_us / mid_point_frames_ceil) <
343 		    in_out_vrr->min_duration_in_us) {
344 			/* Check for out of range.
345 			 * If using CEIL produces a value that is out of range,
346 			 * then we are forced to use FLOOR.
347 			 */
348 			frames_to_insert = mid_point_frames_floor;
349 		} else if (mid_point_frames_floor < 2) {
350 			/* Check if FLOOR would result in non-LFC. In this case
351 			 * choose to use CEIL
352 			 */
353 			frames_to_insert = mid_point_frames_ceil;
354 		} else if (delta_from_mid_point_in_us_1 < delta_from_mid_point_in_us_2) {
355 			/* If choosing CEIL results in a frame duration that is
356 			 * closer to the mid point of the range.
357 			 * Choose CEIL
358 			 */
359 			frames_to_insert = mid_point_frames_ceil;
360 		} else {
361 			/* If choosing FLOOR results in a frame duration that is
362 			 * closer to the mid point of the range.
363 			 * Choose FLOOR
364 			 */
365 			frames_to_insert = mid_point_frames_floor;
366 		}
367 
368 		/* Prefer current frame multiplier when BTR is enabled unless it drifts
369 		 * too far from the midpoint
370 		 */
371 		if (delta_from_mid_point_in_us_1 < delta_from_mid_point_in_us_2) {
372 			delta_from_mid_point_delta_in_us = delta_from_mid_point_in_us_2 -
373 					delta_from_mid_point_in_us_1;
374 		} else {
375 			delta_from_mid_point_delta_in_us = delta_from_mid_point_in_us_1 -
376 					delta_from_mid_point_in_us_2;
377 		}
378 		if (in_out_vrr->btr.frames_to_insert != 0 &&
379 				delta_from_mid_point_delta_in_us < BTR_DRIFT_MARGIN) {
380 			if (((last_render_time_in_us / in_out_vrr->btr.frames_to_insert) <
381 					max_render_time_in_us) &&
382 				((last_render_time_in_us / in_out_vrr->btr.frames_to_insert) >
383 					in_out_vrr->min_duration_in_us))
384 				frames_to_insert = in_out_vrr->btr.frames_to_insert;
385 		}
386 
387 		/* Either we've calculated the number of frames to insert,
388 		 * or we need to insert min duration frames
389 		 */
390 		if (frames_to_insert &&
391 		    (last_render_time_in_us / frames_to_insert) <
392 		    in_out_vrr->min_duration_in_us){
393 			frames_to_insert -= (frames_to_insert > 1) ?
394 					1 : 0;
395 		}
396 
397 		if (frames_to_insert > 0)
398 			inserted_frame_duration_in_us = last_render_time_in_us /
399 							frames_to_insert;
400 
401 		if (inserted_frame_duration_in_us < in_out_vrr->min_duration_in_us)
402 			inserted_frame_duration_in_us = in_out_vrr->min_duration_in_us;
403 
404 		/* Cache the calculated variables */
405 		in_out_vrr->btr.inserted_duration_in_us =
406 			inserted_frame_duration_in_us;
407 		in_out_vrr->btr.frames_to_insert = frames_to_insert;
408 		in_out_vrr->btr.frame_counter = frames_to_insert;
409 	}
410 }
411 
412 static void apply_fixed_refresh(struct core_freesync *core_freesync,
413 		const struct dc_stream_state *stream,
414 		unsigned int last_render_time_in_us,
415 		struct mod_vrr_params *in_out_vrr)
416 {
417 	bool update = false;
418 	unsigned int max_render_time_in_us = in_out_vrr->max_duration_in_us;
419 
420 	/* Compute the exit refresh rate and exit frame duration */
421 	unsigned int exit_refresh_rate_in_milli_hz = ((1000000000/max_render_time_in_us)
422 			+ (1000*FIXED_REFRESH_EXIT_MARGIN_IN_HZ));
423 	unsigned int exit_frame_duration_in_us = 1000000000/exit_refresh_rate_in_milli_hz;
424 
425 	if (last_render_time_in_us < exit_frame_duration_in_us) {
426 		/* Exit Fixed Refresh mode */
427 		if (in_out_vrr->fixed.fixed_active) {
428 			in_out_vrr->fixed.frame_counter++;
429 
430 			if (in_out_vrr->fixed.frame_counter >
431 					FIXED_REFRESH_EXIT_FRAME_COUNT) {
432 				in_out_vrr->fixed.frame_counter = 0;
433 				in_out_vrr->fixed.fixed_active = false;
434 				in_out_vrr->fixed.target_refresh_in_uhz = 0;
435 				update = true;
436 			}
437 		} else
438 			in_out_vrr->fixed.frame_counter = 0;
439 	} else if (last_render_time_in_us > max_render_time_in_us) {
440 		/* Enter Fixed Refresh mode */
441 		if (!in_out_vrr->fixed.fixed_active) {
442 			in_out_vrr->fixed.frame_counter++;
443 
444 			if (in_out_vrr->fixed.frame_counter >
445 					FIXED_REFRESH_ENTER_FRAME_COUNT) {
446 				in_out_vrr->fixed.frame_counter = 0;
447 				in_out_vrr->fixed.fixed_active = true;
448 				in_out_vrr->fixed.target_refresh_in_uhz =
449 						in_out_vrr->max_refresh_in_uhz;
450 				update = true;
451 			}
452 		} else
453 			in_out_vrr->fixed.frame_counter = 0;
454 	}
455 
456 	if (update) {
457 		if (in_out_vrr->fixed.fixed_active) {
458 			in_out_vrr->adjust.v_total_min =
459 				mod_freesync_calc_v_total_from_refresh(
460 				stream, in_out_vrr->max_refresh_in_uhz);
461 			in_out_vrr->adjust.v_total_max =
462 					in_out_vrr->adjust.v_total_min;
463 		} else {
464 			in_out_vrr->adjust.v_total_min =
465 				mod_freesync_calc_v_total_from_refresh(stream,
466 					in_out_vrr->max_refresh_in_uhz);
467 			in_out_vrr->adjust.v_total_max =
468 				mod_freesync_calc_v_total_from_refresh(stream,
469 					in_out_vrr->min_refresh_in_uhz);
470 		}
471 	}
472 }
473 
474 static void determine_flip_interval_workaround_req(struct mod_vrr_params *in_vrr,
475 		unsigned int curr_time_stamp_in_us)
476 {
477 	in_vrr->flip_interval.vsync_to_flip_in_us = curr_time_stamp_in_us -
478 			in_vrr->flip_interval.v_update_timestamp_in_us;
479 
480 	/* Determine conditions for stopping workaround */
481 	if (in_vrr->flip_interval.flip_interval_workaround_active &&
482 			in_vrr->flip_interval.vsyncs_between_flip < VSYNCS_BETWEEN_FLIP_THRESHOLD &&
483 			in_vrr->flip_interval.vsync_to_flip_in_us > FREESYNC_VSYNC_TO_FLIP_DELTA_IN_US) {
484 		in_vrr->flip_interval.flip_interval_detect_counter = 0;
485 		in_vrr->flip_interval.program_flip_interval_workaround = true;
486 		in_vrr->flip_interval.flip_interval_workaround_active = false;
487 	} else {
488 		/* Determine conditions for starting workaround */
489 		if (in_vrr->flip_interval.vsyncs_between_flip >= VSYNCS_BETWEEN_FLIP_THRESHOLD &&
490 				in_vrr->flip_interval.vsync_to_flip_in_us < FREESYNC_VSYNC_TO_FLIP_DELTA_IN_US) {
491 			/* Increase flip interval counter we have 2 vsyncs between flips and
492 			 * vsync to flip interval is less than 500us
493 			 */
494 			in_vrr->flip_interval.flip_interval_detect_counter++;
495 			if (in_vrr->flip_interval.flip_interval_detect_counter > FREESYNC_CONSEC_FLIP_AFTER_VSYNC) {
496 				/* Start workaround if we detect 5 consecutive instances of the above case */
497 				in_vrr->flip_interval.program_flip_interval_workaround = true;
498 				in_vrr->flip_interval.flip_interval_workaround_active = true;
499 			}
500 		} else {
501 			/* Reset the flip interval counter if we condition is no longer met */
502 			in_vrr->flip_interval.flip_interval_detect_counter = 0;
503 		}
504 	}
505 
506 	in_vrr->flip_interval.vsyncs_between_flip = 0;
507 }
508 
509 static bool vrr_settings_require_update(struct core_freesync *core_freesync,
510 		struct mod_freesync_config *in_config,
511 		unsigned int min_refresh_in_uhz,
512 		unsigned int max_refresh_in_uhz,
513 		struct mod_vrr_params *in_vrr)
514 {
515 	if (in_vrr->state != in_config->state) {
516 		return true;
517 	} else if (in_vrr->state == VRR_STATE_ACTIVE_FIXED &&
518 			in_vrr->fixed.target_refresh_in_uhz !=
519 					in_config->fixed_refresh_in_uhz) {
520 		return true;
521 	} else if (in_vrr->min_refresh_in_uhz != min_refresh_in_uhz) {
522 		return true;
523 	} else if (in_vrr->max_refresh_in_uhz != max_refresh_in_uhz) {
524 		return true;
525 	}
526 
527 	return false;
528 }
529 
530 bool mod_freesync_get_vmin_vmax(struct mod_freesync *mod_freesync,
531 		const struct dc_stream_state *stream,
532 		unsigned int *vmin,
533 		unsigned int *vmax)
534 {
535 	*vmin = stream->adjust.v_total_min;
536 	*vmax = stream->adjust.v_total_max;
537 
538 	return true;
539 }
540 
541 bool mod_freesync_get_v_position(struct mod_freesync *mod_freesync,
542 		struct dc_stream_state *stream,
543 		unsigned int *nom_v_pos,
544 		unsigned int *v_pos)
545 {
546 	struct core_freesync *core_freesync = NULL;
547 	struct crtc_position position;
548 
549 	if (mod_freesync == NULL)
550 		return false;
551 
552 	core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync);
553 
554 	if (dc_stream_get_crtc_position(core_freesync->dc, &stream, 1,
555 					&position.vertical_count,
556 					&position.nominal_vcount)) {
557 
558 		*nom_v_pos = position.nominal_vcount;
559 		*v_pos = position.vertical_count;
560 
561 		return true;
562 	}
563 
564 	return false;
565 }
566 
567 static void build_vrr_infopacket_data_v1(const struct mod_vrr_params *vrr,
568 		struct dc_info_packet *infopacket,
569 		bool freesync_on_desktop)
570 {
571 	/* PB1 = 0x1A (24bit AMD IEEE OUI (0x00001A) - Byte 0) */
572 	infopacket->sb[1] = 0x1A;
573 
574 	/* PB2 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 1) */
575 	infopacket->sb[2] = 0x00;
576 
577 	/* PB3 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 2) */
578 	infopacket->sb[3] = 0x00;
579 
580 	/* PB4 = Reserved */
581 
582 	/* PB5 = Reserved */
583 
584 	/* PB6 = [Bits 7:3 = Reserved] */
585 
586 	/* PB6 = [Bit 0 = FreeSync Supported] */
587 	if (vrr->state != VRR_STATE_UNSUPPORTED)
588 		infopacket->sb[6] |= 0x01;
589 
590 	/* PB6 = [Bit 1 = FreeSync Enabled] */
591 	if (vrr->state != VRR_STATE_DISABLED &&
592 			vrr->state != VRR_STATE_UNSUPPORTED)
593 		infopacket->sb[6] |= 0x02;
594 
595 	if (freesync_on_desktop) {
596 		/* PB6 = [Bit 2 = FreeSync Active] */
597 		if (vrr->state != VRR_STATE_DISABLED &&
598 			vrr->state != VRR_STATE_UNSUPPORTED)
599 			infopacket->sb[6] |= 0x04;
600 	} else {
601 		if (vrr->state == VRR_STATE_ACTIVE_VARIABLE ||
602 			vrr->state == VRR_STATE_ACTIVE_FIXED)
603 			infopacket->sb[6] |= 0x04;
604 	}
605 
606 	// For v1 & 2 infoframes program nominal if non-fs mode, otherwise full range
607 	/* PB7 = FreeSync Minimum refresh rate (Hz) */
608 	if (vrr->state == VRR_STATE_ACTIVE_VARIABLE ||
609 			vrr->state == VRR_STATE_ACTIVE_FIXED) {
610 		infopacket->sb[7] = (unsigned char)((vrr->min_refresh_in_uhz + 500000) / 1000000);
611 	} else {
612 		infopacket->sb[7] = (unsigned char)((vrr->max_refresh_in_uhz + 500000) / 1000000);
613 	}
614 
615 	/* PB8 = FreeSync Maximum refresh rate (Hz)
616 	 * Note: We should never go above the field rate of the mode timing set.
617 	 */
618 	infopacket->sb[8] = (unsigned char)((vrr->max_refresh_in_uhz + 500000) / 1000000);
619 }
620 
621 static void build_vrr_infopacket_data_v3(const struct mod_vrr_params *vrr,
622 		struct dc_info_packet *infopacket,
623 		bool freesync_on_desktop)
624 {
625 	unsigned int min_refresh;
626 	unsigned int max_refresh;
627 	unsigned int fixed_refresh;
628 	unsigned int min_programmed;
629 
630 	/* PB1 = 0x1A (24bit AMD IEEE OUI (0x00001A) - Byte 0) */
631 	infopacket->sb[1] = 0x1A;
632 
633 	/* PB2 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 1) */
634 	infopacket->sb[2] = 0x00;
635 
636 	/* PB3 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 2) */
637 	infopacket->sb[3] = 0x00;
638 
639 	/* PB4 = Reserved */
640 
641 	/* PB5 = Reserved */
642 
643 	/* PB6 = [Bits 7:3 = Reserved] */
644 
645 	/* PB6 = [Bit 0 = FreeSync Supported] */
646 	if (vrr->state != VRR_STATE_UNSUPPORTED)
647 		infopacket->sb[6] |= 0x01;
648 
649 	/* PB6 = [Bit 1 = FreeSync Enabled] */
650 	if (vrr->state != VRR_STATE_DISABLED &&
651 			vrr->state != VRR_STATE_UNSUPPORTED)
652 		infopacket->sb[6] |= 0x02;
653 
654 	/* PB6 = [Bit 2 = FreeSync Active] */
655 	if (freesync_on_desktop) {
656 		if (vrr->state != VRR_STATE_DISABLED &&
657 			vrr->state != VRR_STATE_UNSUPPORTED)
658 			infopacket->sb[6] |= 0x04;
659 	} else {
660 		if (vrr->state == VRR_STATE_ACTIVE_VARIABLE ||
661 			vrr->state == VRR_STATE_ACTIVE_FIXED)
662 			infopacket->sb[6] |= 0x04;
663 	}
664 
665 	min_refresh = (vrr->min_refresh_in_uhz + 500000) / 1000000;
666 	max_refresh = (vrr->max_refresh_in_uhz + 500000) / 1000000;
667 	fixed_refresh = (vrr->fixed_refresh_in_uhz + 500000) / 1000000;
668 
669 	min_programmed = (vrr->state == VRR_STATE_ACTIVE_FIXED) ? fixed_refresh :
670 			(vrr->state == VRR_STATE_ACTIVE_VARIABLE) ? min_refresh :
671 			(vrr->state == VRR_STATE_INACTIVE) ? min_refresh :
672 			max_refresh; // Non-fs case, program nominal range
673 
674 	/* PB7 = FreeSync Minimum refresh rate (Hz) */
675 	infopacket->sb[7] = min_programmed & 0xFF;
676 
677 	/* PB8 = FreeSync Maximum refresh rate (Hz) */
678 	infopacket->sb[8] = max_refresh & 0xFF;
679 
680 	/* PB11 : MSB FreeSync Minimum refresh rate [Hz] - bits 9:8 */
681 	infopacket->sb[11] = (min_programmed >> 8) & 0x03;
682 
683 	/* PB12 : MSB FreeSync Maximum refresh rate [Hz] - bits 9:8 */
684 	infopacket->sb[12] = (max_refresh >> 8) & 0x03;
685 
686 	/* PB16 : Reserved bits 7:1, FixedRate bit 0 */
687 	infopacket->sb[16] = (vrr->state == VRR_STATE_ACTIVE_FIXED) ? 1 : 0;
688 }
689 
690 static void build_vrr_infopacket_fs2_data(enum color_transfer_func app_tf,
691 		struct dc_info_packet *infopacket)
692 {
693 	if (app_tf != TRANSFER_FUNC_UNKNOWN) {
694 		infopacket->valid = true;
695 
696 		if (app_tf != TRANSFER_FUNC_PQ2084) {
697 			infopacket->sb[6] |= 0x08;  // PB6 = [Bit 3 = Native Color Active]
698 			if (app_tf == TRANSFER_FUNC_GAMMA_22)
699 				infopacket->sb[9] |= 0x04;  // PB6 = [Bit 2 = Gamma 2.2 EOTF Active]
700 		}
701 	}
702 }
703 
704 static void build_vrr_infopacket_header_v1(enum signal_type signal,
705 		struct dc_info_packet *infopacket,
706 		unsigned int *payload_size)
707 {
708 	if (dc_is_hdmi_signal(signal)) {
709 
710 		/* HEADER */
711 
712 		/* HB0  = Packet Type = 0x83 (Source Product
713 		 *	  Descriptor InfoFrame)
714 		 */
715 		infopacket->hb0 = DC_HDMI_INFOFRAME_TYPE_SPD;
716 
717 		/* HB1  = Version = 0x01 */
718 		infopacket->hb1 = 0x01;
719 
720 		/* HB2  = [Bits 7:5 = 0] [Bits 4:0 = Length = 0x08] */
721 		infopacket->hb2 = 0x08;
722 
723 		*payload_size = 0x08;
724 
725 	} else if (dc_is_dp_signal(signal)) {
726 
727 		/* HEADER */
728 
729 		/* HB0  = Secondary-data Packet ID = 0 - Only non-zero
730 		 *	  when used to associate audio related info packets
731 		 */
732 		infopacket->hb0 = 0x00;
733 
734 		/* HB1  = Packet Type = 0x83 (Source Product
735 		 *	  Descriptor InfoFrame)
736 		 */
737 		infopacket->hb1 = DC_HDMI_INFOFRAME_TYPE_SPD;
738 
739 		/* HB2  = [Bits 7:0 = Least significant eight bits -
740 		 *	  For INFOFRAME, the value must be 1Bh]
741 		 */
742 		infopacket->hb2 = 0x1B;
743 
744 		/* HB3  = [Bits 7:2 = INFOFRAME SDP Version Number = 0x1]
745 		 *	  [Bits 1:0 = Most significant two bits = 0x00]
746 		 */
747 		infopacket->hb3 = 0x04;
748 
749 		*payload_size = 0x1B;
750 	}
751 }
752 
753 static void build_vrr_infopacket_header_v2(enum signal_type signal,
754 		struct dc_info_packet *infopacket,
755 		unsigned int *payload_size)
756 {
757 	if (dc_is_hdmi_signal(signal)) {
758 
759 		/* HEADER */
760 
761 		/* HB0  = Packet Type = 0x83 (Source Product
762 		 *	  Descriptor InfoFrame)
763 		 */
764 		infopacket->hb0 = DC_HDMI_INFOFRAME_TYPE_SPD;
765 
766 		/* HB1  = Version = 0x02 */
767 		infopacket->hb1 = 0x02;
768 
769 		/* HB2  = [Bits 7:5 = 0] [Bits 4:0 = Length = 0x09] */
770 		infopacket->hb2 = 0x09;
771 
772 		*payload_size = 0x09;
773 	} else if (dc_is_dp_signal(signal)) {
774 
775 		/* HEADER */
776 
777 		/* HB0  = Secondary-data Packet ID = 0 - Only non-zero
778 		 *	  when used to associate audio related info packets
779 		 */
780 		infopacket->hb0 = 0x00;
781 
782 		/* HB1  = Packet Type = 0x83 (Source Product
783 		 *	  Descriptor InfoFrame)
784 		 */
785 		infopacket->hb1 = DC_HDMI_INFOFRAME_TYPE_SPD;
786 
787 		/* HB2  = [Bits 7:0 = Least significant eight bits -
788 		 *	  For INFOFRAME, the value must be 1Bh]
789 		 */
790 		infopacket->hb2 = 0x1B;
791 
792 		/* HB3  = [Bits 7:2 = INFOFRAME SDP Version Number = 0x2]
793 		 *	  [Bits 1:0 = Most significant two bits = 0x00]
794 		 */
795 		infopacket->hb3 = 0x08;
796 
797 		*payload_size = 0x1B;
798 	}
799 }
800 
801 static void build_vrr_infopacket_header_v3(enum signal_type signal,
802 		struct dc_info_packet *infopacket,
803 		unsigned int *payload_size)
804 {
805 	unsigned char version;
806 
807 	version = 3;
808 	if (dc_is_hdmi_signal(signal)) {
809 
810 		/* HEADER */
811 
812 		/* HB0  = Packet Type = 0x83 (Source Product
813 		 *	  Descriptor InfoFrame)
814 		 */
815 		infopacket->hb0 = DC_HDMI_INFOFRAME_TYPE_SPD;
816 
817 		/* HB1  = Version = 0x03 */
818 		infopacket->hb1 = version;
819 
820 		/* HB2  = [Bits 7:5 = 0] [Bits 4:0 = Length] */
821 		infopacket->hb2 = 0x10;
822 
823 		*payload_size = 0x10;
824 	} else if (dc_is_dp_signal(signal)) {
825 
826 		/* HEADER */
827 
828 		/* HB0  = Secondary-data Packet ID = 0 - Only non-zero
829 		 *	  when used to associate audio related info packets
830 		 */
831 		infopacket->hb0 = 0x00;
832 
833 		/* HB1  = Packet Type = 0x83 (Source Product
834 		 *	  Descriptor InfoFrame)
835 		 */
836 		infopacket->hb1 = DC_HDMI_INFOFRAME_TYPE_SPD;
837 
838 		/* HB2  = [Bits 7:0 = Least significant eight bits -
839 		 *	  For INFOFRAME, the value must be 1Bh]
840 		 */
841 		infopacket->hb2 = 0x1B;
842 
843 		/* HB3  = [Bits 7:2 = INFOFRAME SDP Version Number = 0x2]
844 		 *	  [Bits 1:0 = Most significant two bits = 0x00]
845 		 */
846 
847 		infopacket->hb3 = (version & 0x3F) << 2;
848 
849 		*payload_size = 0x1B;
850 	}
851 }
852 
853 static void build_vrr_infopacket_checksum(unsigned int *payload_size,
854 		struct dc_info_packet *infopacket)
855 {
856 	/* Calculate checksum */
857 	unsigned int idx = 0;
858 	unsigned char checksum = 0;
859 
860 	checksum += infopacket->hb0;
861 	checksum += infopacket->hb1;
862 	checksum += infopacket->hb2;
863 	checksum += infopacket->hb3;
864 
865 	for (idx = 1; idx <= *payload_size; idx++)
866 		checksum += infopacket->sb[idx];
867 
868 	/* PB0 = Checksum (one byte complement) */
869 	infopacket->sb[0] = (unsigned char)(0x100 - checksum);
870 
871 	infopacket->valid = true;
872 }
873 
874 static void build_vrr_infopacket_v1(enum signal_type signal,
875 		const struct mod_vrr_params *vrr,
876 		struct dc_info_packet *infopacket,
877 		bool freesync_on_desktop)
878 {
879 	/* SPD info packet for FreeSync */
880 	unsigned int payload_size = 0;
881 
882 	build_vrr_infopacket_header_v1(signal, infopacket, &payload_size);
883 	build_vrr_infopacket_data_v1(vrr, infopacket, freesync_on_desktop);
884 	build_vrr_infopacket_checksum(&payload_size, infopacket);
885 
886 	infopacket->valid = true;
887 }
888 
889 static void build_vrr_infopacket_v2(enum signal_type signal,
890 		const struct mod_vrr_params *vrr,
891 		enum color_transfer_func app_tf,
892 		struct dc_info_packet *infopacket,
893 		bool freesync_on_desktop)
894 {
895 	unsigned int payload_size = 0;
896 
897 	build_vrr_infopacket_header_v2(signal, infopacket, &payload_size);
898 	build_vrr_infopacket_data_v1(vrr, infopacket, freesync_on_desktop);
899 
900 	build_vrr_infopacket_fs2_data(app_tf, infopacket);
901 
902 	build_vrr_infopacket_checksum(&payload_size, infopacket);
903 
904 	infopacket->valid = true;
905 }
906 
907 static void build_vrr_infopacket_v3(enum signal_type signal,
908 		const struct mod_vrr_params *vrr,
909 		enum color_transfer_func app_tf,
910 		struct dc_info_packet *infopacket,
911 		bool freesync_on_desktop)
912 {
913 	unsigned int payload_size = 0;
914 
915 	build_vrr_infopacket_header_v3(signal, infopacket, &payload_size);
916 	build_vrr_infopacket_data_v3(vrr, infopacket, freesync_on_desktop);
917 
918 	build_vrr_infopacket_fs2_data(app_tf, infopacket);
919 
920 	build_vrr_infopacket_checksum(&payload_size, infopacket);
921 
922 	infopacket->valid = true;
923 }
924 
925 static void build_vrr_infopacket_sdp_v1_3(enum vrr_packet_type packet_type,
926 										struct dc_info_packet *infopacket)
927 {
928 	uint8_t idx = 0, size = 0;
929 
930 	size = ((packet_type == PACKET_TYPE_FS_V1) ? 0x08 :
931 			(packet_type == PACKET_TYPE_FS_V3) ? 0x10 :
932 												0x09);
933 
934 	for (idx = infopacket->hb2; idx > 1; idx--) // Data Byte Count: 0x1B
935 		infopacket->sb[idx] = infopacket->sb[idx-1];
936 
937 	infopacket->sb[1] = size;                         // Length
938 	infopacket->sb[0] = (infopacket->hb3 >> 2) & 0x3F;//Version
939 	infopacket->hb3   = (0x13 << 2);                  // Header,SDP 1.3
940 	infopacket->hb2   = 0x1D;
941 }
942 
943 void mod_freesync_build_vrr_infopacket(struct mod_freesync *mod_freesync,
944 		const struct dc_stream_state *stream,
945 		const struct mod_vrr_params *vrr,
946 		enum vrr_packet_type packet_type,
947 		enum color_transfer_func app_tf,
948 		struct dc_info_packet *infopacket,
949 		bool pack_sdp_v1_3)
950 {
951 	/* SPD info packet for FreeSync
952 	 * VTEM info packet for HdmiVRR
953 	 * Check if Freesync is supported. Return if false. If true,
954 	 * set the corresponding bit in the info packet
955 	 */
956 	if (!vrr->send_info_frame)
957 		return;
958 
959 	switch (packet_type) {
960 	case PACKET_TYPE_FS_V3:
961 		build_vrr_infopacket_v3(stream->signal, vrr, app_tf, infopacket, stream->freesync_on_desktop);
962 		break;
963 	case PACKET_TYPE_FS_V2:
964 		build_vrr_infopacket_v2(stream->signal, vrr, app_tf, infopacket, stream->freesync_on_desktop);
965 		break;
966 	case PACKET_TYPE_VRR:
967 	case PACKET_TYPE_FS_V1:
968 	default:
969 		build_vrr_infopacket_v1(stream->signal, vrr, infopacket, stream->freesync_on_desktop);
970 	}
971 
972 	if (true == pack_sdp_v1_3 &&
973 		true == dc_is_dp_signal(stream->signal) &&
974 		packet_type != PACKET_TYPE_VRR &&
975 		packet_type != PACKET_TYPE_VTEM)
976 		build_vrr_infopacket_sdp_v1_3(packet_type, infopacket);
977 }
978 
979 void mod_freesync_build_vrr_params(struct mod_freesync *mod_freesync,
980 		const struct dc_stream_state *stream,
981 		struct mod_freesync_config *in_config,
982 		struct mod_vrr_params *in_out_vrr)
983 {
984 	struct core_freesync *core_freesync = NULL;
985 	unsigned long long nominal_field_rate_in_uhz = 0;
986 	unsigned long long rounded_nominal_in_uhz = 0;
987 	unsigned int refresh_range = 0;
988 	unsigned long long min_refresh_in_uhz = 0;
989 	unsigned long long max_refresh_in_uhz = 0;
990 	unsigned long long min_hardware_refresh_in_uhz = 0;
991 
992 	if (mod_freesync == NULL)
993 		return;
994 
995 	core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync);
996 
997 	/* Calculate nominal field rate for stream */
998 	nominal_field_rate_in_uhz =
999 			mod_freesync_calc_nominal_field_rate(stream);
1000 
1001 	if (stream->ctx->dc->caps.max_v_total != 0 && stream->timing.h_total != 0) {
1002 		min_hardware_refresh_in_uhz = div64_u64((stream->timing.pix_clk_100hz * 100000000ULL),
1003 			(stream->timing.h_total * stream->ctx->dc->caps.max_v_total));
1004 	}
1005 	/* Limit minimum refresh rate to what can be supported by hardware */
1006 	min_refresh_in_uhz = min_hardware_refresh_in_uhz > in_config->min_refresh_in_uhz ?
1007 		min_hardware_refresh_in_uhz : in_config->min_refresh_in_uhz;
1008 	max_refresh_in_uhz = in_config->max_refresh_in_uhz;
1009 
1010 	/* Full range may be larger than current video timing, so cap at nominal */
1011 	if (max_refresh_in_uhz > nominal_field_rate_in_uhz)
1012 		max_refresh_in_uhz = nominal_field_rate_in_uhz;
1013 
1014 	/* Full range may be larger than current video timing, so cap at nominal */
1015 	if (min_refresh_in_uhz > max_refresh_in_uhz)
1016 		min_refresh_in_uhz = max_refresh_in_uhz;
1017 
1018 	/* If a monitor reports exactly max refresh of 2x of min, enforce it on nominal */
1019 	rounded_nominal_in_uhz =
1020 			div_u64(nominal_field_rate_in_uhz + 50000, 100000) * 100000;
1021 	if (in_config->max_refresh_in_uhz == (2 * in_config->min_refresh_in_uhz) &&
1022 		in_config->max_refresh_in_uhz == rounded_nominal_in_uhz)
1023 		min_refresh_in_uhz = div_u64(nominal_field_rate_in_uhz, 2);
1024 
1025 	if (!vrr_settings_require_update(core_freesync,
1026 			in_config, (unsigned int)min_refresh_in_uhz, (unsigned int)max_refresh_in_uhz,
1027 			in_out_vrr))
1028 		return;
1029 
1030 	in_out_vrr->state = in_config->state;
1031 	in_out_vrr->send_info_frame = in_config->vsif_supported;
1032 
1033 	if (in_config->state == VRR_STATE_UNSUPPORTED) {
1034 		in_out_vrr->state = VRR_STATE_UNSUPPORTED;
1035 		in_out_vrr->supported = false;
1036 		in_out_vrr->adjust.v_total_min = stream->timing.v_total;
1037 		in_out_vrr->adjust.v_total_max = stream->timing.v_total;
1038 
1039 		return;
1040 
1041 	} else {
1042 		in_out_vrr->min_refresh_in_uhz = (unsigned int)min_refresh_in_uhz;
1043 		in_out_vrr->max_duration_in_us =
1044 				calc_duration_in_us_from_refresh_in_uhz(
1045 						(unsigned int)min_refresh_in_uhz);
1046 
1047 		in_out_vrr->max_refresh_in_uhz = (unsigned int)max_refresh_in_uhz;
1048 		in_out_vrr->min_duration_in_us =
1049 				calc_duration_in_us_from_refresh_in_uhz(
1050 						(unsigned int)max_refresh_in_uhz);
1051 
1052 		if (in_config->state == VRR_STATE_ACTIVE_FIXED)
1053 			in_out_vrr->fixed_refresh_in_uhz = in_config->fixed_refresh_in_uhz;
1054 		else
1055 			in_out_vrr->fixed_refresh_in_uhz = 0;
1056 
1057 		refresh_range = div_u64(in_out_vrr->max_refresh_in_uhz + 500000, 1000000) -
1058 +				div_u64(in_out_vrr->min_refresh_in_uhz + 500000, 1000000);
1059 
1060 		in_out_vrr->supported = true;
1061 	}
1062 
1063 	in_out_vrr->fixed.ramping_active = in_config->ramping;
1064 
1065 	in_out_vrr->btr.btr_enabled = in_config->btr;
1066 
1067 	if (in_out_vrr->max_refresh_in_uhz < (2 * in_out_vrr->min_refresh_in_uhz))
1068 		in_out_vrr->btr.btr_enabled = false;
1069 	else {
1070 		in_out_vrr->btr.margin_in_us = in_out_vrr->max_duration_in_us -
1071 				2 * in_out_vrr->min_duration_in_us;
1072 		if (in_out_vrr->btr.margin_in_us > BTR_MAX_MARGIN)
1073 			in_out_vrr->btr.margin_in_us = BTR_MAX_MARGIN;
1074 	}
1075 
1076 	in_out_vrr->btr.btr_active = false;
1077 	in_out_vrr->btr.inserted_duration_in_us = 0;
1078 	in_out_vrr->btr.frames_to_insert = 0;
1079 	in_out_vrr->btr.frame_counter = 0;
1080 	in_out_vrr->fixed.fixed_active = false;
1081 	in_out_vrr->fixed.target_refresh_in_uhz = 0;
1082 
1083 	in_out_vrr->btr.mid_point_in_us =
1084 				(in_out_vrr->min_duration_in_us +
1085 				 in_out_vrr->max_duration_in_us) / 2;
1086 
1087 	if (in_out_vrr->state == VRR_STATE_UNSUPPORTED) {
1088 		in_out_vrr->adjust.v_total_min = stream->timing.v_total;
1089 		in_out_vrr->adjust.v_total_max = stream->timing.v_total;
1090 	} else if (in_out_vrr->state == VRR_STATE_DISABLED) {
1091 		in_out_vrr->adjust.v_total_min = stream->timing.v_total;
1092 		in_out_vrr->adjust.v_total_max = stream->timing.v_total;
1093 	} else if (in_out_vrr->state == VRR_STATE_INACTIVE) {
1094 		in_out_vrr->adjust.v_total_min = stream->timing.v_total;
1095 		in_out_vrr->adjust.v_total_max = stream->timing.v_total;
1096 	} else if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE &&
1097 			refresh_range >= MIN_REFRESH_RANGE) {
1098 
1099 		in_out_vrr->adjust.v_total_min =
1100 			mod_freesync_calc_v_total_from_refresh(stream,
1101 				in_out_vrr->max_refresh_in_uhz);
1102 		in_out_vrr->adjust.v_total_max =
1103 			mod_freesync_calc_v_total_from_refresh(stream,
1104 				in_out_vrr->min_refresh_in_uhz);
1105 	} else if (in_out_vrr->state == VRR_STATE_ACTIVE_FIXED) {
1106 		in_out_vrr->fixed.target_refresh_in_uhz =
1107 				in_out_vrr->fixed_refresh_in_uhz;
1108 		if (in_out_vrr->fixed.ramping_active &&
1109 				in_out_vrr->fixed.fixed_active) {
1110 			/* Do not update vtotals if ramping is already active
1111 			 * in order to continue ramp from current refresh.
1112 			 */
1113 			in_out_vrr->fixed.fixed_active = true;
1114 		} else {
1115 			in_out_vrr->fixed.fixed_active = true;
1116 			in_out_vrr->adjust.v_total_min =
1117 				mod_freesync_calc_v_total_from_refresh(stream,
1118 					in_out_vrr->fixed.target_refresh_in_uhz);
1119 			in_out_vrr->adjust.v_total_max =
1120 				in_out_vrr->adjust.v_total_min;
1121 		}
1122 	} else {
1123 		in_out_vrr->state = VRR_STATE_INACTIVE;
1124 		in_out_vrr->adjust.v_total_min = stream->timing.v_total;
1125 		in_out_vrr->adjust.v_total_max = stream->timing.v_total;
1126 	}
1127 }
1128 
1129 void mod_freesync_handle_preflip(struct mod_freesync *mod_freesync,
1130 		const struct dc_plane_state *plane,
1131 		const struct dc_stream_state *stream,
1132 		unsigned int curr_time_stamp_in_us,
1133 		struct mod_vrr_params *in_out_vrr)
1134 {
1135 	struct core_freesync *core_freesync = NULL;
1136 	unsigned int last_render_time_in_us = 0;
1137 
1138 	if (mod_freesync == NULL)
1139 		return;
1140 
1141 	core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync);
1142 
1143 	if (in_out_vrr->supported &&
1144 			in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE) {
1145 
1146 		last_render_time_in_us = curr_time_stamp_in_us -
1147 				plane->time.prev_update_time_in_us;
1148 
1149 		if (in_out_vrr->btr.btr_enabled) {
1150 			apply_below_the_range(core_freesync,
1151 					stream,
1152 					last_render_time_in_us,
1153 					in_out_vrr);
1154 		} else {
1155 			apply_fixed_refresh(core_freesync,
1156 				stream,
1157 				last_render_time_in_us,
1158 				in_out_vrr);
1159 		}
1160 
1161 		determine_flip_interval_workaround_req(in_out_vrr,
1162 				curr_time_stamp_in_us);
1163 
1164 	}
1165 }
1166 
1167 void mod_freesync_handle_v_update(struct mod_freesync *mod_freesync,
1168 		const struct dc_stream_state *stream,
1169 		struct mod_vrr_params *in_out_vrr)
1170 {
1171 	struct core_freesync *core_freesync = NULL;
1172 	unsigned int cur_timestamp_in_us;
1173 	unsigned long long cur_tick;
1174 
1175 	if ((mod_freesync == NULL) || (stream == NULL) || (in_out_vrr == NULL))
1176 		return;
1177 
1178 	core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync);
1179 
1180 	if (in_out_vrr->supported == false)
1181 		return;
1182 
1183 	cur_tick = dm_get_timestamp(core_freesync->dc->ctx);
1184 	cur_timestamp_in_us = (unsigned int)
1185 			div_u64(dm_get_elapse_time_in_ns(core_freesync->dc->ctx, cur_tick, 0), 1000);
1186 
1187 	in_out_vrr->flip_interval.vsyncs_between_flip++;
1188 	in_out_vrr->flip_interval.v_update_timestamp_in_us = cur_timestamp_in_us;
1189 
1190 	if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE &&
1191 			(in_out_vrr->flip_interval.flip_interval_workaround_active ||
1192 			(!in_out_vrr->flip_interval.flip_interval_workaround_active &&
1193 			in_out_vrr->flip_interval.program_flip_interval_workaround))) {
1194 		// set freesync vmin vmax to nominal for workaround
1195 		in_out_vrr->adjust.v_total_min =
1196 			mod_freesync_calc_v_total_from_refresh(
1197 			stream, in_out_vrr->max_refresh_in_uhz);
1198 		in_out_vrr->adjust.v_total_max =
1199 				in_out_vrr->adjust.v_total_min;
1200 		in_out_vrr->flip_interval.program_flip_interval_workaround = false;
1201 		in_out_vrr->flip_interval.do_flip_interval_workaround_cleanup = true;
1202 		return;
1203 	}
1204 
1205 	if (in_out_vrr->state != VRR_STATE_ACTIVE_VARIABLE &&
1206 			in_out_vrr->flip_interval.do_flip_interval_workaround_cleanup) {
1207 		in_out_vrr->flip_interval.do_flip_interval_workaround_cleanup = false;
1208 		in_out_vrr->flip_interval.flip_interval_detect_counter = 0;
1209 		in_out_vrr->flip_interval.vsyncs_between_flip = 0;
1210 		in_out_vrr->flip_interval.vsync_to_flip_in_us = 0;
1211 	}
1212 
1213 	/* Below the Range Logic */
1214 
1215 	/* Only execute if in fullscreen mode */
1216 	if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE &&
1217 					in_out_vrr->btr.btr_active) {
1218 		/* TODO: pass in flag for Pre-DCE12 ASIC
1219 		 * in order for frame variable duration to take affect,
1220 		 * it needs to be done one VSYNC early, which is at
1221 		 * frameCounter == 1.
1222 		 * For DCE12 and newer updates to V_TOTAL_MIN/MAX
1223 		 * will take affect on current frame
1224 		 */
1225 		if (in_out_vrr->btr.frames_to_insert ==
1226 				in_out_vrr->btr.frame_counter) {
1227 			in_out_vrr->adjust.v_total_min =
1228 				calc_v_total_from_duration(stream,
1229 				in_out_vrr,
1230 				in_out_vrr->btr.inserted_duration_in_us);
1231 			in_out_vrr->adjust.v_total_max =
1232 				in_out_vrr->adjust.v_total_min;
1233 		}
1234 
1235 		if (in_out_vrr->btr.frame_counter > 0)
1236 			in_out_vrr->btr.frame_counter--;
1237 
1238 		/* Restore FreeSync */
1239 		if (in_out_vrr->btr.frame_counter == 0) {
1240 			in_out_vrr->adjust.v_total_min =
1241 				mod_freesync_calc_v_total_from_refresh(stream,
1242 				in_out_vrr->max_refresh_in_uhz);
1243 			in_out_vrr->adjust.v_total_max =
1244 				mod_freesync_calc_v_total_from_refresh(stream,
1245 				in_out_vrr->min_refresh_in_uhz);
1246 		}
1247 	}
1248 
1249 	/* If in fullscreen freesync mode or in video, do not program
1250 	 * static screen ramp values
1251 	 */
1252 	if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE)
1253 		in_out_vrr->fixed.ramping_active = false;
1254 
1255 	/* Gradual Static Screen Ramping Logic
1256 	 * Execute if ramp is active and user enabled freesync static screen
1257 	 */
1258 	if (in_out_vrr->state == VRR_STATE_ACTIVE_FIXED &&
1259 				in_out_vrr->fixed.ramping_active) {
1260 		update_v_total_for_static_ramp(
1261 				core_freesync, stream, in_out_vrr);
1262 	}
1263 }
1264 
1265 void mod_freesync_get_settings(struct mod_freesync *mod_freesync,
1266 		const struct mod_vrr_params *vrr,
1267 		unsigned int *v_total_min, unsigned int *v_total_max,
1268 		unsigned int *event_triggers,
1269 		unsigned int *window_min, unsigned int *window_max,
1270 		unsigned int *lfc_mid_point_in_us,
1271 		unsigned int *inserted_frames,
1272 		unsigned int *inserted_duration_in_us)
1273 {
1274 	if (mod_freesync == NULL)
1275 		return;
1276 
1277 	if (vrr->supported) {
1278 		*v_total_min = vrr->adjust.v_total_min;
1279 		*v_total_max = vrr->adjust.v_total_max;
1280 		*event_triggers = 0;
1281 		*lfc_mid_point_in_us = vrr->btr.mid_point_in_us;
1282 		*inserted_frames = vrr->btr.frames_to_insert;
1283 		*inserted_duration_in_us = vrr->btr.inserted_duration_in_us;
1284 	}
1285 }
1286 
1287 unsigned long long mod_freesync_calc_nominal_field_rate(
1288 			const struct dc_stream_state *stream)
1289 {
1290 	unsigned long long nominal_field_rate_in_uhz = 0;
1291 	unsigned int total = stream->timing.h_total * stream->timing.v_total;
1292 
1293 	/* Calculate nominal field rate for stream, rounded up to nearest integer */
1294 	nominal_field_rate_in_uhz = stream->timing.pix_clk_100hz;
1295 	nominal_field_rate_in_uhz *= 100000000ULL;
1296 
1297 	nominal_field_rate_in_uhz =	div_u64(nominal_field_rate_in_uhz, total);
1298 
1299 	return nominal_field_rate_in_uhz;
1300 }
1301 
1302 unsigned long long mod_freesync_calc_field_rate_from_timing(
1303 		unsigned int vtotal, unsigned int htotal, unsigned int pix_clk)
1304 {
1305 	unsigned long long field_rate_in_uhz = 0;
1306 	unsigned int total = htotal * vtotal;
1307 
1308 	/* Calculate nominal field rate for stream, rounded up to nearest integer */
1309 	field_rate_in_uhz = pix_clk;
1310 	field_rate_in_uhz *= 1000000ULL;
1311 
1312 	field_rate_in_uhz =	div_u64(field_rate_in_uhz, total);
1313 
1314 	return field_rate_in_uhz;
1315 }
1316 
1317 bool mod_freesync_get_freesync_enabled(struct mod_vrr_params *pVrr)
1318 {
1319 	return (pVrr->state != VRR_STATE_UNSUPPORTED) && (pVrr->state != VRR_STATE_DISABLED);
1320 }
1321 
1322 bool mod_freesync_is_valid_range(uint32_t min_refresh_cap_in_uhz,
1323 		uint32_t max_refresh_cap_in_uhz,
1324 		uint32_t nominal_field_rate_in_uhz)
1325 {
1326 
1327 	/* Typically nominal refresh calculated can have some fractional part.
1328 	 * Allow for some rounding error of actual video timing by taking floor
1329 	 * of caps and request. Round the nominal refresh rate.
1330 	 *
1331 	 * Dividing will convert everything to units in Hz although input
1332 	 * variable name is in uHz!
1333 	 *
1334 	 * Also note, this takes care of rounding error on the nominal refresh
1335 	 * so by rounding error we only expect it to be off by a small amount,
1336 	 * such as < 0.1 Hz. i.e. 143.9xxx or 144.1xxx.
1337 	 *
1338 	 * Example 1. Caps    Min = 40 Hz, Max = 144 Hz
1339 	 *            Request Min = 40 Hz, Max = 144 Hz
1340 	 *                    Nominal = 143.5x Hz rounded to 144 Hz
1341 	 *            This function should allow this as valid request
1342 	 *
1343 	 * Example 2. Caps    Min = 40 Hz, Max = 144 Hz
1344 	 *            Request Min = 40 Hz, Max = 144 Hz
1345 	 *                    Nominal = 144.4x Hz rounded to 144 Hz
1346 	 *            This function should allow this as valid request
1347 	 *
1348 	 * Example 3. Caps    Min = 40 Hz, Max = 144 Hz
1349 	 *            Request Min = 40 Hz, Max = 144 Hz
1350 	 *                    Nominal = 120.xx Hz rounded to 120 Hz
1351 	 *            This function should return NOT valid since the requested
1352 	 *            max is greater than current timing's nominal
1353 	 *
1354 	 * Example 4. Caps    Min = 40 Hz, Max = 120 Hz
1355 	 *            Request Min = 40 Hz, Max = 120 Hz
1356 	 *                    Nominal = 144.xx Hz rounded to 144 Hz
1357 	 *            This function should return NOT valid since the nominal
1358 	 *            is greater than the capability's max refresh
1359 	 */
1360 	nominal_field_rate_in_uhz =
1361 			div_u64(nominal_field_rate_in_uhz + 500000, 1000000);
1362 	min_refresh_cap_in_uhz /= 1000000;
1363 	max_refresh_cap_in_uhz /= 1000000;
1364 
1365 	/* Check nominal is within range */
1366 	if (nominal_field_rate_in_uhz > max_refresh_cap_in_uhz ||
1367 		nominal_field_rate_in_uhz < min_refresh_cap_in_uhz)
1368 		return false;
1369 
1370 	/* If nominal is less than max, limit the max allowed refresh rate */
1371 	if (nominal_field_rate_in_uhz < max_refresh_cap_in_uhz)
1372 		max_refresh_cap_in_uhz = nominal_field_rate_in_uhz;
1373 
1374 	/* Check min is within range */
1375 	if (min_refresh_cap_in_uhz > max_refresh_cap_in_uhz)
1376 		return false;
1377 
1378 	/* For variable range, check for at least 10 Hz range */
1379 	if (nominal_field_rate_in_uhz - min_refresh_cap_in_uhz < 10)
1380 		return false;
1381 
1382 	return true;
1383 }
1384