1 /* 2 * Copyright 2016 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 <linux/slab.h> 27 28 #include "dm_services.h" 29 #include "dc.h" 30 #include "mod_freesync.h" 31 #include "core_types.h" 32 33 #define MOD_FREESYNC_MAX_CONCURRENT_STREAMS 32 34 35 #define MIN_REFRESH_RANGE_IN_US 10000000 36 /* Refresh rate ramp at a fixed rate of 65 Hz/second */ 37 #define STATIC_SCREEN_RAMP_DELTA_REFRESH_RATE_PER_FRAME ((1000 / 60) * 65) 38 /* Number of elements in the render times cache array */ 39 #define RENDER_TIMES_MAX_COUNT 10 40 /* Threshold to exit BTR (to avoid frequent enter-exits at the lower limit) */ 41 #define BTR_EXIT_MARGIN 2000 42 /* Threshold to change BTR multiplier (to avoid frequent changes) */ 43 #define BTR_DRIFT_MARGIN 2000 44 /*Threshold to exit fixed refresh rate*/ 45 #define FIXED_REFRESH_EXIT_MARGIN_IN_HZ 4 46 /* Number of consecutive frames to check before entering/exiting fixed refresh*/ 47 #define FIXED_REFRESH_ENTER_FRAME_COUNT 5 48 #define FIXED_REFRESH_EXIT_FRAME_COUNT 5 49 50 struct core_freesync { 51 struct mod_freesync public; 52 struct dc *dc; 53 }; 54 55 #define MOD_FREESYNC_TO_CORE(mod_freesync)\ 56 container_of(mod_freesync, struct core_freesync, public) 57 58 struct mod_freesync *mod_freesync_create(struct dc *dc) 59 { 60 struct core_freesync *core_freesync = 61 kzalloc(sizeof(struct core_freesync), GFP_KERNEL); 62 63 if (core_freesync == NULL) 64 goto fail_alloc_context; 65 66 if (dc == NULL) 67 goto fail_construct; 68 69 core_freesync->dc = dc; 70 return &core_freesync->public; 71 72 fail_construct: 73 kfree(core_freesync); 74 75 fail_alloc_context: 76 return NULL; 77 } 78 79 void mod_freesync_destroy(struct mod_freesync *mod_freesync) 80 { 81 struct core_freesync *core_freesync = NULL; 82 if (mod_freesync == NULL) 83 return; 84 core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync); 85 kfree(core_freesync); 86 } 87 88 #if 0 /* unused currently */ 89 static unsigned int calc_refresh_in_uhz_from_duration( 90 unsigned int duration_in_ns) 91 { 92 unsigned int refresh_in_uhz = 93 ((unsigned int)(div64_u64((1000000000ULL * 1000000), 94 duration_in_ns))); 95 return refresh_in_uhz; 96 } 97 #endif 98 99 static unsigned int calc_duration_in_us_from_refresh_in_uhz( 100 unsigned int refresh_in_uhz) 101 { 102 unsigned int duration_in_us = 103 ((unsigned int)(div64_u64((1000000000ULL * 1000), 104 refresh_in_uhz))); 105 return duration_in_us; 106 } 107 108 static unsigned int calc_duration_in_us_from_v_total( 109 const struct dc_stream_state *stream, 110 const struct mod_vrr_params *in_vrr, 111 unsigned int v_total) 112 { 113 unsigned int duration_in_us = 114 (unsigned int)(div64_u64(((unsigned long long)(v_total) 115 * 10000) * stream->timing.h_total, 116 stream->timing.pix_clk_100hz)); 117 118 return duration_in_us; 119 } 120 121 static unsigned int calc_v_total_from_refresh( 122 const struct dc_stream_state *stream, 123 unsigned int refresh_in_uhz) 124 { 125 unsigned int v_total; 126 unsigned int frame_duration_in_ns; 127 128 frame_duration_in_ns = 129 ((unsigned int)(div64_u64((1000000000ULL * 1000000), 130 refresh_in_uhz))); 131 132 v_total = div64_u64(div64_u64(((unsigned long long)( 133 frame_duration_in_ns) * (stream->timing.pix_clk_100hz / 10)), 134 stream->timing.h_total), 1000000); 135 136 /* v_total cannot be less than nominal */ 137 if (v_total < stream->timing.v_total) { 138 ASSERT(v_total < stream->timing.v_total); 139 v_total = stream->timing.v_total; 140 } 141 142 return v_total; 143 } 144 145 static unsigned int calc_v_total_from_duration( 146 const struct dc_stream_state *stream, 147 const struct mod_vrr_params *vrr, 148 unsigned int duration_in_us) 149 { 150 unsigned int v_total = 0; 151 152 if (duration_in_us < vrr->min_duration_in_us) 153 duration_in_us = vrr->min_duration_in_us; 154 155 if (duration_in_us > vrr->max_duration_in_us) 156 duration_in_us = vrr->max_duration_in_us; 157 158 v_total = div64_u64(div64_u64(((unsigned long long)( 159 duration_in_us) * (stream->timing.pix_clk_100hz / 10)), 160 stream->timing.h_total), 1000); 161 162 /* v_total cannot be less than nominal */ 163 if (v_total < stream->timing.v_total) { 164 ASSERT(v_total < stream->timing.v_total); 165 v_total = stream->timing.v_total; 166 } 167 168 return v_total; 169 } 170 171 static void update_v_total_for_static_ramp( 172 struct core_freesync *core_freesync, 173 const struct dc_stream_state *stream, 174 struct mod_vrr_params *in_out_vrr) 175 { 176 unsigned int v_total = 0; 177 unsigned int current_duration_in_us = 178 calc_duration_in_us_from_v_total( 179 stream, in_out_vrr, 180 in_out_vrr->adjust.v_total_max); 181 unsigned int target_duration_in_us = 182 calc_duration_in_us_from_refresh_in_uhz( 183 in_out_vrr->fixed.target_refresh_in_uhz); 184 bool ramp_direction_is_up = (current_duration_in_us > 185 target_duration_in_us) ? true : false; 186 187 /* Calc ratio between new and current frame duration with 3 digit */ 188 unsigned int frame_duration_ratio = div64_u64(1000000, 189 (1000 + div64_u64(((unsigned long long)( 190 STATIC_SCREEN_RAMP_DELTA_REFRESH_RATE_PER_FRAME) * 191 current_duration_in_us), 192 1000000))); 193 194 /* Calculate delta between new and current frame duration in us */ 195 unsigned int frame_duration_delta = div64_u64(((unsigned long long)( 196 current_duration_in_us) * 197 (1000 - frame_duration_ratio)), 1000); 198 199 /* Adjust frame duration delta based on ratio between current and 200 * standard frame duration (frame duration at 60 Hz refresh rate). 201 */ 202 unsigned int ramp_rate_interpolated = div64_u64(((unsigned long long)( 203 frame_duration_delta) * current_duration_in_us), 16666); 204 205 /* Going to a higher refresh rate (lower frame duration) */ 206 if (ramp_direction_is_up) { 207 /* reduce frame duration */ 208 current_duration_in_us -= ramp_rate_interpolated; 209 210 /* adjust for frame duration below min */ 211 if (current_duration_in_us <= target_duration_in_us) { 212 in_out_vrr->fixed.ramping_active = false; 213 in_out_vrr->fixed.ramping_done = true; 214 current_duration_in_us = 215 calc_duration_in_us_from_refresh_in_uhz( 216 in_out_vrr->fixed.target_refresh_in_uhz); 217 } 218 /* Going to a lower refresh rate (larger frame duration) */ 219 } else { 220 /* increase frame duration */ 221 current_duration_in_us += ramp_rate_interpolated; 222 223 /* adjust for frame duration above max */ 224 if (current_duration_in_us >= target_duration_in_us) { 225 in_out_vrr->fixed.ramping_active = false; 226 in_out_vrr->fixed.ramping_done = true; 227 current_duration_in_us = 228 calc_duration_in_us_from_refresh_in_uhz( 229 in_out_vrr->fixed.target_refresh_in_uhz); 230 } 231 } 232 233 v_total = div64_u64(div64_u64(((unsigned long long)( 234 current_duration_in_us) * (stream->timing.pix_clk_100hz / 10)), 235 stream->timing.h_total), 1000); 236 237 /* v_total cannot be less than nominal */ 238 if (v_total < stream->timing.v_total) 239 v_total = stream->timing.v_total; 240 241 in_out_vrr->adjust.v_total_min = v_total; 242 in_out_vrr->adjust.v_total_max = v_total; 243 } 244 245 static void apply_below_the_range(struct core_freesync *core_freesync, 246 const struct dc_stream_state *stream, 247 unsigned int last_render_time_in_us, 248 struct mod_vrr_params *in_out_vrr) 249 { 250 unsigned int inserted_frame_duration_in_us = 0; 251 unsigned int mid_point_frames_ceil = 0; 252 unsigned int mid_point_frames_floor = 0; 253 unsigned int frame_time_in_us = 0; 254 unsigned int delta_from_mid_point_in_us_1 = 0xFFFFFFFF; 255 unsigned int delta_from_mid_point_in_us_2 = 0xFFFFFFFF; 256 unsigned int frames_to_insert = 0; 257 unsigned int min_frame_duration_in_ns = 0; 258 unsigned int max_render_time_in_us = in_out_vrr->max_duration_in_us; 259 unsigned int delta_from_mid_point_delta_in_us; 260 261 min_frame_duration_in_ns = ((unsigned int) (div64_u64( 262 (1000000000ULL * 1000000), 263 in_out_vrr->max_refresh_in_uhz))); 264 265 /* Program BTR */ 266 if (last_render_time_in_us + BTR_EXIT_MARGIN < max_render_time_in_us) { 267 /* Exit Below the Range */ 268 if (in_out_vrr->btr.btr_active) { 269 in_out_vrr->btr.frame_counter = 0; 270 in_out_vrr->btr.btr_active = false; 271 } 272 } else if (last_render_time_in_us > max_render_time_in_us) { 273 /* Enter Below the Range */ 274 in_out_vrr->btr.btr_active = true; 275 } 276 277 /* BTR set to "not active" so disengage */ 278 if (!in_out_vrr->btr.btr_active) { 279 in_out_vrr->btr.inserted_duration_in_us = 0; 280 in_out_vrr->btr.frames_to_insert = 0; 281 in_out_vrr->btr.frame_counter = 0; 282 283 /* Restore FreeSync */ 284 in_out_vrr->adjust.v_total_min = 285 calc_v_total_from_refresh(stream, 286 in_out_vrr->max_refresh_in_uhz); 287 in_out_vrr->adjust.v_total_max = 288 calc_v_total_from_refresh(stream, 289 in_out_vrr->min_refresh_in_uhz); 290 /* BTR set to "active" so engage */ 291 } else { 292 293 /* Calculate number of midPoint frames that could fit within 294 * the render time interval- take ceil of this value 295 */ 296 mid_point_frames_ceil = (last_render_time_in_us + 297 in_out_vrr->btr.mid_point_in_us - 1) / 298 in_out_vrr->btr.mid_point_in_us; 299 300 if (mid_point_frames_ceil > 0) { 301 frame_time_in_us = last_render_time_in_us / 302 mid_point_frames_ceil; 303 delta_from_mid_point_in_us_1 = 304 (in_out_vrr->btr.mid_point_in_us > 305 frame_time_in_us) ? 306 (in_out_vrr->btr.mid_point_in_us - frame_time_in_us) : 307 (frame_time_in_us - in_out_vrr->btr.mid_point_in_us); 308 } 309 310 /* Calculate number of midPoint frames that could fit within 311 * the render time interval- take floor of this value 312 */ 313 mid_point_frames_floor = last_render_time_in_us / 314 in_out_vrr->btr.mid_point_in_us; 315 316 if (mid_point_frames_floor > 0) { 317 318 frame_time_in_us = last_render_time_in_us / 319 mid_point_frames_floor; 320 delta_from_mid_point_in_us_2 = 321 (in_out_vrr->btr.mid_point_in_us > 322 frame_time_in_us) ? 323 (in_out_vrr->btr.mid_point_in_us - frame_time_in_us) : 324 (frame_time_in_us - in_out_vrr->btr.mid_point_in_us); 325 } 326 327 /* Choose number of frames to insert based on how close it 328 * can get to the mid point of the variable range. 329 */ 330 if (delta_from_mid_point_in_us_1 < delta_from_mid_point_in_us_2) { 331 frames_to_insert = mid_point_frames_ceil; 332 delta_from_mid_point_delta_in_us = delta_from_mid_point_in_us_2 - 333 delta_from_mid_point_in_us_1; 334 } else { 335 frames_to_insert = mid_point_frames_floor; 336 delta_from_mid_point_delta_in_us = delta_from_mid_point_in_us_1 - 337 delta_from_mid_point_in_us_2; 338 } 339 340 /* Prefer current frame multiplier when BTR is enabled unless it drifts 341 * too far from the midpoint 342 */ 343 if (in_out_vrr->btr.frames_to_insert != 0 && 344 delta_from_mid_point_delta_in_us < BTR_DRIFT_MARGIN) { 345 if (((last_render_time_in_us / in_out_vrr->btr.frames_to_insert) < 346 in_out_vrr->max_duration_in_us) && 347 ((last_render_time_in_us / in_out_vrr->btr.frames_to_insert) > 348 in_out_vrr->min_duration_in_us)) 349 frames_to_insert = in_out_vrr->btr.frames_to_insert; 350 } 351 352 /* Either we've calculated the number of frames to insert, 353 * or we need to insert min duration frames 354 */ 355 if (last_render_time_in_us / frames_to_insert < 356 in_out_vrr->min_duration_in_us){ 357 frames_to_insert -= (frames_to_insert > 1) ? 358 1 : 0; 359 } 360 361 if (frames_to_insert > 0) 362 inserted_frame_duration_in_us = last_render_time_in_us / 363 frames_to_insert; 364 365 if (inserted_frame_duration_in_us < in_out_vrr->min_duration_in_us) 366 inserted_frame_duration_in_us = in_out_vrr->min_duration_in_us; 367 368 /* Cache the calculated variables */ 369 in_out_vrr->btr.inserted_duration_in_us = 370 inserted_frame_duration_in_us; 371 in_out_vrr->btr.frames_to_insert = frames_to_insert; 372 in_out_vrr->btr.frame_counter = frames_to_insert; 373 } 374 } 375 376 static void apply_fixed_refresh(struct core_freesync *core_freesync, 377 const struct dc_stream_state *stream, 378 unsigned int last_render_time_in_us, 379 struct mod_vrr_params *in_out_vrr) 380 { 381 bool update = false; 382 unsigned int max_render_time_in_us = in_out_vrr->max_duration_in_us; 383 384 //Compute the exit refresh rate and exit frame duration 385 unsigned int exit_refresh_rate_in_milli_hz = ((1000000000/max_render_time_in_us) 386 + (1000*FIXED_REFRESH_EXIT_MARGIN_IN_HZ)); 387 unsigned int exit_frame_duration_in_us = 1000000000/exit_refresh_rate_in_milli_hz; 388 389 if (last_render_time_in_us < exit_frame_duration_in_us) { 390 /* Exit Fixed Refresh mode */ 391 if (in_out_vrr->fixed.fixed_active) { 392 in_out_vrr->fixed.frame_counter++; 393 394 if (in_out_vrr->fixed.frame_counter > 395 FIXED_REFRESH_EXIT_FRAME_COUNT) { 396 in_out_vrr->fixed.frame_counter = 0; 397 in_out_vrr->fixed.fixed_active = false; 398 in_out_vrr->fixed.target_refresh_in_uhz = 0; 399 update = true; 400 } 401 } 402 } else if (last_render_time_in_us > max_render_time_in_us) { 403 /* Enter Fixed Refresh mode */ 404 if (!in_out_vrr->fixed.fixed_active) { 405 in_out_vrr->fixed.frame_counter++; 406 407 if (in_out_vrr->fixed.frame_counter > 408 FIXED_REFRESH_ENTER_FRAME_COUNT) { 409 in_out_vrr->fixed.frame_counter = 0; 410 in_out_vrr->fixed.fixed_active = true; 411 in_out_vrr->fixed.target_refresh_in_uhz = 412 in_out_vrr->max_refresh_in_uhz; 413 update = true; 414 } 415 } 416 } 417 418 if (update) { 419 if (in_out_vrr->fixed.fixed_active) { 420 in_out_vrr->adjust.v_total_min = 421 calc_v_total_from_refresh( 422 stream, in_out_vrr->max_refresh_in_uhz); 423 in_out_vrr->adjust.v_total_max = 424 in_out_vrr->adjust.v_total_min; 425 } else { 426 in_out_vrr->adjust.v_total_min = 427 calc_v_total_from_refresh(stream, 428 in_out_vrr->max_refresh_in_uhz); 429 in_out_vrr->adjust.v_total_max = 430 calc_v_total_from_refresh(stream, 431 in_out_vrr->min_refresh_in_uhz); 432 } 433 } 434 } 435 436 static bool vrr_settings_require_update(struct core_freesync *core_freesync, 437 struct mod_freesync_config *in_config, 438 unsigned int min_refresh_in_uhz, 439 unsigned int max_refresh_in_uhz, 440 struct mod_vrr_params *in_vrr) 441 { 442 if (in_vrr->state != in_config->state) { 443 return true; 444 } else if (in_vrr->state == VRR_STATE_ACTIVE_FIXED && 445 in_vrr->fixed.target_refresh_in_uhz != 446 in_config->min_refresh_in_uhz) { 447 return true; 448 } else if (in_vrr->min_refresh_in_uhz != min_refresh_in_uhz) { 449 return true; 450 } else if (in_vrr->max_refresh_in_uhz != max_refresh_in_uhz) { 451 return true; 452 } 453 454 return false; 455 } 456 457 bool mod_freesync_get_vmin_vmax(struct mod_freesync *mod_freesync, 458 const struct dc_stream_state *stream, 459 unsigned int *vmin, 460 unsigned int *vmax) 461 { 462 *vmin = stream->adjust.v_total_min; 463 *vmax = stream->adjust.v_total_max; 464 465 return true; 466 } 467 468 bool mod_freesync_get_v_position(struct mod_freesync *mod_freesync, 469 struct dc_stream_state *stream, 470 unsigned int *nom_v_pos, 471 unsigned int *v_pos) 472 { 473 struct core_freesync *core_freesync = NULL; 474 struct crtc_position position; 475 476 if (mod_freesync == NULL) 477 return false; 478 479 core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync); 480 481 if (dc_stream_get_crtc_position(core_freesync->dc, &stream, 1, 482 &position.vertical_count, 483 &position.nominal_vcount)) { 484 485 *nom_v_pos = position.nominal_vcount; 486 *v_pos = position.vertical_count; 487 488 return true; 489 } 490 491 return false; 492 } 493 494 static void build_vrr_infopacket_data(const struct mod_vrr_params *vrr, 495 struct dc_info_packet *infopacket) 496 { 497 /* PB1 = 0x1A (24bit AMD IEEE OUI (0x00001A) - Byte 0) */ 498 infopacket->sb[1] = 0x1A; 499 500 /* PB2 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 1) */ 501 infopacket->sb[2] = 0x00; 502 503 /* PB3 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 2) */ 504 infopacket->sb[3] = 0x00; 505 506 /* PB4 = Reserved */ 507 508 /* PB5 = Reserved */ 509 510 /* PB6 = [Bits 7:3 = Reserved] */ 511 512 /* PB6 = [Bit 0 = FreeSync Supported] */ 513 if (vrr->state != VRR_STATE_UNSUPPORTED) 514 infopacket->sb[6] |= 0x01; 515 516 /* PB6 = [Bit 1 = FreeSync Enabled] */ 517 if (vrr->state != VRR_STATE_DISABLED && 518 vrr->state != VRR_STATE_UNSUPPORTED) 519 infopacket->sb[6] |= 0x02; 520 521 /* PB6 = [Bit 2 = FreeSync Active] */ 522 if (vrr->state == VRR_STATE_ACTIVE_VARIABLE || 523 vrr->state == VRR_STATE_ACTIVE_FIXED) 524 infopacket->sb[6] |= 0x04; 525 526 /* PB7 = FreeSync Minimum refresh rate (Hz) */ 527 infopacket->sb[7] = (unsigned char)(vrr->min_refresh_in_uhz / 1000000); 528 529 /* PB8 = FreeSync Maximum refresh rate (Hz) 530 * Note: We should never go above the field rate of the mode timing set. 531 */ 532 infopacket->sb[8] = (unsigned char)(vrr->max_refresh_in_uhz / 1000000); 533 534 535 //FreeSync HDR 536 infopacket->sb[9] = 0; 537 infopacket->sb[10] = 0; 538 } 539 540 static void build_vrr_infopacket_fs2_data(enum color_transfer_func app_tf, 541 struct dc_info_packet *infopacket) 542 { 543 if (app_tf != TRANSFER_FUNC_UNKNOWN) { 544 infopacket->valid = true; 545 546 infopacket->sb[6] |= 0x08; // PB6 = [Bit 3 = Native Color Active] 547 548 if (app_tf == TRANSFER_FUNC_GAMMA_22) { 549 infopacket->sb[9] |= 0x04; // PB6 = [Bit 2 = Gamma 2.2 EOTF Active] 550 } 551 } 552 } 553 554 static void build_vrr_infopacket_header_v1(enum signal_type signal, 555 struct dc_info_packet *infopacket, 556 unsigned int *payload_size) 557 { 558 if (dc_is_hdmi_signal(signal)) { 559 560 /* HEADER */ 561 562 /* HB0 = Packet Type = 0x83 (Source Product 563 * Descriptor InfoFrame) 564 */ 565 infopacket->hb0 = DC_HDMI_INFOFRAME_TYPE_SPD; 566 567 /* HB1 = Version = 0x01 */ 568 infopacket->hb1 = 0x01; 569 570 /* HB2 = [Bits 7:5 = 0] [Bits 4:0 = Length = 0x08] */ 571 infopacket->hb2 = 0x08; 572 573 *payload_size = 0x08; 574 575 } else if (dc_is_dp_signal(signal)) { 576 577 /* HEADER */ 578 579 /* HB0 = Secondary-data Packet ID = 0 - Only non-zero 580 * when used to associate audio related info packets 581 */ 582 infopacket->hb0 = 0x00; 583 584 /* HB1 = Packet Type = 0x83 (Source Product 585 * Descriptor InfoFrame) 586 */ 587 infopacket->hb1 = DC_HDMI_INFOFRAME_TYPE_SPD; 588 589 /* HB2 = [Bits 7:0 = Least significant eight bits - 590 * For INFOFRAME, the value must be 1Bh] 591 */ 592 infopacket->hb2 = 0x1B; 593 594 /* HB3 = [Bits 7:2 = INFOFRAME SDP Version Number = 0x1] 595 * [Bits 1:0 = Most significant two bits = 0x00] 596 */ 597 infopacket->hb3 = 0x04; 598 599 *payload_size = 0x1B; 600 } 601 } 602 603 static void build_vrr_infopacket_header_v2(enum signal_type signal, 604 struct dc_info_packet *infopacket, 605 unsigned int *payload_size) 606 { 607 if (dc_is_hdmi_signal(signal)) { 608 609 /* HEADER */ 610 611 /* HB0 = Packet Type = 0x83 (Source Product 612 * Descriptor InfoFrame) 613 */ 614 infopacket->hb0 = DC_HDMI_INFOFRAME_TYPE_SPD; 615 616 /* HB1 = Version = 0x02 */ 617 infopacket->hb1 = 0x02; 618 619 /* HB2 = [Bits 7:5 = 0] [Bits 4:0 = Length = 0x09] */ 620 infopacket->hb2 = 0x09; 621 622 *payload_size = 0x0A; 623 624 } else if (dc_is_dp_signal(signal)) { 625 626 /* HEADER */ 627 628 /* HB0 = Secondary-data Packet ID = 0 - Only non-zero 629 * when used to associate audio related info packets 630 */ 631 infopacket->hb0 = 0x00; 632 633 /* HB1 = Packet Type = 0x83 (Source Product 634 * Descriptor InfoFrame) 635 */ 636 infopacket->hb1 = DC_HDMI_INFOFRAME_TYPE_SPD; 637 638 /* HB2 = [Bits 7:0 = Least significant eight bits - 639 * For INFOFRAME, the value must be 1Bh] 640 */ 641 infopacket->hb2 = 0x1B; 642 643 /* HB3 = [Bits 7:2 = INFOFRAME SDP Version Number = 0x2] 644 * [Bits 1:0 = Most significant two bits = 0x00] 645 */ 646 infopacket->hb3 = 0x08; 647 648 *payload_size = 0x1B; 649 } 650 } 651 652 static void build_vrr_infopacket_checksum(unsigned int *payload_size, 653 struct dc_info_packet *infopacket) 654 { 655 /* Calculate checksum */ 656 unsigned int idx = 0; 657 unsigned char checksum = 0; 658 659 checksum += infopacket->hb0; 660 checksum += infopacket->hb1; 661 checksum += infopacket->hb2; 662 checksum += infopacket->hb3; 663 664 for (idx = 1; idx <= *payload_size; idx++) 665 checksum += infopacket->sb[idx]; 666 667 /* PB0 = Checksum (one byte complement) */ 668 infopacket->sb[0] = (unsigned char)(0x100 - checksum); 669 670 infopacket->valid = true; 671 } 672 673 static void build_vrr_infopacket_v1(enum signal_type signal, 674 const struct mod_vrr_params *vrr, 675 struct dc_info_packet *infopacket) 676 { 677 /* SPD info packet for FreeSync */ 678 unsigned int payload_size = 0; 679 680 build_vrr_infopacket_header_v1(signal, infopacket, &payload_size); 681 build_vrr_infopacket_data(vrr, infopacket); 682 build_vrr_infopacket_checksum(&payload_size, infopacket); 683 684 infopacket->valid = true; 685 } 686 687 static void build_vrr_infopacket_v2(enum signal_type signal, 688 const struct mod_vrr_params *vrr, 689 enum color_transfer_func app_tf, 690 struct dc_info_packet *infopacket) 691 { 692 unsigned int payload_size = 0; 693 694 build_vrr_infopacket_header_v2(signal, infopacket, &payload_size); 695 build_vrr_infopacket_data(vrr, infopacket); 696 697 build_vrr_infopacket_fs2_data(app_tf, infopacket); 698 699 build_vrr_infopacket_checksum(&payload_size, infopacket); 700 701 infopacket->valid = true; 702 } 703 704 void mod_freesync_build_vrr_infopacket(struct mod_freesync *mod_freesync, 705 const struct dc_stream_state *stream, 706 const struct mod_vrr_params *vrr, 707 enum vrr_packet_type packet_type, 708 enum color_transfer_func app_tf, 709 struct dc_info_packet *infopacket) 710 { 711 /* SPD info packet for FreeSync 712 * VTEM info packet for HdmiVRR 713 * Check if Freesync is supported. Return if false. If true, 714 * set the corresponding bit in the info packet 715 */ 716 if (!vrr->supported || (!vrr->send_info_frame)) 717 return; 718 719 switch (packet_type) { 720 case PACKET_TYPE_FS2: 721 build_vrr_infopacket_v2(stream->signal, vrr, app_tf, infopacket); 722 break; 723 case PACKET_TYPE_VRR: 724 case PACKET_TYPE_FS1: 725 default: 726 build_vrr_infopacket_v1(stream->signal, vrr, infopacket); 727 } 728 } 729 730 void mod_freesync_build_vrr_params(struct mod_freesync *mod_freesync, 731 const struct dc_stream_state *stream, 732 struct mod_freesync_config *in_config, 733 struct mod_vrr_params *in_out_vrr) 734 { 735 struct core_freesync *core_freesync = NULL; 736 unsigned long long nominal_field_rate_in_uhz = 0; 737 unsigned int refresh_range = 0; 738 unsigned long long min_refresh_in_uhz = 0; 739 unsigned long long max_refresh_in_uhz = 0; 740 741 if (mod_freesync == NULL) 742 return; 743 744 core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync); 745 746 /* Calculate nominal field rate for stream */ 747 nominal_field_rate_in_uhz = 748 mod_freesync_calc_nominal_field_rate(stream); 749 750 /* Rounded to the nearest Hz */ 751 nominal_field_rate_in_uhz = 1000000ULL * 752 div_u64(nominal_field_rate_in_uhz + 500000, 1000000); 753 754 min_refresh_in_uhz = in_config->min_refresh_in_uhz; 755 max_refresh_in_uhz = in_config->max_refresh_in_uhz; 756 757 // Don't allow min > max 758 if (min_refresh_in_uhz > max_refresh_in_uhz) 759 min_refresh_in_uhz = max_refresh_in_uhz; 760 761 // Full range may be larger than current video timing, so cap at nominal 762 if (max_refresh_in_uhz > nominal_field_rate_in_uhz) 763 max_refresh_in_uhz = nominal_field_rate_in_uhz; 764 765 // Full range may be larger than current video timing, so cap at nominal 766 if (min_refresh_in_uhz > nominal_field_rate_in_uhz) 767 min_refresh_in_uhz = nominal_field_rate_in_uhz; 768 769 if (!vrr_settings_require_update(core_freesync, 770 in_config, (unsigned int)min_refresh_in_uhz, (unsigned int)max_refresh_in_uhz, 771 in_out_vrr)) 772 return; 773 774 in_out_vrr->state = in_config->state; 775 in_out_vrr->send_info_frame = in_config->vsif_supported; 776 777 if (in_config->state == VRR_STATE_UNSUPPORTED) { 778 in_out_vrr->state = VRR_STATE_UNSUPPORTED; 779 in_out_vrr->supported = false; 780 in_out_vrr->adjust.v_total_min = stream->timing.v_total; 781 in_out_vrr->adjust.v_total_max = stream->timing.v_total; 782 783 return; 784 785 } else { 786 in_out_vrr->min_refresh_in_uhz = (unsigned int)min_refresh_in_uhz; 787 in_out_vrr->max_duration_in_us = 788 calc_duration_in_us_from_refresh_in_uhz( 789 (unsigned int)min_refresh_in_uhz); 790 791 in_out_vrr->max_refresh_in_uhz = (unsigned int)max_refresh_in_uhz; 792 in_out_vrr->min_duration_in_us = 793 calc_duration_in_us_from_refresh_in_uhz( 794 (unsigned int)max_refresh_in_uhz); 795 796 refresh_range = in_out_vrr->max_refresh_in_uhz - 797 in_out_vrr->min_refresh_in_uhz; 798 799 in_out_vrr->supported = true; 800 } 801 802 in_out_vrr->fixed.ramping_active = in_config->ramping; 803 804 in_out_vrr->btr.btr_enabled = in_config->btr; 805 806 if (in_out_vrr->max_refresh_in_uhz < 807 2 * in_out_vrr->min_refresh_in_uhz) 808 in_out_vrr->btr.btr_enabled = false; 809 810 in_out_vrr->btr.btr_active = false; 811 in_out_vrr->btr.inserted_duration_in_us = 0; 812 in_out_vrr->btr.frames_to_insert = 0; 813 in_out_vrr->btr.frame_counter = 0; 814 in_out_vrr->btr.mid_point_in_us = 815 (in_out_vrr->min_duration_in_us + 816 in_out_vrr->max_duration_in_us) / 2; 817 818 if (in_out_vrr->state == VRR_STATE_UNSUPPORTED) { 819 in_out_vrr->adjust.v_total_min = stream->timing.v_total; 820 in_out_vrr->adjust.v_total_max = stream->timing.v_total; 821 } else if (in_out_vrr->state == VRR_STATE_DISABLED) { 822 in_out_vrr->adjust.v_total_min = stream->timing.v_total; 823 in_out_vrr->adjust.v_total_max = stream->timing.v_total; 824 } else if (in_out_vrr->state == VRR_STATE_INACTIVE) { 825 in_out_vrr->adjust.v_total_min = stream->timing.v_total; 826 in_out_vrr->adjust.v_total_max = stream->timing.v_total; 827 } else if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE && 828 refresh_range >= MIN_REFRESH_RANGE_IN_US) { 829 in_out_vrr->adjust.v_total_min = 830 calc_v_total_from_refresh(stream, 831 in_out_vrr->max_refresh_in_uhz); 832 in_out_vrr->adjust.v_total_max = 833 calc_v_total_from_refresh(stream, 834 in_out_vrr->min_refresh_in_uhz); 835 } else if (in_out_vrr->state == VRR_STATE_ACTIVE_FIXED) { 836 in_out_vrr->fixed.target_refresh_in_uhz = 837 in_out_vrr->min_refresh_in_uhz; 838 if (in_out_vrr->fixed.ramping_active && 839 in_out_vrr->fixed.fixed_active) { 840 /* Do not update vtotals if ramping is already active 841 * in order to continue ramp from current refresh. 842 */ 843 in_out_vrr->fixed.fixed_active = true; 844 } else { 845 in_out_vrr->fixed.fixed_active = true; 846 in_out_vrr->adjust.v_total_min = 847 calc_v_total_from_refresh(stream, 848 in_out_vrr->fixed.target_refresh_in_uhz); 849 in_out_vrr->adjust.v_total_max = 850 in_out_vrr->adjust.v_total_min; 851 } 852 } else { 853 in_out_vrr->state = VRR_STATE_INACTIVE; 854 in_out_vrr->adjust.v_total_min = stream->timing.v_total; 855 in_out_vrr->adjust.v_total_max = stream->timing.v_total; 856 } 857 } 858 859 void mod_freesync_handle_preflip(struct mod_freesync *mod_freesync, 860 const struct dc_plane_state *plane, 861 const struct dc_stream_state *stream, 862 unsigned int curr_time_stamp_in_us, 863 struct mod_vrr_params *in_out_vrr) 864 { 865 struct core_freesync *core_freesync = NULL; 866 unsigned int last_render_time_in_us = 0; 867 unsigned int average_render_time_in_us = 0; 868 869 if (mod_freesync == NULL) 870 return; 871 872 core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync); 873 874 if (in_out_vrr->supported && 875 in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE) { 876 unsigned int i = 0; 877 unsigned int oldest_index = plane->time.index + 1; 878 879 if (oldest_index >= DC_PLANE_UPDATE_TIMES_MAX) 880 oldest_index = 0; 881 882 last_render_time_in_us = curr_time_stamp_in_us - 883 plane->time.prev_update_time_in_us; 884 885 // Sum off all entries except oldest one 886 for (i = 0; i < DC_PLANE_UPDATE_TIMES_MAX; i++) { 887 average_render_time_in_us += 888 plane->time.time_elapsed_in_us[i]; 889 } 890 average_render_time_in_us -= 891 plane->time.time_elapsed_in_us[oldest_index]; 892 893 // Add render time for current flip 894 average_render_time_in_us += last_render_time_in_us; 895 average_render_time_in_us /= DC_PLANE_UPDATE_TIMES_MAX; 896 897 if (in_out_vrr->btr.btr_enabled) { 898 apply_below_the_range(core_freesync, 899 stream, 900 last_render_time_in_us, 901 in_out_vrr); 902 } else { 903 apply_fixed_refresh(core_freesync, 904 stream, 905 last_render_time_in_us, 906 in_out_vrr); 907 } 908 909 } 910 } 911 912 void mod_freesync_handle_v_update(struct mod_freesync *mod_freesync, 913 const struct dc_stream_state *stream, 914 struct mod_vrr_params *in_out_vrr) 915 { 916 struct core_freesync *core_freesync = NULL; 917 918 if ((mod_freesync == NULL) || (stream == NULL) || (in_out_vrr == NULL)) 919 return; 920 921 core_freesync = MOD_FREESYNC_TO_CORE(mod_freesync); 922 923 if (in_out_vrr->supported == false) 924 return; 925 926 /* Below the Range Logic */ 927 928 /* Only execute if in fullscreen mode */ 929 if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE && 930 in_out_vrr->btr.btr_active) { 931 /* TODO: pass in flag for Pre-DCE12 ASIC 932 * in order for frame variable duration to take affect, 933 * it needs to be done one VSYNC early, which is at 934 * frameCounter == 1. 935 * For DCE12 and newer updates to V_TOTAL_MIN/MAX 936 * will take affect on current frame 937 */ 938 if (in_out_vrr->btr.frames_to_insert == 939 in_out_vrr->btr.frame_counter) { 940 in_out_vrr->adjust.v_total_min = 941 calc_v_total_from_duration(stream, 942 in_out_vrr, 943 in_out_vrr->btr.inserted_duration_in_us); 944 in_out_vrr->adjust.v_total_max = 945 in_out_vrr->adjust.v_total_min; 946 } 947 948 if (in_out_vrr->btr.frame_counter > 0) 949 in_out_vrr->btr.frame_counter--; 950 951 /* Restore FreeSync */ 952 if (in_out_vrr->btr.frame_counter == 0) { 953 in_out_vrr->adjust.v_total_min = 954 calc_v_total_from_refresh(stream, 955 in_out_vrr->max_refresh_in_uhz); 956 in_out_vrr->adjust.v_total_max = 957 calc_v_total_from_refresh(stream, 958 in_out_vrr->min_refresh_in_uhz); 959 } 960 } 961 962 /* If in fullscreen freesync mode or in video, do not program 963 * static screen ramp values 964 */ 965 if (in_out_vrr->state == VRR_STATE_ACTIVE_VARIABLE) 966 in_out_vrr->fixed.ramping_active = false; 967 968 /* Gradual Static Screen Ramping Logic */ 969 /* Execute if ramp is active and user enabled freesync static screen*/ 970 if (in_out_vrr->state == VRR_STATE_ACTIVE_FIXED && 971 in_out_vrr->fixed.ramping_active) { 972 update_v_total_for_static_ramp( 973 core_freesync, stream, in_out_vrr); 974 } 975 } 976 977 void mod_freesync_get_settings(struct mod_freesync *mod_freesync, 978 const struct mod_vrr_params *vrr, 979 unsigned int *v_total_min, unsigned int *v_total_max, 980 unsigned int *event_triggers, 981 unsigned int *window_min, unsigned int *window_max, 982 unsigned int *lfc_mid_point_in_us, 983 unsigned int *inserted_frames, 984 unsigned int *inserted_duration_in_us) 985 { 986 if (mod_freesync == NULL) 987 return; 988 989 if (vrr->supported) { 990 *v_total_min = vrr->adjust.v_total_min; 991 *v_total_max = vrr->adjust.v_total_max; 992 *event_triggers = 0; 993 *lfc_mid_point_in_us = vrr->btr.mid_point_in_us; 994 *inserted_frames = vrr->btr.frames_to_insert; 995 *inserted_duration_in_us = vrr->btr.inserted_duration_in_us; 996 } 997 } 998 999 unsigned long long mod_freesync_calc_nominal_field_rate( 1000 const struct dc_stream_state *stream) 1001 { 1002 unsigned long long nominal_field_rate_in_uhz = 0; 1003 unsigned int total = stream->timing.h_total * stream->timing.v_total; 1004 1005 /* Calculate nominal field rate for stream, rounded up to nearest integer */ 1006 nominal_field_rate_in_uhz = stream->timing.pix_clk_100hz / 10; 1007 nominal_field_rate_in_uhz *= 1000ULL * 1000ULL * 1000ULL; 1008 1009 nominal_field_rate_in_uhz = div_u64(nominal_field_rate_in_uhz, total); 1010 1011 return nominal_field_rate_in_uhz; 1012 } 1013 1014 bool mod_freesync_is_valid_range(struct mod_freesync *mod_freesync, 1015 const struct dc_stream_state *stream, 1016 uint32_t min_refresh_cap_in_uhz, 1017 uint32_t max_refresh_cap_in_uhz, 1018 uint32_t min_refresh_request_in_uhz, 1019 uint32_t max_refresh_request_in_uhz) 1020 { 1021 /* Calculate nominal field rate for stream */ 1022 unsigned long long nominal_field_rate_in_uhz = 1023 mod_freesync_calc_nominal_field_rate(stream); 1024 1025 /* Typically nominal refresh calculated can have some fractional part. 1026 * Allow for some rounding error of actual video timing by taking floor 1027 * of caps and request. Round the nominal refresh rate. 1028 * 1029 * Dividing will convert everything to units in Hz although input 1030 * variable name is in uHz! 1031 * 1032 * Also note, this takes care of rounding error on the nominal refresh 1033 * so by rounding error we only expect it to be off by a small amount, 1034 * such as < 0.1 Hz. i.e. 143.9xxx or 144.1xxx. 1035 * 1036 * Example 1. Caps Min = 40 Hz, Max = 144 Hz 1037 * Request Min = 40 Hz, Max = 144 Hz 1038 * Nominal = 143.5x Hz rounded to 144 Hz 1039 * This function should allow this as valid request 1040 * 1041 * Example 2. Caps Min = 40 Hz, Max = 144 Hz 1042 * Request Min = 40 Hz, Max = 144 Hz 1043 * Nominal = 144.4x Hz rounded to 144 Hz 1044 * This function should allow this as valid request 1045 * 1046 * Example 3. Caps Min = 40 Hz, Max = 144 Hz 1047 * Request Min = 40 Hz, Max = 144 Hz 1048 * Nominal = 120.xx Hz rounded to 120 Hz 1049 * This function should return NOT valid since the requested 1050 * max is greater than current timing's nominal 1051 * 1052 * Example 4. Caps Min = 40 Hz, Max = 120 Hz 1053 * Request Min = 40 Hz, Max = 120 Hz 1054 * Nominal = 144.xx Hz rounded to 144 Hz 1055 * This function should return NOT valid since the nominal 1056 * is greater than the capability's max refresh 1057 */ 1058 nominal_field_rate_in_uhz = 1059 div_u64(nominal_field_rate_in_uhz + 500000, 1000000); 1060 min_refresh_cap_in_uhz /= 1000000; 1061 max_refresh_cap_in_uhz /= 1000000; 1062 min_refresh_request_in_uhz /= 1000000; 1063 max_refresh_request_in_uhz /= 1000000; 1064 1065 // Check nominal is within range 1066 if (nominal_field_rate_in_uhz > max_refresh_cap_in_uhz || 1067 nominal_field_rate_in_uhz < min_refresh_cap_in_uhz) 1068 return false; 1069 1070 // If nominal is less than max, limit the max allowed refresh rate 1071 if (nominal_field_rate_in_uhz < max_refresh_cap_in_uhz) 1072 max_refresh_cap_in_uhz = nominal_field_rate_in_uhz; 1073 1074 // Don't allow min > max 1075 if (min_refresh_request_in_uhz > max_refresh_request_in_uhz) 1076 return false; 1077 1078 // Check min is within range 1079 if (min_refresh_request_in_uhz > max_refresh_cap_in_uhz || 1080 min_refresh_request_in_uhz < min_refresh_cap_in_uhz) 1081 return false; 1082 1083 // Check max is within range 1084 if (max_refresh_request_in_uhz > max_refresh_cap_in_uhz || 1085 max_refresh_request_in_uhz < min_refresh_cap_in_uhz) 1086 return false; 1087 1088 // For variable range, check for at least 10 Hz range 1089 if ((max_refresh_request_in_uhz != min_refresh_request_in_uhz) && 1090 (max_refresh_request_in_uhz - min_refresh_request_in_uhz < 10)) 1091 return false; 1092 1093 return true; 1094 } 1095 1096