1 /* 2 * Copyright 2015 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 /* The caprices of the preprocessor require that this be declared right here */ 27 #define CREATE_TRACE_POINTS 28 29 #include "dm_services_types.h" 30 #include "dc.h" 31 #include "link_enc_cfg.h" 32 #include "dc/inc/core_types.h" 33 #include "dal_asic_id.h" 34 #include "dmub/dmub_srv.h" 35 #include "dc/inc/hw/dmcu.h" 36 #include "dc/inc/hw/abm.h" 37 #include "dc/dc_dmub_srv.h" 38 #include "dc/dc_edid_parser.h" 39 #include "dc/dc_stat.h" 40 #include "amdgpu_dm_trace.h" 41 #include "dpcd_defs.h" 42 #include "link/protocols/link_dpcd.h" 43 #include "link_service_types.h" 44 #include "link/protocols/link_dp_capability.h" 45 #include "link/protocols/link_ddc.h" 46 47 #include "vid.h" 48 #include "amdgpu.h" 49 #include "amdgpu_display.h" 50 #include "amdgpu_ucode.h" 51 #include "atom.h" 52 #include "amdgpu_dm.h" 53 #include "amdgpu_dm_plane.h" 54 #include "amdgpu_dm_crtc.h" 55 #include "amdgpu_dm_hdcp.h" 56 #include <drm/display/drm_hdcp_helper.h> 57 #include "amdgpu_pm.h" 58 #include "amdgpu_atombios.h" 59 60 #include "amd_shared.h" 61 #include "amdgpu_dm_irq.h" 62 #include "dm_helpers.h" 63 #include "amdgpu_dm_mst_types.h" 64 #if defined(CONFIG_DEBUG_FS) 65 #include "amdgpu_dm_debugfs.h" 66 #endif 67 #include "amdgpu_dm_psr.h" 68 69 #include "ivsrcid/ivsrcid_vislands30.h" 70 71 #include <linux/backlight.h> 72 #include <linux/module.h> 73 #include <linux/moduleparam.h> 74 #include <linux/types.h> 75 #include <linux/pm_runtime.h> 76 #include <linux/pci.h> 77 #include <linux/firmware.h> 78 #include <linux/component.h> 79 #include <linux/dmi.h> 80 81 #include <drm/display/drm_dp_mst_helper.h> 82 #include <drm/display/drm_hdmi_helper.h> 83 #include <drm/drm_atomic.h> 84 #include <drm/drm_atomic_uapi.h> 85 #include <drm/drm_atomic_helper.h> 86 #include <drm/drm_blend.h> 87 #include <drm/drm_fourcc.h> 88 #include <drm/drm_edid.h> 89 #include <drm/drm_vblank.h> 90 #include <drm/drm_audio_component.h> 91 #include <drm/drm_gem_atomic_helper.h> 92 #include <drm/drm_plane_helper.h> 93 94 #include <acpi/video.h> 95 96 #include "ivsrcid/dcn/irqsrcs_dcn_1_0.h" 97 98 #include "dcn/dcn_1_0_offset.h" 99 #include "dcn/dcn_1_0_sh_mask.h" 100 #include "soc15_hw_ip.h" 101 #include "soc15_common.h" 102 #include "vega10_ip_offset.h" 103 104 #include "gc/gc_11_0_0_offset.h" 105 #include "gc/gc_11_0_0_sh_mask.h" 106 107 #include "modules/inc/mod_freesync.h" 108 #include "modules/power/power_helpers.h" 109 110 #define FIRMWARE_RENOIR_DMUB "amdgpu/renoir_dmcub.bin" 111 MODULE_FIRMWARE(FIRMWARE_RENOIR_DMUB); 112 #define FIRMWARE_SIENNA_CICHLID_DMUB "amdgpu/sienna_cichlid_dmcub.bin" 113 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID_DMUB); 114 #define FIRMWARE_NAVY_FLOUNDER_DMUB "amdgpu/navy_flounder_dmcub.bin" 115 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER_DMUB); 116 #define FIRMWARE_GREEN_SARDINE_DMUB "amdgpu/green_sardine_dmcub.bin" 117 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE_DMUB); 118 #define FIRMWARE_VANGOGH_DMUB "amdgpu/vangogh_dmcub.bin" 119 MODULE_FIRMWARE(FIRMWARE_VANGOGH_DMUB); 120 #define FIRMWARE_DIMGREY_CAVEFISH_DMUB "amdgpu/dimgrey_cavefish_dmcub.bin" 121 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB); 122 #define FIRMWARE_BEIGE_GOBY_DMUB "amdgpu/beige_goby_dmcub.bin" 123 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB); 124 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin" 125 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB); 126 #define FIRMWARE_DCN_314_DMUB "amdgpu/dcn_3_1_4_dmcub.bin" 127 MODULE_FIRMWARE(FIRMWARE_DCN_314_DMUB); 128 #define FIRMWARE_DCN_315_DMUB "amdgpu/dcn_3_1_5_dmcub.bin" 129 MODULE_FIRMWARE(FIRMWARE_DCN_315_DMUB); 130 #define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin" 131 MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB); 132 133 #define FIRMWARE_DCN_V3_2_0_DMCUB "amdgpu/dcn_3_2_0_dmcub.bin" 134 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_0_DMCUB); 135 #define FIRMWARE_DCN_V3_2_1_DMCUB "amdgpu/dcn_3_2_1_dmcub.bin" 136 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_1_DMCUB); 137 138 #define FIRMWARE_RAVEN_DMCU "amdgpu/raven_dmcu.bin" 139 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU); 140 141 #define FIRMWARE_NAVI12_DMCU "amdgpu/navi12_dmcu.bin" 142 MODULE_FIRMWARE(FIRMWARE_NAVI12_DMCU); 143 144 /* Number of bytes in PSP header for firmware. */ 145 #define PSP_HEADER_BYTES 0x100 146 147 /* Number of bytes in PSP footer for firmware. */ 148 #define PSP_FOOTER_BYTES 0x100 149 150 /** 151 * DOC: overview 152 * 153 * The AMDgpu display manager, **amdgpu_dm** (or even simpler, 154 * **dm**) sits between DRM and DC. It acts as a liaison, converting DRM 155 * requests into DC requests, and DC responses into DRM responses. 156 * 157 * The root control structure is &struct amdgpu_display_manager. 158 */ 159 160 /* basic init/fini API */ 161 static int amdgpu_dm_init(struct amdgpu_device *adev); 162 static void amdgpu_dm_fini(struct amdgpu_device *adev); 163 static bool is_freesync_video_mode(const struct drm_display_mode *mode, struct amdgpu_dm_connector *aconnector); 164 165 static enum drm_mode_subconnector get_subconnector_type(struct dc_link *link) 166 { 167 switch (link->dpcd_caps.dongle_type) { 168 case DISPLAY_DONGLE_NONE: 169 return DRM_MODE_SUBCONNECTOR_Native; 170 case DISPLAY_DONGLE_DP_VGA_CONVERTER: 171 return DRM_MODE_SUBCONNECTOR_VGA; 172 case DISPLAY_DONGLE_DP_DVI_CONVERTER: 173 case DISPLAY_DONGLE_DP_DVI_DONGLE: 174 return DRM_MODE_SUBCONNECTOR_DVID; 175 case DISPLAY_DONGLE_DP_HDMI_CONVERTER: 176 case DISPLAY_DONGLE_DP_HDMI_DONGLE: 177 return DRM_MODE_SUBCONNECTOR_HDMIA; 178 case DISPLAY_DONGLE_DP_HDMI_MISMATCHED_DONGLE: 179 default: 180 return DRM_MODE_SUBCONNECTOR_Unknown; 181 } 182 } 183 184 static void update_subconnector_property(struct amdgpu_dm_connector *aconnector) 185 { 186 struct dc_link *link = aconnector->dc_link; 187 struct drm_connector *connector = &aconnector->base; 188 enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown; 189 190 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) 191 return; 192 193 if (aconnector->dc_sink) 194 subconnector = get_subconnector_type(link); 195 196 drm_object_property_set_value(&connector->base, 197 connector->dev->mode_config.dp_subconnector_property, 198 subconnector); 199 } 200 201 /* 202 * initializes drm_device display related structures, based on the information 203 * provided by DAL. The drm strcutures are: drm_crtc, drm_connector, 204 * drm_encoder, drm_mode_config 205 * 206 * Returns 0 on success 207 */ 208 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev); 209 /* removes and deallocates the drm structures, created by the above function */ 210 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm); 211 212 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm, 213 struct amdgpu_dm_connector *amdgpu_dm_connector, 214 u32 link_index, 215 struct amdgpu_encoder *amdgpu_encoder); 216 static int amdgpu_dm_encoder_init(struct drm_device *dev, 217 struct amdgpu_encoder *aencoder, 218 uint32_t link_index); 219 220 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector); 221 222 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state); 223 224 static int amdgpu_dm_atomic_check(struct drm_device *dev, 225 struct drm_atomic_state *state); 226 227 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector); 228 static void handle_hpd_rx_irq(void *param); 229 230 static bool 231 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state, 232 struct drm_crtc_state *new_crtc_state); 233 /* 234 * dm_vblank_get_counter 235 * 236 * @brief 237 * Get counter for number of vertical blanks 238 * 239 * @param 240 * struct amdgpu_device *adev - [in] desired amdgpu device 241 * int disp_idx - [in] which CRTC to get the counter from 242 * 243 * @return 244 * Counter for vertical blanks 245 */ 246 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc) 247 { 248 if (crtc >= adev->mode_info.num_crtc) 249 return 0; 250 else { 251 struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc]; 252 253 if (acrtc->dm_irq_params.stream == NULL) { 254 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n", 255 crtc); 256 return 0; 257 } 258 259 return dc_stream_get_vblank_counter(acrtc->dm_irq_params.stream); 260 } 261 } 262 263 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc, 264 u32 *vbl, u32 *position) 265 { 266 u32 v_blank_start, v_blank_end, h_position, v_position; 267 268 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc)) 269 return -EINVAL; 270 else { 271 struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc]; 272 273 if (acrtc->dm_irq_params.stream == NULL) { 274 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n", 275 crtc); 276 return 0; 277 } 278 279 /* 280 * TODO rework base driver to use values directly. 281 * for now parse it back into reg-format 282 */ 283 dc_stream_get_scanoutpos(acrtc->dm_irq_params.stream, 284 &v_blank_start, 285 &v_blank_end, 286 &h_position, 287 &v_position); 288 289 *position = v_position | (h_position << 16); 290 *vbl = v_blank_start | (v_blank_end << 16); 291 } 292 293 return 0; 294 } 295 296 static bool dm_is_idle(void *handle) 297 { 298 /* XXX todo */ 299 return true; 300 } 301 302 static int dm_wait_for_idle(void *handle) 303 { 304 /* XXX todo */ 305 return 0; 306 } 307 308 static bool dm_check_soft_reset(void *handle) 309 { 310 return false; 311 } 312 313 static int dm_soft_reset(void *handle) 314 { 315 /* XXX todo */ 316 return 0; 317 } 318 319 static struct amdgpu_crtc * 320 get_crtc_by_otg_inst(struct amdgpu_device *adev, 321 int otg_inst) 322 { 323 struct drm_device *dev = adev_to_drm(adev); 324 struct drm_crtc *crtc; 325 struct amdgpu_crtc *amdgpu_crtc; 326 327 if (WARN_ON(otg_inst == -1)) 328 return adev->mode_info.crtcs[0]; 329 330 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 331 amdgpu_crtc = to_amdgpu_crtc(crtc); 332 333 if (amdgpu_crtc->otg_inst == otg_inst) 334 return amdgpu_crtc; 335 } 336 337 return NULL; 338 } 339 340 static inline bool is_dc_timing_adjust_needed(struct dm_crtc_state *old_state, 341 struct dm_crtc_state *new_state) 342 { 343 if (new_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) 344 return true; 345 else if (amdgpu_dm_crtc_vrr_active(old_state) != amdgpu_dm_crtc_vrr_active(new_state)) 346 return true; 347 else 348 return false; 349 } 350 351 static inline void reverse_planes_order(struct dc_surface_update *array_of_surface_update, 352 int planes_count) 353 { 354 int i, j; 355 356 for (i = 0, j = planes_count - 1; i < j; i++, j--) 357 swap(array_of_surface_update[i], array_of_surface_update[j]); 358 } 359 360 /** 361 * update_planes_and_stream_adapter() - Send planes to be updated in DC 362 * 363 * DC has a generic way to update planes and stream via 364 * dc_update_planes_and_stream function; however, DM might need some 365 * adjustments and preparation before calling it. This function is a wrapper 366 * for the dc_update_planes_and_stream that does any required configuration 367 * before passing control to DC. 368 */ 369 static inline bool update_planes_and_stream_adapter(struct dc *dc, 370 int update_type, 371 int planes_count, 372 struct dc_stream_state *stream, 373 struct dc_stream_update *stream_update, 374 struct dc_surface_update *array_of_surface_update) 375 { 376 reverse_planes_order(array_of_surface_update, planes_count); 377 378 /* 379 * Previous frame finished and HW is ready for optimization. 380 */ 381 if (update_type == UPDATE_TYPE_FAST) 382 dc_post_update_surfaces_to_stream(dc); 383 384 return dc_update_planes_and_stream(dc, 385 array_of_surface_update, 386 planes_count, 387 stream, 388 stream_update); 389 } 390 391 /** 392 * dm_pflip_high_irq() - Handle pageflip interrupt 393 * @interrupt_params: ignored 394 * 395 * Handles the pageflip interrupt by notifying all interested parties 396 * that the pageflip has been completed. 397 */ 398 static void dm_pflip_high_irq(void *interrupt_params) 399 { 400 struct amdgpu_crtc *amdgpu_crtc; 401 struct common_irq_params *irq_params = interrupt_params; 402 struct amdgpu_device *adev = irq_params->adev; 403 unsigned long flags; 404 struct drm_pending_vblank_event *e; 405 u32 vpos, hpos, v_blank_start, v_blank_end; 406 bool vrr_active; 407 408 amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP); 409 410 /* IRQ could occur when in initial stage */ 411 /* TODO work and BO cleanup */ 412 if (amdgpu_crtc == NULL) { 413 DC_LOG_PFLIP("CRTC is null, returning.\n"); 414 return; 415 } 416 417 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 418 419 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){ 420 DC_LOG_PFLIP("amdgpu_crtc->pflip_status = %d !=AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p] \n", 421 amdgpu_crtc->pflip_status, 422 AMDGPU_FLIP_SUBMITTED, 423 amdgpu_crtc->crtc_id, 424 amdgpu_crtc); 425 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 426 return; 427 } 428 429 /* page flip completed. */ 430 e = amdgpu_crtc->event; 431 amdgpu_crtc->event = NULL; 432 433 WARN_ON(!e); 434 435 vrr_active = amdgpu_dm_crtc_vrr_active_irq(amdgpu_crtc); 436 437 /* Fixed refresh rate, or VRR scanout position outside front-porch? */ 438 if (!vrr_active || 439 !dc_stream_get_scanoutpos(amdgpu_crtc->dm_irq_params.stream, &v_blank_start, 440 &v_blank_end, &hpos, &vpos) || 441 (vpos < v_blank_start)) { 442 /* Update to correct count and vblank timestamp if racing with 443 * vblank irq. This also updates to the correct vblank timestamp 444 * even in VRR mode, as scanout is past the front-porch atm. 445 */ 446 drm_crtc_accurate_vblank_count(&amdgpu_crtc->base); 447 448 /* Wake up userspace by sending the pageflip event with proper 449 * count and timestamp of vblank of flip completion. 450 */ 451 if (e) { 452 drm_crtc_send_vblank_event(&amdgpu_crtc->base, e); 453 454 /* Event sent, so done with vblank for this flip */ 455 drm_crtc_vblank_put(&amdgpu_crtc->base); 456 } 457 } else if (e) { 458 /* VRR active and inside front-porch: vblank count and 459 * timestamp for pageflip event will only be up to date after 460 * drm_crtc_handle_vblank() has been executed from late vblank 461 * irq handler after start of back-porch (vline 0). We queue the 462 * pageflip event for send-out by drm_crtc_handle_vblank() with 463 * updated timestamp and count, once it runs after us. 464 * 465 * We need to open-code this instead of using the helper 466 * drm_crtc_arm_vblank_event(), as that helper would 467 * call drm_crtc_accurate_vblank_count(), which we must 468 * not call in VRR mode while we are in front-porch! 469 */ 470 471 /* sequence will be replaced by real count during send-out. */ 472 e->sequence = drm_crtc_vblank_count(&amdgpu_crtc->base); 473 e->pipe = amdgpu_crtc->crtc_id; 474 475 list_add_tail(&e->base.link, &adev_to_drm(adev)->vblank_event_list); 476 e = NULL; 477 } 478 479 /* Keep track of vblank of this flip for flip throttling. We use the 480 * cooked hw counter, as that one incremented at start of this vblank 481 * of pageflip completion, so last_flip_vblank is the forbidden count 482 * for queueing new pageflips if vsync + VRR is enabled. 483 */ 484 amdgpu_crtc->dm_irq_params.last_flip_vblank = 485 amdgpu_get_vblank_counter_kms(&amdgpu_crtc->base); 486 487 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE; 488 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 489 490 DC_LOG_PFLIP("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_NONE, vrr[%d]-fp %d\n", 491 amdgpu_crtc->crtc_id, amdgpu_crtc, 492 vrr_active, (int) !e); 493 } 494 495 static void dm_vupdate_high_irq(void *interrupt_params) 496 { 497 struct common_irq_params *irq_params = interrupt_params; 498 struct amdgpu_device *adev = irq_params->adev; 499 struct amdgpu_crtc *acrtc; 500 struct drm_device *drm_dev; 501 struct drm_vblank_crtc *vblank; 502 ktime_t frame_duration_ns, previous_timestamp; 503 unsigned long flags; 504 int vrr_active; 505 506 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VUPDATE); 507 508 if (acrtc) { 509 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc); 510 drm_dev = acrtc->base.dev; 511 vblank = &drm_dev->vblank[acrtc->base.index]; 512 previous_timestamp = atomic64_read(&irq_params->previous_timestamp); 513 frame_duration_ns = vblank->time - previous_timestamp; 514 515 if (frame_duration_ns > 0) { 516 trace_amdgpu_refresh_rate_track(acrtc->base.index, 517 frame_duration_ns, 518 ktime_divns(NSEC_PER_SEC, frame_duration_ns)); 519 atomic64_set(&irq_params->previous_timestamp, vblank->time); 520 } 521 522 DC_LOG_VBLANK("crtc:%d, vupdate-vrr:%d\n", 523 acrtc->crtc_id, 524 vrr_active); 525 526 /* Core vblank handling is done here after end of front-porch in 527 * vrr mode, as vblank timestamping will give valid results 528 * while now done after front-porch. This will also deliver 529 * page-flip completion events that have been queued to us 530 * if a pageflip happened inside front-porch. 531 */ 532 if (vrr_active) { 533 amdgpu_dm_crtc_handle_vblank(acrtc); 534 535 /* BTR processing for pre-DCE12 ASICs */ 536 if (acrtc->dm_irq_params.stream && 537 adev->family < AMDGPU_FAMILY_AI) { 538 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 539 mod_freesync_handle_v_update( 540 adev->dm.freesync_module, 541 acrtc->dm_irq_params.stream, 542 &acrtc->dm_irq_params.vrr_params); 543 544 dc_stream_adjust_vmin_vmax( 545 adev->dm.dc, 546 acrtc->dm_irq_params.stream, 547 &acrtc->dm_irq_params.vrr_params.adjust); 548 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 549 } 550 } 551 } 552 } 553 554 /** 555 * dm_crtc_high_irq() - Handles CRTC interrupt 556 * @interrupt_params: used for determining the CRTC instance 557 * 558 * Handles the CRTC/VSYNC interrupt by notfying DRM's VBLANK 559 * event handler. 560 */ 561 static void dm_crtc_high_irq(void *interrupt_params) 562 { 563 struct common_irq_params *irq_params = interrupt_params; 564 struct amdgpu_device *adev = irq_params->adev; 565 struct amdgpu_crtc *acrtc; 566 unsigned long flags; 567 int vrr_active; 568 569 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK); 570 if (!acrtc) 571 return; 572 573 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc); 574 575 DC_LOG_VBLANK("crtc:%d, vupdate-vrr:%d, planes:%d\n", acrtc->crtc_id, 576 vrr_active, acrtc->dm_irq_params.active_planes); 577 578 /** 579 * Core vblank handling at start of front-porch is only possible 580 * in non-vrr mode, as only there vblank timestamping will give 581 * valid results while done in front-porch. Otherwise defer it 582 * to dm_vupdate_high_irq after end of front-porch. 583 */ 584 if (!vrr_active) 585 amdgpu_dm_crtc_handle_vblank(acrtc); 586 587 /** 588 * Following stuff must happen at start of vblank, for crc 589 * computation and below-the-range btr support in vrr mode. 590 */ 591 amdgpu_dm_crtc_handle_crc_irq(&acrtc->base); 592 593 /* BTR updates need to happen before VUPDATE on Vega and above. */ 594 if (adev->family < AMDGPU_FAMILY_AI) 595 return; 596 597 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 598 599 if (acrtc->dm_irq_params.stream && 600 acrtc->dm_irq_params.vrr_params.supported && 601 acrtc->dm_irq_params.freesync_config.state == 602 VRR_STATE_ACTIVE_VARIABLE) { 603 mod_freesync_handle_v_update(adev->dm.freesync_module, 604 acrtc->dm_irq_params.stream, 605 &acrtc->dm_irq_params.vrr_params); 606 607 dc_stream_adjust_vmin_vmax(adev->dm.dc, acrtc->dm_irq_params.stream, 608 &acrtc->dm_irq_params.vrr_params.adjust); 609 } 610 611 /* 612 * If there aren't any active_planes then DCH HUBP may be clock-gated. 613 * In that case, pageflip completion interrupts won't fire and pageflip 614 * completion events won't get delivered. Prevent this by sending 615 * pending pageflip events from here if a flip is still pending. 616 * 617 * If any planes are enabled, use dm_pflip_high_irq() instead, to 618 * avoid race conditions between flip programming and completion, 619 * which could cause too early flip completion events. 620 */ 621 if (adev->family >= AMDGPU_FAMILY_RV && 622 acrtc->pflip_status == AMDGPU_FLIP_SUBMITTED && 623 acrtc->dm_irq_params.active_planes == 0) { 624 if (acrtc->event) { 625 drm_crtc_send_vblank_event(&acrtc->base, acrtc->event); 626 acrtc->event = NULL; 627 drm_crtc_vblank_put(&acrtc->base); 628 } 629 acrtc->pflip_status = AMDGPU_FLIP_NONE; 630 } 631 632 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 633 } 634 635 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 636 /** 637 * dm_dcn_vertical_interrupt0_high_irq() - Handles OTG Vertical interrupt0 for 638 * DCN generation ASICs 639 * @interrupt_params: interrupt parameters 640 * 641 * Used to set crc window/read out crc value at vertical line 0 position 642 */ 643 static void dm_dcn_vertical_interrupt0_high_irq(void *interrupt_params) 644 { 645 struct common_irq_params *irq_params = interrupt_params; 646 struct amdgpu_device *adev = irq_params->adev; 647 struct amdgpu_crtc *acrtc; 648 649 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VLINE0); 650 651 if (!acrtc) 652 return; 653 654 amdgpu_dm_crtc_handle_crc_window_irq(&acrtc->base); 655 } 656 #endif /* CONFIG_DRM_AMD_SECURE_DISPLAY */ 657 658 /** 659 * dmub_aux_setconfig_callback - Callback for AUX or SET_CONFIG command. 660 * @adev: amdgpu_device pointer 661 * @notify: dmub notification structure 662 * 663 * Dmub AUX or SET_CONFIG command completion processing callback 664 * Copies dmub notification to DM which is to be read by AUX command. 665 * issuing thread and also signals the event to wake up the thread. 666 */ 667 static void dmub_aux_setconfig_callback(struct amdgpu_device *adev, 668 struct dmub_notification *notify) 669 { 670 if (adev->dm.dmub_notify) 671 memcpy(adev->dm.dmub_notify, notify, sizeof(struct dmub_notification)); 672 if (notify->type == DMUB_NOTIFICATION_AUX_REPLY) 673 complete(&adev->dm.dmub_aux_transfer_done); 674 } 675 676 /** 677 * dmub_hpd_callback - DMUB HPD interrupt processing callback. 678 * @adev: amdgpu_device pointer 679 * @notify: dmub notification structure 680 * 681 * Dmub Hpd interrupt processing callback. Gets displayindex through the 682 * ink index and calls helper to do the processing. 683 */ 684 static void dmub_hpd_callback(struct amdgpu_device *adev, 685 struct dmub_notification *notify) 686 { 687 struct amdgpu_dm_connector *aconnector; 688 struct amdgpu_dm_connector *hpd_aconnector = NULL; 689 struct drm_connector *connector; 690 struct drm_connector_list_iter iter; 691 struct dc_link *link; 692 u8 link_index = 0; 693 struct drm_device *dev; 694 695 if (adev == NULL) 696 return; 697 698 if (notify == NULL) { 699 DRM_ERROR("DMUB HPD callback notification was NULL"); 700 return; 701 } 702 703 if (notify->link_index > adev->dm.dc->link_count) { 704 DRM_ERROR("DMUB HPD index (%u)is abnormal", notify->link_index); 705 return; 706 } 707 708 link_index = notify->link_index; 709 link = adev->dm.dc->links[link_index]; 710 dev = adev->dm.ddev; 711 712 drm_connector_list_iter_begin(dev, &iter); 713 drm_for_each_connector_iter(connector, &iter) { 714 aconnector = to_amdgpu_dm_connector(connector); 715 if (link && aconnector->dc_link == link) { 716 if (notify->type == DMUB_NOTIFICATION_HPD) 717 DRM_INFO("DMUB HPD callback: link_index=%u\n", link_index); 718 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ) 719 DRM_INFO("DMUB HPD IRQ callback: link_index=%u\n", link_index); 720 else 721 DRM_WARN("DMUB Unknown HPD callback type %d, link_index=%u\n", 722 notify->type, link_index); 723 724 hpd_aconnector = aconnector; 725 break; 726 } 727 } 728 drm_connector_list_iter_end(&iter); 729 730 if (hpd_aconnector) { 731 if (notify->type == DMUB_NOTIFICATION_HPD) 732 handle_hpd_irq_helper(hpd_aconnector); 733 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ) 734 handle_hpd_rx_irq(hpd_aconnector); 735 } 736 } 737 738 /** 739 * register_dmub_notify_callback - Sets callback for DMUB notify 740 * @adev: amdgpu_device pointer 741 * @type: Type of dmub notification 742 * @callback: Dmub interrupt callback function 743 * @dmub_int_thread_offload: offload indicator 744 * 745 * API to register a dmub callback handler for a dmub notification 746 * Also sets indicator whether callback processing to be offloaded. 747 * to dmub interrupt handling thread 748 * Return: true if successfully registered, false if there is existing registration 749 */ 750 static bool register_dmub_notify_callback(struct amdgpu_device *adev, 751 enum dmub_notification_type type, 752 dmub_notify_interrupt_callback_t callback, 753 bool dmub_int_thread_offload) 754 { 755 if (callback != NULL && type < ARRAY_SIZE(adev->dm.dmub_thread_offload)) { 756 adev->dm.dmub_callback[type] = callback; 757 adev->dm.dmub_thread_offload[type] = dmub_int_thread_offload; 758 } else 759 return false; 760 761 return true; 762 } 763 764 static void dm_handle_hpd_work(struct work_struct *work) 765 { 766 struct dmub_hpd_work *dmub_hpd_wrk; 767 768 dmub_hpd_wrk = container_of(work, struct dmub_hpd_work, handle_hpd_work); 769 770 if (!dmub_hpd_wrk->dmub_notify) { 771 DRM_ERROR("dmub_hpd_wrk dmub_notify is NULL"); 772 return; 773 } 774 775 if (dmub_hpd_wrk->dmub_notify->type < ARRAY_SIZE(dmub_hpd_wrk->adev->dm.dmub_callback)) { 776 dmub_hpd_wrk->adev->dm.dmub_callback[dmub_hpd_wrk->dmub_notify->type](dmub_hpd_wrk->adev, 777 dmub_hpd_wrk->dmub_notify); 778 } 779 780 kfree(dmub_hpd_wrk->dmub_notify); 781 kfree(dmub_hpd_wrk); 782 783 } 784 785 #define DMUB_TRACE_MAX_READ 64 786 /** 787 * dm_dmub_outbox1_low_irq() - Handles Outbox interrupt 788 * @interrupt_params: used for determining the Outbox instance 789 * 790 * Handles the Outbox Interrupt 791 * event handler. 792 */ 793 static void dm_dmub_outbox1_low_irq(void *interrupt_params) 794 { 795 struct dmub_notification notify; 796 struct common_irq_params *irq_params = interrupt_params; 797 struct amdgpu_device *adev = irq_params->adev; 798 struct amdgpu_display_manager *dm = &adev->dm; 799 struct dmcub_trace_buf_entry entry = { 0 }; 800 u32 count = 0; 801 struct dmub_hpd_work *dmub_hpd_wrk; 802 struct dc_link *plink = NULL; 803 804 if (dc_enable_dmub_notifications(adev->dm.dc) && 805 irq_params->irq_src == DC_IRQ_SOURCE_DMCUB_OUTBOX) { 806 807 do { 808 dc_stat_get_dmub_notification(adev->dm.dc, ¬ify); 809 if (notify.type >= ARRAY_SIZE(dm->dmub_thread_offload)) { 810 DRM_ERROR("DM: notify type %d invalid!", notify.type); 811 continue; 812 } 813 if (!dm->dmub_callback[notify.type]) { 814 DRM_DEBUG_DRIVER("DMUB notification skipped, no handler: type=%d\n", notify.type); 815 continue; 816 } 817 if (dm->dmub_thread_offload[notify.type] == true) { 818 dmub_hpd_wrk = kzalloc(sizeof(*dmub_hpd_wrk), GFP_ATOMIC); 819 if (!dmub_hpd_wrk) { 820 DRM_ERROR("Failed to allocate dmub_hpd_wrk"); 821 return; 822 } 823 dmub_hpd_wrk->dmub_notify = kmemdup(¬ify, sizeof(struct dmub_notification), 824 GFP_ATOMIC); 825 if (!dmub_hpd_wrk->dmub_notify) { 826 kfree(dmub_hpd_wrk); 827 DRM_ERROR("Failed to allocate dmub_hpd_wrk->dmub_notify"); 828 return; 829 } 830 INIT_WORK(&dmub_hpd_wrk->handle_hpd_work, dm_handle_hpd_work); 831 dmub_hpd_wrk->adev = adev; 832 if (notify.type == DMUB_NOTIFICATION_HPD) { 833 plink = adev->dm.dc->links[notify.link_index]; 834 if (plink) { 835 plink->hpd_status = 836 notify.hpd_status == DP_HPD_PLUG; 837 } 838 } 839 queue_work(adev->dm.delayed_hpd_wq, &dmub_hpd_wrk->handle_hpd_work); 840 } else { 841 dm->dmub_callback[notify.type](adev, ¬ify); 842 } 843 } while (notify.pending_notification); 844 } 845 846 847 do { 848 if (dc_dmub_srv_get_dmub_outbox0_msg(dm->dc, &entry)) { 849 trace_amdgpu_dmub_trace_high_irq(entry.trace_code, entry.tick_count, 850 entry.param0, entry.param1); 851 852 DRM_DEBUG_DRIVER("trace_code:%u, tick_count:%u, param0:%u, param1:%u\n", 853 entry.trace_code, entry.tick_count, entry.param0, entry.param1); 854 } else 855 break; 856 857 count++; 858 859 } while (count <= DMUB_TRACE_MAX_READ); 860 861 if (count > DMUB_TRACE_MAX_READ) 862 DRM_DEBUG_DRIVER("Warning : count > DMUB_TRACE_MAX_READ"); 863 } 864 865 static int dm_set_clockgating_state(void *handle, 866 enum amd_clockgating_state state) 867 { 868 return 0; 869 } 870 871 static int dm_set_powergating_state(void *handle, 872 enum amd_powergating_state state) 873 { 874 return 0; 875 } 876 877 /* Prototypes of private functions */ 878 static int dm_early_init(void* handle); 879 880 /* Allocate memory for FBC compressed data */ 881 static void amdgpu_dm_fbc_init(struct drm_connector *connector) 882 { 883 struct drm_device *dev = connector->dev; 884 struct amdgpu_device *adev = drm_to_adev(dev); 885 struct dm_compressor_info *compressor = &adev->dm.compressor; 886 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector); 887 struct drm_display_mode *mode; 888 unsigned long max_size = 0; 889 890 if (adev->dm.dc->fbc_compressor == NULL) 891 return; 892 893 if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP) 894 return; 895 896 if (compressor->bo_ptr) 897 return; 898 899 900 list_for_each_entry(mode, &connector->modes, head) { 901 if (max_size < mode->htotal * mode->vtotal) 902 max_size = mode->htotal * mode->vtotal; 903 } 904 905 if (max_size) { 906 int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE, 907 AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr, 908 &compressor->gpu_addr, &compressor->cpu_addr); 909 910 if (r) 911 DRM_ERROR("DM: Failed to initialize FBC\n"); 912 else { 913 adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr; 914 DRM_INFO("DM: FBC alloc %lu\n", max_size*4); 915 } 916 917 } 918 919 } 920 921 static int amdgpu_dm_audio_component_get_eld(struct device *kdev, int port, 922 int pipe, bool *enabled, 923 unsigned char *buf, int max_bytes) 924 { 925 struct drm_device *dev = dev_get_drvdata(kdev); 926 struct amdgpu_device *adev = drm_to_adev(dev); 927 struct drm_connector *connector; 928 struct drm_connector_list_iter conn_iter; 929 struct amdgpu_dm_connector *aconnector; 930 int ret = 0; 931 932 *enabled = false; 933 934 mutex_lock(&adev->dm.audio_lock); 935 936 drm_connector_list_iter_begin(dev, &conn_iter); 937 drm_for_each_connector_iter(connector, &conn_iter) { 938 aconnector = to_amdgpu_dm_connector(connector); 939 if (aconnector->audio_inst != port) 940 continue; 941 942 *enabled = true; 943 ret = drm_eld_size(connector->eld); 944 memcpy(buf, connector->eld, min(max_bytes, ret)); 945 946 break; 947 } 948 drm_connector_list_iter_end(&conn_iter); 949 950 mutex_unlock(&adev->dm.audio_lock); 951 952 DRM_DEBUG_KMS("Get ELD : idx=%d ret=%d en=%d\n", port, ret, *enabled); 953 954 return ret; 955 } 956 957 static const struct drm_audio_component_ops amdgpu_dm_audio_component_ops = { 958 .get_eld = amdgpu_dm_audio_component_get_eld, 959 }; 960 961 static int amdgpu_dm_audio_component_bind(struct device *kdev, 962 struct device *hda_kdev, void *data) 963 { 964 struct drm_device *dev = dev_get_drvdata(kdev); 965 struct amdgpu_device *adev = drm_to_adev(dev); 966 struct drm_audio_component *acomp = data; 967 968 acomp->ops = &amdgpu_dm_audio_component_ops; 969 acomp->dev = kdev; 970 adev->dm.audio_component = acomp; 971 972 return 0; 973 } 974 975 static void amdgpu_dm_audio_component_unbind(struct device *kdev, 976 struct device *hda_kdev, void *data) 977 { 978 struct drm_device *dev = dev_get_drvdata(kdev); 979 struct amdgpu_device *adev = drm_to_adev(dev); 980 struct drm_audio_component *acomp = data; 981 982 acomp->ops = NULL; 983 acomp->dev = NULL; 984 adev->dm.audio_component = NULL; 985 } 986 987 static const struct component_ops amdgpu_dm_audio_component_bind_ops = { 988 .bind = amdgpu_dm_audio_component_bind, 989 .unbind = amdgpu_dm_audio_component_unbind, 990 }; 991 992 static int amdgpu_dm_audio_init(struct amdgpu_device *adev) 993 { 994 int i, ret; 995 996 if (!amdgpu_audio) 997 return 0; 998 999 adev->mode_info.audio.enabled = true; 1000 1001 adev->mode_info.audio.num_pins = adev->dm.dc->res_pool->audio_count; 1002 1003 for (i = 0; i < adev->mode_info.audio.num_pins; i++) { 1004 adev->mode_info.audio.pin[i].channels = -1; 1005 adev->mode_info.audio.pin[i].rate = -1; 1006 adev->mode_info.audio.pin[i].bits_per_sample = -1; 1007 adev->mode_info.audio.pin[i].status_bits = 0; 1008 adev->mode_info.audio.pin[i].category_code = 0; 1009 adev->mode_info.audio.pin[i].connected = false; 1010 adev->mode_info.audio.pin[i].id = 1011 adev->dm.dc->res_pool->audios[i]->inst; 1012 adev->mode_info.audio.pin[i].offset = 0; 1013 } 1014 1015 ret = component_add(adev->dev, &amdgpu_dm_audio_component_bind_ops); 1016 if (ret < 0) 1017 return ret; 1018 1019 adev->dm.audio_registered = true; 1020 1021 return 0; 1022 } 1023 1024 static void amdgpu_dm_audio_fini(struct amdgpu_device *adev) 1025 { 1026 if (!amdgpu_audio) 1027 return; 1028 1029 if (!adev->mode_info.audio.enabled) 1030 return; 1031 1032 if (adev->dm.audio_registered) { 1033 component_del(adev->dev, &amdgpu_dm_audio_component_bind_ops); 1034 adev->dm.audio_registered = false; 1035 } 1036 1037 /* TODO: Disable audio? */ 1038 1039 adev->mode_info.audio.enabled = false; 1040 } 1041 1042 static void amdgpu_dm_audio_eld_notify(struct amdgpu_device *adev, int pin) 1043 { 1044 struct drm_audio_component *acomp = adev->dm.audio_component; 1045 1046 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify) { 1047 DRM_DEBUG_KMS("Notify ELD: %d\n", pin); 1048 1049 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr, 1050 pin, -1); 1051 } 1052 } 1053 1054 static int dm_dmub_hw_init(struct amdgpu_device *adev) 1055 { 1056 const struct dmcub_firmware_header_v1_0 *hdr; 1057 struct dmub_srv *dmub_srv = adev->dm.dmub_srv; 1058 struct dmub_srv_fb_info *fb_info = adev->dm.dmub_fb_info; 1059 const struct firmware *dmub_fw = adev->dm.dmub_fw; 1060 struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu; 1061 struct abm *abm = adev->dm.dc->res_pool->abm; 1062 struct dmub_srv_hw_params hw_params; 1063 enum dmub_status status; 1064 const unsigned char *fw_inst_const, *fw_bss_data; 1065 u32 i, fw_inst_const_size, fw_bss_data_size; 1066 bool has_hw_support; 1067 1068 if (!dmub_srv) 1069 /* DMUB isn't supported on the ASIC. */ 1070 return 0; 1071 1072 if (!fb_info) { 1073 DRM_ERROR("No framebuffer info for DMUB service.\n"); 1074 return -EINVAL; 1075 } 1076 1077 if (!dmub_fw) { 1078 /* Firmware required for DMUB support. */ 1079 DRM_ERROR("No firmware provided for DMUB.\n"); 1080 return -EINVAL; 1081 } 1082 1083 status = dmub_srv_has_hw_support(dmub_srv, &has_hw_support); 1084 if (status != DMUB_STATUS_OK) { 1085 DRM_ERROR("Error checking HW support for DMUB: %d\n", status); 1086 return -EINVAL; 1087 } 1088 1089 if (!has_hw_support) { 1090 DRM_INFO("DMUB unsupported on ASIC\n"); 1091 return 0; 1092 } 1093 1094 /* Reset DMCUB if it was previously running - before we overwrite its memory. */ 1095 status = dmub_srv_hw_reset(dmub_srv); 1096 if (status != DMUB_STATUS_OK) 1097 DRM_WARN("Error resetting DMUB HW: %d\n", status); 1098 1099 hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data; 1100 1101 fw_inst_const = dmub_fw->data + 1102 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 1103 PSP_HEADER_BYTES; 1104 1105 fw_bss_data = dmub_fw->data + 1106 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 1107 le32_to_cpu(hdr->inst_const_bytes); 1108 1109 /* Copy firmware and bios info into FB memory. */ 1110 fw_inst_const_size = le32_to_cpu(hdr->inst_const_bytes) - 1111 PSP_HEADER_BYTES - PSP_FOOTER_BYTES; 1112 1113 fw_bss_data_size = le32_to_cpu(hdr->bss_data_bytes); 1114 1115 /* if adev->firmware.load_type == AMDGPU_FW_LOAD_PSP, 1116 * amdgpu_ucode_init_single_fw will load dmub firmware 1117 * fw_inst_const part to cw0; otherwise, the firmware back door load 1118 * will be done by dm_dmub_hw_init 1119 */ 1120 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) { 1121 memcpy(fb_info->fb[DMUB_WINDOW_0_INST_CONST].cpu_addr, fw_inst_const, 1122 fw_inst_const_size); 1123 } 1124 1125 if (fw_bss_data_size) 1126 memcpy(fb_info->fb[DMUB_WINDOW_2_BSS_DATA].cpu_addr, 1127 fw_bss_data, fw_bss_data_size); 1128 1129 /* Copy firmware bios info into FB memory. */ 1130 memcpy(fb_info->fb[DMUB_WINDOW_3_VBIOS].cpu_addr, adev->bios, 1131 adev->bios_size); 1132 1133 /* Reset regions that need to be reset. */ 1134 memset(fb_info->fb[DMUB_WINDOW_4_MAILBOX].cpu_addr, 0, 1135 fb_info->fb[DMUB_WINDOW_4_MAILBOX].size); 1136 1137 memset(fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].cpu_addr, 0, 1138 fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].size); 1139 1140 memset(fb_info->fb[DMUB_WINDOW_6_FW_STATE].cpu_addr, 0, 1141 fb_info->fb[DMUB_WINDOW_6_FW_STATE].size); 1142 1143 /* Initialize hardware. */ 1144 memset(&hw_params, 0, sizeof(hw_params)); 1145 hw_params.fb_base = adev->gmc.fb_start; 1146 hw_params.fb_offset = adev->vm_manager.vram_base_offset; 1147 1148 /* backdoor load firmware and trigger dmub running */ 1149 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) 1150 hw_params.load_inst_const = true; 1151 1152 if (dmcu) 1153 hw_params.psp_version = dmcu->psp_version; 1154 1155 for (i = 0; i < fb_info->num_fb; ++i) 1156 hw_params.fb[i] = &fb_info->fb[i]; 1157 1158 switch (adev->ip_versions[DCE_HWIP][0]) { 1159 case IP_VERSION(3, 1, 3): 1160 case IP_VERSION(3, 1, 4): 1161 hw_params.dpia_supported = true; 1162 hw_params.disable_dpia = adev->dm.dc->debug.dpia_debug.bits.disable_dpia; 1163 break; 1164 default: 1165 break; 1166 } 1167 1168 status = dmub_srv_hw_init(dmub_srv, &hw_params); 1169 if (status != DMUB_STATUS_OK) { 1170 DRM_ERROR("Error initializing DMUB HW: %d\n", status); 1171 return -EINVAL; 1172 } 1173 1174 /* Wait for firmware load to finish. */ 1175 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000); 1176 if (status != DMUB_STATUS_OK) 1177 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status); 1178 1179 /* Init DMCU and ABM if available. */ 1180 if (dmcu && abm) { 1181 dmcu->funcs->dmcu_init(dmcu); 1182 abm->dmcu_is_running = dmcu->funcs->is_dmcu_initialized(dmcu); 1183 } 1184 1185 if (!adev->dm.dc->ctx->dmub_srv) 1186 adev->dm.dc->ctx->dmub_srv = dc_dmub_srv_create(adev->dm.dc, dmub_srv); 1187 if (!adev->dm.dc->ctx->dmub_srv) { 1188 DRM_ERROR("Couldn't allocate DC DMUB server!\n"); 1189 return -ENOMEM; 1190 } 1191 1192 DRM_INFO("DMUB hardware initialized: version=0x%08X\n", 1193 adev->dm.dmcub_fw_version); 1194 1195 return 0; 1196 } 1197 1198 static void dm_dmub_hw_resume(struct amdgpu_device *adev) 1199 { 1200 struct dmub_srv *dmub_srv = adev->dm.dmub_srv; 1201 enum dmub_status status; 1202 bool init; 1203 1204 if (!dmub_srv) { 1205 /* DMUB isn't supported on the ASIC. */ 1206 return; 1207 } 1208 1209 status = dmub_srv_is_hw_init(dmub_srv, &init); 1210 if (status != DMUB_STATUS_OK) 1211 DRM_WARN("DMUB hardware init check failed: %d\n", status); 1212 1213 if (status == DMUB_STATUS_OK && init) { 1214 /* Wait for firmware load to finish. */ 1215 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000); 1216 if (status != DMUB_STATUS_OK) 1217 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status); 1218 } else { 1219 /* Perform the full hardware initialization. */ 1220 dm_dmub_hw_init(adev); 1221 } 1222 } 1223 1224 static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config) 1225 { 1226 u64 pt_base; 1227 u32 logical_addr_low; 1228 u32 logical_addr_high; 1229 u32 agp_base, agp_bot, agp_top; 1230 PHYSICAL_ADDRESS_LOC page_table_start, page_table_end, page_table_base; 1231 1232 memset(pa_config, 0, sizeof(*pa_config)); 1233 1234 agp_base = 0; 1235 agp_bot = adev->gmc.agp_start >> 24; 1236 agp_top = adev->gmc.agp_end >> 24; 1237 1238 /* AGP aperture is disabled */ 1239 if (agp_bot == agp_top) { 1240 logical_addr_low = adev->gmc.fb_start >> 18; 1241 if (adev->apu_flags & AMD_APU_IS_RAVEN2) 1242 /* 1243 * Raven2 has a HW issue that it is unable to use the vram which 1244 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the 1245 * workaround that increase system aperture high address (add 1) 1246 * to get rid of the VM fault and hardware hang. 1247 */ 1248 logical_addr_high = (adev->gmc.fb_end >> 18) + 0x1; 1249 else 1250 logical_addr_high = adev->gmc.fb_end >> 18; 1251 } else { 1252 logical_addr_low = min(adev->gmc.fb_start, adev->gmc.agp_start) >> 18; 1253 if (adev->apu_flags & AMD_APU_IS_RAVEN2) 1254 /* 1255 * Raven2 has a HW issue that it is unable to use the vram which 1256 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the 1257 * workaround that increase system aperture high address (add 1) 1258 * to get rid of the VM fault and hardware hang. 1259 */ 1260 logical_addr_high = max((adev->gmc.fb_end >> 18) + 0x1, adev->gmc.agp_end >> 18); 1261 else 1262 logical_addr_high = max(adev->gmc.fb_end, adev->gmc.agp_end) >> 18; 1263 } 1264 1265 pt_base = amdgpu_gmc_pd_addr(adev->gart.bo); 1266 1267 page_table_start.high_part = (u32)(adev->gmc.gart_start >> 44) & 0xF; 1268 page_table_start.low_part = (u32)(adev->gmc.gart_start >> 12); 1269 page_table_end.high_part = (u32)(adev->gmc.gart_end >> 44) & 0xF; 1270 page_table_end.low_part = (u32)(adev->gmc.gart_end >> 12); 1271 page_table_base.high_part = upper_32_bits(pt_base) & 0xF; 1272 page_table_base.low_part = lower_32_bits(pt_base); 1273 1274 pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18; 1275 pa_config->system_aperture.end_addr = (uint64_t)logical_addr_high << 18; 1276 1277 pa_config->system_aperture.agp_base = (uint64_t)agp_base << 24 ; 1278 pa_config->system_aperture.agp_bot = (uint64_t)agp_bot << 24; 1279 pa_config->system_aperture.agp_top = (uint64_t)agp_top << 24; 1280 1281 pa_config->system_aperture.fb_base = adev->gmc.fb_start; 1282 pa_config->system_aperture.fb_offset = adev->vm_manager.vram_base_offset; 1283 pa_config->system_aperture.fb_top = adev->gmc.fb_end; 1284 1285 pa_config->gart_config.page_table_start_addr = page_table_start.quad_part << 12; 1286 pa_config->gart_config.page_table_end_addr = page_table_end.quad_part << 12; 1287 pa_config->gart_config.page_table_base_addr = page_table_base.quad_part; 1288 1289 pa_config->is_hvm_enabled = adev->mode_info.gpu_vm_support; 1290 1291 } 1292 1293 static void force_connector_state( 1294 struct amdgpu_dm_connector *aconnector, 1295 enum drm_connector_force force_state) 1296 { 1297 struct drm_connector *connector = &aconnector->base; 1298 1299 mutex_lock(&connector->dev->mode_config.mutex); 1300 aconnector->base.force = force_state; 1301 mutex_unlock(&connector->dev->mode_config.mutex); 1302 1303 mutex_lock(&aconnector->hpd_lock); 1304 drm_kms_helper_connector_hotplug_event(connector); 1305 mutex_unlock(&aconnector->hpd_lock); 1306 } 1307 1308 static void dm_handle_hpd_rx_offload_work(struct work_struct *work) 1309 { 1310 struct hpd_rx_irq_offload_work *offload_work; 1311 struct amdgpu_dm_connector *aconnector; 1312 struct dc_link *dc_link; 1313 struct amdgpu_device *adev; 1314 enum dc_connection_type new_connection_type = dc_connection_none; 1315 unsigned long flags; 1316 union test_response test_response; 1317 1318 memset(&test_response, 0, sizeof(test_response)); 1319 1320 offload_work = container_of(work, struct hpd_rx_irq_offload_work, work); 1321 aconnector = offload_work->offload_wq->aconnector; 1322 1323 if (!aconnector) { 1324 DRM_ERROR("Can't retrieve aconnector in hpd_rx_irq_offload_work"); 1325 goto skip; 1326 } 1327 1328 adev = drm_to_adev(aconnector->base.dev); 1329 dc_link = aconnector->dc_link; 1330 1331 mutex_lock(&aconnector->hpd_lock); 1332 if (!dc_link_detect_connection_type(dc_link, &new_connection_type)) 1333 DRM_ERROR("KMS: Failed to detect connector\n"); 1334 mutex_unlock(&aconnector->hpd_lock); 1335 1336 if (new_connection_type == dc_connection_none) 1337 goto skip; 1338 1339 if (amdgpu_in_reset(adev)) 1340 goto skip; 1341 1342 mutex_lock(&adev->dm.dc_lock); 1343 if (offload_work->data.bytes.device_service_irq.bits.AUTOMATED_TEST) { 1344 dc_link_dp_handle_automated_test(dc_link); 1345 1346 if (aconnector->timing_changed) { 1347 /* force connector disconnect and reconnect */ 1348 force_connector_state(aconnector, DRM_FORCE_OFF); 1349 msleep(100); 1350 force_connector_state(aconnector, DRM_FORCE_UNSPECIFIED); 1351 } 1352 1353 test_response.bits.ACK = 1; 1354 1355 core_link_write_dpcd( 1356 dc_link, 1357 DP_TEST_RESPONSE, 1358 &test_response.raw, 1359 sizeof(test_response)); 1360 } 1361 else if ((dc_link->connector_signal != SIGNAL_TYPE_EDP) && 1362 dc_link_check_link_loss_status(dc_link, &offload_work->data) && 1363 dc_link_dp_allow_hpd_rx_irq(dc_link)) { 1364 /* offload_work->data is from handle_hpd_rx_irq-> 1365 * schedule_hpd_rx_offload_work.this is defer handle 1366 * for hpd short pulse. upon here, link status may be 1367 * changed, need get latest link status from dpcd 1368 * registers. if link status is good, skip run link 1369 * training again. 1370 */ 1371 union hpd_irq_data irq_data; 1372 1373 memset(&irq_data, 0, sizeof(irq_data)); 1374 1375 /* before dc_link_dp_handle_link_loss, allow new link lost handle 1376 * request be added to work queue if link lost at end of dc_link_ 1377 * dp_handle_link_loss 1378 */ 1379 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags); 1380 offload_work->offload_wq->is_handling_link_loss = false; 1381 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags); 1382 1383 if ((dc_link_dp_read_hpd_rx_irq_data(dc_link, &irq_data) == DC_OK) && 1384 dc_link_check_link_loss_status(dc_link, &irq_data)) 1385 dc_link_dp_handle_link_loss(dc_link); 1386 } 1387 mutex_unlock(&adev->dm.dc_lock); 1388 1389 skip: 1390 kfree(offload_work); 1391 1392 } 1393 1394 static struct hpd_rx_irq_offload_work_queue *hpd_rx_irq_create_workqueue(struct dc *dc) 1395 { 1396 int max_caps = dc->caps.max_links; 1397 int i = 0; 1398 struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq = NULL; 1399 1400 hpd_rx_offload_wq = kcalloc(max_caps, sizeof(*hpd_rx_offload_wq), GFP_KERNEL); 1401 1402 if (!hpd_rx_offload_wq) 1403 return NULL; 1404 1405 1406 for (i = 0; i < max_caps; i++) { 1407 hpd_rx_offload_wq[i].wq = 1408 create_singlethread_workqueue("amdgpu_dm_hpd_rx_offload_wq"); 1409 1410 if (hpd_rx_offload_wq[i].wq == NULL) { 1411 DRM_ERROR("create amdgpu_dm_hpd_rx_offload_wq fail!"); 1412 goto out_err; 1413 } 1414 1415 spin_lock_init(&hpd_rx_offload_wq[i].offload_lock); 1416 } 1417 1418 return hpd_rx_offload_wq; 1419 1420 out_err: 1421 for (i = 0; i < max_caps; i++) { 1422 if (hpd_rx_offload_wq[i].wq) 1423 destroy_workqueue(hpd_rx_offload_wq[i].wq); 1424 } 1425 kfree(hpd_rx_offload_wq); 1426 return NULL; 1427 } 1428 1429 struct amdgpu_stutter_quirk { 1430 u16 chip_vendor; 1431 u16 chip_device; 1432 u16 subsys_vendor; 1433 u16 subsys_device; 1434 u8 revision; 1435 }; 1436 1437 static const struct amdgpu_stutter_quirk amdgpu_stutter_quirk_list[] = { 1438 /* https://bugzilla.kernel.org/show_bug.cgi?id=214417 */ 1439 { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 }, 1440 { 0, 0, 0, 0, 0 }, 1441 }; 1442 1443 static bool dm_should_disable_stutter(struct pci_dev *pdev) 1444 { 1445 const struct amdgpu_stutter_quirk *p = amdgpu_stutter_quirk_list; 1446 1447 while (p && p->chip_device != 0) { 1448 if (pdev->vendor == p->chip_vendor && 1449 pdev->device == p->chip_device && 1450 pdev->subsystem_vendor == p->subsys_vendor && 1451 pdev->subsystem_device == p->subsys_device && 1452 pdev->revision == p->revision) { 1453 return true; 1454 } 1455 ++p; 1456 } 1457 return false; 1458 } 1459 1460 static const struct dmi_system_id hpd_disconnect_quirk_table[] = { 1461 { 1462 .matches = { 1463 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1464 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3660"), 1465 }, 1466 }, 1467 { 1468 .matches = { 1469 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1470 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3260"), 1471 }, 1472 }, 1473 { 1474 .matches = { 1475 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1476 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3460"), 1477 }, 1478 }, 1479 { 1480 .matches = { 1481 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1482 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower Plus 7010"), 1483 }, 1484 }, 1485 { 1486 .matches = { 1487 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1488 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower 7010"), 1489 }, 1490 }, 1491 { 1492 .matches = { 1493 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1494 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF Plus 7010"), 1495 }, 1496 }, 1497 { 1498 .matches = { 1499 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1500 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF 7010"), 1501 }, 1502 }, 1503 { 1504 .matches = { 1505 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1506 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro Plus 7010"), 1507 }, 1508 }, 1509 { 1510 .matches = { 1511 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 1512 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro 7010"), 1513 }, 1514 }, 1515 {} 1516 /* TODO: refactor this from a fixed table to a dynamic option */ 1517 }; 1518 1519 static void retrieve_dmi_info(struct amdgpu_display_manager *dm) 1520 { 1521 const struct dmi_system_id *dmi_id; 1522 1523 dm->aux_hpd_discon_quirk = false; 1524 1525 dmi_id = dmi_first_match(hpd_disconnect_quirk_table); 1526 if (dmi_id) { 1527 dm->aux_hpd_discon_quirk = true; 1528 DRM_INFO("aux_hpd_discon_quirk attached\n"); 1529 } 1530 } 1531 1532 static int amdgpu_dm_init(struct amdgpu_device *adev) 1533 { 1534 struct dc_init_data init_data; 1535 struct dc_callback_init init_params; 1536 int r; 1537 1538 adev->dm.ddev = adev_to_drm(adev); 1539 adev->dm.adev = adev; 1540 1541 /* Zero all the fields */ 1542 memset(&init_data, 0, sizeof(init_data)); 1543 memset(&init_params, 0, sizeof(init_params)); 1544 1545 mutex_init(&adev->dm.dpia_aux_lock); 1546 mutex_init(&adev->dm.dc_lock); 1547 mutex_init(&adev->dm.audio_lock); 1548 1549 if(amdgpu_dm_irq_init(adev)) { 1550 DRM_ERROR("amdgpu: failed to initialize DM IRQ support.\n"); 1551 goto error; 1552 } 1553 1554 init_data.asic_id.chip_family = adev->family; 1555 1556 init_data.asic_id.pci_revision_id = adev->pdev->revision; 1557 init_data.asic_id.hw_internal_rev = adev->external_rev_id; 1558 init_data.asic_id.chip_id = adev->pdev->device; 1559 1560 init_data.asic_id.vram_width = adev->gmc.vram_width; 1561 /* TODO: initialize init_data.asic_id.vram_type here!!!! */ 1562 init_data.asic_id.atombios_base_address = 1563 adev->mode_info.atom_context->bios; 1564 1565 init_data.driver = adev; 1566 1567 adev->dm.cgs_device = amdgpu_cgs_create_device(adev); 1568 1569 if (!adev->dm.cgs_device) { 1570 DRM_ERROR("amdgpu: failed to create cgs device.\n"); 1571 goto error; 1572 } 1573 1574 init_data.cgs_device = adev->dm.cgs_device; 1575 1576 init_data.dce_environment = DCE_ENV_PRODUCTION_DRV; 1577 1578 switch (adev->ip_versions[DCE_HWIP][0]) { 1579 case IP_VERSION(2, 1, 0): 1580 switch (adev->dm.dmcub_fw_version) { 1581 case 0: /* development */ 1582 case 0x1: /* linux-firmware.git hash 6d9f399 */ 1583 case 0x01000000: /* linux-firmware.git hash 9a0b0f4 */ 1584 init_data.flags.disable_dmcu = false; 1585 break; 1586 default: 1587 init_data.flags.disable_dmcu = true; 1588 } 1589 break; 1590 case IP_VERSION(2, 0, 3): 1591 init_data.flags.disable_dmcu = true; 1592 break; 1593 default: 1594 break; 1595 } 1596 1597 switch (adev->asic_type) { 1598 case CHIP_CARRIZO: 1599 case CHIP_STONEY: 1600 init_data.flags.gpu_vm_support = true; 1601 break; 1602 default: 1603 switch (adev->ip_versions[DCE_HWIP][0]) { 1604 case IP_VERSION(1, 0, 0): 1605 case IP_VERSION(1, 0, 1): 1606 /* enable S/G on PCO and RV2 */ 1607 if ((adev->apu_flags & AMD_APU_IS_RAVEN2) || 1608 (adev->apu_flags & AMD_APU_IS_PICASSO)) 1609 init_data.flags.gpu_vm_support = true; 1610 break; 1611 case IP_VERSION(2, 1, 0): 1612 case IP_VERSION(3, 0, 1): 1613 case IP_VERSION(3, 1, 2): 1614 case IP_VERSION(3, 1, 3): 1615 case IP_VERSION(3, 1, 4): 1616 case IP_VERSION(3, 1, 5): 1617 case IP_VERSION(3, 1, 6): 1618 init_data.flags.gpu_vm_support = true; 1619 break; 1620 default: 1621 break; 1622 } 1623 break; 1624 } 1625 if (init_data.flags.gpu_vm_support && 1626 (amdgpu_sg_display == 0)) 1627 init_data.flags.gpu_vm_support = false; 1628 1629 if (init_data.flags.gpu_vm_support) 1630 adev->mode_info.gpu_vm_support = true; 1631 1632 if (amdgpu_dc_feature_mask & DC_FBC_MASK) 1633 init_data.flags.fbc_support = true; 1634 1635 if (amdgpu_dc_feature_mask & DC_MULTI_MON_PP_MCLK_SWITCH_MASK) 1636 init_data.flags.multi_mon_pp_mclk_switch = true; 1637 1638 if (amdgpu_dc_feature_mask & DC_DISABLE_FRACTIONAL_PWM_MASK) 1639 init_data.flags.disable_fractional_pwm = true; 1640 1641 if (amdgpu_dc_feature_mask & DC_EDP_NO_POWER_SEQUENCING) 1642 init_data.flags.edp_no_power_sequencing = true; 1643 1644 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP1_4A) 1645 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP1_4A = true; 1646 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP2_0) 1647 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP2_0 = true; 1648 1649 /* Disable SubVP + DRR config by default */ 1650 init_data.flags.disable_subvp_drr = true; 1651 if (amdgpu_dc_feature_mask & DC_ENABLE_SUBVP_DRR) 1652 init_data.flags.disable_subvp_drr = false; 1653 1654 init_data.flags.seamless_boot_edp_requested = false; 1655 1656 if (check_seamless_boot_capability(adev)) { 1657 init_data.flags.seamless_boot_edp_requested = true; 1658 init_data.flags.allow_seamless_boot_optimization = true; 1659 DRM_INFO("Seamless boot condition check passed\n"); 1660 } 1661 1662 init_data.flags.enable_mipi_converter_optimization = true; 1663 1664 init_data.dcn_reg_offsets = adev->reg_offset[DCE_HWIP][0]; 1665 init_data.nbio_reg_offsets = adev->reg_offset[NBIO_HWIP][0]; 1666 1667 INIT_LIST_HEAD(&adev->dm.da_list); 1668 1669 retrieve_dmi_info(&adev->dm); 1670 1671 /* Display Core create. */ 1672 adev->dm.dc = dc_create(&init_data); 1673 1674 if (adev->dm.dc) { 1675 DRM_INFO("Display Core initialized with v%s!\n", DC_VER); 1676 } else { 1677 DRM_INFO("Display Core failed to initialize with v%s!\n", DC_VER); 1678 goto error; 1679 } 1680 1681 if (amdgpu_dc_debug_mask & DC_DISABLE_PIPE_SPLIT) { 1682 adev->dm.dc->debug.force_single_disp_pipe_split = false; 1683 adev->dm.dc->debug.pipe_split_policy = MPC_SPLIT_AVOID; 1684 } 1685 1686 if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY) 1687 adev->dm.dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true; 1688 if (dm_should_disable_stutter(adev->pdev)) 1689 adev->dm.dc->debug.disable_stutter = true; 1690 1691 if (amdgpu_dc_debug_mask & DC_DISABLE_STUTTER) 1692 adev->dm.dc->debug.disable_stutter = true; 1693 1694 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC) { 1695 adev->dm.dc->debug.disable_dsc = true; 1696 } 1697 1698 if (amdgpu_dc_debug_mask & DC_DISABLE_CLOCK_GATING) 1699 adev->dm.dc->debug.disable_clock_gate = true; 1700 1701 if (amdgpu_dc_debug_mask & DC_FORCE_SUBVP_MCLK_SWITCH) 1702 adev->dm.dc->debug.force_subvp_mclk_switch = true; 1703 1704 adev->dm.dc->debug.visual_confirm = amdgpu_dc_visual_confirm; 1705 1706 /* TODO: Remove after DP2 receiver gets proper support of Cable ID feature */ 1707 adev->dm.dc->debug.ignore_cable_id = true; 1708 1709 /* TODO: There is a new drm mst change where the freedom of 1710 * vc_next_start_slot update is revoked/moved into drm, instead of in 1711 * driver. This forces us to make sure to get vc_next_start_slot updated 1712 * in drm function each time without considering if mst_state is active 1713 * or not. Otherwise, next time hotplug will give wrong start_slot 1714 * number. We are implementing a temporary solution to even notify drm 1715 * mst deallocation when link is no longer of MST type when uncommitting 1716 * the stream so we will have more time to work on a proper solution. 1717 * Ideally when dm_helpers_dp_mst_stop_top_mgr message is triggered, we 1718 * should notify drm to do a complete "reset" of its states and stop 1719 * calling further drm mst functions when link is no longer of an MST 1720 * type. This could happen when we unplug an MST hubs/displays. When 1721 * uncommit stream comes later after unplug, we should just reset 1722 * hardware states only. 1723 */ 1724 adev->dm.dc->debug.temp_mst_deallocation_sequence = true; 1725 1726 if (adev->dm.dc->caps.dp_hdmi21_pcon_support) 1727 DRM_INFO("DP-HDMI FRL PCON supported\n"); 1728 1729 r = dm_dmub_hw_init(adev); 1730 if (r) { 1731 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r); 1732 goto error; 1733 } 1734 1735 dc_hardware_init(adev->dm.dc); 1736 1737 adev->dm.hpd_rx_offload_wq = hpd_rx_irq_create_workqueue(adev->dm.dc); 1738 if (!adev->dm.hpd_rx_offload_wq) { 1739 DRM_ERROR("amdgpu: failed to create hpd rx offload workqueue.\n"); 1740 goto error; 1741 } 1742 1743 if ((adev->flags & AMD_IS_APU) && (adev->asic_type >= CHIP_CARRIZO)) { 1744 struct dc_phy_addr_space_config pa_config; 1745 1746 mmhub_read_system_context(adev, &pa_config); 1747 1748 // Call the DC init_memory func 1749 dc_setup_system_context(adev->dm.dc, &pa_config); 1750 } 1751 1752 adev->dm.freesync_module = mod_freesync_create(adev->dm.dc); 1753 if (!adev->dm.freesync_module) { 1754 DRM_ERROR( 1755 "amdgpu: failed to initialize freesync_module.\n"); 1756 } else 1757 DRM_DEBUG_DRIVER("amdgpu: freesync_module init done %p.\n", 1758 adev->dm.freesync_module); 1759 1760 amdgpu_dm_init_color_mod(); 1761 1762 if (adev->dm.dc->caps.max_links > 0) { 1763 adev->dm.vblank_control_workqueue = 1764 create_singlethread_workqueue("dm_vblank_control_workqueue"); 1765 if (!adev->dm.vblank_control_workqueue) 1766 DRM_ERROR("amdgpu: failed to initialize vblank_workqueue.\n"); 1767 } 1768 1769 if (adev->dm.dc->caps.max_links > 0 && adev->family >= AMDGPU_FAMILY_RV) { 1770 adev->dm.hdcp_workqueue = hdcp_create_workqueue(adev, &init_params.cp_psp, adev->dm.dc); 1771 1772 if (!adev->dm.hdcp_workqueue) 1773 DRM_ERROR("amdgpu: failed to initialize hdcp_workqueue.\n"); 1774 else 1775 DRM_DEBUG_DRIVER("amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue); 1776 1777 dc_init_callbacks(adev->dm.dc, &init_params); 1778 } 1779 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 1780 init_completion(&adev->dm.dmub_aux_transfer_done); 1781 adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL); 1782 if (!adev->dm.dmub_notify) { 1783 DRM_INFO("amdgpu: fail to allocate adev->dm.dmub_notify"); 1784 goto error; 1785 } 1786 1787 adev->dm.delayed_hpd_wq = create_singlethread_workqueue("amdgpu_dm_hpd_wq"); 1788 if (!adev->dm.delayed_hpd_wq) { 1789 DRM_ERROR("amdgpu: failed to create hpd offload workqueue.\n"); 1790 goto error; 1791 } 1792 1793 amdgpu_dm_outbox_init(adev); 1794 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_AUX_REPLY, 1795 dmub_aux_setconfig_callback, false)) { 1796 DRM_ERROR("amdgpu: fail to register dmub aux callback"); 1797 goto error; 1798 } 1799 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true)) { 1800 DRM_ERROR("amdgpu: fail to register dmub hpd callback"); 1801 goto error; 1802 } 1803 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true)) { 1804 DRM_ERROR("amdgpu: fail to register dmub hpd callback"); 1805 goto error; 1806 } 1807 } 1808 1809 /* Enable outbox notification only after IRQ handlers are registered and DMUB is alive. 1810 * It is expected that DMUB will resend any pending notifications at this point, for 1811 * example HPD from DPIA. 1812 */ 1813 if (dc_is_dmub_outbox_supported(adev->dm.dc)) 1814 dc_enable_dmub_outbox(adev->dm.dc); 1815 1816 if (amdgpu_dm_initialize_drm_device(adev)) { 1817 DRM_ERROR( 1818 "amdgpu: failed to initialize sw for display support.\n"); 1819 goto error; 1820 } 1821 1822 /* create fake encoders for MST */ 1823 dm_dp_create_fake_mst_encoders(adev); 1824 1825 /* TODO: Add_display_info? */ 1826 1827 /* TODO use dynamic cursor width */ 1828 adev_to_drm(adev)->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size; 1829 adev_to_drm(adev)->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size; 1830 1831 if (drm_vblank_init(adev_to_drm(adev), adev->dm.display_indexes_num)) { 1832 DRM_ERROR( 1833 "amdgpu: failed to initialize sw for display support.\n"); 1834 goto error; 1835 } 1836 1837 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 1838 adev->dm.secure_display_ctxs = amdgpu_dm_crtc_secure_display_create_contexts(adev); 1839 if (!adev->dm.secure_display_ctxs) 1840 DRM_ERROR("amdgpu: failed to initialize secure display contexts.\n"); 1841 #endif 1842 1843 DRM_DEBUG_DRIVER("KMS initialized.\n"); 1844 1845 return 0; 1846 error: 1847 amdgpu_dm_fini(adev); 1848 1849 return -EINVAL; 1850 } 1851 1852 static int amdgpu_dm_early_fini(void *handle) 1853 { 1854 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 1855 1856 amdgpu_dm_audio_fini(adev); 1857 1858 return 0; 1859 } 1860 1861 static void amdgpu_dm_fini(struct amdgpu_device *adev) 1862 { 1863 int i; 1864 1865 if (adev->dm.vblank_control_workqueue) { 1866 destroy_workqueue(adev->dm.vblank_control_workqueue); 1867 adev->dm.vblank_control_workqueue = NULL; 1868 } 1869 1870 amdgpu_dm_destroy_drm_device(&adev->dm); 1871 1872 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 1873 if (adev->dm.secure_display_ctxs) { 1874 for (i = 0; i < adev->mode_info.num_crtc; i++) { 1875 if (adev->dm.secure_display_ctxs[i].crtc) { 1876 flush_work(&adev->dm.secure_display_ctxs[i].notify_ta_work); 1877 flush_work(&adev->dm.secure_display_ctxs[i].forward_roi_work); 1878 } 1879 } 1880 kfree(adev->dm.secure_display_ctxs); 1881 adev->dm.secure_display_ctxs = NULL; 1882 } 1883 #endif 1884 if (adev->dm.hdcp_workqueue) { 1885 hdcp_destroy(&adev->dev->kobj, adev->dm.hdcp_workqueue); 1886 adev->dm.hdcp_workqueue = NULL; 1887 } 1888 1889 if (adev->dm.dc) 1890 dc_deinit_callbacks(adev->dm.dc); 1891 1892 if (adev->dm.dc) 1893 dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv); 1894 1895 if (dc_enable_dmub_notifications(adev->dm.dc)) { 1896 kfree(adev->dm.dmub_notify); 1897 adev->dm.dmub_notify = NULL; 1898 destroy_workqueue(adev->dm.delayed_hpd_wq); 1899 adev->dm.delayed_hpd_wq = NULL; 1900 } 1901 1902 if (adev->dm.dmub_bo) 1903 amdgpu_bo_free_kernel(&adev->dm.dmub_bo, 1904 &adev->dm.dmub_bo_gpu_addr, 1905 &adev->dm.dmub_bo_cpu_addr); 1906 1907 if (adev->dm.hpd_rx_offload_wq) { 1908 for (i = 0; i < adev->dm.dc->caps.max_links; i++) { 1909 if (adev->dm.hpd_rx_offload_wq[i].wq) { 1910 destroy_workqueue(adev->dm.hpd_rx_offload_wq[i].wq); 1911 adev->dm.hpd_rx_offload_wq[i].wq = NULL; 1912 } 1913 } 1914 1915 kfree(adev->dm.hpd_rx_offload_wq); 1916 adev->dm.hpd_rx_offload_wq = NULL; 1917 } 1918 1919 /* DC Destroy TODO: Replace destroy DAL */ 1920 if (adev->dm.dc) 1921 dc_destroy(&adev->dm.dc); 1922 /* 1923 * TODO: pageflip, vlank interrupt 1924 * 1925 * amdgpu_dm_irq_fini(adev); 1926 */ 1927 1928 if (adev->dm.cgs_device) { 1929 amdgpu_cgs_destroy_device(adev->dm.cgs_device); 1930 adev->dm.cgs_device = NULL; 1931 } 1932 if (adev->dm.freesync_module) { 1933 mod_freesync_destroy(adev->dm.freesync_module); 1934 adev->dm.freesync_module = NULL; 1935 } 1936 1937 mutex_destroy(&adev->dm.audio_lock); 1938 mutex_destroy(&adev->dm.dc_lock); 1939 mutex_destroy(&adev->dm.dpia_aux_lock); 1940 1941 return; 1942 } 1943 1944 static int load_dmcu_fw(struct amdgpu_device *adev) 1945 { 1946 const char *fw_name_dmcu = NULL; 1947 int r; 1948 const struct dmcu_firmware_header_v1_0 *hdr; 1949 1950 switch(adev->asic_type) { 1951 #if defined(CONFIG_DRM_AMD_DC_SI) 1952 case CHIP_TAHITI: 1953 case CHIP_PITCAIRN: 1954 case CHIP_VERDE: 1955 case CHIP_OLAND: 1956 #endif 1957 case CHIP_BONAIRE: 1958 case CHIP_HAWAII: 1959 case CHIP_KAVERI: 1960 case CHIP_KABINI: 1961 case CHIP_MULLINS: 1962 case CHIP_TONGA: 1963 case CHIP_FIJI: 1964 case CHIP_CARRIZO: 1965 case CHIP_STONEY: 1966 case CHIP_POLARIS11: 1967 case CHIP_POLARIS10: 1968 case CHIP_POLARIS12: 1969 case CHIP_VEGAM: 1970 case CHIP_VEGA10: 1971 case CHIP_VEGA12: 1972 case CHIP_VEGA20: 1973 return 0; 1974 case CHIP_NAVI12: 1975 fw_name_dmcu = FIRMWARE_NAVI12_DMCU; 1976 break; 1977 case CHIP_RAVEN: 1978 if (ASICREV_IS_PICASSO(adev->external_rev_id)) 1979 fw_name_dmcu = FIRMWARE_RAVEN_DMCU; 1980 else if (ASICREV_IS_RAVEN2(adev->external_rev_id)) 1981 fw_name_dmcu = FIRMWARE_RAVEN_DMCU; 1982 else 1983 return 0; 1984 break; 1985 default: 1986 switch (adev->ip_versions[DCE_HWIP][0]) { 1987 case IP_VERSION(2, 0, 2): 1988 case IP_VERSION(2, 0, 3): 1989 case IP_VERSION(2, 0, 0): 1990 case IP_VERSION(2, 1, 0): 1991 case IP_VERSION(3, 0, 0): 1992 case IP_VERSION(3, 0, 2): 1993 case IP_VERSION(3, 0, 3): 1994 case IP_VERSION(3, 0, 1): 1995 case IP_VERSION(3, 1, 2): 1996 case IP_VERSION(3, 1, 3): 1997 case IP_VERSION(3, 1, 4): 1998 case IP_VERSION(3, 1, 5): 1999 case IP_VERSION(3, 1, 6): 2000 case IP_VERSION(3, 2, 0): 2001 case IP_VERSION(3, 2, 1): 2002 return 0; 2003 default: 2004 break; 2005 } 2006 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type); 2007 return -EINVAL; 2008 } 2009 2010 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) { 2011 DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n"); 2012 return 0; 2013 } 2014 2015 r = amdgpu_ucode_request(adev, &adev->dm.fw_dmcu, fw_name_dmcu); 2016 if (r == -ENODEV) { 2017 /* DMCU firmware is not necessary, so don't raise a fuss if it's missing */ 2018 DRM_DEBUG_KMS("dm: DMCU firmware not found\n"); 2019 adev->dm.fw_dmcu = NULL; 2020 return 0; 2021 } 2022 if (r) { 2023 dev_err(adev->dev, "amdgpu_dm: Can't validate firmware \"%s\"\n", 2024 fw_name_dmcu); 2025 amdgpu_ucode_release(&adev->dm.fw_dmcu); 2026 return r; 2027 } 2028 2029 hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data; 2030 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM; 2031 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu; 2032 adev->firmware.fw_size += 2033 ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE); 2034 2035 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV; 2036 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu; 2037 adev->firmware.fw_size += 2038 ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE); 2039 2040 adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version); 2041 2042 DRM_DEBUG_KMS("PSP loading DMCU firmware\n"); 2043 2044 return 0; 2045 } 2046 2047 static uint32_t amdgpu_dm_dmub_reg_read(void *ctx, uint32_t address) 2048 { 2049 struct amdgpu_device *adev = ctx; 2050 2051 return dm_read_reg(adev->dm.dc->ctx, address); 2052 } 2053 2054 static void amdgpu_dm_dmub_reg_write(void *ctx, uint32_t address, 2055 uint32_t value) 2056 { 2057 struct amdgpu_device *adev = ctx; 2058 2059 return dm_write_reg(adev->dm.dc->ctx, address, value); 2060 } 2061 2062 static int dm_dmub_sw_init(struct amdgpu_device *adev) 2063 { 2064 struct dmub_srv_create_params create_params; 2065 struct dmub_srv_region_params region_params; 2066 struct dmub_srv_region_info region_info; 2067 struct dmub_srv_fb_params fb_params; 2068 struct dmub_srv_fb_info *fb_info; 2069 struct dmub_srv *dmub_srv; 2070 const struct dmcub_firmware_header_v1_0 *hdr; 2071 enum dmub_asic dmub_asic; 2072 enum dmub_status status; 2073 int r; 2074 2075 switch (adev->ip_versions[DCE_HWIP][0]) { 2076 case IP_VERSION(2, 1, 0): 2077 dmub_asic = DMUB_ASIC_DCN21; 2078 break; 2079 case IP_VERSION(3, 0, 0): 2080 dmub_asic = DMUB_ASIC_DCN30; 2081 break; 2082 case IP_VERSION(3, 0, 1): 2083 dmub_asic = DMUB_ASIC_DCN301; 2084 break; 2085 case IP_VERSION(3, 0, 2): 2086 dmub_asic = DMUB_ASIC_DCN302; 2087 break; 2088 case IP_VERSION(3, 0, 3): 2089 dmub_asic = DMUB_ASIC_DCN303; 2090 break; 2091 case IP_VERSION(3, 1, 2): 2092 case IP_VERSION(3, 1, 3): 2093 dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31; 2094 break; 2095 case IP_VERSION(3, 1, 4): 2096 dmub_asic = DMUB_ASIC_DCN314; 2097 break; 2098 case IP_VERSION(3, 1, 5): 2099 dmub_asic = DMUB_ASIC_DCN315; 2100 break; 2101 case IP_VERSION(3, 1, 6): 2102 dmub_asic = DMUB_ASIC_DCN316; 2103 break; 2104 case IP_VERSION(3, 2, 0): 2105 dmub_asic = DMUB_ASIC_DCN32; 2106 break; 2107 case IP_VERSION(3, 2, 1): 2108 dmub_asic = DMUB_ASIC_DCN321; 2109 break; 2110 default: 2111 /* ASIC doesn't support DMUB. */ 2112 return 0; 2113 } 2114 2115 hdr = (const struct dmcub_firmware_header_v1_0 *)adev->dm.dmub_fw->data; 2116 adev->dm.dmcub_fw_version = le32_to_cpu(hdr->header.ucode_version); 2117 2118 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) { 2119 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].ucode_id = 2120 AMDGPU_UCODE_ID_DMCUB; 2121 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].fw = 2122 adev->dm.dmub_fw; 2123 adev->firmware.fw_size += 2124 ALIGN(le32_to_cpu(hdr->inst_const_bytes), PAGE_SIZE); 2125 2126 DRM_INFO("Loading DMUB firmware via PSP: version=0x%08X\n", 2127 adev->dm.dmcub_fw_version); 2128 } 2129 2130 2131 adev->dm.dmub_srv = kzalloc(sizeof(*adev->dm.dmub_srv), GFP_KERNEL); 2132 dmub_srv = adev->dm.dmub_srv; 2133 2134 if (!dmub_srv) { 2135 DRM_ERROR("Failed to allocate DMUB service!\n"); 2136 return -ENOMEM; 2137 } 2138 2139 memset(&create_params, 0, sizeof(create_params)); 2140 create_params.user_ctx = adev; 2141 create_params.funcs.reg_read = amdgpu_dm_dmub_reg_read; 2142 create_params.funcs.reg_write = amdgpu_dm_dmub_reg_write; 2143 create_params.asic = dmub_asic; 2144 2145 /* Create the DMUB service. */ 2146 status = dmub_srv_create(dmub_srv, &create_params); 2147 if (status != DMUB_STATUS_OK) { 2148 DRM_ERROR("Error creating DMUB service: %d\n", status); 2149 return -EINVAL; 2150 } 2151 2152 /* Calculate the size of all the regions for the DMUB service. */ 2153 memset(®ion_params, 0, sizeof(region_params)); 2154 2155 region_params.inst_const_size = le32_to_cpu(hdr->inst_const_bytes) - 2156 PSP_HEADER_BYTES - PSP_FOOTER_BYTES; 2157 region_params.bss_data_size = le32_to_cpu(hdr->bss_data_bytes); 2158 region_params.vbios_size = adev->bios_size; 2159 region_params.fw_bss_data = region_params.bss_data_size ? 2160 adev->dm.dmub_fw->data + 2161 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 2162 le32_to_cpu(hdr->inst_const_bytes) : NULL; 2163 region_params.fw_inst_const = 2164 adev->dm.dmub_fw->data + 2165 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 2166 PSP_HEADER_BYTES; 2167 2168 status = dmub_srv_calc_region_info(dmub_srv, ®ion_params, 2169 ®ion_info); 2170 2171 if (status != DMUB_STATUS_OK) { 2172 DRM_ERROR("Error calculating DMUB region info: %d\n", status); 2173 return -EINVAL; 2174 } 2175 2176 /* 2177 * Allocate a framebuffer based on the total size of all the regions. 2178 * TODO: Move this into GART. 2179 */ 2180 r = amdgpu_bo_create_kernel(adev, region_info.fb_size, PAGE_SIZE, 2181 AMDGPU_GEM_DOMAIN_VRAM | 2182 AMDGPU_GEM_DOMAIN_GTT, 2183 &adev->dm.dmub_bo, 2184 &adev->dm.dmub_bo_gpu_addr, 2185 &adev->dm.dmub_bo_cpu_addr); 2186 if (r) 2187 return r; 2188 2189 /* Rebase the regions on the framebuffer address. */ 2190 memset(&fb_params, 0, sizeof(fb_params)); 2191 fb_params.cpu_addr = adev->dm.dmub_bo_cpu_addr; 2192 fb_params.gpu_addr = adev->dm.dmub_bo_gpu_addr; 2193 fb_params.region_info = ®ion_info; 2194 2195 adev->dm.dmub_fb_info = 2196 kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL); 2197 fb_info = adev->dm.dmub_fb_info; 2198 2199 if (!fb_info) { 2200 DRM_ERROR( 2201 "Failed to allocate framebuffer info for DMUB service!\n"); 2202 return -ENOMEM; 2203 } 2204 2205 status = dmub_srv_calc_fb_info(dmub_srv, &fb_params, fb_info); 2206 if (status != DMUB_STATUS_OK) { 2207 DRM_ERROR("Error calculating DMUB FB info: %d\n", status); 2208 return -EINVAL; 2209 } 2210 2211 return 0; 2212 } 2213 2214 static int dm_sw_init(void *handle) 2215 { 2216 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 2217 int r; 2218 2219 r = dm_dmub_sw_init(adev); 2220 if (r) 2221 return r; 2222 2223 return load_dmcu_fw(adev); 2224 } 2225 2226 static int dm_sw_fini(void *handle) 2227 { 2228 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 2229 2230 kfree(adev->dm.dmub_fb_info); 2231 adev->dm.dmub_fb_info = NULL; 2232 2233 if (adev->dm.dmub_srv) { 2234 dmub_srv_destroy(adev->dm.dmub_srv); 2235 adev->dm.dmub_srv = NULL; 2236 } 2237 2238 amdgpu_ucode_release(&adev->dm.dmub_fw); 2239 amdgpu_ucode_release(&adev->dm.fw_dmcu); 2240 2241 return 0; 2242 } 2243 2244 static int detect_mst_link_for_all_connectors(struct drm_device *dev) 2245 { 2246 struct amdgpu_dm_connector *aconnector; 2247 struct drm_connector *connector; 2248 struct drm_connector_list_iter iter; 2249 int ret = 0; 2250 2251 drm_connector_list_iter_begin(dev, &iter); 2252 drm_for_each_connector_iter(connector, &iter) { 2253 aconnector = to_amdgpu_dm_connector(connector); 2254 if (aconnector->dc_link->type == dc_connection_mst_branch && 2255 aconnector->mst_mgr.aux) { 2256 DRM_DEBUG_DRIVER("DM_MST: starting TM on aconnector: %p [id: %d]\n", 2257 aconnector, 2258 aconnector->base.base.id); 2259 2260 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true); 2261 if (ret < 0) { 2262 DRM_ERROR("DM_MST: Failed to start MST\n"); 2263 aconnector->dc_link->type = 2264 dc_connection_single; 2265 ret = dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx, 2266 aconnector->dc_link); 2267 break; 2268 } 2269 } 2270 } 2271 drm_connector_list_iter_end(&iter); 2272 2273 return ret; 2274 } 2275 2276 static int dm_late_init(void *handle) 2277 { 2278 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 2279 2280 struct dmcu_iram_parameters params; 2281 unsigned int linear_lut[16]; 2282 int i; 2283 struct dmcu *dmcu = NULL; 2284 2285 dmcu = adev->dm.dc->res_pool->dmcu; 2286 2287 for (i = 0; i < 16; i++) 2288 linear_lut[i] = 0xFFFF * i / 15; 2289 2290 params.set = 0; 2291 params.backlight_ramping_override = false; 2292 params.backlight_ramping_start = 0xCCCC; 2293 params.backlight_ramping_reduction = 0xCCCCCCCC; 2294 params.backlight_lut_array_size = 16; 2295 params.backlight_lut_array = linear_lut; 2296 2297 /* Min backlight level after ABM reduction, Don't allow below 1% 2298 * 0xFFFF x 0.01 = 0x28F 2299 */ 2300 params.min_abm_backlight = 0x28F; 2301 /* In the case where abm is implemented on dmcub, 2302 * dmcu object will be null. 2303 * ABM 2.4 and up are implemented on dmcub. 2304 */ 2305 if (dmcu) { 2306 if (!dmcu_load_iram(dmcu, params)) 2307 return -EINVAL; 2308 } else if (adev->dm.dc->ctx->dmub_srv) { 2309 struct dc_link *edp_links[MAX_NUM_EDP]; 2310 int edp_num; 2311 2312 dc_get_edp_links(adev->dm.dc, edp_links, &edp_num); 2313 for (i = 0; i < edp_num; i++) { 2314 if (!dmub_init_abm_config(adev->dm.dc->res_pool, params, i)) 2315 return -EINVAL; 2316 } 2317 } 2318 2319 return detect_mst_link_for_all_connectors(adev_to_drm(adev)); 2320 } 2321 2322 static void s3_handle_mst(struct drm_device *dev, bool suspend) 2323 { 2324 struct amdgpu_dm_connector *aconnector; 2325 struct drm_connector *connector; 2326 struct drm_connector_list_iter iter; 2327 struct drm_dp_mst_topology_mgr *mgr; 2328 int ret; 2329 bool need_hotplug = false; 2330 2331 drm_connector_list_iter_begin(dev, &iter); 2332 drm_for_each_connector_iter(connector, &iter) { 2333 aconnector = to_amdgpu_dm_connector(connector); 2334 if (aconnector->dc_link->type != dc_connection_mst_branch || 2335 aconnector->mst_root) 2336 continue; 2337 2338 mgr = &aconnector->mst_mgr; 2339 2340 if (suspend) { 2341 drm_dp_mst_topology_mgr_suspend(mgr); 2342 } else { 2343 /* if extended timeout is supported in hardware, 2344 * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer 2345 * CTS 4.2.1.1 regression introduced by CTS specs requirement update. 2346 */ 2347 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD); 2348 if (!dp_is_lttpr_present(aconnector->dc_link)) 2349 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD); 2350 2351 ret = drm_dp_mst_topology_mgr_resume(mgr, true); 2352 if (ret < 0) { 2353 dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx, 2354 aconnector->dc_link); 2355 need_hotplug = true; 2356 } 2357 } 2358 } 2359 drm_connector_list_iter_end(&iter); 2360 2361 if (need_hotplug) 2362 drm_kms_helper_hotplug_event(dev); 2363 } 2364 2365 static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev) 2366 { 2367 int ret = 0; 2368 2369 /* This interface is for dGPU Navi1x.Linux dc-pplib interface depends 2370 * on window driver dc implementation. 2371 * For Navi1x, clock settings of dcn watermarks are fixed. the settings 2372 * should be passed to smu during boot up and resume from s3. 2373 * boot up: dc calculate dcn watermark clock settings within dc_create, 2374 * dcn20_resource_construct 2375 * then call pplib functions below to pass the settings to smu: 2376 * smu_set_watermarks_for_clock_ranges 2377 * smu_set_watermarks_table 2378 * navi10_set_watermarks_table 2379 * smu_write_watermarks_table 2380 * 2381 * For Renoir, clock settings of dcn watermark are also fixed values. 2382 * dc has implemented different flow for window driver: 2383 * dc_hardware_init / dc_set_power_state 2384 * dcn10_init_hw 2385 * notify_wm_ranges 2386 * set_wm_ranges 2387 * -- Linux 2388 * smu_set_watermarks_for_clock_ranges 2389 * renoir_set_watermarks_table 2390 * smu_write_watermarks_table 2391 * 2392 * For Linux, 2393 * dc_hardware_init -> amdgpu_dm_init 2394 * dc_set_power_state --> dm_resume 2395 * 2396 * therefore, this function apply to navi10/12/14 but not Renoir 2397 * * 2398 */ 2399 switch (adev->ip_versions[DCE_HWIP][0]) { 2400 case IP_VERSION(2, 0, 2): 2401 case IP_VERSION(2, 0, 0): 2402 break; 2403 default: 2404 return 0; 2405 } 2406 2407 ret = amdgpu_dpm_write_watermarks_table(adev); 2408 if (ret) { 2409 DRM_ERROR("Failed to update WMTABLE!\n"); 2410 return ret; 2411 } 2412 2413 return 0; 2414 } 2415 2416 /** 2417 * dm_hw_init() - Initialize DC device 2418 * @handle: The base driver device containing the amdgpu_dm device. 2419 * 2420 * Initialize the &struct amdgpu_display_manager device. This involves calling 2421 * the initializers of each DM component, then populating the struct with them. 2422 * 2423 * Although the function implies hardware initialization, both hardware and 2424 * software are initialized here. Splitting them out to their relevant init 2425 * hooks is a future TODO item. 2426 * 2427 * Some notable things that are initialized here: 2428 * 2429 * - Display Core, both software and hardware 2430 * - DC modules that we need (freesync and color management) 2431 * - DRM software states 2432 * - Interrupt sources and handlers 2433 * - Vblank support 2434 * - Debug FS entries, if enabled 2435 */ 2436 static int dm_hw_init(void *handle) 2437 { 2438 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 2439 /* Create DAL display manager */ 2440 amdgpu_dm_init(adev); 2441 amdgpu_dm_hpd_init(adev); 2442 2443 return 0; 2444 } 2445 2446 /** 2447 * dm_hw_fini() - Teardown DC device 2448 * @handle: The base driver device containing the amdgpu_dm device. 2449 * 2450 * Teardown components within &struct amdgpu_display_manager that require 2451 * cleanup. This involves cleaning up the DRM device, DC, and any modules that 2452 * were loaded. Also flush IRQ workqueues and disable them. 2453 */ 2454 static int dm_hw_fini(void *handle) 2455 { 2456 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 2457 2458 amdgpu_dm_hpd_fini(adev); 2459 2460 amdgpu_dm_irq_fini(adev); 2461 amdgpu_dm_fini(adev); 2462 return 0; 2463 } 2464 2465 2466 static void dm_gpureset_toggle_interrupts(struct amdgpu_device *adev, 2467 struct dc_state *state, bool enable) 2468 { 2469 enum dc_irq_source irq_source; 2470 struct amdgpu_crtc *acrtc; 2471 int rc = -EBUSY; 2472 int i = 0; 2473 2474 for (i = 0; i < state->stream_count; i++) { 2475 acrtc = get_crtc_by_otg_inst( 2476 adev, state->stream_status[i].primary_otg_inst); 2477 2478 if (acrtc && state->stream_status[i].plane_count != 0) { 2479 irq_source = IRQ_TYPE_PFLIP + acrtc->otg_inst; 2480 rc = dc_interrupt_set(adev->dm.dc, irq_source, enable) ? 0 : -EBUSY; 2481 DRM_DEBUG_VBL("crtc %d - vupdate irq %sabling: r=%d\n", 2482 acrtc->crtc_id, enable ? "en" : "dis", rc); 2483 if (rc) 2484 DRM_WARN("Failed to %s pflip interrupts\n", 2485 enable ? "enable" : "disable"); 2486 2487 if (enable) { 2488 rc = amdgpu_dm_crtc_enable_vblank(&acrtc->base); 2489 if (rc) 2490 DRM_WARN("Failed to enable vblank interrupts\n"); 2491 } else { 2492 amdgpu_dm_crtc_disable_vblank(&acrtc->base); 2493 } 2494 2495 } 2496 } 2497 2498 } 2499 2500 static enum dc_status amdgpu_dm_commit_zero_streams(struct dc *dc) 2501 { 2502 struct dc_state *context = NULL; 2503 enum dc_status res = DC_ERROR_UNEXPECTED; 2504 int i; 2505 struct dc_stream_state *del_streams[MAX_PIPES]; 2506 int del_streams_count = 0; 2507 2508 memset(del_streams, 0, sizeof(del_streams)); 2509 2510 context = dc_create_state(dc); 2511 if (context == NULL) 2512 goto context_alloc_fail; 2513 2514 dc_resource_state_copy_construct_current(dc, context); 2515 2516 /* First remove from context all streams */ 2517 for (i = 0; i < context->stream_count; i++) { 2518 struct dc_stream_state *stream = context->streams[i]; 2519 2520 del_streams[del_streams_count++] = stream; 2521 } 2522 2523 /* Remove all planes for removed streams and then remove the streams */ 2524 for (i = 0; i < del_streams_count; i++) { 2525 if (!dc_rem_all_planes_for_stream(dc, del_streams[i], context)) { 2526 res = DC_FAIL_DETACH_SURFACES; 2527 goto fail; 2528 } 2529 2530 res = dc_remove_stream_from_ctx(dc, context, del_streams[i]); 2531 if (res != DC_OK) 2532 goto fail; 2533 } 2534 2535 res = dc_commit_streams(dc, context->streams, context->stream_count); 2536 2537 fail: 2538 dc_release_state(context); 2539 2540 context_alloc_fail: 2541 return res; 2542 } 2543 2544 static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm) 2545 { 2546 int i; 2547 2548 if (dm->hpd_rx_offload_wq) { 2549 for (i = 0; i < dm->dc->caps.max_links; i++) 2550 flush_workqueue(dm->hpd_rx_offload_wq[i].wq); 2551 } 2552 } 2553 2554 static int dm_suspend(void *handle) 2555 { 2556 struct amdgpu_device *adev = handle; 2557 struct amdgpu_display_manager *dm = &adev->dm; 2558 int ret = 0; 2559 2560 if (amdgpu_in_reset(adev)) { 2561 mutex_lock(&dm->dc_lock); 2562 2563 dc_allow_idle_optimizations(adev->dm.dc, false); 2564 2565 dm->cached_dc_state = dc_copy_state(dm->dc->current_state); 2566 2567 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, false); 2568 2569 amdgpu_dm_commit_zero_streams(dm->dc); 2570 2571 amdgpu_dm_irq_suspend(adev); 2572 2573 hpd_rx_irq_work_suspend(dm); 2574 2575 return ret; 2576 } 2577 2578 WARN_ON(adev->dm.cached_state); 2579 adev->dm.cached_state = drm_atomic_helper_suspend(adev_to_drm(adev)); 2580 2581 s3_handle_mst(adev_to_drm(adev), true); 2582 2583 amdgpu_dm_irq_suspend(adev); 2584 2585 hpd_rx_irq_work_suspend(dm); 2586 2587 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3); 2588 2589 return 0; 2590 } 2591 2592 struct amdgpu_dm_connector * 2593 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state, 2594 struct drm_crtc *crtc) 2595 { 2596 u32 i; 2597 struct drm_connector_state *new_con_state; 2598 struct drm_connector *connector; 2599 struct drm_crtc *crtc_from_state; 2600 2601 for_each_new_connector_in_state(state, connector, new_con_state, i) { 2602 crtc_from_state = new_con_state->crtc; 2603 2604 if (crtc_from_state == crtc) 2605 return to_amdgpu_dm_connector(connector); 2606 } 2607 2608 return NULL; 2609 } 2610 2611 static void emulated_link_detect(struct dc_link *link) 2612 { 2613 struct dc_sink_init_data sink_init_data = { 0 }; 2614 struct display_sink_capability sink_caps = { 0 }; 2615 enum dc_edid_status edid_status; 2616 struct dc_context *dc_ctx = link->ctx; 2617 struct dc_sink *sink = NULL; 2618 struct dc_sink *prev_sink = NULL; 2619 2620 link->type = dc_connection_none; 2621 prev_sink = link->local_sink; 2622 2623 if (prev_sink) 2624 dc_sink_release(prev_sink); 2625 2626 switch (link->connector_signal) { 2627 case SIGNAL_TYPE_HDMI_TYPE_A: { 2628 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 2629 sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A; 2630 break; 2631 } 2632 2633 case SIGNAL_TYPE_DVI_SINGLE_LINK: { 2634 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 2635 sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK; 2636 break; 2637 } 2638 2639 case SIGNAL_TYPE_DVI_DUAL_LINK: { 2640 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 2641 sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK; 2642 break; 2643 } 2644 2645 case SIGNAL_TYPE_LVDS: { 2646 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 2647 sink_caps.signal = SIGNAL_TYPE_LVDS; 2648 break; 2649 } 2650 2651 case SIGNAL_TYPE_EDP: { 2652 sink_caps.transaction_type = 2653 DDC_TRANSACTION_TYPE_I2C_OVER_AUX; 2654 sink_caps.signal = SIGNAL_TYPE_EDP; 2655 break; 2656 } 2657 2658 case SIGNAL_TYPE_DISPLAY_PORT: { 2659 sink_caps.transaction_type = 2660 DDC_TRANSACTION_TYPE_I2C_OVER_AUX; 2661 sink_caps.signal = SIGNAL_TYPE_VIRTUAL; 2662 break; 2663 } 2664 2665 default: 2666 DC_ERROR("Invalid connector type! signal:%d\n", 2667 link->connector_signal); 2668 return; 2669 } 2670 2671 sink_init_data.link = link; 2672 sink_init_data.sink_signal = sink_caps.signal; 2673 2674 sink = dc_sink_create(&sink_init_data); 2675 if (!sink) { 2676 DC_ERROR("Failed to create sink!\n"); 2677 return; 2678 } 2679 2680 /* dc_sink_create returns a new reference */ 2681 link->local_sink = sink; 2682 2683 edid_status = dm_helpers_read_local_edid( 2684 link->ctx, 2685 link, 2686 sink); 2687 2688 if (edid_status != EDID_OK) 2689 DC_ERROR("Failed to read EDID"); 2690 2691 } 2692 2693 static void dm_gpureset_commit_state(struct dc_state *dc_state, 2694 struct amdgpu_display_manager *dm) 2695 { 2696 struct { 2697 struct dc_surface_update surface_updates[MAX_SURFACES]; 2698 struct dc_plane_info plane_infos[MAX_SURFACES]; 2699 struct dc_scaling_info scaling_infos[MAX_SURFACES]; 2700 struct dc_flip_addrs flip_addrs[MAX_SURFACES]; 2701 struct dc_stream_update stream_update; 2702 } * bundle; 2703 int k, m; 2704 2705 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL); 2706 2707 if (!bundle) { 2708 dm_error("Failed to allocate update bundle\n"); 2709 goto cleanup; 2710 } 2711 2712 for (k = 0; k < dc_state->stream_count; k++) { 2713 bundle->stream_update.stream = dc_state->streams[k]; 2714 2715 for (m = 0; m < dc_state->stream_status->plane_count; m++) { 2716 bundle->surface_updates[m].surface = 2717 dc_state->stream_status->plane_states[m]; 2718 bundle->surface_updates[m].surface->force_full_update = 2719 true; 2720 } 2721 2722 update_planes_and_stream_adapter(dm->dc, 2723 UPDATE_TYPE_FULL, 2724 dc_state->stream_status->plane_count, 2725 dc_state->streams[k], 2726 &bundle->stream_update, 2727 bundle->surface_updates); 2728 } 2729 2730 cleanup: 2731 kfree(bundle); 2732 2733 return; 2734 } 2735 2736 static int dm_resume(void *handle) 2737 { 2738 struct amdgpu_device *adev = handle; 2739 struct drm_device *ddev = adev_to_drm(adev); 2740 struct amdgpu_display_manager *dm = &adev->dm; 2741 struct amdgpu_dm_connector *aconnector; 2742 struct drm_connector *connector; 2743 struct drm_connector_list_iter iter; 2744 struct drm_crtc *crtc; 2745 struct drm_crtc_state *new_crtc_state; 2746 struct dm_crtc_state *dm_new_crtc_state; 2747 struct drm_plane *plane; 2748 struct drm_plane_state *new_plane_state; 2749 struct dm_plane_state *dm_new_plane_state; 2750 struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state); 2751 enum dc_connection_type new_connection_type = dc_connection_none; 2752 struct dc_state *dc_state; 2753 int i, r, j; 2754 2755 if (amdgpu_in_reset(adev)) { 2756 dc_state = dm->cached_dc_state; 2757 2758 /* 2759 * The dc->current_state is backed up into dm->cached_dc_state 2760 * before we commit 0 streams. 2761 * 2762 * DC will clear link encoder assignments on the real state 2763 * but the changes won't propagate over to the copy we made 2764 * before the 0 streams commit. 2765 * 2766 * DC expects that link encoder assignments are *not* valid 2767 * when committing a state, so as a workaround we can copy 2768 * off of the current state. 2769 * 2770 * We lose the previous assignments, but we had already 2771 * commit 0 streams anyway. 2772 */ 2773 link_enc_cfg_copy(adev->dm.dc->current_state, dc_state); 2774 2775 r = dm_dmub_hw_init(adev); 2776 if (r) 2777 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r); 2778 2779 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0); 2780 dc_resume(dm->dc); 2781 2782 amdgpu_dm_irq_resume_early(adev); 2783 2784 for (i = 0; i < dc_state->stream_count; i++) { 2785 dc_state->streams[i]->mode_changed = true; 2786 for (j = 0; j < dc_state->stream_status[i].plane_count; j++) { 2787 dc_state->stream_status[i].plane_states[j]->update_flags.raw 2788 = 0xffffffff; 2789 } 2790 } 2791 2792 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 2793 amdgpu_dm_outbox_init(adev); 2794 dc_enable_dmub_outbox(adev->dm.dc); 2795 } 2796 2797 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count)); 2798 2799 dm_gpureset_commit_state(dm->cached_dc_state, dm); 2800 2801 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, true); 2802 2803 dc_release_state(dm->cached_dc_state); 2804 dm->cached_dc_state = NULL; 2805 2806 amdgpu_dm_irq_resume_late(adev); 2807 2808 mutex_unlock(&dm->dc_lock); 2809 2810 return 0; 2811 } 2812 /* Recreate dc_state - DC invalidates it when setting power state to S3. */ 2813 dc_release_state(dm_state->context); 2814 dm_state->context = dc_create_state(dm->dc); 2815 /* TODO: Remove dc_state->dccg, use dc->dccg directly. */ 2816 dc_resource_state_construct(dm->dc, dm_state->context); 2817 2818 /* Before powering on DC we need to re-initialize DMUB. */ 2819 dm_dmub_hw_resume(adev); 2820 2821 /* Re-enable outbox interrupts for DPIA. */ 2822 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 2823 amdgpu_dm_outbox_init(adev); 2824 dc_enable_dmub_outbox(adev->dm.dc); 2825 } 2826 2827 /* power on hardware */ 2828 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0); 2829 2830 /* program HPD filter */ 2831 dc_resume(dm->dc); 2832 2833 /* 2834 * early enable HPD Rx IRQ, should be done before set mode as short 2835 * pulse interrupts are used for MST 2836 */ 2837 amdgpu_dm_irq_resume_early(adev); 2838 2839 /* On resume we need to rewrite the MSTM control bits to enable MST*/ 2840 s3_handle_mst(ddev, false); 2841 2842 /* Do detection*/ 2843 drm_connector_list_iter_begin(ddev, &iter); 2844 drm_for_each_connector_iter(connector, &iter) { 2845 aconnector = to_amdgpu_dm_connector(connector); 2846 2847 if (!aconnector->dc_link) 2848 continue; 2849 2850 /* 2851 * this is the case when traversing through already created 2852 * MST connectors, should be skipped 2853 */ 2854 if (aconnector->dc_link->type == dc_connection_mst_branch) 2855 continue; 2856 2857 mutex_lock(&aconnector->hpd_lock); 2858 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type)) 2859 DRM_ERROR("KMS: Failed to detect connector\n"); 2860 2861 if (aconnector->base.force && new_connection_type == dc_connection_none) { 2862 emulated_link_detect(aconnector->dc_link); 2863 } else { 2864 mutex_lock(&dm->dc_lock); 2865 dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD); 2866 mutex_unlock(&dm->dc_lock); 2867 } 2868 2869 if (aconnector->fake_enable && aconnector->dc_link->local_sink) 2870 aconnector->fake_enable = false; 2871 2872 if (aconnector->dc_sink) 2873 dc_sink_release(aconnector->dc_sink); 2874 aconnector->dc_sink = NULL; 2875 amdgpu_dm_update_connector_after_detect(aconnector); 2876 mutex_unlock(&aconnector->hpd_lock); 2877 } 2878 drm_connector_list_iter_end(&iter); 2879 2880 /* Force mode set in atomic commit */ 2881 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) 2882 new_crtc_state->active_changed = true; 2883 2884 /* 2885 * atomic_check is expected to create the dc states. We need to release 2886 * them here, since they were duplicated as part of the suspend 2887 * procedure. 2888 */ 2889 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) { 2890 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 2891 if (dm_new_crtc_state->stream) { 2892 WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1); 2893 dc_stream_release(dm_new_crtc_state->stream); 2894 dm_new_crtc_state->stream = NULL; 2895 } 2896 } 2897 2898 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) { 2899 dm_new_plane_state = to_dm_plane_state(new_plane_state); 2900 if (dm_new_plane_state->dc_state) { 2901 WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1); 2902 dc_plane_state_release(dm_new_plane_state->dc_state); 2903 dm_new_plane_state->dc_state = NULL; 2904 } 2905 } 2906 2907 drm_atomic_helper_resume(ddev, dm->cached_state); 2908 2909 dm->cached_state = NULL; 2910 2911 amdgpu_dm_irq_resume_late(adev); 2912 2913 amdgpu_dm_smu_write_watermarks_table(adev); 2914 2915 return 0; 2916 } 2917 2918 /** 2919 * DOC: DM Lifecycle 2920 * 2921 * DM (and consequently DC) is registered in the amdgpu base driver as a IP 2922 * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to 2923 * the base driver's device list to be initialized and torn down accordingly. 2924 * 2925 * The functions to do so are provided as hooks in &struct amd_ip_funcs. 2926 */ 2927 2928 static const struct amd_ip_funcs amdgpu_dm_funcs = { 2929 .name = "dm", 2930 .early_init = dm_early_init, 2931 .late_init = dm_late_init, 2932 .sw_init = dm_sw_init, 2933 .sw_fini = dm_sw_fini, 2934 .early_fini = amdgpu_dm_early_fini, 2935 .hw_init = dm_hw_init, 2936 .hw_fini = dm_hw_fini, 2937 .suspend = dm_suspend, 2938 .resume = dm_resume, 2939 .is_idle = dm_is_idle, 2940 .wait_for_idle = dm_wait_for_idle, 2941 .check_soft_reset = dm_check_soft_reset, 2942 .soft_reset = dm_soft_reset, 2943 .set_clockgating_state = dm_set_clockgating_state, 2944 .set_powergating_state = dm_set_powergating_state, 2945 }; 2946 2947 const struct amdgpu_ip_block_version dm_ip_block = 2948 { 2949 .type = AMD_IP_BLOCK_TYPE_DCE, 2950 .major = 1, 2951 .minor = 0, 2952 .rev = 0, 2953 .funcs = &amdgpu_dm_funcs, 2954 }; 2955 2956 2957 /** 2958 * DOC: atomic 2959 * 2960 * *WIP* 2961 */ 2962 2963 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = { 2964 .fb_create = amdgpu_display_user_framebuffer_create, 2965 .get_format_info = amdgpu_dm_plane_get_format_info, 2966 .atomic_check = amdgpu_dm_atomic_check, 2967 .atomic_commit = drm_atomic_helper_commit, 2968 }; 2969 2970 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = { 2971 .atomic_commit_tail = amdgpu_dm_atomic_commit_tail, 2972 .atomic_commit_setup = drm_dp_mst_atomic_setup_commit, 2973 }; 2974 2975 static void update_connector_ext_caps(struct amdgpu_dm_connector *aconnector) 2976 { 2977 struct amdgpu_dm_backlight_caps *caps; 2978 struct drm_connector *conn_base; 2979 struct amdgpu_device *adev; 2980 struct drm_luminance_range_info *luminance_range; 2981 2982 if (aconnector->bl_idx == -1 || 2983 aconnector->dc_link->connector_signal != SIGNAL_TYPE_EDP) 2984 return; 2985 2986 conn_base = &aconnector->base; 2987 adev = drm_to_adev(conn_base->dev); 2988 2989 caps = &adev->dm.backlight_caps[aconnector->bl_idx]; 2990 caps->ext_caps = &aconnector->dc_link->dpcd_sink_ext_caps; 2991 caps->aux_support = false; 2992 2993 if (caps->ext_caps->bits.oled == 1 /*|| 2994 caps->ext_caps->bits.sdr_aux_backlight_control == 1 || 2995 caps->ext_caps->bits.hdr_aux_backlight_control == 1*/) 2996 caps->aux_support = true; 2997 2998 if (amdgpu_backlight == 0) 2999 caps->aux_support = false; 3000 else if (amdgpu_backlight == 1) 3001 caps->aux_support = true; 3002 3003 luminance_range = &conn_base->display_info.luminance_range; 3004 3005 if (luminance_range->max_luminance) { 3006 caps->aux_min_input_signal = luminance_range->min_luminance; 3007 caps->aux_max_input_signal = luminance_range->max_luminance; 3008 } else { 3009 caps->aux_min_input_signal = 0; 3010 caps->aux_max_input_signal = 512; 3011 } 3012 } 3013 3014 void amdgpu_dm_update_connector_after_detect( 3015 struct amdgpu_dm_connector *aconnector) 3016 { 3017 struct drm_connector *connector = &aconnector->base; 3018 struct drm_device *dev = connector->dev; 3019 struct dc_sink *sink; 3020 3021 /* MST handled by drm_mst framework */ 3022 if (aconnector->mst_mgr.mst_state == true) 3023 return; 3024 3025 sink = aconnector->dc_link->local_sink; 3026 if (sink) 3027 dc_sink_retain(sink); 3028 3029 /* 3030 * Edid mgmt connector gets first update only in mode_valid hook and then 3031 * the connector sink is set to either fake or physical sink depends on link status. 3032 * Skip if already done during boot. 3033 */ 3034 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED 3035 && aconnector->dc_em_sink) { 3036 3037 /* 3038 * For S3 resume with headless use eml_sink to fake stream 3039 * because on resume connector->sink is set to NULL 3040 */ 3041 mutex_lock(&dev->mode_config.mutex); 3042 3043 if (sink) { 3044 if (aconnector->dc_sink) { 3045 amdgpu_dm_update_freesync_caps(connector, NULL); 3046 /* 3047 * retain and release below are used to 3048 * bump up refcount for sink because the link doesn't point 3049 * to it anymore after disconnect, so on next crtc to connector 3050 * reshuffle by UMD we will get into unwanted dc_sink release 3051 */ 3052 dc_sink_release(aconnector->dc_sink); 3053 } 3054 aconnector->dc_sink = sink; 3055 dc_sink_retain(aconnector->dc_sink); 3056 amdgpu_dm_update_freesync_caps(connector, 3057 aconnector->edid); 3058 } else { 3059 amdgpu_dm_update_freesync_caps(connector, NULL); 3060 if (!aconnector->dc_sink) { 3061 aconnector->dc_sink = aconnector->dc_em_sink; 3062 dc_sink_retain(aconnector->dc_sink); 3063 } 3064 } 3065 3066 mutex_unlock(&dev->mode_config.mutex); 3067 3068 if (sink) 3069 dc_sink_release(sink); 3070 return; 3071 } 3072 3073 /* 3074 * TODO: temporary guard to look for proper fix 3075 * if this sink is MST sink, we should not do anything 3076 */ 3077 if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) { 3078 dc_sink_release(sink); 3079 return; 3080 } 3081 3082 if (aconnector->dc_sink == sink) { 3083 /* 3084 * We got a DP short pulse (Link Loss, DP CTS, etc...). 3085 * Do nothing!! 3086 */ 3087 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: dc_sink didn't change.\n", 3088 aconnector->connector_id); 3089 if (sink) 3090 dc_sink_release(sink); 3091 return; 3092 } 3093 3094 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: Old sink=%p New sink=%p\n", 3095 aconnector->connector_id, aconnector->dc_sink, sink); 3096 3097 mutex_lock(&dev->mode_config.mutex); 3098 3099 /* 3100 * 1. Update status of the drm connector 3101 * 2. Send an event and let userspace tell us what to do 3102 */ 3103 if (sink) { 3104 /* 3105 * TODO: check if we still need the S3 mode update workaround. 3106 * If yes, put it here. 3107 */ 3108 if (aconnector->dc_sink) { 3109 amdgpu_dm_update_freesync_caps(connector, NULL); 3110 dc_sink_release(aconnector->dc_sink); 3111 } 3112 3113 aconnector->dc_sink = sink; 3114 dc_sink_retain(aconnector->dc_sink); 3115 if (sink->dc_edid.length == 0) { 3116 aconnector->edid = NULL; 3117 if (aconnector->dc_link->aux_mode) { 3118 drm_dp_cec_unset_edid( 3119 &aconnector->dm_dp_aux.aux); 3120 } 3121 } else { 3122 aconnector->edid = 3123 (struct edid *)sink->dc_edid.raw_edid; 3124 3125 if (aconnector->dc_link->aux_mode) 3126 drm_dp_cec_set_edid(&aconnector->dm_dp_aux.aux, 3127 aconnector->edid); 3128 } 3129 3130 if (!aconnector->timing_requested) { 3131 aconnector->timing_requested = 3132 kzalloc(sizeof(struct dc_crtc_timing), GFP_KERNEL); 3133 if (!aconnector->timing_requested) 3134 dm_error("failed to create aconnector->requested_timing\n"); 3135 } 3136 3137 drm_connector_update_edid_property(connector, aconnector->edid); 3138 amdgpu_dm_update_freesync_caps(connector, aconnector->edid); 3139 update_connector_ext_caps(aconnector); 3140 } else { 3141 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux); 3142 amdgpu_dm_update_freesync_caps(connector, NULL); 3143 drm_connector_update_edid_property(connector, NULL); 3144 aconnector->num_modes = 0; 3145 dc_sink_release(aconnector->dc_sink); 3146 aconnector->dc_sink = NULL; 3147 aconnector->edid = NULL; 3148 kfree(aconnector->timing_requested); 3149 aconnector->timing_requested = NULL; 3150 /* Set CP to DESIRED if it was ENABLED, so we can re-enable it again on hotplug */ 3151 if (connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) 3152 connector->state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 3153 } 3154 3155 mutex_unlock(&dev->mode_config.mutex); 3156 3157 update_subconnector_property(aconnector); 3158 3159 if (sink) 3160 dc_sink_release(sink); 3161 } 3162 3163 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector) 3164 { 3165 struct drm_connector *connector = &aconnector->base; 3166 struct drm_device *dev = connector->dev; 3167 enum dc_connection_type new_connection_type = dc_connection_none; 3168 struct amdgpu_device *adev = drm_to_adev(dev); 3169 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state); 3170 bool ret = false; 3171 3172 if (adev->dm.disable_hpd_irq) 3173 return; 3174 3175 /* 3176 * In case of failure or MST no need to update connector status or notify the OS 3177 * since (for MST case) MST does this in its own context. 3178 */ 3179 mutex_lock(&aconnector->hpd_lock); 3180 3181 if (adev->dm.hdcp_workqueue) { 3182 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index); 3183 dm_con_state->update_hdcp = true; 3184 } 3185 if (aconnector->fake_enable) 3186 aconnector->fake_enable = false; 3187 3188 aconnector->timing_changed = false; 3189 3190 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type)) 3191 DRM_ERROR("KMS: Failed to detect connector\n"); 3192 3193 if (aconnector->base.force && new_connection_type == dc_connection_none) { 3194 emulated_link_detect(aconnector->dc_link); 3195 3196 drm_modeset_lock_all(dev); 3197 dm_restore_drm_connector_state(dev, connector); 3198 drm_modeset_unlock_all(dev); 3199 3200 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED) 3201 drm_kms_helper_connector_hotplug_event(connector); 3202 } else { 3203 mutex_lock(&adev->dm.dc_lock); 3204 ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD); 3205 mutex_unlock(&adev->dm.dc_lock); 3206 if (ret) { 3207 amdgpu_dm_update_connector_after_detect(aconnector); 3208 3209 drm_modeset_lock_all(dev); 3210 dm_restore_drm_connector_state(dev, connector); 3211 drm_modeset_unlock_all(dev); 3212 3213 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED) 3214 drm_kms_helper_connector_hotplug_event(connector); 3215 } 3216 } 3217 mutex_unlock(&aconnector->hpd_lock); 3218 3219 } 3220 3221 static void handle_hpd_irq(void *param) 3222 { 3223 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param; 3224 3225 handle_hpd_irq_helper(aconnector); 3226 3227 } 3228 3229 static void dm_handle_mst_sideband_msg(struct amdgpu_dm_connector *aconnector) 3230 { 3231 u8 esi[DP_PSR_ERROR_STATUS - DP_SINK_COUNT_ESI] = { 0 }; 3232 u8 dret; 3233 bool new_irq_handled = false; 3234 int dpcd_addr; 3235 int dpcd_bytes_to_read; 3236 3237 const int max_process_count = 30; 3238 int process_count = 0; 3239 3240 const struct dc_link_status *link_status = dc_link_get_status(aconnector->dc_link); 3241 3242 if (link_status->dpcd_caps->dpcd_rev.raw < 0x12) { 3243 dpcd_bytes_to_read = DP_LANE0_1_STATUS - DP_SINK_COUNT; 3244 /* DPCD 0x200 - 0x201 for downstream IRQ */ 3245 dpcd_addr = DP_SINK_COUNT; 3246 } else { 3247 dpcd_bytes_to_read = DP_PSR_ERROR_STATUS - DP_SINK_COUNT_ESI; 3248 /* DPCD 0x2002 - 0x2005 for downstream IRQ */ 3249 dpcd_addr = DP_SINK_COUNT_ESI; 3250 } 3251 3252 dret = drm_dp_dpcd_read( 3253 &aconnector->dm_dp_aux.aux, 3254 dpcd_addr, 3255 esi, 3256 dpcd_bytes_to_read); 3257 3258 while (dret == dpcd_bytes_to_read && 3259 process_count < max_process_count) { 3260 u8 retry; 3261 dret = 0; 3262 3263 process_count++; 3264 3265 DRM_DEBUG_DRIVER("ESI %02x %02x %02x\n", esi[0], esi[1], esi[2]); 3266 /* handle HPD short pulse irq */ 3267 if (aconnector->mst_mgr.mst_state) 3268 drm_dp_mst_hpd_irq( 3269 &aconnector->mst_mgr, 3270 esi, 3271 &new_irq_handled); 3272 3273 if (new_irq_handled) { 3274 /* ACK at DPCD to notify down stream */ 3275 const int ack_dpcd_bytes_to_write = 3276 dpcd_bytes_to_read - 1; 3277 3278 for (retry = 0; retry < 3; retry++) { 3279 u8 wret; 3280 3281 wret = drm_dp_dpcd_write( 3282 &aconnector->dm_dp_aux.aux, 3283 dpcd_addr + 1, 3284 &esi[1], 3285 ack_dpcd_bytes_to_write); 3286 if (wret == ack_dpcd_bytes_to_write) 3287 break; 3288 } 3289 3290 /* check if there is new irq to be handled */ 3291 dret = drm_dp_dpcd_read( 3292 &aconnector->dm_dp_aux.aux, 3293 dpcd_addr, 3294 esi, 3295 dpcd_bytes_to_read); 3296 3297 new_irq_handled = false; 3298 } else { 3299 break; 3300 } 3301 } 3302 3303 if (process_count == max_process_count) 3304 DRM_DEBUG_DRIVER("Loop exceeded max iterations\n"); 3305 } 3306 3307 static void schedule_hpd_rx_offload_work(struct hpd_rx_irq_offload_work_queue *offload_wq, 3308 union hpd_irq_data hpd_irq_data) 3309 { 3310 struct hpd_rx_irq_offload_work *offload_work = 3311 kzalloc(sizeof(*offload_work), GFP_KERNEL); 3312 3313 if (!offload_work) { 3314 DRM_ERROR("Failed to allocate hpd_rx_irq_offload_work.\n"); 3315 return; 3316 } 3317 3318 INIT_WORK(&offload_work->work, dm_handle_hpd_rx_offload_work); 3319 offload_work->data = hpd_irq_data; 3320 offload_work->offload_wq = offload_wq; 3321 3322 queue_work(offload_wq->wq, &offload_work->work); 3323 DRM_DEBUG_KMS("queue work to handle hpd_rx offload work"); 3324 } 3325 3326 static void handle_hpd_rx_irq(void *param) 3327 { 3328 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param; 3329 struct drm_connector *connector = &aconnector->base; 3330 struct drm_device *dev = connector->dev; 3331 struct dc_link *dc_link = aconnector->dc_link; 3332 bool is_mst_root_connector = aconnector->mst_mgr.mst_state; 3333 bool result = false; 3334 enum dc_connection_type new_connection_type = dc_connection_none; 3335 struct amdgpu_device *adev = drm_to_adev(dev); 3336 union hpd_irq_data hpd_irq_data; 3337 bool link_loss = false; 3338 bool has_left_work = false; 3339 int idx = dc_link->link_index; 3340 struct hpd_rx_irq_offload_work_queue *offload_wq = &adev->dm.hpd_rx_offload_wq[idx]; 3341 3342 memset(&hpd_irq_data, 0, sizeof(hpd_irq_data)); 3343 3344 if (adev->dm.disable_hpd_irq) 3345 return; 3346 3347 /* 3348 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio 3349 * conflict, after implement i2c helper, this mutex should be 3350 * retired. 3351 */ 3352 mutex_lock(&aconnector->hpd_lock); 3353 3354 result = dc_link_handle_hpd_rx_irq(dc_link, &hpd_irq_data, 3355 &link_loss, true, &has_left_work); 3356 3357 if (!has_left_work) 3358 goto out; 3359 3360 if (hpd_irq_data.bytes.device_service_irq.bits.AUTOMATED_TEST) { 3361 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data); 3362 goto out; 3363 } 3364 3365 if (dc_link_dp_allow_hpd_rx_irq(dc_link)) { 3366 if (hpd_irq_data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY || 3367 hpd_irq_data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) { 3368 dm_handle_mst_sideband_msg(aconnector); 3369 goto out; 3370 } 3371 3372 if (link_loss) { 3373 bool skip = false; 3374 3375 spin_lock(&offload_wq->offload_lock); 3376 skip = offload_wq->is_handling_link_loss; 3377 3378 if (!skip) 3379 offload_wq->is_handling_link_loss = true; 3380 3381 spin_unlock(&offload_wq->offload_lock); 3382 3383 if (!skip) 3384 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data); 3385 3386 goto out; 3387 } 3388 } 3389 3390 out: 3391 if (result && !is_mst_root_connector) { 3392 /* Downstream Port status changed. */ 3393 if (!dc_link_detect_connection_type(dc_link, &new_connection_type)) 3394 DRM_ERROR("KMS: Failed to detect connector\n"); 3395 3396 if (aconnector->base.force && new_connection_type == dc_connection_none) { 3397 emulated_link_detect(dc_link); 3398 3399 if (aconnector->fake_enable) 3400 aconnector->fake_enable = false; 3401 3402 amdgpu_dm_update_connector_after_detect(aconnector); 3403 3404 3405 drm_modeset_lock_all(dev); 3406 dm_restore_drm_connector_state(dev, connector); 3407 drm_modeset_unlock_all(dev); 3408 3409 drm_kms_helper_connector_hotplug_event(connector); 3410 } else { 3411 bool ret = false; 3412 3413 mutex_lock(&adev->dm.dc_lock); 3414 ret = dc_link_detect(dc_link, DETECT_REASON_HPDRX); 3415 mutex_unlock(&adev->dm.dc_lock); 3416 3417 if (ret) { 3418 if (aconnector->fake_enable) 3419 aconnector->fake_enable = false; 3420 3421 amdgpu_dm_update_connector_after_detect(aconnector); 3422 3423 drm_modeset_lock_all(dev); 3424 dm_restore_drm_connector_state(dev, connector); 3425 drm_modeset_unlock_all(dev); 3426 3427 drm_kms_helper_connector_hotplug_event(connector); 3428 } 3429 } 3430 } 3431 if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) { 3432 if (adev->dm.hdcp_workqueue) 3433 hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index); 3434 } 3435 3436 if (dc_link->type != dc_connection_mst_branch) 3437 drm_dp_cec_irq(&aconnector->dm_dp_aux.aux); 3438 3439 mutex_unlock(&aconnector->hpd_lock); 3440 } 3441 3442 static void register_hpd_handlers(struct amdgpu_device *adev) 3443 { 3444 struct drm_device *dev = adev_to_drm(adev); 3445 struct drm_connector *connector; 3446 struct amdgpu_dm_connector *aconnector; 3447 const struct dc_link *dc_link; 3448 struct dc_interrupt_params int_params = {0}; 3449 3450 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 3451 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 3452 3453 list_for_each_entry(connector, 3454 &dev->mode_config.connector_list, head) { 3455 3456 aconnector = to_amdgpu_dm_connector(connector); 3457 dc_link = aconnector->dc_link; 3458 3459 if (DC_IRQ_SOURCE_INVALID != dc_link->irq_source_hpd) { 3460 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT; 3461 int_params.irq_source = dc_link->irq_source_hpd; 3462 3463 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3464 handle_hpd_irq, 3465 (void *) aconnector); 3466 } 3467 3468 if (DC_IRQ_SOURCE_INVALID != dc_link->irq_source_hpd_rx) { 3469 3470 /* Also register for DP short pulse (hpd_rx). */ 3471 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT; 3472 int_params.irq_source = dc_link->irq_source_hpd_rx; 3473 3474 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3475 handle_hpd_rx_irq, 3476 (void *) aconnector); 3477 3478 if (adev->dm.hpd_rx_offload_wq) 3479 adev->dm.hpd_rx_offload_wq[dc_link->link_index].aconnector = 3480 aconnector; 3481 } 3482 } 3483 } 3484 3485 #if defined(CONFIG_DRM_AMD_DC_SI) 3486 /* Register IRQ sources and initialize IRQ callbacks */ 3487 static int dce60_register_irq_handlers(struct amdgpu_device *adev) 3488 { 3489 struct dc *dc = adev->dm.dc; 3490 struct common_irq_params *c_irq_params; 3491 struct dc_interrupt_params int_params = {0}; 3492 int r; 3493 int i; 3494 unsigned client_id = AMDGPU_IRQ_CLIENTID_LEGACY; 3495 3496 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 3497 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 3498 3499 /* 3500 * Actions of amdgpu_irq_add_id(): 3501 * 1. Register a set() function with base driver. 3502 * Base driver will call set() function to enable/disable an 3503 * interrupt in DC hardware. 3504 * 2. Register amdgpu_dm_irq_handler(). 3505 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts 3506 * coming from DC hardware. 3507 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC 3508 * for acknowledging and handling. */ 3509 3510 /* Use VBLANK interrupt */ 3511 for (i = 0; i < adev->mode_info.num_crtc; i++) { 3512 r = amdgpu_irq_add_id(adev, client_id, i+1 , &adev->crtc_irq); 3513 if (r) { 3514 DRM_ERROR("Failed to add crtc irq id!\n"); 3515 return r; 3516 } 3517 3518 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3519 int_params.irq_source = 3520 dc_interrupt_to_irq_source(dc, i+1 , 0); 3521 3522 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1]; 3523 3524 c_irq_params->adev = adev; 3525 c_irq_params->irq_src = int_params.irq_source; 3526 3527 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3528 dm_crtc_high_irq, c_irq_params); 3529 } 3530 3531 /* Use GRPH_PFLIP interrupt */ 3532 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; 3533 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) { 3534 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq); 3535 if (r) { 3536 DRM_ERROR("Failed to add page flip irq id!\n"); 3537 return r; 3538 } 3539 3540 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3541 int_params.irq_source = 3542 dc_interrupt_to_irq_source(dc, i, 0); 3543 3544 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST]; 3545 3546 c_irq_params->adev = adev; 3547 c_irq_params->irq_src = int_params.irq_source; 3548 3549 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3550 dm_pflip_high_irq, c_irq_params); 3551 3552 } 3553 3554 /* HPD */ 3555 r = amdgpu_irq_add_id(adev, client_id, 3556 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq); 3557 if (r) { 3558 DRM_ERROR("Failed to add hpd irq id!\n"); 3559 return r; 3560 } 3561 3562 register_hpd_handlers(adev); 3563 3564 return 0; 3565 } 3566 #endif 3567 3568 /* Register IRQ sources and initialize IRQ callbacks */ 3569 static int dce110_register_irq_handlers(struct amdgpu_device *adev) 3570 { 3571 struct dc *dc = adev->dm.dc; 3572 struct common_irq_params *c_irq_params; 3573 struct dc_interrupt_params int_params = {0}; 3574 int r; 3575 int i; 3576 unsigned client_id = AMDGPU_IRQ_CLIENTID_LEGACY; 3577 3578 if (adev->family >= AMDGPU_FAMILY_AI) 3579 client_id = SOC15_IH_CLIENTID_DCE; 3580 3581 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 3582 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 3583 3584 /* 3585 * Actions of amdgpu_irq_add_id(): 3586 * 1. Register a set() function with base driver. 3587 * Base driver will call set() function to enable/disable an 3588 * interrupt in DC hardware. 3589 * 2. Register amdgpu_dm_irq_handler(). 3590 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts 3591 * coming from DC hardware. 3592 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC 3593 * for acknowledging and handling. */ 3594 3595 /* Use VBLANK interrupt */ 3596 for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) { 3597 r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq); 3598 if (r) { 3599 DRM_ERROR("Failed to add crtc irq id!\n"); 3600 return r; 3601 } 3602 3603 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3604 int_params.irq_source = 3605 dc_interrupt_to_irq_source(dc, i, 0); 3606 3607 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1]; 3608 3609 c_irq_params->adev = adev; 3610 c_irq_params->irq_src = int_params.irq_source; 3611 3612 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3613 dm_crtc_high_irq, c_irq_params); 3614 } 3615 3616 /* Use VUPDATE interrupt */ 3617 for (i = VISLANDS30_IV_SRCID_D1_V_UPDATE_INT; i <= VISLANDS30_IV_SRCID_D6_V_UPDATE_INT; i += 2) { 3618 r = amdgpu_irq_add_id(adev, client_id, i, &adev->vupdate_irq); 3619 if (r) { 3620 DRM_ERROR("Failed to add vupdate irq id!\n"); 3621 return r; 3622 } 3623 3624 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3625 int_params.irq_source = 3626 dc_interrupt_to_irq_source(dc, i, 0); 3627 3628 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1]; 3629 3630 c_irq_params->adev = adev; 3631 c_irq_params->irq_src = int_params.irq_source; 3632 3633 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3634 dm_vupdate_high_irq, c_irq_params); 3635 } 3636 3637 /* Use GRPH_PFLIP interrupt */ 3638 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; 3639 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) { 3640 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq); 3641 if (r) { 3642 DRM_ERROR("Failed to add page flip irq id!\n"); 3643 return r; 3644 } 3645 3646 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3647 int_params.irq_source = 3648 dc_interrupt_to_irq_source(dc, i, 0); 3649 3650 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST]; 3651 3652 c_irq_params->adev = adev; 3653 c_irq_params->irq_src = int_params.irq_source; 3654 3655 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3656 dm_pflip_high_irq, c_irq_params); 3657 3658 } 3659 3660 /* HPD */ 3661 r = amdgpu_irq_add_id(adev, client_id, 3662 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq); 3663 if (r) { 3664 DRM_ERROR("Failed to add hpd irq id!\n"); 3665 return r; 3666 } 3667 3668 register_hpd_handlers(adev); 3669 3670 return 0; 3671 } 3672 3673 /* Register IRQ sources and initialize IRQ callbacks */ 3674 static int dcn10_register_irq_handlers(struct amdgpu_device *adev) 3675 { 3676 struct dc *dc = adev->dm.dc; 3677 struct common_irq_params *c_irq_params; 3678 struct dc_interrupt_params int_params = {0}; 3679 int r; 3680 int i; 3681 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 3682 static const unsigned int vrtl_int_srcid[] = { 3683 DCN_1_0__SRCID__OTG1_VERTICAL_INTERRUPT0_CONTROL, 3684 DCN_1_0__SRCID__OTG2_VERTICAL_INTERRUPT0_CONTROL, 3685 DCN_1_0__SRCID__OTG3_VERTICAL_INTERRUPT0_CONTROL, 3686 DCN_1_0__SRCID__OTG4_VERTICAL_INTERRUPT0_CONTROL, 3687 DCN_1_0__SRCID__OTG5_VERTICAL_INTERRUPT0_CONTROL, 3688 DCN_1_0__SRCID__OTG6_VERTICAL_INTERRUPT0_CONTROL 3689 }; 3690 #endif 3691 3692 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 3693 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 3694 3695 /* 3696 * Actions of amdgpu_irq_add_id(): 3697 * 1. Register a set() function with base driver. 3698 * Base driver will call set() function to enable/disable an 3699 * interrupt in DC hardware. 3700 * 2. Register amdgpu_dm_irq_handler(). 3701 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts 3702 * coming from DC hardware. 3703 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC 3704 * for acknowledging and handling. 3705 */ 3706 3707 /* Use VSTARTUP interrupt */ 3708 for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP; 3709 i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1; 3710 i++) { 3711 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq); 3712 3713 if (r) { 3714 DRM_ERROR("Failed to add crtc irq id!\n"); 3715 return r; 3716 } 3717 3718 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3719 int_params.irq_source = 3720 dc_interrupt_to_irq_source(dc, i, 0); 3721 3722 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1]; 3723 3724 c_irq_params->adev = adev; 3725 c_irq_params->irq_src = int_params.irq_source; 3726 3727 amdgpu_dm_irq_register_interrupt( 3728 adev, &int_params, dm_crtc_high_irq, c_irq_params); 3729 } 3730 3731 /* Use otg vertical line interrupt */ 3732 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 3733 for (i = 0; i <= adev->mode_info.num_crtc - 1; i++) { 3734 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, 3735 vrtl_int_srcid[i], &adev->vline0_irq); 3736 3737 if (r) { 3738 DRM_ERROR("Failed to add vline0 irq id!\n"); 3739 return r; 3740 } 3741 3742 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3743 int_params.irq_source = 3744 dc_interrupt_to_irq_source(dc, vrtl_int_srcid[i], 0); 3745 3746 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID) { 3747 DRM_ERROR("Failed to register vline0 irq %d!\n", vrtl_int_srcid[i]); 3748 break; 3749 } 3750 3751 c_irq_params = &adev->dm.vline0_params[int_params.irq_source 3752 - DC_IRQ_SOURCE_DC1_VLINE0]; 3753 3754 c_irq_params->adev = adev; 3755 c_irq_params->irq_src = int_params.irq_source; 3756 3757 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3758 dm_dcn_vertical_interrupt0_high_irq, c_irq_params); 3759 } 3760 #endif 3761 3762 /* Use VUPDATE_NO_LOCK interrupt on DCN, which seems to correspond to 3763 * the regular VUPDATE interrupt on DCE. We want DC_IRQ_SOURCE_VUPDATEx 3764 * to trigger at end of each vblank, regardless of state of the lock, 3765 * matching DCE behaviour. 3766 */ 3767 for (i = DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT; 3768 i <= DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT + adev->mode_info.num_crtc - 1; 3769 i++) { 3770 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->vupdate_irq); 3771 3772 if (r) { 3773 DRM_ERROR("Failed to add vupdate irq id!\n"); 3774 return r; 3775 } 3776 3777 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3778 int_params.irq_source = 3779 dc_interrupt_to_irq_source(dc, i, 0); 3780 3781 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1]; 3782 3783 c_irq_params->adev = adev; 3784 c_irq_params->irq_src = int_params.irq_source; 3785 3786 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3787 dm_vupdate_high_irq, c_irq_params); 3788 } 3789 3790 /* Use GRPH_PFLIP interrupt */ 3791 for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT; 3792 i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + dc->caps.max_otg_num - 1; 3793 i++) { 3794 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq); 3795 if (r) { 3796 DRM_ERROR("Failed to add page flip irq id!\n"); 3797 return r; 3798 } 3799 3800 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 3801 int_params.irq_source = 3802 dc_interrupt_to_irq_source(dc, i, 0); 3803 3804 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST]; 3805 3806 c_irq_params->adev = adev; 3807 c_irq_params->irq_src = int_params.irq_source; 3808 3809 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3810 dm_pflip_high_irq, c_irq_params); 3811 3812 } 3813 3814 /* HPD */ 3815 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT, 3816 &adev->hpd_irq); 3817 if (r) { 3818 DRM_ERROR("Failed to add hpd irq id!\n"); 3819 return r; 3820 } 3821 3822 register_hpd_handlers(adev); 3823 3824 return 0; 3825 } 3826 /* Register Outbox IRQ sources and initialize IRQ callbacks */ 3827 static int register_outbox_irq_handlers(struct amdgpu_device *adev) 3828 { 3829 struct dc *dc = adev->dm.dc; 3830 struct common_irq_params *c_irq_params; 3831 struct dc_interrupt_params int_params = {0}; 3832 int r, i; 3833 3834 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 3835 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 3836 3837 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT, 3838 &adev->dmub_outbox_irq); 3839 if (r) { 3840 DRM_ERROR("Failed to add outbox irq id!\n"); 3841 return r; 3842 } 3843 3844 if (dc->ctx->dmub_srv) { 3845 i = DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT; 3846 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT; 3847 int_params.irq_source = 3848 dc_interrupt_to_irq_source(dc, i, 0); 3849 3850 c_irq_params = &adev->dm.dmub_outbox_params[0]; 3851 3852 c_irq_params->adev = adev; 3853 c_irq_params->irq_src = int_params.irq_source; 3854 3855 amdgpu_dm_irq_register_interrupt(adev, &int_params, 3856 dm_dmub_outbox1_low_irq, c_irq_params); 3857 } 3858 3859 return 0; 3860 } 3861 3862 /* 3863 * Acquires the lock for the atomic state object and returns 3864 * the new atomic state. 3865 * 3866 * This should only be called during atomic check. 3867 */ 3868 int dm_atomic_get_state(struct drm_atomic_state *state, 3869 struct dm_atomic_state **dm_state) 3870 { 3871 struct drm_device *dev = state->dev; 3872 struct amdgpu_device *adev = drm_to_adev(dev); 3873 struct amdgpu_display_manager *dm = &adev->dm; 3874 struct drm_private_state *priv_state; 3875 3876 if (*dm_state) 3877 return 0; 3878 3879 priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj); 3880 if (IS_ERR(priv_state)) 3881 return PTR_ERR(priv_state); 3882 3883 *dm_state = to_dm_atomic_state(priv_state); 3884 3885 return 0; 3886 } 3887 3888 static struct dm_atomic_state * 3889 dm_atomic_get_new_state(struct drm_atomic_state *state) 3890 { 3891 struct drm_device *dev = state->dev; 3892 struct amdgpu_device *adev = drm_to_adev(dev); 3893 struct amdgpu_display_manager *dm = &adev->dm; 3894 struct drm_private_obj *obj; 3895 struct drm_private_state *new_obj_state; 3896 int i; 3897 3898 for_each_new_private_obj_in_state(state, obj, new_obj_state, i) { 3899 if (obj->funcs == dm->atomic_obj.funcs) 3900 return to_dm_atomic_state(new_obj_state); 3901 } 3902 3903 return NULL; 3904 } 3905 3906 static struct drm_private_state * 3907 dm_atomic_duplicate_state(struct drm_private_obj *obj) 3908 { 3909 struct dm_atomic_state *old_state, *new_state; 3910 3911 new_state = kzalloc(sizeof(*new_state), GFP_KERNEL); 3912 if (!new_state) 3913 return NULL; 3914 3915 __drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base); 3916 3917 old_state = to_dm_atomic_state(obj->state); 3918 3919 if (old_state && old_state->context) 3920 new_state->context = dc_copy_state(old_state->context); 3921 3922 if (!new_state->context) { 3923 kfree(new_state); 3924 return NULL; 3925 } 3926 3927 return &new_state->base; 3928 } 3929 3930 static void dm_atomic_destroy_state(struct drm_private_obj *obj, 3931 struct drm_private_state *state) 3932 { 3933 struct dm_atomic_state *dm_state = to_dm_atomic_state(state); 3934 3935 if (dm_state && dm_state->context) 3936 dc_release_state(dm_state->context); 3937 3938 kfree(dm_state); 3939 } 3940 3941 static struct drm_private_state_funcs dm_atomic_state_funcs = { 3942 .atomic_duplicate_state = dm_atomic_duplicate_state, 3943 .atomic_destroy_state = dm_atomic_destroy_state, 3944 }; 3945 3946 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev) 3947 { 3948 struct dm_atomic_state *state; 3949 int r; 3950 3951 adev->mode_info.mode_config_initialized = true; 3952 3953 adev_to_drm(adev)->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs; 3954 adev_to_drm(adev)->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs; 3955 3956 adev_to_drm(adev)->mode_config.max_width = 16384; 3957 adev_to_drm(adev)->mode_config.max_height = 16384; 3958 3959 adev_to_drm(adev)->mode_config.preferred_depth = 24; 3960 if (adev->asic_type == CHIP_HAWAII) 3961 /* disable prefer shadow for now due to hibernation issues */ 3962 adev_to_drm(adev)->mode_config.prefer_shadow = 0; 3963 else 3964 adev_to_drm(adev)->mode_config.prefer_shadow = 1; 3965 /* indicates support for immediate flip */ 3966 adev_to_drm(adev)->mode_config.async_page_flip = true; 3967 3968 state = kzalloc(sizeof(*state), GFP_KERNEL); 3969 if (!state) 3970 return -ENOMEM; 3971 3972 state->context = dc_create_state(adev->dm.dc); 3973 if (!state->context) { 3974 kfree(state); 3975 return -ENOMEM; 3976 } 3977 3978 dc_resource_state_copy_construct_current(adev->dm.dc, state->context); 3979 3980 drm_atomic_private_obj_init(adev_to_drm(adev), 3981 &adev->dm.atomic_obj, 3982 &state->base, 3983 &dm_atomic_state_funcs); 3984 3985 r = amdgpu_display_modeset_create_props(adev); 3986 if (r) { 3987 dc_release_state(state->context); 3988 kfree(state); 3989 return r; 3990 } 3991 3992 r = amdgpu_dm_audio_init(adev); 3993 if (r) { 3994 dc_release_state(state->context); 3995 kfree(state); 3996 return r; 3997 } 3998 3999 return 0; 4000 } 4001 4002 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12 4003 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255 4004 #define AUX_BL_DEFAULT_TRANSITION_TIME_MS 50 4005 4006 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm, 4007 int bl_idx) 4008 { 4009 #if defined(CONFIG_ACPI) 4010 struct amdgpu_dm_backlight_caps caps; 4011 4012 memset(&caps, 0, sizeof(caps)); 4013 4014 if (dm->backlight_caps[bl_idx].caps_valid) 4015 return; 4016 4017 amdgpu_acpi_get_backlight_caps(&caps); 4018 if (caps.caps_valid) { 4019 dm->backlight_caps[bl_idx].caps_valid = true; 4020 if (caps.aux_support) 4021 return; 4022 dm->backlight_caps[bl_idx].min_input_signal = caps.min_input_signal; 4023 dm->backlight_caps[bl_idx].max_input_signal = caps.max_input_signal; 4024 } else { 4025 dm->backlight_caps[bl_idx].min_input_signal = 4026 AMDGPU_DM_DEFAULT_MIN_BACKLIGHT; 4027 dm->backlight_caps[bl_idx].max_input_signal = 4028 AMDGPU_DM_DEFAULT_MAX_BACKLIGHT; 4029 } 4030 #else 4031 if (dm->backlight_caps[bl_idx].aux_support) 4032 return; 4033 4034 dm->backlight_caps[bl_idx].min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT; 4035 dm->backlight_caps[bl_idx].max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT; 4036 #endif 4037 } 4038 4039 static int get_brightness_range(const struct amdgpu_dm_backlight_caps *caps, 4040 unsigned *min, unsigned *max) 4041 { 4042 if (!caps) 4043 return 0; 4044 4045 if (caps->aux_support) { 4046 // Firmware limits are in nits, DC API wants millinits. 4047 *max = 1000 * caps->aux_max_input_signal; 4048 *min = 1000 * caps->aux_min_input_signal; 4049 } else { 4050 // Firmware limits are 8-bit, PWM control is 16-bit. 4051 *max = 0x101 * caps->max_input_signal; 4052 *min = 0x101 * caps->min_input_signal; 4053 } 4054 return 1; 4055 } 4056 4057 static u32 convert_brightness_from_user(const struct amdgpu_dm_backlight_caps *caps, 4058 uint32_t brightness) 4059 { 4060 unsigned min, max; 4061 4062 if (!get_brightness_range(caps, &min, &max)) 4063 return brightness; 4064 4065 // Rescale 0..255 to min..max 4066 return min + DIV_ROUND_CLOSEST((max - min) * brightness, 4067 AMDGPU_MAX_BL_LEVEL); 4068 } 4069 4070 static u32 convert_brightness_to_user(const struct amdgpu_dm_backlight_caps *caps, 4071 uint32_t brightness) 4072 { 4073 unsigned min, max; 4074 4075 if (!get_brightness_range(caps, &min, &max)) 4076 return brightness; 4077 4078 if (brightness < min) 4079 return 0; 4080 // Rescale min..max to 0..255 4081 return DIV_ROUND_CLOSEST(AMDGPU_MAX_BL_LEVEL * (brightness - min), 4082 max - min); 4083 } 4084 4085 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm, 4086 int bl_idx, 4087 u32 user_brightness) 4088 { 4089 struct amdgpu_dm_backlight_caps caps; 4090 struct dc_link *link; 4091 u32 brightness; 4092 bool rc; 4093 4094 amdgpu_dm_update_backlight_caps(dm, bl_idx); 4095 caps = dm->backlight_caps[bl_idx]; 4096 4097 dm->brightness[bl_idx] = user_brightness; 4098 /* update scratch register */ 4099 if (bl_idx == 0) 4100 amdgpu_atombios_scratch_regs_set_backlight_level(dm->adev, dm->brightness[bl_idx]); 4101 brightness = convert_brightness_from_user(&caps, dm->brightness[bl_idx]); 4102 link = (struct dc_link *)dm->backlight_link[bl_idx]; 4103 4104 /* Change brightness based on AUX property */ 4105 if (caps.aux_support) { 4106 rc = dc_link_set_backlight_level_nits(link, true, brightness, 4107 AUX_BL_DEFAULT_TRANSITION_TIME_MS); 4108 if (!rc) 4109 DRM_DEBUG("DM: Failed to update backlight via AUX on eDP[%d]\n", bl_idx); 4110 } else { 4111 rc = dc_link_set_backlight_level(link, brightness, 0); 4112 if (!rc) 4113 DRM_DEBUG("DM: Failed to update backlight on eDP[%d]\n", bl_idx); 4114 } 4115 4116 if (rc) 4117 dm->actual_brightness[bl_idx] = user_brightness; 4118 } 4119 4120 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd) 4121 { 4122 struct amdgpu_display_manager *dm = bl_get_data(bd); 4123 int i; 4124 4125 for (i = 0; i < dm->num_of_edps; i++) { 4126 if (bd == dm->backlight_dev[i]) 4127 break; 4128 } 4129 if (i >= AMDGPU_DM_MAX_NUM_EDP) 4130 i = 0; 4131 amdgpu_dm_backlight_set_level(dm, i, bd->props.brightness); 4132 4133 return 0; 4134 } 4135 4136 static u32 amdgpu_dm_backlight_get_level(struct amdgpu_display_manager *dm, 4137 int bl_idx) 4138 { 4139 struct amdgpu_dm_backlight_caps caps; 4140 struct dc_link *link = (struct dc_link *)dm->backlight_link[bl_idx]; 4141 4142 amdgpu_dm_update_backlight_caps(dm, bl_idx); 4143 caps = dm->backlight_caps[bl_idx]; 4144 4145 if (caps.aux_support) { 4146 u32 avg, peak; 4147 bool rc; 4148 4149 rc = dc_link_get_backlight_level_nits(link, &avg, &peak); 4150 if (!rc) 4151 return dm->brightness[bl_idx]; 4152 return convert_brightness_to_user(&caps, avg); 4153 } else { 4154 int ret = dc_link_get_backlight_level(link); 4155 4156 if (ret == DC_ERROR_UNEXPECTED) 4157 return dm->brightness[bl_idx]; 4158 return convert_brightness_to_user(&caps, ret); 4159 } 4160 } 4161 4162 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd) 4163 { 4164 struct amdgpu_display_manager *dm = bl_get_data(bd); 4165 int i; 4166 4167 for (i = 0; i < dm->num_of_edps; i++) { 4168 if (bd == dm->backlight_dev[i]) 4169 break; 4170 } 4171 if (i >= AMDGPU_DM_MAX_NUM_EDP) 4172 i = 0; 4173 return amdgpu_dm_backlight_get_level(dm, i); 4174 } 4175 4176 static const struct backlight_ops amdgpu_dm_backlight_ops = { 4177 .options = BL_CORE_SUSPENDRESUME, 4178 .get_brightness = amdgpu_dm_backlight_get_brightness, 4179 .update_status = amdgpu_dm_backlight_update_status, 4180 }; 4181 4182 static void 4183 amdgpu_dm_register_backlight_device(struct amdgpu_dm_connector *aconnector) 4184 { 4185 struct drm_device *drm = aconnector->base.dev; 4186 struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm; 4187 struct backlight_properties props = { 0 }; 4188 char bl_name[16]; 4189 4190 if (aconnector->bl_idx == -1) 4191 return; 4192 4193 if (!acpi_video_backlight_use_native()) { 4194 drm_info(drm, "Skipping amdgpu DM backlight registration\n"); 4195 /* Try registering an ACPI video backlight device instead. */ 4196 acpi_video_register_backlight(); 4197 return; 4198 } 4199 4200 props.max_brightness = AMDGPU_MAX_BL_LEVEL; 4201 props.brightness = AMDGPU_MAX_BL_LEVEL; 4202 props.type = BACKLIGHT_RAW; 4203 4204 snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d", 4205 drm->primary->index + aconnector->bl_idx); 4206 4207 dm->backlight_dev[aconnector->bl_idx] = 4208 backlight_device_register(bl_name, aconnector->base.kdev, dm, 4209 &amdgpu_dm_backlight_ops, &props); 4210 4211 if (IS_ERR(dm->backlight_dev[aconnector->bl_idx])) { 4212 DRM_ERROR("DM: Backlight registration failed!\n"); 4213 dm->backlight_dev[aconnector->bl_idx] = NULL; 4214 } else 4215 DRM_DEBUG_DRIVER("DM: Registered Backlight device: %s\n", bl_name); 4216 } 4217 4218 static int initialize_plane(struct amdgpu_display_manager *dm, 4219 struct amdgpu_mode_info *mode_info, int plane_id, 4220 enum drm_plane_type plane_type, 4221 const struct dc_plane_cap *plane_cap) 4222 { 4223 struct drm_plane *plane; 4224 unsigned long possible_crtcs; 4225 int ret = 0; 4226 4227 plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL); 4228 if (!plane) { 4229 DRM_ERROR("KMS: Failed to allocate plane\n"); 4230 return -ENOMEM; 4231 } 4232 plane->type = plane_type; 4233 4234 /* 4235 * HACK: IGT tests expect that the primary plane for a CRTC 4236 * can only have one possible CRTC. Only expose support for 4237 * any CRTC if they're not going to be used as a primary plane 4238 * for a CRTC - like overlay or underlay planes. 4239 */ 4240 possible_crtcs = 1 << plane_id; 4241 if (plane_id >= dm->dc->caps.max_streams) 4242 possible_crtcs = 0xff; 4243 4244 ret = amdgpu_dm_plane_init(dm, plane, possible_crtcs, plane_cap); 4245 4246 if (ret) { 4247 DRM_ERROR("KMS: Failed to initialize plane\n"); 4248 kfree(plane); 4249 return ret; 4250 } 4251 4252 if (mode_info) 4253 mode_info->planes[plane_id] = plane; 4254 4255 return ret; 4256 } 4257 4258 4259 static void setup_backlight_device(struct amdgpu_display_manager *dm, 4260 struct amdgpu_dm_connector *aconnector) 4261 { 4262 struct dc_link *link = aconnector->dc_link; 4263 int bl_idx = dm->num_of_edps; 4264 4265 if (!(link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) || 4266 link->type == dc_connection_none) 4267 return; 4268 4269 if (dm->num_of_edps >= AMDGPU_DM_MAX_NUM_EDP) { 4270 drm_warn(adev_to_drm(dm->adev), "Too much eDP connections, skipping backlight setup for additional eDPs\n"); 4271 return; 4272 } 4273 4274 aconnector->bl_idx = bl_idx; 4275 4276 amdgpu_dm_update_backlight_caps(dm, bl_idx); 4277 dm->brightness[bl_idx] = AMDGPU_MAX_BL_LEVEL; 4278 dm->backlight_link[bl_idx] = link; 4279 dm->num_of_edps++; 4280 4281 update_connector_ext_caps(aconnector); 4282 } 4283 4284 static void amdgpu_set_panel_orientation(struct drm_connector *connector); 4285 4286 /* 4287 * In this architecture, the association 4288 * connector -> encoder -> crtc 4289 * id not really requried. The crtc and connector will hold the 4290 * display_index as an abstraction to use with DAL component 4291 * 4292 * Returns 0 on success 4293 */ 4294 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev) 4295 { 4296 struct amdgpu_display_manager *dm = &adev->dm; 4297 s32 i; 4298 struct amdgpu_dm_connector *aconnector = NULL; 4299 struct amdgpu_encoder *aencoder = NULL; 4300 struct amdgpu_mode_info *mode_info = &adev->mode_info; 4301 u32 link_cnt; 4302 s32 primary_planes; 4303 enum dc_connection_type new_connection_type = dc_connection_none; 4304 const struct dc_plane_cap *plane; 4305 bool psr_feature_enabled = false; 4306 int max_overlay = dm->dc->caps.max_slave_planes; 4307 4308 dm->display_indexes_num = dm->dc->caps.max_streams; 4309 /* Update the actual used number of crtc */ 4310 adev->mode_info.num_crtc = adev->dm.display_indexes_num; 4311 4312 amdgpu_dm_set_irq_funcs(adev); 4313 4314 link_cnt = dm->dc->caps.max_links; 4315 if (amdgpu_dm_mode_config_init(dm->adev)) { 4316 DRM_ERROR("DM: Failed to initialize mode config\n"); 4317 return -EINVAL; 4318 } 4319 4320 /* There is one primary plane per CRTC */ 4321 primary_planes = dm->dc->caps.max_streams; 4322 ASSERT(primary_planes <= AMDGPU_MAX_PLANES); 4323 4324 /* 4325 * Initialize primary planes, implicit planes for legacy IOCTLS. 4326 * Order is reversed to match iteration order in atomic check. 4327 */ 4328 for (i = (primary_planes - 1); i >= 0; i--) { 4329 plane = &dm->dc->caps.planes[i]; 4330 4331 if (initialize_plane(dm, mode_info, i, 4332 DRM_PLANE_TYPE_PRIMARY, plane)) { 4333 DRM_ERROR("KMS: Failed to initialize primary plane\n"); 4334 goto fail; 4335 } 4336 } 4337 4338 /* 4339 * Initialize overlay planes, index starting after primary planes. 4340 * These planes have a higher DRM index than the primary planes since 4341 * they should be considered as having a higher z-order. 4342 * Order is reversed to match iteration order in atomic check. 4343 * 4344 * Only support DCN for now, and only expose one so we don't encourage 4345 * userspace to use up all the pipes. 4346 */ 4347 for (i = 0; i < dm->dc->caps.max_planes; ++i) { 4348 struct dc_plane_cap *plane = &dm->dc->caps.planes[i]; 4349 4350 /* Do not create overlay if MPO disabled */ 4351 if (amdgpu_dc_debug_mask & DC_DISABLE_MPO) 4352 break; 4353 4354 if (plane->type != DC_PLANE_TYPE_DCN_UNIVERSAL) 4355 continue; 4356 4357 if (!plane->pixel_format_support.argb8888) 4358 continue; 4359 4360 if (max_overlay-- == 0) 4361 break; 4362 4363 if (initialize_plane(dm, NULL, primary_planes + i, 4364 DRM_PLANE_TYPE_OVERLAY, plane)) { 4365 DRM_ERROR("KMS: Failed to initialize overlay plane\n"); 4366 goto fail; 4367 } 4368 } 4369 4370 for (i = 0; i < dm->dc->caps.max_streams; i++) 4371 if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) { 4372 DRM_ERROR("KMS: Failed to initialize crtc\n"); 4373 goto fail; 4374 } 4375 4376 /* Use Outbox interrupt */ 4377 switch (adev->ip_versions[DCE_HWIP][0]) { 4378 case IP_VERSION(3, 0, 0): 4379 case IP_VERSION(3, 1, 2): 4380 case IP_VERSION(3, 1, 3): 4381 case IP_VERSION(3, 1, 4): 4382 case IP_VERSION(3, 1, 5): 4383 case IP_VERSION(3, 1, 6): 4384 case IP_VERSION(3, 2, 0): 4385 case IP_VERSION(3, 2, 1): 4386 case IP_VERSION(2, 1, 0): 4387 if (register_outbox_irq_handlers(dm->adev)) { 4388 DRM_ERROR("DM: Failed to initialize IRQ\n"); 4389 goto fail; 4390 } 4391 break; 4392 default: 4393 DRM_DEBUG_KMS("Unsupported DCN IP version for outbox: 0x%X\n", 4394 adev->ip_versions[DCE_HWIP][0]); 4395 } 4396 4397 /* Determine whether to enable PSR support by default. */ 4398 if (!(amdgpu_dc_debug_mask & DC_DISABLE_PSR)) { 4399 switch (adev->ip_versions[DCE_HWIP][0]) { 4400 case IP_VERSION(3, 1, 2): 4401 case IP_VERSION(3, 1, 3): 4402 case IP_VERSION(3, 1, 4): 4403 case IP_VERSION(3, 1, 5): 4404 case IP_VERSION(3, 1, 6): 4405 case IP_VERSION(3, 2, 0): 4406 case IP_VERSION(3, 2, 1): 4407 psr_feature_enabled = true; 4408 break; 4409 default: 4410 psr_feature_enabled = amdgpu_dc_feature_mask & DC_PSR_MASK; 4411 break; 4412 } 4413 } 4414 4415 /* loops over all connectors on the board */ 4416 for (i = 0; i < link_cnt; i++) { 4417 struct dc_link *link = NULL; 4418 4419 if (i > AMDGPU_DM_MAX_DISPLAY_INDEX) { 4420 DRM_ERROR( 4421 "KMS: Cannot support more than %d display indexes\n", 4422 AMDGPU_DM_MAX_DISPLAY_INDEX); 4423 continue; 4424 } 4425 4426 aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL); 4427 if (!aconnector) 4428 goto fail; 4429 4430 aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL); 4431 if (!aencoder) 4432 goto fail; 4433 4434 if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) { 4435 DRM_ERROR("KMS: Failed to initialize encoder\n"); 4436 goto fail; 4437 } 4438 4439 if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) { 4440 DRM_ERROR("KMS: Failed to initialize connector\n"); 4441 goto fail; 4442 } 4443 4444 link = dc_get_link_at_index(dm->dc, i); 4445 4446 if (!dc_link_detect_connection_type(link, &new_connection_type)) 4447 DRM_ERROR("KMS: Failed to detect connector\n"); 4448 4449 if (aconnector->base.force && new_connection_type == dc_connection_none) { 4450 emulated_link_detect(link); 4451 amdgpu_dm_update_connector_after_detect(aconnector); 4452 } else { 4453 bool ret = false; 4454 4455 mutex_lock(&dm->dc_lock); 4456 ret = dc_link_detect(link, DETECT_REASON_BOOT); 4457 mutex_unlock(&dm->dc_lock); 4458 4459 if (ret) { 4460 amdgpu_dm_update_connector_after_detect(aconnector); 4461 setup_backlight_device(dm, aconnector); 4462 4463 if (psr_feature_enabled) 4464 amdgpu_dm_set_psr_caps(link); 4465 4466 /* TODO: Fix vblank control helpers to delay PSR entry to allow this when 4467 * PSR is also supported. 4468 */ 4469 if (link->psr_settings.psr_feature_enabled) 4470 adev_to_drm(adev)->vblank_disable_immediate = false; 4471 } 4472 } 4473 amdgpu_set_panel_orientation(&aconnector->base); 4474 } 4475 4476 /* If we didn't find a panel, notify the acpi video detection */ 4477 if (dm->adev->flags & AMD_IS_APU && dm->num_of_edps == 0) 4478 acpi_video_report_nolcd(); 4479 4480 /* Software is initialized. Now we can register interrupt handlers. */ 4481 switch (adev->asic_type) { 4482 #if defined(CONFIG_DRM_AMD_DC_SI) 4483 case CHIP_TAHITI: 4484 case CHIP_PITCAIRN: 4485 case CHIP_VERDE: 4486 case CHIP_OLAND: 4487 if (dce60_register_irq_handlers(dm->adev)) { 4488 DRM_ERROR("DM: Failed to initialize IRQ\n"); 4489 goto fail; 4490 } 4491 break; 4492 #endif 4493 case CHIP_BONAIRE: 4494 case CHIP_HAWAII: 4495 case CHIP_KAVERI: 4496 case CHIP_KABINI: 4497 case CHIP_MULLINS: 4498 case CHIP_TONGA: 4499 case CHIP_FIJI: 4500 case CHIP_CARRIZO: 4501 case CHIP_STONEY: 4502 case CHIP_POLARIS11: 4503 case CHIP_POLARIS10: 4504 case CHIP_POLARIS12: 4505 case CHIP_VEGAM: 4506 case CHIP_VEGA10: 4507 case CHIP_VEGA12: 4508 case CHIP_VEGA20: 4509 if (dce110_register_irq_handlers(dm->adev)) { 4510 DRM_ERROR("DM: Failed to initialize IRQ\n"); 4511 goto fail; 4512 } 4513 break; 4514 default: 4515 switch (adev->ip_versions[DCE_HWIP][0]) { 4516 case IP_VERSION(1, 0, 0): 4517 case IP_VERSION(1, 0, 1): 4518 case IP_VERSION(2, 0, 2): 4519 case IP_VERSION(2, 0, 3): 4520 case IP_VERSION(2, 0, 0): 4521 case IP_VERSION(2, 1, 0): 4522 case IP_VERSION(3, 0, 0): 4523 case IP_VERSION(3, 0, 2): 4524 case IP_VERSION(3, 0, 3): 4525 case IP_VERSION(3, 0, 1): 4526 case IP_VERSION(3, 1, 2): 4527 case IP_VERSION(3, 1, 3): 4528 case IP_VERSION(3, 1, 4): 4529 case IP_VERSION(3, 1, 5): 4530 case IP_VERSION(3, 1, 6): 4531 case IP_VERSION(3, 2, 0): 4532 case IP_VERSION(3, 2, 1): 4533 if (dcn10_register_irq_handlers(dm->adev)) { 4534 DRM_ERROR("DM: Failed to initialize IRQ\n"); 4535 goto fail; 4536 } 4537 break; 4538 default: 4539 DRM_ERROR("Unsupported DCE IP versions: 0x%X\n", 4540 adev->ip_versions[DCE_HWIP][0]); 4541 goto fail; 4542 } 4543 break; 4544 } 4545 4546 return 0; 4547 fail: 4548 kfree(aencoder); 4549 kfree(aconnector); 4550 4551 return -EINVAL; 4552 } 4553 4554 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm) 4555 { 4556 drm_atomic_private_obj_fini(&dm->atomic_obj); 4557 return; 4558 } 4559 4560 /****************************************************************************** 4561 * amdgpu_display_funcs functions 4562 *****************************************************************************/ 4563 4564 /* 4565 * dm_bandwidth_update - program display watermarks 4566 * 4567 * @adev: amdgpu_device pointer 4568 * 4569 * Calculate and program the display watermarks and line buffer allocation. 4570 */ 4571 static void dm_bandwidth_update(struct amdgpu_device *adev) 4572 { 4573 /* TODO: implement later */ 4574 } 4575 4576 static const struct amdgpu_display_funcs dm_display_funcs = { 4577 .bandwidth_update = dm_bandwidth_update, /* called unconditionally */ 4578 .vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */ 4579 .backlight_set_level = NULL, /* never called for DC */ 4580 .backlight_get_level = NULL, /* never called for DC */ 4581 .hpd_sense = NULL,/* called unconditionally */ 4582 .hpd_set_polarity = NULL, /* called unconditionally */ 4583 .hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */ 4584 .page_flip_get_scanoutpos = 4585 dm_crtc_get_scanoutpos,/* called unconditionally */ 4586 .add_encoder = NULL, /* VBIOS parsing. DAL does it. */ 4587 .add_connector = NULL, /* VBIOS parsing. DAL does it. */ 4588 }; 4589 4590 #if defined(CONFIG_DEBUG_KERNEL_DC) 4591 4592 static ssize_t s3_debug_store(struct device *device, 4593 struct device_attribute *attr, 4594 const char *buf, 4595 size_t count) 4596 { 4597 int ret; 4598 int s3_state; 4599 struct drm_device *drm_dev = dev_get_drvdata(device); 4600 struct amdgpu_device *adev = drm_to_adev(drm_dev); 4601 4602 ret = kstrtoint(buf, 0, &s3_state); 4603 4604 if (ret == 0) { 4605 if (s3_state) { 4606 dm_resume(adev); 4607 drm_kms_helper_hotplug_event(adev_to_drm(adev)); 4608 } else 4609 dm_suspend(adev); 4610 } 4611 4612 return ret == 0 ? count : 0; 4613 } 4614 4615 DEVICE_ATTR_WO(s3_debug); 4616 4617 #endif 4618 4619 static int dm_init_microcode(struct amdgpu_device *adev) 4620 { 4621 char *fw_name_dmub; 4622 int r; 4623 4624 switch (adev->ip_versions[DCE_HWIP][0]) { 4625 case IP_VERSION(2, 1, 0): 4626 fw_name_dmub = FIRMWARE_RENOIR_DMUB; 4627 if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id)) 4628 fw_name_dmub = FIRMWARE_GREEN_SARDINE_DMUB; 4629 break; 4630 case IP_VERSION(3, 0, 0): 4631 if (adev->ip_versions[GC_HWIP][0] == IP_VERSION(10, 3, 0)) 4632 fw_name_dmub = FIRMWARE_SIENNA_CICHLID_DMUB; 4633 else 4634 fw_name_dmub = FIRMWARE_NAVY_FLOUNDER_DMUB; 4635 break; 4636 case IP_VERSION(3, 0, 1): 4637 fw_name_dmub = FIRMWARE_VANGOGH_DMUB; 4638 break; 4639 case IP_VERSION(3, 0, 2): 4640 fw_name_dmub = FIRMWARE_DIMGREY_CAVEFISH_DMUB; 4641 break; 4642 case IP_VERSION(3, 0, 3): 4643 fw_name_dmub = FIRMWARE_BEIGE_GOBY_DMUB; 4644 break; 4645 case IP_VERSION(3, 1, 2): 4646 case IP_VERSION(3, 1, 3): 4647 fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB; 4648 break; 4649 case IP_VERSION(3, 1, 4): 4650 fw_name_dmub = FIRMWARE_DCN_314_DMUB; 4651 break; 4652 case IP_VERSION(3, 1, 5): 4653 fw_name_dmub = FIRMWARE_DCN_315_DMUB; 4654 break; 4655 case IP_VERSION(3, 1, 6): 4656 fw_name_dmub = FIRMWARE_DCN316_DMUB; 4657 break; 4658 case IP_VERSION(3, 2, 0): 4659 fw_name_dmub = FIRMWARE_DCN_V3_2_0_DMCUB; 4660 break; 4661 case IP_VERSION(3, 2, 1): 4662 fw_name_dmub = FIRMWARE_DCN_V3_2_1_DMCUB; 4663 break; 4664 default: 4665 /* ASIC doesn't support DMUB. */ 4666 return 0; 4667 } 4668 r = amdgpu_ucode_request(adev, &adev->dm.dmub_fw, fw_name_dmub); 4669 if (r) 4670 DRM_ERROR("DMUB firmware loading failed: %d\n", r); 4671 return r; 4672 } 4673 4674 static int dm_early_init(void *handle) 4675 { 4676 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 4677 struct amdgpu_mode_info *mode_info = &adev->mode_info; 4678 struct atom_context *ctx = mode_info->atom_context; 4679 int index = GetIndexIntoMasterTable(DATA, Object_Header); 4680 u16 data_offset; 4681 4682 /* if there is no object header, skip DM */ 4683 if (!amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) { 4684 adev->harvest_ip_mask |= AMD_HARVEST_IP_DMU_MASK; 4685 dev_info(adev->dev, "No object header, skipping DM\n"); 4686 return -ENOENT; 4687 } 4688 4689 switch (adev->asic_type) { 4690 #if defined(CONFIG_DRM_AMD_DC_SI) 4691 case CHIP_TAHITI: 4692 case CHIP_PITCAIRN: 4693 case CHIP_VERDE: 4694 adev->mode_info.num_crtc = 6; 4695 adev->mode_info.num_hpd = 6; 4696 adev->mode_info.num_dig = 6; 4697 break; 4698 case CHIP_OLAND: 4699 adev->mode_info.num_crtc = 2; 4700 adev->mode_info.num_hpd = 2; 4701 adev->mode_info.num_dig = 2; 4702 break; 4703 #endif 4704 case CHIP_BONAIRE: 4705 case CHIP_HAWAII: 4706 adev->mode_info.num_crtc = 6; 4707 adev->mode_info.num_hpd = 6; 4708 adev->mode_info.num_dig = 6; 4709 break; 4710 case CHIP_KAVERI: 4711 adev->mode_info.num_crtc = 4; 4712 adev->mode_info.num_hpd = 6; 4713 adev->mode_info.num_dig = 7; 4714 break; 4715 case CHIP_KABINI: 4716 case CHIP_MULLINS: 4717 adev->mode_info.num_crtc = 2; 4718 adev->mode_info.num_hpd = 6; 4719 adev->mode_info.num_dig = 6; 4720 break; 4721 case CHIP_FIJI: 4722 case CHIP_TONGA: 4723 adev->mode_info.num_crtc = 6; 4724 adev->mode_info.num_hpd = 6; 4725 adev->mode_info.num_dig = 7; 4726 break; 4727 case CHIP_CARRIZO: 4728 adev->mode_info.num_crtc = 3; 4729 adev->mode_info.num_hpd = 6; 4730 adev->mode_info.num_dig = 9; 4731 break; 4732 case CHIP_STONEY: 4733 adev->mode_info.num_crtc = 2; 4734 adev->mode_info.num_hpd = 6; 4735 adev->mode_info.num_dig = 9; 4736 break; 4737 case CHIP_POLARIS11: 4738 case CHIP_POLARIS12: 4739 adev->mode_info.num_crtc = 5; 4740 adev->mode_info.num_hpd = 5; 4741 adev->mode_info.num_dig = 5; 4742 break; 4743 case CHIP_POLARIS10: 4744 case CHIP_VEGAM: 4745 adev->mode_info.num_crtc = 6; 4746 adev->mode_info.num_hpd = 6; 4747 adev->mode_info.num_dig = 6; 4748 break; 4749 case CHIP_VEGA10: 4750 case CHIP_VEGA12: 4751 case CHIP_VEGA20: 4752 adev->mode_info.num_crtc = 6; 4753 adev->mode_info.num_hpd = 6; 4754 adev->mode_info.num_dig = 6; 4755 break; 4756 default: 4757 4758 switch (adev->ip_versions[DCE_HWIP][0]) { 4759 case IP_VERSION(2, 0, 2): 4760 case IP_VERSION(3, 0, 0): 4761 adev->mode_info.num_crtc = 6; 4762 adev->mode_info.num_hpd = 6; 4763 adev->mode_info.num_dig = 6; 4764 break; 4765 case IP_VERSION(2, 0, 0): 4766 case IP_VERSION(3, 0, 2): 4767 adev->mode_info.num_crtc = 5; 4768 adev->mode_info.num_hpd = 5; 4769 adev->mode_info.num_dig = 5; 4770 break; 4771 case IP_VERSION(2, 0, 3): 4772 case IP_VERSION(3, 0, 3): 4773 adev->mode_info.num_crtc = 2; 4774 adev->mode_info.num_hpd = 2; 4775 adev->mode_info.num_dig = 2; 4776 break; 4777 case IP_VERSION(1, 0, 0): 4778 case IP_VERSION(1, 0, 1): 4779 case IP_VERSION(3, 0, 1): 4780 case IP_VERSION(2, 1, 0): 4781 case IP_VERSION(3, 1, 2): 4782 case IP_VERSION(3, 1, 3): 4783 case IP_VERSION(3, 1, 4): 4784 case IP_VERSION(3, 1, 5): 4785 case IP_VERSION(3, 1, 6): 4786 case IP_VERSION(3, 2, 0): 4787 case IP_VERSION(3, 2, 1): 4788 adev->mode_info.num_crtc = 4; 4789 adev->mode_info.num_hpd = 4; 4790 adev->mode_info.num_dig = 4; 4791 break; 4792 default: 4793 DRM_ERROR("Unsupported DCE IP versions: 0x%x\n", 4794 adev->ip_versions[DCE_HWIP][0]); 4795 return -EINVAL; 4796 } 4797 break; 4798 } 4799 4800 if (adev->mode_info.funcs == NULL) 4801 adev->mode_info.funcs = &dm_display_funcs; 4802 4803 /* 4804 * Note: Do NOT change adev->audio_endpt_rreg and 4805 * adev->audio_endpt_wreg because they are initialised in 4806 * amdgpu_device_init() 4807 */ 4808 #if defined(CONFIG_DEBUG_KERNEL_DC) 4809 device_create_file( 4810 adev_to_drm(adev)->dev, 4811 &dev_attr_s3_debug); 4812 #endif 4813 adev->dc_enabled = true; 4814 4815 return dm_init_microcode(adev); 4816 } 4817 4818 static bool modereset_required(struct drm_crtc_state *crtc_state) 4819 { 4820 return !crtc_state->active && drm_atomic_crtc_needs_modeset(crtc_state); 4821 } 4822 4823 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder) 4824 { 4825 drm_encoder_cleanup(encoder); 4826 kfree(encoder); 4827 } 4828 4829 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = { 4830 .destroy = amdgpu_dm_encoder_destroy, 4831 }; 4832 4833 static int 4834 fill_plane_color_attributes(const struct drm_plane_state *plane_state, 4835 const enum surface_pixel_format format, 4836 enum dc_color_space *color_space) 4837 { 4838 bool full_range; 4839 4840 *color_space = COLOR_SPACE_SRGB; 4841 4842 /* DRM color properties only affect non-RGB formats. */ 4843 if (format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN) 4844 return 0; 4845 4846 full_range = (plane_state->color_range == DRM_COLOR_YCBCR_FULL_RANGE); 4847 4848 switch (plane_state->color_encoding) { 4849 case DRM_COLOR_YCBCR_BT601: 4850 if (full_range) 4851 *color_space = COLOR_SPACE_YCBCR601; 4852 else 4853 *color_space = COLOR_SPACE_YCBCR601_LIMITED; 4854 break; 4855 4856 case DRM_COLOR_YCBCR_BT709: 4857 if (full_range) 4858 *color_space = COLOR_SPACE_YCBCR709; 4859 else 4860 *color_space = COLOR_SPACE_YCBCR709_LIMITED; 4861 break; 4862 4863 case DRM_COLOR_YCBCR_BT2020: 4864 if (full_range) 4865 *color_space = COLOR_SPACE_2020_YCBCR; 4866 else 4867 return -EINVAL; 4868 break; 4869 4870 default: 4871 return -EINVAL; 4872 } 4873 4874 return 0; 4875 } 4876 4877 static int 4878 fill_dc_plane_info_and_addr(struct amdgpu_device *adev, 4879 const struct drm_plane_state *plane_state, 4880 const u64 tiling_flags, 4881 struct dc_plane_info *plane_info, 4882 struct dc_plane_address *address, 4883 bool tmz_surface, 4884 bool force_disable_dcc) 4885 { 4886 const struct drm_framebuffer *fb = plane_state->fb; 4887 const struct amdgpu_framebuffer *afb = 4888 to_amdgpu_framebuffer(plane_state->fb); 4889 int ret; 4890 4891 memset(plane_info, 0, sizeof(*plane_info)); 4892 4893 switch (fb->format->format) { 4894 case DRM_FORMAT_C8: 4895 plane_info->format = 4896 SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS; 4897 break; 4898 case DRM_FORMAT_RGB565: 4899 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565; 4900 break; 4901 case DRM_FORMAT_XRGB8888: 4902 case DRM_FORMAT_ARGB8888: 4903 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888; 4904 break; 4905 case DRM_FORMAT_XRGB2101010: 4906 case DRM_FORMAT_ARGB2101010: 4907 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010; 4908 break; 4909 case DRM_FORMAT_XBGR2101010: 4910 case DRM_FORMAT_ABGR2101010: 4911 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010; 4912 break; 4913 case DRM_FORMAT_XBGR8888: 4914 case DRM_FORMAT_ABGR8888: 4915 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888; 4916 break; 4917 case DRM_FORMAT_NV21: 4918 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr; 4919 break; 4920 case DRM_FORMAT_NV12: 4921 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb; 4922 break; 4923 case DRM_FORMAT_P010: 4924 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb; 4925 break; 4926 case DRM_FORMAT_XRGB16161616F: 4927 case DRM_FORMAT_ARGB16161616F: 4928 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F; 4929 break; 4930 case DRM_FORMAT_XBGR16161616F: 4931 case DRM_FORMAT_ABGR16161616F: 4932 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F; 4933 break; 4934 case DRM_FORMAT_XRGB16161616: 4935 case DRM_FORMAT_ARGB16161616: 4936 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616; 4937 break; 4938 case DRM_FORMAT_XBGR16161616: 4939 case DRM_FORMAT_ABGR16161616: 4940 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616; 4941 break; 4942 default: 4943 DRM_ERROR( 4944 "Unsupported screen format %p4cc\n", 4945 &fb->format->format); 4946 return -EINVAL; 4947 } 4948 4949 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) { 4950 case DRM_MODE_ROTATE_0: 4951 plane_info->rotation = ROTATION_ANGLE_0; 4952 break; 4953 case DRM_MODE_ROTATE_90: 4954 plane_info->rotation = ROTATION_ANGLE_90; 4955 break; 4956 case DRM_MODE_ROTATE_180: 4957 plane_info->rotation = ROTATION_ANGLE_180; 4958 break; 4959 case DRM_MODE_ROTATE_270: 4960 plane_info->rotation = ROTATION_ANGLE_270; 4961 break; 4962 default: 4963 plane_info->rotation = ROTATION_ANGLE_0; 4964 break; 4965 } 4966 4967 4968 plane_info->visible = true; 4969 plane_info->stereo_format = PLANE_STEREO_FORMAT_NONE; 4970 4971 plane_info->layer_index = plane_state->normalized_zpos; 4972 4973 ret = fill_plane_color_attributes(plane_state, plane_info->format, 4974 &plane_info->color_space); 4975 if (ret) 4976 return ret; 4977 4978 ret = amdgpu_dm_plane_fill_plane_buffer_attributes(adev, afb, plane_info->format, 4979 plane_info->rotation, tiling_flags, 4980 &plane_info->tiling_info, 4981 &plane_info->plane_size, 4982 &plane_info->dcc, address, 4983 tmz_surface, force_disable_dcc); 4984 if (ret) 4985 return ret; 4986 4987 amdgpu_dm_plane_fill_blending_from_plane_state( 4988 plane_state, &plane_info->per_pixel_alpha, &plane_info->pre_multiplied_alpha, 4989 &plane_info->global_alpha, &plane_info->global_alpha_value); 4990 4991 return 0; 4992 } 4993 4994 static int fill_dc_plane_attributes(struct amdgpu_device *adev, 4995 struct dc_plane_state *dc_plane_state, 4996 struct drm_plane_state *plane_state, 4997 struct drm_crtc_state *crtc_state) 4998 { 4999 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state); 5000 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)plane_state->fb; 5001 struct dc_scaling_info scaling_info; 5002 struct dc_plane_info plane_info; 5003 int ret; 5004 bool force_disable_dcc = false; 5005 5006 ret = amdgpu_dm_plane_fill_dc_scaling_info(adev, plane_state, &scaling_info); 5007 if (ret) 5008 return ret; 5009 5010 dc_plane_state->src_rect = scaling_info.src_rect; 5011 dc_plane_state->dst_rect = scaling_info.dst_rect; 5012 dc_plane_state->clip_rect = scaling_info.clip_rect; 5013 dc_plane_state->scaling_quality = scaling_info.scaling_quality; 5014 5015 force_disable_dcc = adev->asic_type == CHIP_RAVEN && adev->in_suspend; 5016 ret = fill_dc_plane_info_and_addr(adev, plane_state, 5017 afb->tiling_flags, 5018 &plane_info, 5019 &dc_plane_state->address, 5020 afb->tmz_surface, 5021 force_disable_dcc); 5022 if (ret) 5023 return ret; 5024 5025 dc_plane_state->format = plane_info.format; 5026 dc_plane_state->color_space = plane_info.color_space; 5027 dc_plane_state->format = plane_info.format; 5028 dc_plane_state->plane_size = plane_info.plane_size; 5029 dc_plane_state->rotation = plane_info.rotation; 5030 dc_plane_state->horizontal_mirror = plane_info.horizontal_mirror; 5031 dc_plane_state->stereo_format = plane_info.stereo_format; 5032 dc_plane_state->tiling_info = plane_info.tiling_info; 5033 dc_plane_state->visible = plane_info.visible; 5034 dc_plane_state->per_pixel_alpha = plane_info.per_pixel_alpha; 5035 dc_plane_state->pre_multiplied_alpha = plane_info.pre_multiplied_alpha; 5036 dc_plane_state->global_alpha = plane_info.global_alpha; 5037 dc_plane_state->global_alpha_value = plane_info.global_alpha_value; 5038 dc_plane_state->dcc = plane_info.dcc; 5039 dc_plane_state->layer_index = plane_info.layer_index; 5040 dc_plane_state->flip_int_enabled = true; 5041 5042 /* 5043 * Always set input transfer function, since plane state is refreshed 5044 * every time. 5045 */ 5046 ret = amdgpu_dm_update_plane_color_mgmt(dm_crtc_state, dc_plane_state); 5047 if (ret) 5048 return ret; 5049 5050 return 0; 5051 } 5052 5053 static inline void fill_dc_dirty_rect(struct drm_plane *plane, 5054 struct rect *dirty_rect, int32_t x, 5055 s32 y, s32 width, s32 height, 5056 int *i, bool ffu) 5057 { 5058 if (*i > DC_MAX_DIRTY_RECTS) 5059 return; 5060 5061 if (*i == DC_MAX_DIRTY_RECTS) 5062 goto out; 5063 5064 dirty_rect->x = x; 5065 dirty_rect->y = y; 5066 dirty_rect->width = width; 5067 dirty_rect->height = height; 5068 5069 if (ffu) 5070 drm_dbg(plane->dev, 5071 "[PLANE:%d] PSR FFU dirty rect size (%d, %d)\n", 5072 plane->base.id, width, height); 5073 else 5074 drm_dbg(plane->dev, 5075 "[PLANE:%d] PSR SU dirty rect at (%d, %d) size (%d, %d)", 5076 plane->base.id, x, y, width, height); 5077 5078 out: 5079 (*i)++; 5080 } 5081 5082 /** 5083 * fill_dc_dirty_rects() - Fill DC dirty regions for PSR selective updates 5084 * 5085 * @plane: DRM plane containing dirty regions that need to be flushed to the eDP 5086 * remote fb 5087 * @old_plane_state: Old state of @plane 5088 * @new_plane_state: New state of @plane 5089 * @crtc_state: New state of CRTC connected to the @plane 5090 * @flip_addrs: DC flip tracking struct, which also tracts dirty rects 5091 * @dirty_regions_changed: dirty regions changed 5092 * 5093 * For PSR SU, DC informs the DMUB uController of dirty rectangle regions 5094 * (referred to as "damage clips" in DRM nomenclature) that require updating on 5095 * the eDP remote buffer. The responsibility of specifying the dirty regions is 5096 * amdgpu_dm's. 5097 * 5098 * A damage-aware DRM client should fill the FB_DAMAGE_CLIPS property on the 5099 * plane with regions that require flushing to the eDP remote buffer. In 5100 * addition, certain use cases - such as cursor and multi-plane overlay (MPO) - 5101 * implicitly provide damage clips without any client support via the plane 5102 * bounds. 5103 */ 5104 static void fill_dc_dirty_rects(struct drm_plane *plane, 5105 struct drm_plane_state *old_plane_state, 5106 struct drm_plane_state *new_plane_state, 5107 struct drm_crtc_state *crtc_state, 5108 struct dc_flip_addrs *flip_addrs, 5109 bool *dirty_regions_changed) 5110 { 5111 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state); 5112 struct rect *dirty_rects = flip_addrs->dirty_rects; 5113 u32 num_clips; 5114 struct drm_mode_rect *clips; 5115 bool bb_changed; 5116 bool fb_changed; 5117 u32 i = 0; 5118 *dirty_regions_changed = false; 5119 5120 /* 5121 * Cursor plane has it's own dirty rect update interface. See 5122 * dcn10_dmub_update_cursor_data and dmub_cmd_update_cursor_info_data 5123 */ 5124 if (plane->type == DRM_PLANE_TYPE_CURSOR) 5125 return; 5126 5127 num_clips = drm_plane_get_damage_clips_count(new_plane_state); 5128 clips = drm_plane_get_damage_clips(new_plane_state); 5129 5130 if (!dm_crtc_state->mpo_requested) { 5131 if (!num_clips || num_clips > DC_MAX_DIRTY_RECTS) 5132 goto ffu; 5133 5134 for (; flip_addrs->dirty_rect_count < num_clips; clips++) 5135 fill_dc_dirty_rect(new_plane_state->plane, 5136 &dirty_rects[flip_addrs->dirty_rect_count], 5137 clips->x1, clips->y1, 5138 clips->x2 - clips->x1, clips->y2 - clips->y1, 5139 &flip_addrs->dirty_rect_count, 5140 false); 5141 return; 5142 } 5143 5144 /* 5145 * MPO is requested. Add entire plane bounding box to dirty rects if 5146 * flipped to or damaged. 5147 * 5148 * If plane is moved or resized, also add old bounding box to dirty 5149 * rects. 5150 */ 5151 fb_changed = old_plane_state->fb->base.id != 5152 new_plane_state->fb->base.id; 5153 bb_changed = (old_plane_state->crtc_x != new_plane_state->crtc_x || 5154 old_plane_state->crtc_y != new_plane_state->crtc_y || 5155 old_plane_state->crtc_w != new_plane_state->crtc_w || 5156 old_plane_state->crtc_h != new_plane_state->crtc_h); 5157 5158 drm_dbg(plane->dev, 5159 "[PLANE:%d] PSR bb_changed:%d fb_changed:%d num_clips:%d\n", 5160 new_plane_state->plane->base.id, 5161 bb_changed, fb_changed, num_clips); 5162 5163 *dirty_regions_changed = bb_changed; 5164 5165 if (bb_changed) { 5166 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i], 5167 new_plane_state->crtc_x, 5168 new_plane_state->crtc_y, 5169 new_plane_state->crtc_w, 5170 new_plane_state->crtc_h, &i, false); 5171 5172 /* Add old plane bounding-box if plane is moved or resized */ 5173 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i], 5174 old_plane_state->crtc_x, 5175 old_plane_state->crtc_y, 5176 old_plane_state->crtc_w, 5177 old_plane_state->crtc_h, &i, false); 5178 } 5179 5180 if (num_clips) { 5181 for (; i < num_clips; clips++) 5182 fill_dc_dirty_rect(new_plane_state->plane, 5183 &dirty_rects[i], clips->x1, 5184 clips->y1, clips->x2 - clips->x1, 5185 clips->y2 - clips->y1, &i, false); 5186 } else if (fb_changed && !bb_changed) { 5187 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i], 5188 new_plane_state->crtc_x, 5189 new_plane_state->crtc_y, 5190 new_plane_state->crtc_w, 5191 new_plane_state->crtc_h, &i, false); 5192 } 5193 5194 if (i > DC_MAX_DIRTY_RECTS) 5195 goto ffu; 5196 5197 flip_addrs->dirty_rect_count = i; 5198 return; 5199 5200 ffu: 5201 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[0], 0, 0, 5202 dm_crtc_state->base.mode.crtc_hdisplay, 5203 dm_crtc_state->base.mode.crtc_vdisplay, 5204 &flip_addrs->dirty_rect_count, true); 5205 } 5206 5207 static void update_stream_scaling_settings(const struct drm_display_mode *mode, 5208 const struct dm_connector_state *dm_state, 5209 struct dc_stream_state *stream) 5210 { 5211 enum amdgpu_rmx_type rmx_type; 5212 5213 struct rect src = { 0 }; /* viewport in composition space*/ 5214 struct rect dst = { 0 }; /* stream addressable area */ 5215 5216 /* no mode. nothing to be done */ 5217 if (!mode) 5218 return; 5219 5220 /* Full screen scaling by default */ 5221 src.width = mode->hdisplay; 5222 src.height = mode->vdisplay; 5223 dst.width = stream->timing.h_addressable; 5224 dst.height = stream->timing.v_addressable; 5225 5226 if (dm_state) { 5227 rmx_type = dm_state->scaling; 5228 if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) { 5229 if (src.width * dst.height < 5230 src.height * dst.width) { 5231 /* height needs less upscaling/more downscaling */ 5232 dst.width = src.width * 5233 dst.height / src.height; 5234 } else { 5235 /* width needs less upscaling/more downscaling */ 5236 dst.height = src.height * 5237 dst.width / src.width; 5238 } 5239 } else if (rmx_type == RMX_CENTER) { 5240 dst = src; 5241 } 5242 5243 dst.x = (stream->timing.h_addressable - dst.width) / 2; 5244 dst.y = (stream->timing.v_addressable - dst.height) / 2; 5245 5246 if (dm_state->underscan_enable) { 5247 dst.x += dm_state->underscan_hborder / 2; 5248 dst.y += dm_state->underscan_vborder / 2; 5249 dst.width -= dm_state->underscan_hborder; 5250 dst.height -= dm_state->underscan_vborder; 5251 } 5252 } 5253 5254 stream->src = src; 5255 stream->dst = dst; 5256 5257 DRM_DEBUG_KMS("Destination Rectangle x:%d y:%d width:%d height:%d\n", 5258 dst.x, dst.y, dst.width, dst.height); 5259 5260 } 5261 5262 static enum dc_color_depth 5263 convert_color_depth_from_display_info(const struct drm_connector *connector, 5264 bool is_y420, int requested_bpc) 5265 { 5266 u8 bpc; 5267 5268 if (is_y420) { 5269 bpc = 8; 5270 5271 /* Cap display bpc based on HDMI 2.0 HF-VSDB */ 5272 if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48) 5273 bpc = 16; 5274 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36) 5275 bpc = 12; 5276 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30) 5277 bpc = 10; 5278 } else { 5279 bpc = (uint8_t)connector->display_info.bpc; 5280 /* Assume 8 bpc by default if no bpc is specified. */ 5281 bpc = bpc ? bpc : 8; 5282 } 5283 5284 if (requested_bpc > 0) { 5285 /* 5286 * Cap display bpc based on the user requested value. 5287 * 5288 * The value for state->max_bpc may not correctly updated 5289 * depending on when the connector gets added to the state 5290 * or if this was called outside of atomic check, so it 5291 * can't be used directly. 5292 */ 5293 bpc = min_t(u8, bpc, requested_bpc); 5294 5295 /* Round down to the nearest even number. */ 5296 bpc = bpc - (bpc & 1); 5297 } 5298 5299 switch (bpc) { 5300 case 0: 5301 /* 5302 * Temporary Work around, DRM doesn't parse color depth for 5303 * EDID revision before 1.4 5304 * TODO: Fix edid parsing 5305 */ 5306 return COLOR_DEPTH_888; 5307 case 6: 5308 return COLOR_DEPTH_666; 5309 case 8: 5310 return COLOR_DEPTH_888; 5311 case 10: 5312 return COLOR_DEPTH_101010; 5313 case 12: 5314 return COLOR_DEPTH_121212; 5315 case 14: 5316 return COLOR_DEPTH_141414; 5317 case 16: 5318 return COLOR_DEPTH_161616; 5319 default: 5320 return COLOR_DEPTH_UNDEFINED; 5321 } 5322 } 5323 5324 static enum dc_aspect_ratio 5325 get_aspect_ratio(const struct drm_display_mode *mode_in) 5326 { 5327 /* 1-1 mapping, since both enums follow the HDMI spec. */ 5328 return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio; 5329 } 5330 5331 static enum dc_color_space 5332 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing) 5333 { 5334 enum dc_color_space color_space = COLOR_SPACE_SRGB; 5335 5336 switch (dc_crtc_timing->pixel_encoding) { 5337 case PIXEL_ENCODING_YCBCR422: 5338 case PIXEL_ENCODING_YCBCR444: 5339 case PIXEL_ENCODING_YCBCR420: 5340 { 5341 /* 5342 * 27030khz is the separation point between HDTV and SDTV 5343 * according to HDMI spec, we use YCbCr709 and YCbCr601 5344 * respectively 5345 */ 5346 if (dc_crtc_timing->pix_clk_100hz > 270300) { 5347 if (dc_crtc_timing->flags.Y_ONLY) 5348 color_space = 5349 COLOR_SPACE_YCBCR709_LIMITED; 5350 else 5351 color_space = COLOR_SPACE_YCBCR709; 5352 } else { 5353 if (dc_crtc_timing->flags.Y_ONLY) 5354 color_space = 5355 COLOR_SPACE_YCBCR601_LIMITED; 5356 else 5357 color_space = COLOR_SPACE_YCBCR601; 5358 } 5359 5360 } 5361 break; 5362 case PIXEL_ENCODING_RGB: 5363 color_space = COLOR_SPACE_SRGB; 5364 break; 5365 5366 default: 5367 WARN_ON(1); 5368 break; 5369 } 5370 5371 return color_space; 5372 } 5373 5374 static bool adjust_colour_depth_from_display_info( 5375 struct dc_crtc_timing *timing_out, 5376 const struct drm_display_info *info) 5377 { 5378 enum dc_color_depth depth = timing_out->display_color_depth; 5379 int normalized_clk; 5380 do { 5381 normalized_clk = timing_out->pix_clk_100hz / 10; 5382 /* YCbCr 4:2:0 requires additional adjustment of 1/2 */ 5383 if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420) 5384 normalized_clk /= 2; 5385 /* Adjusting pix clock following on HDMI spec based on colour depth */ 5386 switch (depth) { 5387 case COLOR_DEPTH_888: 5388 break; 5389 case COLOR_DEPTH_101010: 5390 normalized_clk = (normalized_clk * 30) / 24; 5391 break; 5392 case COLOR_DEPTH_121212: 5393 normalized_clk = (normalized_clk * 36) / 24; 5394 break; 5395 case COLOR_DEPTH_161616: 5396 normalized_clk = (normalized_clk * 48) / 24; 5397 break; 5398 default: 5399 /* The above depths are the only ones valid for HDMI. */ 5400 return false; 5401 } 5402 if (normalized_clk <= info->max_tmds_clock) { 5403 timing_out->display_color_depth = depth; 5404 return true; 5405 } 5406 } while (--depth > COLOR_DEPTH_666); 5407 return false; 5408 } 5409 5410 static void fill_stream_properties_from_drm_display_mode( 5411 struct dc_stream_state *stream, 5412 const struct drm_display_mode *mode_in, 5413 const struct drm_connector *connector, 5414 const struct drm_connector_state *connector_state, 5415 const struct dc_stream_state *old_stream, 5416 int requested_bpc) 5417 { 5418 struct dc_crtc_timing *timing_out = &stream->timing; 5419 const struct drm_display_info *info = &connector->display_info; 5420 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 5421 struct hdmi_vendor_infoframe hv_frame; 5422 struct hdmi_avi_infoframe avi_frame; 5423 5424 memset(&hv_frame, 0, sizeof(hv_frame)); 5425 memset(&avi_frame, 0, sizeof(avi_frame)); 5426 5427 timing_out->h_border_left = 0; 5428 timing_out->h_border_right = 0; 5429 timing_out->v_border_top = 0; 5430 timing_out->v_border_bottom = 0; 5431 /* TODO: un-hardcode */ 5432 if (drm_mode_is_420_only(info, mode_in) 5433 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) 5434 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420; 5435 else if (drm_mode_is_420_also(info, mode_in) 5436 && aconnector->force_yuv420_output) 5437 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420; 5438 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR444) 5439 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) 5440 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444; 5441 else 5442 timing_out->pixel_encoding = PIXEL_ENCODING_RGB; 5443 5444 timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE; 5445 timing_out->display_color_depth = convert_color_depth_from_display_info( 5446 connector, 5447 (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420), 5448 requested_bpc); 5449 timing_out->scan_type = SCANNING_TYPE_NODATA; 5450 timing_out->hdmi_vic = 0; 5451 5452 if (old_stream) { 5453 timing_out->vic = old_stream->timing.vic; 5454 timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY; 5455 timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY; 5456 } else { 5457 timing_out->vic = drm_match_cea_mode(mode_in); 5458 if (mode_in->flags & DRM_MODE_FLAG_PHSYNC) 5459 timing_out->flags.HSYNC_POSITIVE_POLARITY = 1; 5460 if (mode_in->flags & DRM_MODE_FLAG_PVSYNC) 5461 timing_out->flags.VSYNC_POSITIVE_POLARITY = 1; 5462 } 5463 5464 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) { 5465 drm_hdmi_avi_infoframe_from_display_mode(&avi_frame, (struct drm_connector *)connector, mode_in); 5466 timing_out->vic = avi_frame.video_code; 5467 drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame, (struct drm_connector *)connector, mode_in); 5468 timing_out->hdmi_vic = hv_frame.vic; 5469 } 5470 5471 if (is_freesync_video_mode(mode_in, aconnector)) { 5472 timing_out->h_addressable = mode_in->hdisplay; 5473 timing_out->h_total = mode_in->htotal; 5474 timing_out->h_sync_width = mode_in->hsync_end - mode_in->hsync_start; 5475 timing_out->h_front_porch = mode_in->hsync_start - mode_in->hdisplay; 5476 timing_out->v_total = mode_in->vtotal; 5477 timing_out->v_addressable = mode_in->vdisplay; 5478 timing_out->v_front_porch = mode_in->vsync_start - mode_in->vdisplay; 5479 timing_out->v_sync_width = mode_in->vsync_end - mode_in->vsync_start; 5480 timing_out->pix_clk_100hz = mode_in->clock * 10; 5481 } else { 5482 timing_out->h_addressable = mode_in->crtc_hdisplay; 5483 timing_out->h_total = mode_in->crtc_htotal; 5484 timing_out->h_sync_width = mode_in->crtc_hsync_end - mode_in->crtc_hsync_start; 5485 timing_out->h_front_porch = mode_in->crtc_hsync_start - mode_in->crtc_hdisplay; 5486 timing_out->v_total = mode_in->crtc_vtotal; 5487 timing_out->v_addressable = mode_in->crtc_vdisplay; 5488 timing_out->v_front_porch = mode_in->crtc_vsync_start - mode_in->crtc_vdisplay; 5489 timing_out->v_sync_width = mode_in->crtc_vsync_end - mode_in->crtc_vsync_start; 5490 timing_out->pix_clk_100hz = mode_in->crtc_clock * 10; 5491 } 5492 5493 timing_out->aspect_ratio = get_aspect_ratio(mode_in); 5494 5495 stream->out_transfer_func->type = TF_TYPE_PREDEFINED; 5496 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB; 5497 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) { 5498 if (!adjust_colour_depth_from_display_info(timing_out, info) && 5499 drm_mode_is_420_also(info, mode_in) && 5500 timing_out->pixel_encoding != PIXEL_ENCODING_YCBCR420) { 5501 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420; 5502 adjust_colour_depth_from_display_info(timing_out, info); 5503 } 5504 } 5505 5506 stream->output_color_space = get_output_color_space(timing_out); 5507 } 5508 5509 static void fill_audio_info(struct audio_info *audio_info, 5510 const struct drm_connector *drm_connector, 5511 const struct dc_sink *dc_sink) 5512 { 5513 int i = 0; 5514 int cea_revision = 0; 5515 const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps; 5516 5517 audio_info->manufacture_id = edid_caps->manufacturer_id; 5518 audio_info->product_id = edid_caps->product_id; 5519 5520 cea_revision = drm_connector->display_info.cea_rev; 5521 5522 strscpy(audio_info->display_name, 5523 edid_caps->display_name, 5524 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS); 5525 5526 if (cea_revision >= 3) { 5527 audio_info->mode_count = edid_caps->audio_mode_count; 5528 5529 for (i = 0; i < audio_info->mode_count; ++i) { 5530 audio_info->modes[i].format_code = 5531 (enum audio_format_code) 5532 (edid_caps->audio_modes[i].format_code); 5533 audio_info->modes[i].channel_count = 5534 edid_caps->audio_modes[i].channel_count; 5535 audio_info->modes[i].sample_rates.all = 5536 edid_caps->audio_modes[i].sample_rate; 5537 audio_info->modes[i].sample_size = 5538 edid_caps->audio_modes[i].sample_size; 5539 } 5540 } 5541 5542 audio_info->flags.all = edid_caps->speaker_flags; 5543 5544 /* TODO: We only check for the progressive mode, check for interlace mode too */ 5545 if (drm_connector->latency_present[0]) { 5546 audio_info->video_latency = drm_connector->video_latency[0]; 5547 audio_info->audio_latency = drm_connector->audio_latency[0]; 5548 } 5549 5550 /* TODO: For DP, video and audio latency should be calculated from DPCD caps */ 5551 5552 } 5553 5554 static void 5555 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode, 5556 struct drm_display_mode *dst_mode) 5557 { 5558 dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay; 5559 dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay; 5560 dst_mode->crtc_clock = src_mode->crtc_clock; 5561 dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start; 5562 dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end; 5563 dst_mode->crtc_hsync_start = src_mode->crtc_hsync_start; 5564 dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end; 5565 dst_mode->crtc_htotal = src_mode->crtc_htotal; 5566 dst_mode->crtc_hskew = src_mode->crtc_hskew; 5567 dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start; 5568 dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end; 5569 dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start; 5570 dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end; 5571 dst_mode->crtc_vtotal = src_mode->crtc_vtotal; 5572 } 5573 5574 static void 5575 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode, 5576 const struct drm_display_mode *native_mode, 5577 bool scale_enabled) 5578 { 5579 if (scale_enabled) { 5580 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode); 5581 } else if (native_mode->clock == drm_mode->clock && 5582 native_mode->htotal == drm_mode->htotal && 5583 native_mode->vtotal == drm_mode->vtotal) { 5584 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode); 5585 } else { 5586 /* no scaling nor amdgpu inserted, no need to patch */ 5587 } 5588 } 5589 5590 static struct dc_sink * 5591 create_fake_sink(struct amdgpu_dm_connector *aconnector) 5592 { 5593 struct dc_sink_init_data sink_init_data = { 0 }; 5594 struct dc_sink *sink = NULL; 5595 sink_init_data.link = aconnector->dc_link; 5596 sink_init_data.sink_signal = aconnector->dc_link->connector_signal; 5597 5598 sink = dc_sink_create(&sink_init_data); 5599 if (!sink) { 5600 DRM_ERROR("Failed to create sink!\n"); 5601 return NULL; 5602 } 5603 sink->sink_signal = SIGNAL_TYPE_VIRTUAL; 5604 5605 return sink; 5606 } 5607 5608 static void set_multisync_trigger_params( 5609 struct dc_stream_state *stream) 5610 { 5611 struct dc_stream_state *master = NULL; 5612 5613 if (stream->triggered_crtc_reset.enabled) { 5614 master = stream->triggered_crtc_reset.event_source; 5615 stream->triggered_crtc_reset.event = 5616 master->timing.flags.VSYNC_POSITIVE_POLARITY ? 5617 CRTC_EVENT_VSYNC_RISING : CRTC_EVENT_VSYNC_FALLING; 5618 stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_PIXEL; 5619 } 5620 } 5621 5622 static void set_master_stream(struct dc_stream_state *stream_set[], 5623 int stream_count) 5624 { 5625 int j, highest_rfr = 0, master_stream = 0; 5626 5627 for (j = 0; j < stream_count; j++) { 5628 if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) { 5629 int refresh_rate = 0; 5630 5631 refresh_rate = (stream_set[j]->timing.pix_clk_100hz*100)/ 5632 (stream_set[j]->timing.h_total*stream_set[j]->timing.v_total); 5633 if (refresh_rate > highest_rfr) { 5634 highest_rfr = refresh_rate; 5635 master_stream = j; 5636 } 5637 } 5638 } 5639 for (j = 0; j < stream_count; j++) { 5640 if (stream_set[j]) 5641 stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream]; 5642 } 5643 } 5644 5645 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context) 5646 { 5647 int i = 0; 5648 struct dc_stream_state *stream; 5649 5650 if (context->stream_count < 2) 5651 return; 5652 for (i = 0; i < context->stream_count ; i++) { 5653 if (!context->streams[i]) 5654 continue; 5655 /* 5656 * TODO: add a function to read AMD VSDB bits and set 5657 * crtc_sync_master.multi_sync_enabled flag 5658 * For now it's set to false 5659 */ 5660 } 5661 5662 set_master_stream(context->streams, context->stream_count); 5663 5664 for (i = 0; i < context->stream_count ; i++) { 5665 stream = context->streams[i]; 5666 5667 if (!stream) 5668 continue; 5669 5670 set_multisync_trigger_params(stream); 5671 } 5672 } 5673 5674 /** 5675 * DOC: FreeSync Video 5676 * 5677 * When a userspace application wants to play a video, the content follows a 5678 * standard format definition that usually specifies the FPS for that format. 5679 * The below list illustrates some video format and the expected FPS, 5680 * respectively: 5681 * 5682 * - TV/NTSC (23.976 FPS) 5683 * - Cinema (24 FPS) 5684 * - TV/PAL (25 FPS) 5685 * - TV/NTSC (29.97 FPS) 5686 * - TV/NTSC (30 FPS) 5687 * - Cinema HFR (48 FPS) 5688 * - TV/PAL (50 FPS) 5689 * - Commonly used (60 FPS) 5690 * - Multiples of 24 (48,72,96 FPS) 5691 * 5692 * The list of standards video format is not huge and can be added to the 5693 * connector modeset list beforehand. With that, userspace can leverage 5694 * FreeSync to extends the front porch in order to attain the target refresh 5695 * rate. Such a switch will happen seamlessly, without screen blanking or 5696 * reprogramming of the output in any other way. If the userspace requests a 5697 * modesetting change compatible with FreeSync modes that only differ in the 5698 * refresh rate, DC will skip the full update and avoid blink during the 5699 * transition. For example, the video player can change the modesetting from 5700 * 60Hz to 30Hz for playing TV/NTSC content when it goes full screen without 5701 * causing any display blink. This same concept can be applied to a mode 5702 * setting change. 5703 */ 5704 static struct drm_display_mode * 5705 get_highest_refresh_rate_mode(struct amdgpu_dm_connector *aconnector, 5706 bool use_probed_modes) 5707 { 5708 struct drm_display_mode *m, *m_pref = NULL; 5709 u16 current_refresh, highest_refresh; 5710 struct list_head *list_head = use_probed_modes ? 5711 &aconnector->base.probed_modes : 5712 &aconnector->base.modes; 5713 5714 if (aconnector->freesync_vid_base.clock != 0) 5715 return &aconnector->freesync_vid_base; 5716 5717 /* Find the preferred mode */ 5718 list_for_each_entry (m, list_head, head) { 5719 if (m->type & DRM_MODE_TYPE_PREFERRED) { 5720 m_pref = m; 5721 break; 5722 } 5723 } 5724 5725 if (!m_pref) { 5726 /* Probably an EDID with no preferred mode. Fallback to first entry */ 5727 m_pref = list_first_entry_or_null( 5728 &aconnector->base.modes, struct drm_display_mode, head); 5729 if (!m_pref) { 5730 DRM_DEBUG_DRIVER("No preferred mode found in EDID\n"); 5731 return NULL; 5732 } 5733 } 5734 5735 highest_refresh = drm_mode_vrefresh(m_pref); 5736 5737 /* 5738 * Find the mode with highest refresh rate with same resolution. 5739 * For some monitors, preferred mode is not the mode with highest 5740 * supported refresh rate. 5741 */ 5742 list_for_each_entry (m, list_head, head) { 5743 current_refresh = drm_mode_vrefresh(m); 5744 5745 if (m->hdisplay == m_pref->hdisplay && 5746 m->vdisplay == m_pref->vdisplay && 5747 highest_refresh < current_refresh) { 5748 highest_refresh = current_refresh; 5749 m_pref = m; 5750 } 5751 } 5752 5753 drm_mode_copy(&aconnector->freesync_vid_base, m_pref); 5754 return m_pref; 5755 } 5756 5757 static bool is_freesync_video_mode(const struct drm_display_mode *mode, 5758 struct amdgpu_dm_connector *aconnector) 5759 { 5760 struct drm_display_mode *high_mode; 5761 int timing_diff; 5762 5763 high_mode = get_highest_refresh_rate_mode(aconnector, false); 5764 if (!high_mode || !mode) 5765 return false; 5766 5767 timing_diff = high_mode->vtotal - mode->vtotal; 5768 5769 if (high_mode->clock == 0 || high_mode->clock != mode->clock || 5770 high_mode->hdisplay != mode->hdisplay || 5771 high_mode->vdisplay != mode->vdisplay || 5772 high_mode->hsync_start != mode->hsync_start || 5773 high_mode->hsync_end != mode->hsync_end || 5774 high_mode->htotal != mode->htotal || 5775 high_mode->hskew != mode->hskew || 5776 high_mode->vscan != mode->vscan || 5777 high_mode->vsync_start - mode->vsync_start != timing_diff || 5778 high_mode->vsync_end - mode->vsync_end != timing_diff) 5779 return false; 5780 else 5781 return true; 5782 } 5783 5784 static void update_dsc_caps(struct amdgpu_dm_connector *aconnector, 5785 struct dc_sink *sink, struct dc_stream_state *stream, 5786 struct dsc_dec_dpcd_caps *dsc_caps) 5787 { 5788 stream->timing.flags.DSC = 0; 5789 dsc_caps->is_dsc_supported = false; 5790 5791 if (aconnector->dc_link && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT || 5792 sink->sink_signal == SIGNAL_TYPE_EDP)) { 5793 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE || 5794 sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) 5795 dc_dsc_parse_dsc_dpcd(aconnector->dc_link->ctx->dc, 5796 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw, 5797 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw, 5798 dsc_caps); 5799 } 5800 } 5801 5802 5803 static void apply_dsc_policy_for_edp(struct amdgpu_dm_connector *aconnector, 5804 struct dc_sink *sink, struct dc_stream_state *stream, 5805 struct dsc_dec_dpcd_caps *dsc_caps, 5806 uint32_t max_dsc_target_bpp_limit_override) 5807 { 5808 const struct dc_link_settings *verified_link_cap = NULL; 5809 u32 link_bw_in_kbps; 5810 u32 edp_min_bpp_x16, edp_max_bpp_x16; 5811 struct dc *dc = sink->ctx->dc; 5812 struct dc_dsc_bw_range bw_range = {0}; 5813 struct dc_dsc_config dsc_cfg = {0}; 5814 struct dc_dsc_config_options dsc_options = {0}; 5815 5816 dc_dsc_get_default_config_option(dc, &dsc_options); 5817 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16; 5818 5819 verified_link_cap = dc_link_get_link_cap(stream->link); 5820 link_bw_in_kbps = dc_link_bandwidth_kbps(stream->link, verified_link_cap); 5821 edp_min_bpp_x16 = 8 * 16; 5822 edp_max_bpp_x16 = 8 * 16; 5823 5824 if (edp_max_bpp_x16 > dsc_caps->edp_max_bits_per_pixel) 5825 edp_max_bpp_x16 = dsc_caps->edp_max_bits_per_pixel; 5826 5827 if (edp_max_bpp_x16 < edp_min_bpp_x16) 5828 edp_min_bpp_x16 = edp_max_bpp_x16; 5829 5830 if (dc_dsc_compute_bandwidth_range(dc->res_pool->dscs[0], 5831 dc->debug.dsc_min_slice_height_override, 5832 edp_min_bpp_x16, edp_max_bpp_x16, 5833 dsc_caps, 5834 &stream->timing, 5835 &bw_range)) { 5836 5837 if (bw_range.max_kbps < link_bw_in_kbps) { 5838 if (dc_dsc_compute_config(dc->res_pool->dscs[0], 5839 dsc_caps, 5840 &dsc_options, 5841 0, 5842 &stream->timing, 5843 &dsc_cfg)) { 5844 stream->timing.dsc_cfg = dsc_cfg; 5845 stream->timing.flags.DSC = 1; 5846 stream->timing.dsc_cfg.bits_per_pixel = edp_max_bpp_x16; 5847 } 5848 return; 5849 } 5850 } 5851 5852 if (dc_dsc_compute_config(dc->res_pool->dscs[0], 5853 dsc_caps, 5854 &dsc_options, 5855 link_bw_in_kbps, 5856 &stream->timing, 5857 &dsc_cfg)) { 5858 stream->timing.dsc_cfg = dsc_cfg; 5859 stream->timing.flags.DSC = 1; 5860 } 5861 } 5862 5863 5864 static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector, 5865 struct dc_sink *sink, struct dc_stream_state *stream, 5866 struct dsc_dec_dpcd_caps *dsc_caps) 5867 { 5868 struct drm_connector *drm_connector = &aconnector->base; 5869 u32 link_bandwidth_kbps; 5870 struct dc *dc = sink->ctx->dc; 5871 u32 max_supported_bw_in_kbps, timing_bw_in_kbps; 5872 u32 dsc_max_supported_bw_in_kbps; 5873 u32 max_dsc_target_bpp_limit_override = 5874 drm_connector->display_info.max_dsc_bpp; 5875 struct dc_dsc_config_options dsc_options = {0}; 5876 5877 dc_dsc_get_default_config_option(dc, &dsc_options); 5878 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16; 5879 5880 link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link, 5881 dc_link_get_link_cap(aconnector->dc_link)); 5882 5883 /* Set DSC policy according to dsc_clock_en */ 5884 dc_dsc_policy_set_enable_dsc_when_not_needed( 5885 aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE); 5886 5887 if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_EDP && 5888 !aconnector->dc_link->panel_config.dsc.disable_dsc_edp && 5889 dc->caps.edp_dsc_support && aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE) { 5890 5891 apply_dsc_policy_for_edp(aconnector, sink, stream, dsc_caps, max_dsc_target_bpp_limit_override); 5892 5893 } else if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT) { 5894 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) { 5895 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0], 5896 dsc_caps, 5897 &dsc_options, 5898 link_bandwidth_kbps, 5899 &stream->timing, 5900 &stream->timing.dsc_cfg)) { 5901 stream->timing.flags.DSC = 1; 5902 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from SST RX\n", __func__, drm_connector->name); 5903 } 5904 } else if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) { 5905 timing_bw_in_kbps = dc_bandwidth_in_kbps_from_timing(&stream->timing); 5906 max_supported_bw_in_kbps = link_bandwidth_kbps; 5907 dsc_max_supported_bw_in_kbps = link_bandwidth_kbps; 5908 5909 if (timing_bw_in_kbps > max_supported_bw_in_kbps && 5910 max_supported_bw_in_kbps > 0 && 5911 dsc_max_supported_bw_in_kbps > 0) 5912 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0], 5913 dsc_caps, 5914 &dsc_options, 5915 dsc_max_supported_bw_in_kbps, 5916 &stream->timing, 5917 &stream->timing.dsc_cfg)) { 5918 stream->timing.flags.DSC = 1; 5919 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from DP-HDMI PCON\n", 5920 __func__, drm_connector->name); 5921 } 5922 } 5923 } 5924 5925 /* Overwrite the stream flag if DSC is enabled through debugfs */ 5926 if (aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE) 5927 stream->timing.flags.DSC = 1; 5928 5929 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_h) 5930 stream->timing.dsc_cfg.num_slices_h = aconnector->dsc_settings.dsc_num_slices_h; 5931 5932 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_v) 5933 stream->timing.dsc_cfg.num_slices_v = aconnector->dsc_settings.dsc_num_slices_v; 5934 5935 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_bits_per_pixel) 5936 stream->timing.dsc_cfg.bits_per_pixel = aconnector->dsc_settings.dsc_bits_per_pixel; 5937 } 5938 5939 static struct dc_stream_state * 5940 create_stream_for_sink(struct amdgpu_dm_connector *aconnector, 5941 const struct drm_display_mode *drm_mode, 5942 const struct dm_connector_state *dm_state, 5943 const struct dc_stream_state *old_stream, 5944 int requested_bpc) 5945 { 5946 struct drm_display_mode *preferred_mode = NULL; 5947 struct drm_connector *drm_connector; 5948 const struct drm_connector_state *con_state = 5949 dm_state ? &dm_state->base : NULL; 5950 struct dc_stream_state *stream = NULL; 5951 struct drm_display_mode mode; 5952 struct drm_display_mode saved_mode; 5953 struct drm_display_mode *freesync_mode = NULL; 5954 bool native_mode_found = false; 5955 bool recalculate_timing = false; 5956 bool scale = dm_state ? (dm_state->scaling != RMX_OFF) : false; 5957 int mode_refresh; 5958 int preferred_refresh = 0; 5959 enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN; 5960 struct dsc_dec_dpcd_caps dsc_caps; 5961 5962 struct dc_sink *sink = NULL; 5963 5964 drm_mode_init(&mode, drm_mode); 5965 memset(&saved_mode, 0, sizeof(saved_mode)); 5966 5967 if (aconnector == NULL) { 5968 DRM_ERROR("aconnector is NULL!\n"); 5969 return stream; 5970 } 5971 5972 drm_connector = &aconnector->base; 5973 5974 if (!aconnector->dc_sink) { 5975 sink = create_fake_sink(aconnector); 5976 if (!sink) 5977 return stream; 5978 } else { 5979 sink = aconnector->dc_sink; 5980 dc_sink_retain(sink); 5981 } 5982 5983 stream = dc_create_stream_for_sink(sink); 5984 5985 if (stream == NULL) { 5986 DRM_ERROR("Failed to create stream for sink!\n"); 5987 goto finish; 5988 } 5989 5990 stream->dm_stream_context = aconnector; 5991 5992 stream->timing.flags.LTE_340MCSC_SCRAMBLE = 5993 drm_connector->display_info.hdmi.scdc.scrambling.low_rates; 5994 5995 list_for_each_entry(preferred_mode, &aconnector->base.modes, head) { 5996 /* Search for preferred mode */ 5997 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) { 5998 native_mode_found = true; 5999 break; 6000 } 6001 } 6002 if (!native_mode_found) 6003 preferred_mode = list_first_entry_or_null( 6004 &aconnector->base.modes, 6005 struct drm_display_mode, 6006 head); 6007 6008 mode_refresh = drm_mode_vrefresh(&mode); 6009 6010 if (preferred_mode == NULL) { 6011 /* 6012 * This may not be an error, the use case is when we have no 6013 * usermode calls to reset and set mode upon hotplug. In this 6014 * case, we call set mode ourselves to restore the previous mode 6015 * and the modelist may not be filled in in time. 6016 */ 6017 DRM_DEBUG_DRIVER("No preferred mode found\n"); 6018 } else { 6019 recalculate_timing = amdgpu_freesync_vid_mode && 6020 is_freesync_video_mode(&mode, aconnector); 6021 if (recalculate_timing) { 6022 freesync_mode = get_highest_refresh_rate_mode(aconnector, false); 6023 drm_mode_copy(&saved_mode, &mode); 6024 drm_mode_copy(&mode, freesync_mode); 6025 } else { 6026 decide_crtc_timing_for_drm_display_mode( 6027 &mode, preferred_mode, scale); 6028 6029 preferred_refresh = drm_mode_vrefresh(preferred_mode); 6030 } 6031 } 6032 6033 if (recalculate_timing) 6034 drm_mode_set_crtcinfo(&saved_mode, 0); 6035 else if (!dm_state) 6036 drm_mode_set_crtcinfo(&mode, 0); 6037 6038 /* 6039 * If scaling is enabled and refresh rate didn't change 6040 * we copy the vic and polarities of the old timings 6041 */ 6042 if (!scale || mode_refresh != preferred_refresh) 6043 fill_stream_properties_from_drm_display_mode( 6044 stream, &mode, &aconnector->base, con_state, NULL, 6045 requested_bpc); 6046 else 6047 fill_stream_properties_from_drm_display_mode( 6048 stream, &mode, &aconnector->base, con_state, old_stream, 6049 requested_bpc); 6050 6051 if (aconnector->timing_changed) { 6052 DC_LOG_DEBUG("%s: overriding timing for automated test, bpc %d, changing to %d\n", 6053 __func__, 6054 stream->timing.display_color_depth, 6055 aconnector->timing_requested->display_color_depth); 6056 stream->timing = *aconnector->timing_requested; 6057 } 6058 6059 /* SST DSC determination policy */ 6060 update_dsc_caps(aconnector, sink, stream, &dsc_caps); 6061 if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported) 6062 apply_dsc_policy_for_stream(aconnector, sink, stream, &dsc_caps); 6063 6064 update_stream_scaling_settings(&mode, dm_state, stream); 6065 6066 fill_audio_info( 6067 &stream->audio_info, 6068 drm_connector, 6069 sink); 6070 6071 update_stream_signal(stream, sink); 6072 6073 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) 6074 mod_build_hf_vsif_infopacket(stream, &stream->vsp_infopacket); 6075 6076 if (stream->link->psr_settings.psr_feature_enabled) { 6077 // 6078 // should decide stream support vsc sdp colorimetry capability 6079 // before building vsc info packet 6080 // 6081 stream->use_vsc_sdp_for_colorimetry = false; 6082 if (aconnector->dc_sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) { 6083 stream->use_vsc_sdp_for_colorimetry = 6084 aconnector->dc_sink->is_vsc_sdp_colorimetry_supported; 6085 } else { 6086 if (stream->link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED) 6087 stream->use_vsc_sdp_for_colorimetry = true; 6088 } 6089 if (stream->out_transfer_func->tf == TRANSFER_FUNCTION_GAMMA22) 6090 tf = TRANSFER_FUNC_GAMMA_22; 6091 mod_build_vsc_infopacket(stream, &stream->vsc_infopacket, stream->output_color_space, tf); 6092 aconnector->psr_skip_count = AMDGPU_DM_PSR_ENTRY_DELAY; 6093 6094 } 6095 finish: 6096 dc_sink_release(sink); 6097 6098 return stream; 6099 } 6100 6101 static enum drm_connector_status 6102 amdgpu_dm_connector_detect(struct drm_connector *connector, bool force) 6103 { 6104 bool connected; 6105 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 6106 6107 /* 6108 * Notes: 6109 * 1. This interface is NOT called in context of HPD irq. 6110 * 2. This interface *is called* in context of user-mode ioctl. Which 6111 * makes it a bad place for *any* MST-related activity. 6112 */ 6113 6114 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED && 6115 !aconnector->fake_enable) 6116 connected = (aconnector->dc_sink != NULL); 6117 else 6118 connected = (aconnector->base.force == DRM_FORCE_ON || 6119 aconnector->base.force == DRM_FORCE_ON_DIGITAL); 6120 6121 update_subconnector_property(aconnector); 6122 6123 return (connected ? connector_status_connected : 6124 connector_status_disconnected); 6125 } 6126 6127 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector, 6128 struct drm_connector_state *connector_state, 6129 struct drm_property *property, 6130 uint64_t val) 6131 { 6132 struct drm_device *dev = connector->dev; 6133 struct amdgpu_device *adev = drm_to_adev(dev); 6134 struct dm_connector_state *dm_old_state = 6135 to_dm_connector_state(connector->state); 6136 struct dm_connector_state *dm_new_state = 6137 to_dm_connector_state(connector_state); 6138 6139 int ret = -EINVAL; 6140 6141 if (property == dev->mode_config.scaling_mode_property) { 6142 enum amdgpu_rmx_type rmx_type; 6143 6144 switch (val) { 6145 case DRM_MODE_SCALE_CENTER: 6146 rmx_type = RMX_CENTER; 6147 break; 6148 case DRM_MODE_SCALE_ASPECT: 6149 rmx_type = RMX_ASPECT; 6150 break; 6151 case DRM_MODE_SCALE_FULLSCREEN: 6152 rmx_type = RMX_FULL; 6153 break; 6154 case DRM_MODE_SCALE_NONE: 6155 default: 6156 rmx_type = RMX_OFF; 6157 break; 6158 } 6159 6160 if (dm_old_state->scaling == rmx_type) 6161 return 0; 6162 6163 dm_new_state->scaling = rmx_type; 6164 ret = 0; 6165 } else if (property == adev->mode_info.underscan_hborder_property) { 6166 dm_new_state->underscan_hborder = val; 6167 ret = 0; 6168 } else if (property == adev->mode_info.underscan_vborder_property) { 6169 dm_new_state->underscan_vborder = val; 6170 ret = 0; 6171 } else if (property == adev->mode_info.underscan_property) { 6172 dm_new_state->underscan_enable = val; 6173 ret = 0; 6174 } else if (property == adev->mode_info.abm_level_property) { 6175 dm_new_state->abm_level = val; 6176 ret = 0; 6177 } 6178 6179 return ret; 6180 } 6181 6182 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector, 6183 const struct drm_connector_state *state, 6184 struct drm_property *property, 6185 uint64_t *val) 6186 { 6187 struct drm_device *dev = connector->dev; 6188 struct amdgpu_device *adev = drm_to_adev(dev); 6189 struct dm_connector_state *dm_state = 6190 to_dm_connector_state(state); 6191 int ret = -EINVAL; 6192 6193 if (property == dev->mode_config.scaling_mode_property) { 6194 switch (dm_state->scaling) { 6195 case RMX_CENTER: 6196 *val = DRM_MODE_SCALE_CENTER; 6197 break; 6198 case RMX_ASPECT: 6199 *val = DRM_MODE_SCALE_ASPECT; 6200 break; 6201 case RMX_FULL: 6202 *val = DRM_MODE_SCALE_FULLSCREEN; 6203 break; 6204 case RMX_OFF: 6205 default: 6206 *val = DRM_MODE_SCALE_NONE; 6207 break; 6208 } 6209 ret = 0; 6210 } else if (property == adev->mode_info.underscan_hborder_property) { 6211 *val = dm_state->underscan_hborder; 6212 ret = 0; 6213 } else if (property == adev->mode_info.underscan_vborder_property) { 6214 *val = dm_state->underscan_vborder; 6215 ret = 0; 6216 } else if (property == adev->mode_info.underscan_property) { 6217 *val = dm_state->underscan_enable; 6218 ret = 0; 6219 } else if (property == adev->mode_info.abm_level_property) { 6220 *val = dm_state->abm_level; 6221 ret = 0; 6222 } 6223 6224 return ret; 6225 } 6226 6227 static void amdgpu_dm_connector_unregister(struct drm_connector *connector) 6228 { 6229 struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector); 6230 6231 drm_dp_aux_unregister(&amdgpu_dm_connector->dm_dp_aux.aux); 6232 } 6233 6234 static void amdgpu_dm_connector_destroy(struct drm_connector *connector) 6235 { 6236 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 6237 struct amdgpu_device *adev = drm_to_adev(connector->dev); 6238 struct amdgpu_display_manager *dm = &adev->dm; 6239 6240 /* 6241 * Call only if mst_mgr was initialized before since it's not done 6242 * for all connector types. 6243 */ 6244 if (aconnector->mst_mgr.dev) 6245 drm_dp_mst_topology_mgr_destroy(&aconnector->mst_mgr); 6246 6247 if (aconnector->bl_idx != -1) { 6248 backlight_device_unregister(dm->backlight_dev[aconnector->bl_idx]); 6249 dm->backlight_dev[aconnector->bl_idx] = NULL; 6250 } 6251 6252 if (aconnector->dc_em_sink) 6253 dc_sink_release(aconnector->dc_em_sink); 6254 aconnector->dc_em_sink = NULL; 6255 if (aconnector->dc_sink) 6256 dc_sink_release(aconnector->dc_sink); 6257 aconnector->dc_sink = NULL; 6258 6259 drm_dp_cec_unregister_connector(&aconnector->dm_dp_aux.aux); 6260 drm_connector_unregister(connector); 6261 drm_connector_cleanup(connector); 6262 if (aconnector->i2c) { 6263 i2c_del_adapter(&aconnector->i2c->base); 6264 kfree(aconnector->i2c); 6265 } 6266 kfree(aconnector->dm_dp_aux.aux.name); 6267 6268 kfree(connector); 6269 } 6270 6271 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector) 6272 { 6273 struct dm_connector_state *state = 6274 to_dm_connector_state(connector->state); 6275 6276 if (connector->state) 6277 __drm_atomic_helper_connector_destroy_state(connector->state); 6278 6279 kfree(state); 6280 6281 state = kzalloc(sizeof(*state), GFP_KERNEL); 6282 6283 if (state) { 6284 state->scaling = RMX_OFF; 6285 state->underscan_enable = false; 6286 state->underscan_hborder = 0; 6287 state->underscan_vborder = 0; 6288 state->base.max_requested_bpc = 8; 6289 state->vcpi_slots = 0; 6290 state->pbn = 0; 6291 6292 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) 6293 state->abm_level = amdgpu_dm_abm_level; 6294 6295 __drm_atomic_helper_connector_reset(connector, &state->base); 6296 } 6297 } 6298 6299 struct drm_connector_state * 6300 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector) 6301 { 6302 struct dm_connector_state *state = 6303 to_dm_connector_state(connector->state); 6304 6305 struct dm_connector_state *new_state = 6306 kmemdup(state, sizeof(*state), GFP_KERNEL); 6307 6308 if (!new_state) 6309 return NULL; 6310 6311 __drm_atomic_helper_connector_duplicate_state(connector, &new_state->base); 6312 6313 new_state->freesync_capable = state->freesync_capable; 6314 new_state->abm_level = state->abm_level; 6315 new_state->scaling = state->scaling; 6316 new_state->underscan_enable = state->underscan_enable; 6317 new_state->underscan_hborder = state->underscan_hborder; 6318 new_state->underscan_vborder = state->underscan_vborder; 6319 new_state->vcpi_slots = state->vcpi_slots; 6320 new_state->pbn = state->pbn; 6321 return &new_state->base; 6322 } 6323 6324 static int 6325 amdgpu_dm_connector_late_register(struct drm_connector *connector) 6326 { 6327 struct amdgpu_dm_connector *amdgpu_dm_connector = 6328 to_amdgpu_dm_connector(connector); 6329 int r; 6330 6331 amdgpu_dm_register_backlight_device(amdgpu_dm_connector); 6332 6333 if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) || 6334 (connector->connector_type == DRM_MODE_CONNECTOR_eDP)) { 6335 amdgpu_dm_connector->dm_dp_aux.aux.dev = connector->kdev; 6336 r = drm_dp_aux_register(&amdgpu_dm_connector->dm_dp_aux.aux); 6337 if (r) 6338 return r; 6339 } 6340 6341 #if defined(CONFIG_DEBUG_FS) 6342 connector_debugfs_init(amdgpu_dm_connector); 6343 #endif 6344 6345 return 0; 6346 } 6347 6348 void amdgpu_dm_connector_funcs_force(struct drm_connector *connector) 6349 { 6350 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 6351 struct dc_link *dc_link = aconnector->dc_link; 6352 struct dc_sink *dc_em_sink = aconnector->dc_em_sink; 6353 struct edid *edid; 6354 6355 if (!connector->edid_override) 6356 return; 6357 6358 drm_edid_override_connector_update(&aconnector->base); 6359 edid = aconnector->base.edid_blob_ptr->data; 6360 aconnector->edid = edid; 6361 6362 /* Update emulated (virtual) sink's EDID */ 6363 if (dc_em_sink && dc_link) { 6364 memset(&dc_em_sink->edid_caps, 0, sizeof(struct dc_edid_caps)); 6365 memmove(dc_em_sink->dc_edid.raw_edid, edid, (edid->extensions + 1) * EDID_LENGTH); 6366 dm_helpers_parse_edid_caps( 6367 dc_link, 6368 &dc_em_sink->dc_edid, 6369 &dc_em_sink->edid_caps); 6370 } 6371 } 6372 6373 static const struct drm_connector_funcs amdgpu_dm_connector_funcs = { 6374 .reset = amdgpu_dm_connector_funcs_reset, 6375 .detect = amdgpu_dm_connector_detect, 6376 .fill_modes = drm_helper_probe_single_connector_modes, 6377 .destroy = amdgpu_dm_connector_destroy, 6378 .atomic_duplicate_state = amdgpu_dm_connector_atomic_duplicate_state, 6379 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, 6380 .atomic_set_property = amdgpu_dm_connector_atomic_set_property, 6381 .atomic_get_property = amdgpu_dm_connector_atomic_get_property, 6382 .late_register = amdgpu_dm_connector_late_register, 6383 .early_unregister = amdgpu_dm_connector_unregister, 6384 .force = amdgpu_dm_connector_funcs_force 6385 }; 6386 6387 static int get_modes(struct drm_connector *connector) 6388 { 6389 return amdgpu_dm_connector_get_modes(connector); 6390 } 6391 6392 static void create_eml_sink(struct amdgpu_dm_connector *aconnector) 6393 { 6394 struct dc_sink_init_data init_params = { 6395 .link = aconnector->dc_link, 6396 .sink_signal = SIGNAL_TYPE_VIRTUAL 6397 }; 6398 struct edid *edid; 6399 6400 if (!aconnector->base.edid_blob_ptr) { 6401 /* if connector->edid_override valid, pass 6402 * it to edid_override to edid_blob_ptr 6403 */ 6404 int count; 6405 6406 count = drm_edid_override_connector_update(&aconnector->base); 6407 6408 if (!aconnector->base.edid_blob_ptr) { 6409 DRM_ERROR("No EDID firmware found on connector: %s ,forcing to OFF!\n", 6410 aconnector->base.name); 6411 6412 aconnector->base.force = DRM_FORCE_OFF; 6413 return; 6414 } 6415 } 6416 6417 edid = (struct edid *) aconnector->base.edid_blob_ptr->data; 6418 6419 aconnector->edid = edid; 6420 6421 aconnector->dc_em_sink = dc_link_add_remote_sink( 6422 aconnector->dc_link, 6423 (uint8_t *)edid, 6424 (edid->extensions + 1) * EDID_LENGTH, 6425 &init_params); 6426 6427 if (aconnector->base.force == DRM_FORCE_ON) { 6428 aconnector->dc_sink = aconnector->dc_link->local_sink ? 6429 aconnector->dc_link->local_sink : 6430 aconnector->dc_em_sink; 6431 dc_sink_retain(aconnector->dc_sink); 6432 } 6433 } 6434 6435 static void handle_edid_mgmt(struct amdgpu_dm_connector *aconnector) 6436 { 6437 struct dc_link *link = (struct dc_link *)aconnector->dc_link; 6438 6439 /* 6440 * In case of headless boot with force on for DP managed connector 6441 * Those settings have to be != 0 to get initial modeset 6442 */ 6443 if (link->connector_signal == SIGNAL_TYPE_DISPLAY_PORT) { 6444 link->verified_link_cap.lane_count = LANE_COUNT_FOUR; 6445 link->verified_link_cap.link_rate = LINK_RATE_HIGH2; 6446 } 6447 6448 create_eml_sink(aconnector); 6449 } 6450 6451 static enum dc_status dm_validate_stream_and_context(struct dc *dc, 6452 struct dc_stream_state *stream) 6453 { 6454 enum dc_status dc_result = DC_ERROR_UNEXPECTED; 6455 struct dc_plane_state *dc_plane_state = NULL; 6456 struct dc_state *dc_state = NULL; 6457 6458 if (!stream) 6459 goto cleanup; 6460 6461 dc_plane_state = dc_create_plane_state(dc); 6462 if (!dc_plane_state) 6463 goto cleanup; 6464 6465 dc_state = dc_create_state(dc); 6466 if (!dc_state) 6467 goto cleanup; 6468 6469 /* populate stream to plane */ 6470 dc_plane_state->src_rect.height = stream->src.height; 6471 dc_plane_state->src_rect.width = stream->src.width; 6472 dc_plane_state->dst_rect.height = stream->src.height; 6473 dc_plane_state->dst_rect.width = stream->src.width; 6474 dc_plane_state->clip_rect.height = stream->src.height; 6475 dc_plane_state->clip_rect.width = stream->src.width; 6476 dc_plane_state->plane_size.surface_pitch = ((stream->src.width + 255) / 256) * 256; 6477 dc_plane_state->plane_size.surface_size.height = stream->src.height; 6478 dc_plane_state->plane_size.surface_size.width = stream->src.width; 6479 dc_plane_state->plane_size.chroma_size.height = stream->src.height; 6480 dc_plane_state->plane_size.chroma_size.width = stream->src.width; 6481 dc_plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888; 6482 dc_plane_state->tiling_info.gfx9.swizzle = DC_SW_UNKNOWN; 6483 dc_plane_state->rotation = ROTATION_ANGLE_0; 6484 dc_plane_state->is_tiling_rotated = false; 6485 dc_plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_LINEAR_GENERAL; 6486 6487 dc_result = dc_validate_stream(dc, stream); 6488 if (dc_result == DC_OK) 6489 dc_result = dc_validate_plane(dc, dc_plane_state); 6490 6491 if (dc_result == DC_OK) 6492 dc_result = dc_add_stream_to_ctx(dc, dc_state, stream); 6493 6494 if (dc_result == DC_OK && !dc_add_plane_to_context( 6495 dc, 6496 stream, 6497 dc_plane_state, 6498 dc_state)) 6499 dc_result = DC_FAIL_ATTACH_SURFACES; 6500 6501 if (dc_result == DC_OK) 6502 dc_result = dc_validate_global_state(dc, dc_state, true); 6503 6504 cleanup: 6505 if (dc_state) 6506 dc_release_state(dc_state); 6507 6508 if (dc_plane_state) 6509 dc_plane_state_release(dc_plane_state); 6510 6511 return dc_result; 6512 } 6513 6514 struct dc_stream_state * 6515 create_validate_stream_for_sink(struct amdgpu_dm_connector *aconnector, 6516 const struct drm_display_mode *drm_mode, 6517 const struct dm_connector_state *dm_state, 6518 const struct dc_stream_state *old_stream) 6519 { 6520 struct drm_connector *connector = &aconnector->base; 6521 struct amdgpu_device *adev = drm_to_adev(connector->dev); 6522 struct dc_stream_state *stream; 6523 const struct drm_connector_state *drm_state = dm_state ? &dm_state->base : NULL; 6524 int requested_bpc = drm_state ? drm_state->max_requested_bpc : 8; 6525 enum dc_status dc_result = DC_OK; 6526 6527 do { 6528 stream = create_stream_for_sink(aconnector, drm_mode, 6529 dm_state, old_stream, 6530 requested_bpc); 6531 if (stream == NULL) { 6532 DRM_ERROR("Failed to create stream for sink!\n"); 6533 break; 6534 } 6535 6536 dc_result = dc_validate_stream(adev->dm.dc, stream); 6537 if (dc_result == DC_OK && stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST) 6538 dc_result = dm_dp_mst_is_port_support_mode(aconnector, stream); 6539 6540 if (dc_result == DC_OK) 6541 dc_result = dm_validate_stream_and_context(adev->dm.dc, stream); 6542 6543 if (dc_result != DC_OK) { 6544 DRM_DEBUG_KMS("Mode %dx%d (clk %d) failed DC validation with error %d (%s)\n", 6545 drm_mode->hdisplay, 6546 drm_mode->vdisplay, 6547 drm_mode->clock, 6548 dc_result, 6549 dc_status_to_str(dc_result)); 6550 6551 dc_stream_release(stream); 6552 stream = NULL; 6553 requested_bpc -= 2; /* lower bpc to retry validation */ 6554 } 6555 6556 } while (stream == NULL && requested_bpc >= 6); 6557 6558 if (dc_result == DC_FAIL_ENC_VALIDATE && !aconnector->force_yuv420_output) { 6559 DRM_DEBUG_KMS("Retry forcing YCbCr420 encoding\n"); 6560 6561 aconnector->force_yuv420_output = true; 6562 stream = create_validate_stream_for_sink(aconnector, drm_mode, 6563 dm_state, old_stream); 6564 aconnector->force_yuv420_output = false; 6565 } 6566 6567 return stream; 6568 } 6569 6570 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector, 6571 struct drm_display_mode *mode) 6572 { 6573 int result = MODE_ERROR; 6574 struct dc_sink *dc_sink; 6575 /* TODO: Unhardcode stream count */ 6576 struct dc_stream_state *stream; 6577 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 6578 6579 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) || 6580 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) 6581 return result; 6582 6583 /* 6584 * Only run this the first time mode_valid is called to initilialize 6585 * EDID mgmt 6586 */ 6587 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED && 6588 !aconnector->dc_em_sink) 6589 handle_edid_mgmt(aconnector); 6590 6591 dc_sink = to_amdgpu_dm_connector(connector)->dc_sink; 6592 6593 if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL && 6594 aconnector->base.force != DRM_FORCE_ON) { 6595 DRM_ERROR("dc_sink is NULL!\n"); 6596 goto fail; 6597 } 6598 6599 stream = create_validate_stream_for_sink(aconnector, mode, NULL, NULL); 6600 if (stream) { 6601 dc_stream_release(stream); 6602 result = MODE_OK; 6603 } 6604 6605 fail: 6606 /* TODO: error handling*/ 6607 return result; 6608 } 6609 6610 static int fill_hdr_info_packet(const struct drm_connector_state *state, 6611 struct dc_info_packet *out) 6612 { 6613 struct hdmi_drm_infoframe frame; 6614 unsigned char buf[30]; /* 26 + 4 */ 6615 ssize_t len; 6616 int ret, i; 6617 6618 memset(out, 0, sizeof(*out)); 6619 6620 if (!state->hdr_output_metadata) 6621 return 0; 6622 6623 ret = drm_hdmi_infoframe_set_hdr_metadata(&frame, state); 6624 if (ret) 6625 return ret; 6626 6627 len = hdmi_drm_infoframe_pack_only(&frame, buf, sizeof(buf)); 6628 if (len < 0) 6629 return (int)len; 6630 6631 /* Static metadata is a fixed 26 bytes + 4 byte header. */ 6632 if (len != 30) 6633 return -EINVAL; 6634 6635 /* Prepare the infopacket for DC. */ 6636 switch (state->connector->connector_type) { 6637 case DRM_MODE_CONNECTOR_HDMIA: 6638 out->hb0 = 0x87; /* type */ 6639 out->hb1 = 0x01; /* version */ 6640 out->hb2 = 0x1A; /* length */ 6641 out->sb[0] = buf[3]; /* checksum */ 6642 i = 1; 6643 break; 6644 6645 case DRM_MODE_CONNECTOR_DisplayPort: 6646 case DRM_MODE_CONNECTOR_eDP: 6647 out->hb0 = 0x00; /* sdp id, zero */ 6648 out->hb1 = 0x87; /* type */ 6649 out->hb2 = 0x1D; /* payload len - 1 */ 6650 out->hb3 = (0x13 << 2); /* sdp version */ 6651 out->sb[0] = 0x01; /* version */ 6652 out->sb[1] = 0x1A; /* length */ 6653 i = 2; 6654 break; 6655 6656 default: 6657 return -EINVAL; 6658 } 6659 6660 memcpy(&out->sb[i], &buf[4], 26); 6661 out->valid = true; 6662 6663 print_hex_dump(KERN_DEBUG, "HDR SB:", DUMP_PREFIX_NONE, 16, 1, out->sb, 6664 sizeof(out->sb), false); 6665 6666 return 0; 6667 } 6668 6669 static int 6670 amdgpu_dm_connector_atomic_check(struct drm_connector *conn, 6671 struct drm_atomic_state *state) 6672 { 6673 struct drm_connector_state *new_con_state = 6674 drm_atomic_get_new_connector_state(state, conn); 6675 struct drm_connector_state *old_con_state = 6676 drm_atomic_get_old_connector_state(state, conn); 6677 struct drm_crtc *crtc = new_con_state->crtc; 6678 struct drm_crtc_state *new_crtc_state; 6679 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(conn); 6680 int ret; 6681 6682 trace_amdgpu_dm_connector_atomic_check(new_con_state); 6683 6684 if (conn->connector_type == DRM_MODE_CONNECTOR_DisplayPort) { 6685 ret = drm_dp_mst_root_conn_atomic_check(new_con_state, &aconn->mst_mgr); 6686 if (ret < 0) 6687 return ret; 6688 } 6689 6690 if (!crtc) 6691 return 0; 6692 6693 if (!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state)) { 6694 struct dc_info_packet hdr_infopacket; 6695 6696 ret = fill_hdr_info_packet(new_con_state, &hdr_infopacket); 6697 if (ret) 6698 return ret; 6699 6700 new_crtc_state = drm_atomic_get_crtc_state(state, crtc); 6701 if (IS_ERR(new_crtc_state)) 6702 return PTR_ERR(new_crtc_state); 6703 6704 /* 6705 * DC considers the stream backends changed if the 6706 * static metadata changes. Forcing the modeset also 6707 * gives a simple way for userspace to switch from 6708 * 8bpc to 10bpc when setting the metadata to enter 6709 * or exit HDR. 6710 * 6711 * Changing the static metadata after it's been 6712 * set is permissible, however. So only force a 6713 * modeset if we're entering or exiting HDR. 6714 */ 6715 new_crtc_state->mode_changed = 6716 !old_con_state->hdr_output_metadata || 6717 !new_con_state->hdr_output_metadata; 6718 } 6719 6720 return 0; 6721 } 6722 6723 static const struct drm_connector_helper_funcs 6724 amdgpu_dm_connector_helper_funcs = { 6725 /* 6726 * If hotplugging a second bigger display in FB Con mode, bigger resolution 6727 * modes will be filtered by drm_mode_validate_size(), and those modes 6728 * are missing after user start lightdm. So we need to renew modes list. 6729 * in get_modes call back, not just return the modes count 6730 */ 6731 .get_modes = get_modes, 6732 .mode_valid = amdgpu_dm_connector_mode_valid, 6733 .atomic_check = amdgpu_dm_connector_atomic_check, 6734 }; 6735 6736 static void dm_encoder_helper_disable(struct drm_encoder *encoder) 6737 { 6738 6739 } 6740 6741 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth) 6742 { 6743 switch (display_color_depth) { 6744 case COLOR_DEPTH_666: 6745 return 6; 6746 case COLOR_DEPTH_888: 6747 return 8; 6748 case COLOR_DEPTH_101010: 6749 return 10; 6750 case COLOR_DEPTH_121212: 6751 return 12; 6752 case COLOR_DEPTH_141414: 6753 return 14; 6754 case COLOR_DEPTH_161616: 6755 return 16; 6756 default: 6757 break; 6758 } 6759 return 0; 6760 } 6761 6762 static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder, 6763 struct drm_crtc_state *crtc_state, 6764 struct drm_connector_state *conn_state) 6765 { 6766 struct drm_atomic_state *state = crtc_state->state; 6767 struct drm_connector *connector = conn_state->connector; 6768 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 6769 struct dm_connector_state *dm_new_connector_state = to_dm_connector_state(conn_state); 6770 const struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode; 6771 struct drm_dp_mst_topology_mgr *mst_mgr; 6772 struct drm_dp_mst_port *mst_port; 6773 struct drm_dp_mst_topology_state *mst_state; 6774 enum dc_color_depth color_depth; 6775 int clock, bpp = 0; 6776 bool is_y420 = false; 6777 6778 if (!aconnector->mst_output_port || !aconnector->dc_sink) 6779 return 0; 6780 6781 mst_port = aconnector->mst_output_port; 6782 mst_mgr = &aconnector->mst_root->mst_mgr; 6783 6784 if (!crtc_state->connectors_changed && !crtc_state->mode_changed) 6785 return 0; 6786 6787 mst_state = drm_atomic_get_mst_topology_state(state, mst_mgr); 6788 if (IS_ERR(mst_state)) 6789 return PTR_ERR(mst_state); 6790 6791 if (!mst_state->pbn_div) 6792 mst_state->pbn_div = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link); 6793 6794 if (!state->duplicated) { 6795 int max_bpc = conn_state->max_requested_bpc; 6796 is_y420 = drm_mode_is_420_also(&connector->display_info, adjusted_mode) && 6797 aconnector->force_yuv420_output; 6798 color_depth = convert_color_depth_from_display_info(connector, 6799 is_y420, 6800 max_bpc); 6801 bpp = convert_dc_color_depth_into_bpc(color_depth) * 3; 6802 clock = adjusted_mode->clock; 6803 dm_new_connector_state->pbn = drm_dp_calc_pbn_mode(clock, bpp, false); 6804 } 6805 6806 dm_new_connector_state->vcpi_slots = 6807 drm_dp_atomic_find_time_slots(state, mst_mgr, mst_port, 6808 dm_new_connector_state->pbn); 6809 if (dm_new_connector_state->vcpi_slots < 0) { 6810 DRM_DEBUG_ATOMIC("failed finding vcpi slots: %d\n", (int)dm_new_connector_state->vcpi_slots); 6811 return dm_new_connector_state->vcpi_slots; 6812 } 6813 return 0; 6814 } 6815 6816 const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs = { 6817 .disable = dm_encoder_helper_disable, 6818 .atomic_check = dm_encoder_helper_atomic_check 6819 }; 6820 6821 static int dm_update_mst_vcpi_slots_for_dsc(struct drm_atomic_state *state, 6822 struct dc_state *dc_state, 6823 struct dsc_mst_fairness_vars *vars) 6824 { 6825 struct dc_stream_state *stream = NULL; 6826 struct drm_connector *connector; 6827 struct drm_connector_state *new_con_state; 6828 struct amdgpu_dm_connector *aconnector; 6829 struct dm_connector_state *dm_conn_state; 6830 int i, j, ret; 6831 int vcpi, pbn_div, pbn, slot_num = 0; 6832 6833 for_each_new_connector_in_state(state, connector, new_con_state, i) { 6834 6835 aconnector = to_amdgpu_dm_connector(connector); 6836 6837 if (!aconnector->mst_output_port) 6838 continue; 6839 6840 if (!new_con_state || !new_con_state->crtc) 6841 continue; 6842 6843 dm_conn_state = to_dm_connector_state(new_con_state); 6844 6845 for (j = 0; j < dc_state->stream_count; j++) { 6846 stream = dc_state->streams[j]; 6847 if (!stream) 6848 continue; 6849 6850 if ((struct amdgpu_dm_connector *)stream->dm_stream_context == aconnector) 6851 break; 6852 6853 stream = NULL; 6854 } 6855 6856 if (!stream) 6857 continue; 6858 6859 pbn_div = dm_mst_get_pbn_divider(stream->link); 6860 /* pbn is calculated by compute_mst_dsc_configs_for_state*/ 6861 for (j = 0; j < dc_state->stream_count; j++) { 6862 if (vars[j].aconnector == aconnector) { 6863 pbn = vars[j].pbn; 6864 break; 6865 } 6866 } 6867 6868 if (j == dc_state->stream_count) 6869 continue; 6870 6871 slot_num = DIV_ROUND_UP(pbn, pbn_div); 6872 6873 if (stream->timing.flags.DSC != 1) { 6874 dm_conn_state->pbn = pbn; 6875 dm_conn_state->vcpi_slots = slot_num; 6876 6877 ret = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, 6878 dm_conn_state->pbn, false); 6879 if (ret < 0) 6880 return ret; 6881 6882 continue; 6883 } 6884 6885 vcpi = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, pbn, true); 6886 if (vcpi < 0) 6887 return vcpi; 6888 6889 dm_conn_state->pbn = pbn; 6890 dm_conn_state->vcpi_slots = vcpi; 6891 } 6892 return 0; 6893 } 6894 6895 static int to_drm_connector_type(enum signal_type st) 6896 { 6897 switch (st) { 6898 case SIGNAL_TYPE_HDMI_TYPE_A: 6899 return DRM_MODE_CONNECTOR_HDMIA; 6900 case SIGNAL_TYPE_EDP: 6901 return DRM_MODE_CONNECTOR_eDP; 6902 case SIGNAL_TYPE_LVDS: 6903 return DRM_MODE_CONNECTOR_LVDS; 6904 case SIGNAL_TYPE_RGB: 6905 return DRM_MODE_CONNECTOR_VGA; 6906 case SIGNAL_TYPE_DISPLAY_PORT: 6907 case SIGNAL_TYPE_DISPLAY_PORT_MST: 6908 return DRM_MODE_CONNECTOR_DisplayPort; 6909 case SIGNAL_TYPE_DVI_DUAL_LINK: 6910 case SIGNAL_TYPE_DVI_SINGLE_LINK: 6911 return DRM_MODE_CONNECTOR_DVID; 6912 case SIGNAL_TYPE_VIRTUAL: 6913 return DRM_MODE_CONNECTOR_VIRTUAL; 6914 6915 default: 6916 return DRM_MODE_CONNECTOR_Unknown; 6917 } 6918 } 6919 6920 static struct drm_encoder *amdgpu_dm_connector_to_encoder(struct drm_connector *connector) 6921 { 6922 struct drm_encoder *encoder; 6923 6924 /* There is only one encoder per connector */ 6925 drm_connector_for_each_possible_encoder(connector, encoder) 6926 return encoder; 6927 6928 return NULL; 6929 } 6930 6931 static void amdgpu_dm_get_native_mode(struct drm_connector *connector) 6932 { 6933 struct drm_encoder *encoder; 6934 struct amdgpu_encoder *amdgpu_encoder; 6935 6936 encoder = amdgpu_dm_connector_to_encoder(connector); 6937 6938 if (encoder == NULL) 6939 return; 6940 6941 amdgpu_encoder = to_amdgpu_encoder(encoder); 6942 6943 amdgpu_encoder->native_mode.clock = 0; 6944 6945 if (!list_empty(&connector->probed_modes)) { 6946 struct drm_display_mode *preferred_mode = NULL; 6947 6948 list_for_each_entry(preferred_mode, 6949 &connector->probed_modes, 6950 head) { 6951 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) 6952 amdgpu_encoder->native_mode = *preferred_mode; 6953 6954 break; 6955 } 6956 6957 } 6958 } 6959 6960 static struct drm_display_mode * 6961 amdgpu_dm_create_common_mode(struct drm_encoder *encoder, 6962 char *name, 6963 int hdisplay, int vdisplay) 6964 { 6965 struct drm_device *dev = encoder->dev; 6966 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder); 6967 struct drm_display_mode *mode = NULL; 6968 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode; 6969 6970 mode = drm_mode_duplicate(dev, native_mode); 6971 6972 if (mode == NULL) 6973 return NULL; 6974 6975 mode->hdisplay = hdisplay; 6976 mode->vdisplay = vdisplay; 6977 mode->type &= ~DRM_MODE_TYPE_PREFERRED; 6978 strscpy(mode->name, name, DRM_DISPLAY_MODE_LEN); 6979 6980 return mode; 6981 6982 } 6983 6984 static void amdgpu_dm_connector_add_common_modes(struct drm_encoder *encoder, 6985 struct drm_connector *connector) 6986 { 6987 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder); 6988 struct drm_display_mode *mode = NULL; 6989 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode; 6990 struct amdgpu_dm_connector *amdgpu_dm_connector = 6991 to_amdgpu_dm_connector(connector); 6992 int i; 6993 int n; 6994 struct mode_size { 6995 char name[DRM_DISPLAY_MODE_LEN]; 6996 int w; 6997 int h; 6998 } common_modes[] = { 6999 { "640x480", 640, 480}, 7000 { "800x600", 800, 600}, 7001 { "1024x768", 1024, 768}, 7002 { "1280x720", 1280, 720}, 7003 { "1280x800", 1280, 800}, 7004 {"1280x1024", 1280, 1024}, 7005 { "1440x900", 1440, 900}, 7006 {"1680x1050", 1680, 1050}, 7007 {"1600x1200", 1600, 1200}, 7008 {"1920x1080", 1920, 1080}, 7009 {"1920x1200", 1920, 1200} 7010 }; 7011 7012 n = ARRAY_SIZE(common_modes); 7013 7014 for (i = 0; i < n; i++) { 7015 struct drm_display_mode *curmode = NULL; 7016 bool mode_existed = false; 7017 7018 if (common_modes[i].w > native_mode->hdisplay || 7019 common_modes[i].h > native_mode->vdisplay || 7020 (common_modes[i].w == native_mode->hdisplay && 7021 common_modes[i].h == native_mode->vdisplay)) 7022 continue; 7023 7024 list_for_each_entry(curmode, &connector->probed_modes, head) { 7025 if (common_modes[i].w == curmode->hdisplay && 7026 common_modes[i].h == curmode->vdisplay) { 7027 mode_existed = true; 7028 break; 7029 } 7030 } 7031 7032 if (mode_existed) 7033 continue; 7034 7035 mode = amdgpu_dm_create_common_mode(encoder, 7036 common_modes[i].name, common_modes[i].w, 7037 common_modes[i].h); 7038 if (!mode) 7039 continue; 7040 7041 drm_mode_probed_add(connector, mode); 7042 amdgpu_dm_connector->num_modes++; 7043 } 7044 } 7045 7046 static void amdgpu_set_panel_orientation(struct drm_connector *connector) 7047 { 7048 struct drm_encoder *encoder; 7049 struct amdgpu_encoder *amdgpu_encoder; 7050 const struct drm_display_mode *native_mode; 7051 7052 if (connector->connector_type != DRM_MODE_CONNECTOR_eDP && 7053 connector->connector_type != DRM_MODE_CONNECTOR_LVDS) 7054 return; 7055 7056 mutex_lock(&connector->dev->mode_config.mutex); 7057 amdgpu_dm_connector_get_modes(connector); 7058 mutex_unlock(&connector->dev->mode_config.mutex); 7059 7060 encoder = amdgpu_dm_connector_to_encoder(connector); 7061 if (!encoder) 7062 return; 7063 7064 amdgpu_encoder = to_amdgpu_encoder(encoder); 7065 7066 native_mode = &amdgpu_encoder->native_mode; 7067 if (native_mode->hdisplay == 0 || native_mode->vdisplay == 0) 7068 return; 7069 7070 drm_connector_set_panel_orientation_with_quirk(connector, 7071 DRM_MODE_PANEL_ORIENTATION_UNKNOWN, 7072 native_mode->hdisplay, 7073 native_mode->vdisplay); 7074 } 7075 7076 static void amdgpu_dm_connector_ddc_get_modes(struct drm_connector *connector, 7077 struct edid *edid) 7078 { 7079 struct amdgpu_dm_connector *amdgpu_dm_connector = 7080 to_amdgpu_dm_connector(connector); 7081 7082 if (edid) { 7083 /* empty probed_modes */ 7084 INIT_LIST_HEAD(&connector->probed_modes); 7085 amdgpu_dm_connector->num_modes = 7086 drm_add_edid_modes(connector, edid); 7087 7088 /* sorting the probed modes before calling function 7089 * amdgpu_dm_get_native_mode() since EDID can have 7090 * more than one preferred mode. The modes that are 7091 * later in the probed mode list could be of higher 7092 * and preferred resolution. For example, 3840x2160 7093 * resolution in base EDID preferred timing and 4096x2160 7094 * preferred resolution in DID extension block later. 7095 */ 7096 drm_mode_sort(&connector->probed_modes); 7097 amdgpu_dm_get_native_mode(connector); 7098 7099 /* Freesync capabilities are reset by calling 7100 * drm_add_edid_modes() and need to be 7101 * restored here. 7102 */ 7103 amdgpu_dm_update_freesync_caps(connector, edid); 7104 } else { 7105 amdgpu_dm_connector->num_modes = 0; 7106 } 7107 } 7108 7109 static bool is_duplicate_mode(struct amdgpu_dm_connector *aconnector, 7110 struct drm_display_mode *mode) 7111 { 7112 struct drm_display_mode *m; 7113 7114 list_for_each_entry (m, &aconnector->base.probed_modes, head) { 7115 if (drm_mode_equal(m, mode)) 7116 return true; 7117 } 7118 7119 return false; 7120 } 7121 7122 static uint add_fs_modes(struct amdgpu_dm_connector *aconnector) 7123 { 7124 const struct drm_display_mode *m; 7125 struct drm_display_mode *new_mode; 7126 uint i; 7127 u32 new_modes_count = 0; 7128 7129 /* Standard FPS values 7130 * 7131 * 23.976 - TV/NTSC 7132 * 24 - Cinema 7133 * 25 - TV/PAL 7134 * 29.97 - TV/NTSC 7135 * 30 - TV/NTSC 7136 * 48 - Cinema HFR 7137 * 50 - TV/PAL 7138 * 60 - Commonly used 7139 * 48,72,96,120 - Multiples of 24 7140 */ 7141 static const u32 common_rates[] = { 7142 23976, 24000, 25000, 29970, 30000, 7143 48000, 50000, 60000, 72000, 96000, 120000 7144 }; 7145 7146 /* 7147 * Find mode with highest refresh rate with the same resolution 7148 * as the preferred mode. Some monitors report a preferred mode 7149 * with lower resolution than the highest refresh rate supported. 7150 */ 7151 7152 m = get_highest_refresh_rate_mode(aconnector, true); 7153 if (!m) 7154 return 0; 7155 7156 for (i = 0; i < ARRAY_SIZE(common_rates); i++) { 7157 u64 target_vtotal, target_vtotal_diff; 7158 u64 num, den; 7159 7160 if (drm_mode_vrefresh(m) * 1000 < common_rates[i]) 7161 continue; 7162 7163 if (common_rates[i] < aconnector->min_vfreq * 1000 || 7164 common_rates[i] > aconnector->max_vfreq * 1000) 7165 continue; 7166 7167 num = (unsigned long long)m->clock * 1000 * 1000; 7168 den = common_rates[i] * (unsigned long long)m->htotal; 7169 target_vtotal = div_u64(num, den); 7170 target_vtotal_diff = target_vtotal - m->vtotal; 7171 7172 /* Check for illegal modes */ 7173 if (m->vsync_start + target_vtotal_diff < m->vdisplay || 7174 m->vsync_end + target_vtotal_diff < m->vsync_start || 7175 m->vtotal + target_vtotal_diff < m->vsync_end) 7176 continue; 7177 7178 new_mode = drm_mode_duplicate(aconnector->base.dev, m); 7179 if (!new_mode) 7180 goto out; 7181 7182 new_mode->vtotal += (u16)target_vtotal_diff; 7183 new_mode->vsync_start += (u16)target_vtotal_diff; 7184 new_mode->vsync_end += (u16)target_vtotal_diff; 7185 new_mode->type &= ~DRM_MODE_TYPE_PREFERRED; 7186 new_mode->type |= DRM_MODE_TYPE_DRIVER; 7187 7188 if (!is_duplicate_mode(aconnector, new_mode)) { 7189 drm_mode_probed_add(&aconnector->base, new_mode); 7190 new_modes_count += 1; 7191 } else 7192 drm_mode_destroy(aconnector->base.dev, new_mode); 7193 } 7194 out: 7195 return new_modes_count; 7196 } 7197 7198 static void amdgpu_dm_connector_add_freesync_modes(struct drm_connector *connector, 7199 struct edid *edid) 7200 { 7201 struct amdgpu_dm_connector *amdgpu_dm_connector = 7202 to_amdgpu_dm_connector(connector); 7203 7204 if (!(amdgpu_freesync_vid_mode && edid)) 7205 return; 7206 7207 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 7208 amdgpu_dm_connector->num_modes += 7209 add_fs_modes(amdgpu_dm_connector); 7210 } 7211 7212 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector) 7213 { 7214 struct amdgpu_dm_connector *amdgpu_dm_connector = 7215 to_amdgpu_dm_connector(connector); 7216 struct drm_encoder *encoder; 7217 struct edid *edid = amdgpu_dm_connector->edid; 7218 struct dc_link_settings *verified_link_cap = 7219 &amdgpu_dm_connector->dc_link->verified_link_cap; 7220 const struct dc *dc = amdgpu_dm_connector->dc_link->dc; 7221 7222 encoder = amdgpu_dm_connector_to_encoder(connector); 7223 7224 if (!drm_edid_is_valid(edid)) { 7225 amdgpu_dm_connector->num_modes = 7226 drm_add_modes_noedid(connector, 640, 480); 7227 if (dc->link_srv->dp_get_encoding_format(verified_link_cap) == DP_128b_132b_ENCODING) 7228 amdgpu_dm_connector->num_modes += 7229 drm_add_modes_noedid(connector, 1920, 1080); 7230 } else { 7231 amdgpu_dm_connector_ddc_get_modes(connector, edid); 7232 amdgpu_dm_connector_add_common_modes(encoder, connector); 7233 amdgpu_dm_connector_add_freesync_modes(connector, edid); 7234 } 7235 amdgpu_dm_fbc_init(connector); 7236 7237 return amdgpu_dm_connector->num_modes; 7238 } 7239 7240 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm, 7241 struct amdgpu_dm_connector *aconnector, 7242 int connector_type, 7243 struct dc_link *link, 7244 int link_index) 7245 { 7246 struct amdgpu_device *adev = drm_to_adev(dm->ddev); 7247 7248 /* 7249 * Some of the properties below require access to state, like bpc. 7250 * Allocate some default initial connector state with our reset helper. 7251 */ 7252 if (aconnector->base.funcs->reset) 7253 aconnector->base.funcs->reset(&aconnector->base); 7254 7255 aconnector->connector_id = link_index; 7256 aconnector->bl_idx = -1; 7257 aconnector->dc_link = link; 7258 aconnector->base.interlace_allowed = false; 7259 aconnector->base.doublescan_allowed = false; 7260 aconnector->base.stereo_allowed = false; 7261 aconnector->base.dpms = DRM_MODE_DPMS_OFF; 7262 aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */ 7263 aconnector->audio_inst = -1; 7264 aconnector->pack_sdp_v1_3 = false; 7265 aconnector->as_type = ADAPTIVE_SYNC_TYPE_NONE; 7266 memset(&aconnector->vsdb_info, 0, sizeof(aconnector->vsdb_info)); 7267 mutex_init(&aconnector->hpd_lock); 7268 7269 /* 7270 * configure support HPD hot plug connector_>polled default value is 0 7271 * which means HPD hot plug not supported 7272 */ 7273 switch (connector_type) { 7274 case DRM_MODE_CONNECTOR_HDMIA: 7275 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD; 7276 aconnector->base.ycbcr_420_allowed = 7277 link->link_enc->features.hdmi_ycbcr420_supported ? true : false; 7278 break; 7279 case DRM_MODE_CONNECTOR_DisplayPort: 7280 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD; 7281 link->link_enc = link_enc_cfg_get_link_enc(link); 7282 ASSERT(link->link_enc); 7283 if (link->link_enc) 7284 aconnector->base.ycbcr_420_allowed = 7285 link->link_enc->features.dp_ycbcr420_supported ? true : false; 7286 break; 7287 case DRM_MODE_CONNECTOR_DVID: 7288 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD; 7289 break; 7290 default: 7291 break; 7292 } 7293 7294 drm_object_attach_property(&aconnector->base.base, 7295 dm->ddev->mode_config.scaling_mode_property, 7296 DRM_MODE_SCALE_NONE); 7297 7298 drm_object_attach_property(&aconnector->base.base, 7299 adev->mode_info.underscan_property, 7300 UNDERSCAN_OFF); 7301 drm_object_attach_property(&aconnector->base.base, 7302 adev->mode_info.underscan_hborder_property, 7303 0); 7304 drm_object_attach_property(&aconnector->base.base, 7305 adev->mode_info.underscan_vborder_property, 7306 0); 7307 7308 if (!aconnector->mst_root) 7309 drm_connector_attach_max_bpc_property(&aconnector->base, 8, 16); 7310 7311 aconnector->base.state->max_bpc = 16; 7312 aconnector->base.state->max_requested_bpc = aconnector->base.state->max_bpc; 7313 7314 if (connector_type == DRM_MODE_CONNECTOR_eDP && 7315 (dc_is_dmcu_initialized(adev->dm.dc) || adev->dm.dc->ctx->dmub_srv)) { 7316 drm_object_attach_property(&aconnector->base.base, 7317 adev->mode_info.abm_level_property, 0); 7318 } 7319 7320 if (connector_type == DRM_MODE_CONNECTOR_HDMIA || 7321 connector_type == DRM_MODE_CONNECTOR_DisplayPort || 7322 connector_type == DRM_MODE_CONNECTOR_eDP) { 7323 drm_connector_attach_hdr_output_metadata_property(&aconnector->base); 7324 7325 if (!aconnector->mst_root) 7326 drm_connector_attach_vrr_capable_property(&aconnector->base); 7327 7328 if (adev->dm.hdcp_workqueue) 7329 drm_connector_attach_content_protection_property(&aconnector->base, true); 7330 } 7331 } 7332 7333 static int amdgpu_dm_i2c_xfer(struct i2c_adapter *i2c_adap, 7334 struct i2c_msg *msgs, int num) 7335 { 7336 struct amdgpu_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap); 7337 struct ddc_service *ddc_service = i2c->ddc_service; 7338 struct i2c_command cmd; 7339 int i; 7340 int result = -EIO; 7341 7342 cmd.payloads = kcalloc(num, sizeof(struct i2c_payload), GFP_KERNEL); 7343 7344 if (!cmd.payloads) 7345 return result; 7346 7347 cmd.number_of_payloads = num; 7348 cmd.engine = I2C_COMMAND_ENGINE_DEFAULT; 7349 cmd.speed = 100; 7350 7351 for (i = 0; i < num; i++) { 7352 cmd.payloads[i].write = !(msgs[i].flags & I2C_M_RD); 7353 cmd.payloads[i].address = msgs[i].addr; 7354 cmd.payloads[i].length = msgs[i].len; 7355 cmd.payloads[i].data = msgs[i].buf; 7356 } 7357 7358 if (dc_submit_i2c( 7359 ddc_service->ctx->dc, 7360 ddc_service->link->link_index, 7361 &cmd)) 7362 result = num; 7363 7364 kfree(cmd.payloads); 7365 return result; 7366 } 7367 7368 static u32 amdgpu_dm_i2c_func(struct i2c_adapter *adap) 7369 { 7370 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; 7371 } 7372 7373 static const struct i2c_algorithm amdgpu_dm_i2c_algo = { 7374 .master_xfer = amdgpu_dm_i2c_xfer, 7375 .functionality = amdgpu_dm_i2c_func, 7376 }; 7377 7378 static struct amdgpu_i2c_adapter * 7379 create_i2c(struct ddc_service *ddc_service, 7380 int link_index, 7381 int *res) 7382 { 7383 struct amdgpu_device *adev = ddc_service->ctx->driver_context; 7384 struct amdgpu_i2c_adapter *i2c; 7385 7386 i2c = kzalloc(sizeof(struct amdgpu_i2c_adapter), GFP_KERNEL); 7387 if (!i2c) 7388 return NULL; 7389 i2c->base.owner = THIS_MODULE; 7390 i2c->base.class = I2C_CLASS_DDC; 7391 i2c->base.dev.parent = &adev->pdev->dev; 7392 i2c->base.algo = &amdgpu_dm_i2c_algo; 7393 snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c hw bus %d", link_index); 7394 i2c_set_adapdata(&i2c->base, i2c); 7395 i2c->ddc_service = ddc_service; 7396 7397 return i2c; 7398 } 7399 7400 7401 /* 7402 * Note: this function assumes that dc_link_detect() was called for the 7403 * dc_link which will be represented by this aconnector. 7404 */ 7405 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm, 7406 struct amdgpu_dm_connector *aconnector, 7407 u32 link_index, 7408 struct amdgpu_encoder *aencoder) 7409 { 7410 int res = 0; 7411 int connector_type; 7412 struct dc *dc = dm->dc; 7413 struct dc_link *link = dc_get_link_at_index(dc, link_index); 7414 struct amdgpu_i2c_adapter *i2c; 7415 7416 link->priv = aconnector; 7417 7418 DRM_DEBUG_DRIVER("%s()\n", __func__); 7419 7420 i2c = create_i2c(link->ddc, link->link_index, &res); 7421 if (!i2c) { 7422 DRM_ERROR("Failed to create i2c adapter data\n"); 7423 return -ENOMEM; 7424 } 7425 7426 aconnector->i2c = i2c; 7427 res = i2c_add_adapter(&i2c->base); 7428 7429 if (res) { 7430 DRM_ERROR("Failed to register hw i2c %d\n", link->link_index); 7431 goto out_free; 7432 } 7433 7434 connector_type = to_drm_connector_type(link->connector_signal); 7435 7436 res = drm_connector_init_with_ddc( 7437 dm->ddev, 7438 &aconnector->base, 7439 &amdgpu_dm_connector_funcs, 7440 connector_type, 7441 &i2c->base); 7442 7443 if (res) { 7444 DRM_ERROR("connector_init failed\n"); 7445 aconnector->connector_id = -1; 7446 goto out_free; 7447 } 7448 7449 drm_connector_helper_add( 7450 &aconnector->base, 7451 &amdgpu_dm_connector_helper_funcs); 7452 7453 amdgpu_dm_connector_init_helper( 7454 dm, 7455 aconnector, 7456 connector_type, 7457 link, 7458 link_index); 7459 7460 drm_connector_attach_encoder( 7461 &aconnector->base, &aencoder->base); 7462 7463 if (connector_type == DRM_MODE_CONNECTOR_DisplayPort 7464 || connector_type == DRM_MODE_CONNECTOR_eDP) 7465 amdgpu_dm_initialize_dp_connector(dm, aconnector, link->link_index); 7466 7467 out_free: 7468 if (res) { 7469 kfree(i2c); 7470 aconnector->i2c = NULL; 7471 } 7472 return res; 7473 } 7474 7475 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev) 7476 { 7477 switch (adev->mode_info.num_crtc) { 7478 case 1: 7479 return 0x1; 7480 case 2: 7481 return 0x3; 7482 case 3: 7483 return 0x7; 7484 case 4: 7485 return 0xf; 7486 case 5: 7487 return 0x1f; 7488 case 6: 7489 default: 7490 return 0x3f; 7491 } 7492 } 7493 7494 static int amdgpu_dm_encoder_init(struct drm_device *dev, 7495 struct amdgpu_encoder *aencoder, 7496 uint32_t link_index) 7497 { 7498 struct amdgpu_device *adev = drm_to_adev(dev); 7499 7500 int res = drm_encoder_init(dev, 7501 &aencoder->base, 7502 &amdgpu_dm_encoder_funcs, 7503 DRM_MODE_ENCODER_TMDS, 7504 NULL); 7505 7506 aencoder->base.possible_crtcs = amdgpu_dm_get_encoder_crtc_mask(adev); 7507 7508 if (!res) 7509 aencoder->encoder_id = link_index; 7510 else 7511 aencoder->encoder_id = -1; 7512 7513 drm_encoder_helper_add(&aencoder->base, &amdgpu_dm_encoder_helper_funcs); 7514 7515 return res; 7516 } 7517 7518 static void manage_dm_interrupts(struct amdgpu_device *adev, 7519 struct amdgpu_crtc *acrtc, 7520 bool enable) 7521 { 7522 /* 7523 * We have no guarantee that the frontend index maps to the same 7524 * backend index - some even map to more than one. 7525 * 7526 * TODO: Use a different interrupt or check DC itself for the mapping. 7527 */ 7528 int irq_type = 7529 amdgpu_display_crtc_idx_to_irq_type( 7530 adev, 7531 acrtc->crtc_id); 7532 7533 if (enable) { 7534 drm_crtc_vblank_on(&acrtc->base); 7535 amdgpu_irq_get( 7536 adev, 7537 &adev->pageflip_irq, 7538 irq_type); 7539 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 7540 amdgpu_irq_get( 7541 adev, 7542 &adev->vline0_irq, 7543 irq_type); 7544 #endif 7545 } else { 7546 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 7547 amdgpu_irq_put( 7548 adev, 7549 &adev->vline0_irq, 7550 irq_type); 7551 #endif 7552 amdgpu_irq_put( 7553 adev, 7554 &adev->pageflip_irq, 7555 irq_type); 7556 drm_crtc_vblank_off(&acrtc->base); 7557 } 7558 } 7559 7560 static void dm_update_pflip_irq_state(struct amdgpu_device *adev, 7561 struct amdgpu_crtc *acrtc) 7562 { 7563 int irq_type = 7564 amdgpu_display_crtc_idx_to_irq_type(adev, acrtc->crtc_id); 7565 7566 /** 7567 * This reads the current state for the IRQ and force reapplies 7568 * the setting to hardware. 7569 */ 7570 amdgpu_irq_update(adev, &adev->pageflip_irq, irq_type); 7571 } 7572 7573 static bool 7574 is_scaling_state_different(const struct dm_connector_state *dm_state, 7575 const struct dm_connector_state *old_dm_state) 7576 { 7577 if (dm_state->scaling != old_dm_state->scaling) 7578 return true; 7579 if (!dm_state->underscan_enable && old_dm_state->underscan_enable) { 7580 if (old_dm_state->underscan_hborder != 0 && old_dm_state->underscan_vborder != 0) 7581 return true; 7582 } else if (dm_state->underscan_enable && !old_dm_state->underscan_enable) { 7583 if (dm_state->underscan_hborder != 0 && dm_state->underscan_vborder != 0) 7584 return true; 7585 } else if (dm_state->underscan_hborder != old_dm_state->underscan_hborder || 7586 dm_state->underscan_vborder != old_dm_state->underscan_vborder) 7587 return true; 7588 return false; 7589 } 7590 7591 static bool is_content_protection_different(struct drm_crtc_state *new_crtc_state, 7592 struct drm_crtc_state *old_crtc_state, 7593 struct drm_connector_state *new_conn_state, 7594 struct drm_connector_state *old_conn_state, 7595 const struct drm_connector *connector, 7596 struct hdcp_workqueue *hdcp_w) 7597 { 7598 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 7599 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state); 7600 7601 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n", 7602 connector->index, connector->status, connector->dpms); 7603 pr_debug("[HDCP_DM] state protection old: %x new: %x\n", 7604 old_conn_state->content_protection, new_conn_state->content_protection); 7605 7606 if (old_crtc_state) 7607 pr_debug("[HDCP_DM] old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 7608 old_crtc_state->enable, 7609 old_crtc_state->active, 7610 old_crtc_state->mode_changed, 7611 old_crtc_state->active_changed, 7612 old_crtc_state->connectors_changed); 7613 7614 if (new_crtc_state) 7615 pr_debug("[HDCP_DM] NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 7616 new_crtc_state->enable, 7617 new_crtc_state->active, 7618 new_crtc_state->mode_changed, 7619 new_crtc_state->active_changed, 7620 new_crtc_state->connectors_changed); 7621 7622 /* hdcp content type change */ 7623 if (old_conn_state->hdcp_content_type != new_conn_state->hdcp_content_type && 7624 new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) { 7625 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 7626 pr_debug("[HDCP_DM] Type0/1 change %s :true\n", __func__); 7627 return true; 7628 } 7629 7630 /* CP is being re enabled, ignore this */ 7631 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED && 7632 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) { 7633 if (new_crtc_state && new_crtc_state->mode_changed) { 7634 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 7635 pr_debug("[HDCP_DM] ENABLED->DESIRED & mode_changed %s :true\n", __func__); 7636 return true; 7637 } 7638 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_ENABLED; 7639 pr_debug("[HDCP_DM] ENABLED -> DESIRED %s :false\n", __func__); 7640 return false; 7641 } 7642 7643 /* S3 resume case, since old state will always be 0 (UNDESIRED) and the restored state will be ENABLED 7644 * 7645 * Handles: UNDESIRED -> ENABLED 7646 */ 7647 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_UNDESIRED && 7648 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) 7649 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 7650 7651 /* Stream removed and re-enabled 7652 * 7653 * Can sometimes overlap with the HPD case, 7654 * thus set update_hdcp to false to avoid 7655 * setting HDCP multiple times. 7656 * 7657 * Handles: DESIRED -> DESIRED (Special case) 7658 */ 7659 if (!(old_conn_state->crtc && old_conn_state->crtc->enabled) && 7660 new_conn_state->crtc && new_conn_state->crtc->enabled && 7661 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) { 7662 dm_con_state->update_hdcp = false; 7663 pr_debug("[HDCP_DM] DESIRED->DESIRED (Stream removed and re-enabled) %s :true\n", 7664 __func__); 7665 return true; 7666 } 7667 7668 /* Hot-plug, headless s3, dpms 7669 * 7670 * Only start HDCP if the display is connected/enabled. 7671 * update_hdcp flag will be set to false until the next 7672 * HPD comes in. 7673 * 7674 * Handles: DESIRED -> DESIRED (Special case) 7675 */ 7676 if (dm_con_state->update_hdcp && 7677 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED && 7678 connector->dpms == DRM_MODE_DPMS_ON && aconnector->dc_sink != NULL) { 7679 dm_con_state->update_hdcp = false; 7680 pr_debug("[HDCP_DM] DESIRED->DESIRED (Hot-plug, headless s3, dpms) %s :true\n", 7681 __func__); 7682 return true; 7683 } 7684 7685 if (old_conn_state->content_protection == new_conn_state->content_protection) { 7686 if (new_conn_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) { 7687 if (new_crtc_state && new_crtc_state->mode_changed) { 7688 pr_debug("[HDCP_DM] DESIRED->DESIRED or ENABLE->ENABLE mode_change %s :true\n", 7689 __func__); 7690 return true; 7691 } 7692 pr_debug("[HDCP_DM] DESIRED->DESIRED & ENABLE->ENABLE %s :false\n", 7693 __func__); 7694 return false; 7695 } 7696 7697 pr_debug("[HDCP_DM] UNDESIRED->UNDESIRED %s :false\n", __func__); 7698 return false; 7699 } 7700 7701 if (new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_ENABLED) { 7702 pr_debug("[HDCP_DM] UNDESIRED->DESIRED or DESIRED->UNDESIRED or ENABLED->UNDESIRED %s :true\n", 7703 __func__); 7704 return true; 7705 } 7706 7707 pr_debug("[HDCP_DM] DESIRED->ENABLED %s :false\n", __func__); 7708 return false; 7709 } 7710 7711 static void remove_stream(struct amdgpu_device *adev, 7712 struct amdgpu_crtc *acrtc, 7713 struct dc_stream_state *stream) 7714 { 7715 /* this is the update mode case */ 7716 7717 acrtc->otg_inst = -1; 7718 acrtc->enabled = false; 7719 } 7720 7721 static void prepare_flip_isr(struct amdgpu_crtc *acrtc) 7722 { 7723 7724 assert_spin_locked(&acrtc->base.dev->event_lock); 7725 WARN_ON(acrtc->event); 7726 7727 acrtc->event = acrtc->base.state->event; 7728 7729 /* Set the flip status */ 7730 acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED; 7731 7732 /* Mark this event as consumed */ 7733 acrtc->base.state->event = NULL; 7734 7735 DC_LOG_PFLIP("crtc:%d, pflip_stat:AMDGPU_FLIP_SUBMITTED\n", 7736 acrtc->crtc_id); 7737 } 7738 7739 static void update_freesync_state_on_stream( 7740 struct amdgpu_display_manager *dm, 7741 struct dm_crtc_state *new_crtc_state, 7742 struct dc_stream_state *new_stream, 7743 struct dc_plane_state *surface, 7744 u32 flip_timestamp_in_us) 7745 { 7746 struct mod_vrr_params vrr_params; 7747 struct dc_info_packet vrr_infopacket = {0}; 7748 struct amdgpu_device *adev = dm->adev; 7749 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc); 7750 unsigned long flags; 7751 bool pack_sdp_v1_3 = false; 7752 struct amdgpu_dm_connector *aconn; 7753 enum vrr_packet_type packet_type = PACKET_TYPE_VRR; 7754 7755 if (!new_stream) 7756 return; 7757 7758 /* 7759 * TODO: Determine why min/max totals and vrefresh can be 0 here. 7760 * For now it's sufficient to just guard against these conditions. 7761 */ 7762 7763 if (!new_stream->timing.h_total || !new_stream->timing.v_total) 7764 return; 7765 7766 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 7767 vrr_params = acrtc->dm_irq_params.vrr_params; 7768 7769 if (surface) { 7770 mod_freesync_handle_preflip( 7771 dm->freesync_module, 7772 surface, 7773 new_stream, 7774 flip_timestamp_in_us, 7775 &vrr_params); 7776 7777 if (adev->family < AMDGPU_FAMILY_AI && 7778 amdgpu_dm_crtc_vrr_active(new_crtc_state)) { 7779 mod_freesync_handle_v_update(dm->freesync_module, 7780 new_stream, &vrr_params); 7781 7782 /* Need to call this before the frame ends. */ 7783 dc_stream_adjust_vmin_vmax(dm->dc, 7784 new_crtc_state->stream, 7785 &vrr_params.adjust); 7786 } 7787 } 7788 7789 aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context; 7790 7791 if (aconn && aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) { 7792 pack_sdp_v1_3 = aconn->pack_sdp_v1_3; 7793 7794 if (aconn->vsdb_info.amd_vsdb_version == 1) 7795 packet_type = PACKET_TYPE_FS_V1; 7796 else if (aconn->vsdb_info.amd_vsdb_version == 2) 7797 packet_type = PACKET_TYPE_FS_V2; 7798 else if (aconn->vsdb_info.amd_vsdb_version == 3) 7799 packet_type = PACKET_TYPE_FS_V3; 7800 7801 mod_build_adaptive_sync_infopacket(new_stream, aconn->as_type, NULL, 7802 &new_stream->adaptive_sync_infopacket); 7803 } 7804 7805 mod_freesync_build_vrr_infopacket( 7806 dm->freesync_module, 7807 new_stream, 7808 &vrr_params, 7809 packet_type, 7810 TRANSFER_FUNC_UNKNOWN, 7811 &vrr_infopacket, 7812 pack_sdp_v1_3); 7813 7814 new_crtc_state->freesync_vrr_info_changed |= 7815 (memcmp(&new_crtc_state->vrr_infopacket, 7816 &vrr_infopacket, 7817 sizeof(vrr_infopacket)) != 0); 7818 7819 acrtc->dm_irq_params.vrr_params = vrr_params; 7820 new_crtc_state->vrr_infopacket = vrr_infopacket; 7821 7822 new_stream->vrr_infopacket = vrr_infopacket; 7823 new_stream->allow_freesync = mod_freesync_get_freesync_enabled(&vrr_params); 7824 7825 if (new_crtc_state->freesync_vrr_info_changed) 7826 DRM_DEBUG_KMS("VRR packet update: crtc=%u enabled=%d state=%d", 7827 new_crtc_state->base.crtc->base.id, 7828 (int)new_crtc_state->base.vrr_enabled, 7829 (int)vrr_params.state); 7830 7831 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 7832 } 7833 7834 static void update_stream_irq_parameters( 7835 struct amdgpu_display_manager *dm, 7836 struct dm_crtc_state *new_crtc_state) 7837 { 7838 struct dc_stream_state *new_stream = new_crtc_state->stream; 7839 struct mod_vrr_params vrr_params; 7840 struct mod_freesync_config config = new_crtc_state->freesync_config; 7841 struct amdgpu_device *adev = dm->adev; 7842 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc); 7843 unsigned long flags; 7844 7845 if (!new_stream) 7846 return; 7847 7848 /* 7849 * TODO: Determine why min/max totals and vrefresh can be 0 here. 7850 * For now it's sufficient to just guard against these conditions. 7851 */ 7852 if (!new_stream->timing.h_total || !new_stream->timing.v_total) 7853 return; 7854 7855 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 7856 vrr_params = acrtc->dm_irq_params.vrr_params; 7857 7858 if (new_crtc_state->vrr_supported && 7859 config.min_refresh_in_uhz && 7860 config.max_refresh_in_uhz) { 7861 /* 7862 * if freesync compatible mode was set, config.state will be set 7863 * in atomic check 7864 */ 7865 if (config.state == VRR_STATE_ACTIVE_FIXED && config.fixed_refresh_in_uhz && 7866 (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) || 7867 new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)) { 7868 vrr_params.max_refresh_in_uhz = config.max_refresh_in_uhz; 7869 vrr_params.min_refresh_in_uhz = config.min_refresh_in_uhz; 7870 vrr_params.fixed_refresh_in_uhz = config.fixed_refresh_in_uhz; 7871 vrr_params.state = VRR_STATE_ACTIVE_FIXED; 7872 } else { 7873 config.state = new_crtc_state->base.vrr_enabled ? 7874 VRR_STATE_ACTIVE_VARIABLE : 7875 VRR_STATE_INACTIVE; 7876 } 7877 } else { 7878 config.state = VRR_STATE_UNSUPPORTED; 7879 } 7880 7881 mod_freesync_build_vrr_params(dm->freesync_module, 7882 new_stream, 7883 &config, &vrr_params); 7884 7885 new_crtc_state->freesync_config = config; 7886 /* Copy state for access from DM IRQ handler */ 7887 acrtc->dm_irq_params.freesync_config = config; 7888 acrtc->dm_irq_params.active_planes = new_crtc_state->active_planes; 7889 acrtc->dm_irq_params.vrr_params = vrr_params; 7890 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 7891 } 7892 7893 static void amdgpu_dm_handle_vrr_transition(struct dm_crtc_state *old_state, 7894 struct dm_crtc_state *new_state) 7895 { 7896 bool old_vrr_active = amdgpu_dm_crtc_vrr_active(old_state); 7897 bool new_vrr_active = amdgpu_dm_crtc_vrr_active(new_state); 7898 7899 if (!old_vrr_active && new_vrr_active) { 7900 /* Transition VRR inactive -> active: 7901 * While VRR is active, we must not disable vblank irq, as a 7902 * reenable after disable would compute bogus vblank/pflip 7903 * timestamps if it likely happened inside display front-porch. 7904 * 7905 * We also need vupdate irq for the actual core vblank handling 7906 * at end of vblank. 7907 */ 7908 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, true) != 0); 7909 WARN_ON(drm_crtc_vblank_get(new_state->base.crtc) != 0); 7910 DRM_DEBUG_DRIVER("%s: crtc=%u VRR off->on: Get vblank ref\n", 7911 __func__, new_state->base.crtc->base.id); 7912 } else if (old_vrr_active && !new_vrr_active) { 7913 /* Transition VRR active -> inactive: 7914 * Allow vblank irq disable again for fixed refresh rate. 7915 */ 7916 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, false) != 0); 7917 drm_crtc_vblank_put(new_state->base.crtc); 7918 DRM_DEBUG_DRIVER("%s: crtc=%u VRR on->off: Drop vblank ref\n", 7919 __func__, new_state->base.crtc->base.id); 7920 } 7921 } 7922 7923 static void amdgpu_dm_commit_cursors(struct drm_atomic_state *state) 7924 { 7925 struct drm_plane *plane; 7926 struct drm_plane_state *old_plane_state; 7927 int i; 7928 7929 /* 7930 * TODO: Make this per-stream so we don't issue redundant updates for 7931 * commits with multiple streams. 7932 */ 7933 for_each_old_plane_in_state(state, plane, old_plane_state, i) 7934 if (plane->type == DRM_PLANE_TYPE_CURSOR) 7935 amdgpu_dm_plane_handle_cursor_update(plane, old_plane_state); 7936 } 7937 7938 static inline uint32_t get_mem_type(struct drm_framebuffer *fb) 7939 { 7940 struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]); 7941 7942 return abo->tbo.resource ? abo->tbo.resource->mem_type : 0; 7943 } 7944 7945 static void amdgpu_dm_commit_planes(struct drm_atomic_state *state, 7946 struct dc_state *dc_state, 7947 struct drm_device *dev, 7948 struct amdgpu_display_manager *dm, 7949 struct drm_crtc *pcrtc, 7950 bool wait_for_vblank) 7951 { 7952 u32 i; 7953 u64 timestamp_ns = ktime_get_ns(); 7954 struct drm_plane *plane; 7955 struct drm_plane_state *old_plane_state, *new_plane_state; 7956 struct amdgpu_crtc *acrtc_attach = to_amdgpu_crtc(pcrtc); 7957 struct drm_crtc_state *new_pcrtc_state = 7958 drm_atomic_get_new_crtc_state(state, pcrtc); 7959 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(new_pcrtc_state); 7960 struct dm_crtc_state *dm_old_crtc_state = 7961 to_dm_crtc_state(drm_atomic_get_old_crtc_state(state, pcrtc)); 7962 int planes_count = 0, vpos, hpos; 7963 unsigned long flags; 7964 u32 target_vblank, last_flip_vblank; 7965 bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state); 7966 bool cursor_update = false; 7967 bool pflip_present = false; 7968 bool dirty_rects_changed = false; 7969 struct { 7970 struct dc_surface_update surface_updates[MAX_SURFACES]; 7971 struct dc_plane_info plane_infos[MAX_SURFACES]; 7972 struct dc_scaling_info scaling_infos[MAX_SURFACES]; 7973 struct dc_flip_addrs flip_addrs[MAX_SURFACES]; 7974 struct dc_stream_update stream_update; 7975 } *bundle; 7976 7977 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL); 7978 7979 if (!bundle) { 7980 dm_error("Failed to allocate update bundle\n"); 7981 goto cleanup; 7982 } 7983 7984 /* 7985 * Disable the cursor first if we're disabling all the planes. 7986 * It'll remain on the screen after the planes are re-enabled 7987 * if we don't. 7988 */ 7989 if (acrtc_state->active_planes == 0) 7990 amdgpu_dm_commit_cursors(state); 7991 7992 /* update planes when needed */ 7993 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { 7994 struct drm_crtc *crtc = new_plane_state->crtc; 7995 struct drm_crtc_state *new_crtc_state; 7996 struct drm_framebuffer *fb = new_plane_state->fb; 7997 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)fb; 7998 bool plane_needs_flip; 7999 struct dc_plane_state *dc_plane; 8000 struct dm_plane_state *dm_new_plane_state = to_dm_plane_state(new_plane_state); 8001 8002 /* Cursor plane is handled after stream updates */ 8003 if (plane->type == DRM_PLANE_TYPE_CURSOR) { 8004 if ((fb && crtc == pcrtc) || 8005 (old_plane_state->fb && old_plane_state->crtc == pcrtc)) 8006 cursor_update = true; 8007 8008 continue; 8009 } 8010 8011 if (!fb || !crtc || pcrtc != crtc) 8012 continue; 8013 8014 new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc); 8015 if (!new_crtc_state->active) 8016 continue; 8017 8018 dc_plane = dm_new_plane_state->dc_state; 8019 if (!dc_plane) 8020 continue; 8021 8022 bundle->surface_updates[planes_count].surface = dc_plane; 8023 if (new_pcrtc_state->color_mgmt_changed) { 8024 bundle->surface_updates[planes_count].gamma = dc_plane->gamma_correction; 8025 bundle->surface_updates[planes_count].in_transfer_func = dc_plane->in_transfer_func; 8026 bundle->surface_updates[planes_count].gamut_remap_matrix = &dc_plane->gamut_remap_matrix; 8027 } 8028 8029 amdgpu_dm_plane_fill_dc_scaling_info(dm->adev, new_plane_state, 8030 &bundle->scaling_infos[planes_count]); 8031 8032 bundle->surface_updates[planes_count].scaling_info = 8033 &bundle->scaling_infos[planes_count]; 8034 8035 plane_needs_flip = old_plane_state->fb && new_plane_state->fb; 8036 8037 pflip_present = pflip_present || plane_needs_flip; 8038 8039 if (!plane_needs_flip) { 8040 planes_count += 1; 8041 continue; 8042 } 8043 8044 fill_dc_plane_info_and_addr( 8045 dm->adev, new_plane_state, 8046 afb->tiling_flags, 8047 &bundle->plane_infos[planes_count], 8048 &bundle->flip_addrs[planes_count].address, 8049 afb->tmz_surface, false); 8050 8051 drm_dbg_state(state->dev, "plane: id=%d dcc_en=%d\n", 8052 new_plane_state->plane->index, 8053 bundle->plane_infos[planes_count].dcc.enable); 8054 8055 bundle->surface_updates[planes_count].plane_info = 8056 &bundle->plane_infos[planes_count]; 8057 8058 if (acrtc_state->stream->link->psr_settings.psr_feature_enabled) { 8059 fill_dc_dirty_rects(plane, old_plane_state, 8060 new_plane_state, new_crtc_state, 8061 &bundle->flip_addrs[planes_count], 8062 &dirty_rects_changed); 8063 8064 /* 8065 * If the dirty regions changed, PSR-SU need to be disabled temporarily 8066 * and enabled it again after dirty regions are stable to avoid video glitch. 8067 * PSR-SU will be enabled in vblank_control_worker() if user pause the video 8068 * during the PSR-SU was disabled. 8069 */ 8070 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 && 8071 acrtc_attach->dm_irq_params.allow_psr_entry && 8072 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY 8073 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) && 8074 #endif 8075 dirty_rects_changed) { 8076 mutex_lock(&dm->dc_lock); 8077 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns = 8078 timestamp_ns; 8079 if (acrtc_state->stream->link->psr_settings.psr_allow_active) 8080 amdgpu_dm_psr_disable(acrtc_state->stream); 8081 mutex_unlock(&dm->dc_lock); 8082 } 8083 } 8084 8085 /* 8086 * Only allow immediate flips for fast updates that don't 8087 * change memory domain, FB pitch, DCC state, rotation or 8088 * mirroring. 8089 */ 8090 bundle->flip_addrs[planes_count].flip_immediate = 8091 crtc->state->async_flip && 8092 acrtc_state->update_type == UPDATE_TYPE_FAST && 8093 get_mem_type(old_plane_state->fb) == get_mem_type(fb); 8094 8095 timestamp_ns = ktime_get_ns(); 8096 bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000); 8097 bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count]; 8098 bundle->surface_updates[planes_count].surface = dc_plane; 8099 8100 if (!bundle->surface_updates[planes_count].surface) { 8101 DRM_ERROR("No surface for CRTC: id=%d\n", 8102 acrtc_attach->crtc_id); 8103 continue; 8104 } 8105 8106 if (plane == pcrtc->primary) 8107 update_freesync_state_on_stream( 8108 dm, 8109 acrtc_state, 8110 acrtc_state->stream, 8111 dc_plane, 8112 bundle->flip_addrs[planes_count].flip_timestamp_in_us); 8113 8114 drm_dbg_state(state->dev, "%s Flipping to hi: 0x%x, low: 0x%x\n", 8115 __func__, 8116 bundle->flip_addrs[planes_count].address.grph.addr.high_part, 8117 bundle->flip_addrs[planes_count].address.grph.addr.low_part); 8118 8119 planes_count += 1; 8120 8121 } 8122 8123 if (pflip_present) { 8124 if (!vrr_active) { 8125 /* Use old throttling in non-vrr fixed refresh rate mode 8126 * to keep flip scheduling based on target vblank counts 8127 * working in a backwards compatible way, e.g., for 8128 * clients using the GLX_OML_sync_control extension or 8129 * DRI3/Present extension with defined target_msc. 8130 */ 8131 last_flip_vblank = amdgpu_get_vblank_counter_kms(pcrtc); 8132 } 8133 else { 8134 /* For variable refresh rate mode only: 8135 * Get vblank of last completed flip to avoid > 1 vrr 8136 * flips per video frame by use of throttling, but allow 8137 * flip programming anywhere in the possibly large 8138 * variable vrr vblank interval for fine-grained flip 8139 * timing control and more opportunity to avoid stutter 8140 * on late submission of flips. 8141 */ 8142 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 8143 last_flip_vblank = acrtc_attach->dm_irq_params.last_flip_vblank; 8144 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 8145 } 8146 8147 target_vblank = last_flip_vblank + wait_for_vblank; 8148 8149 /* 8150 * Wait until we're out of the vertical blank period before the one 8151 * targeted by the flip 8152 */ 8153 while ((acrtc_attach->enabled && 8154 (amdgpu_display_get_crtc_scanoutpos(dm->ddev, acrtc_attach->crtc_id, 8155 0, &vpos, &hpos, NULL, 8156 NULL, &pcrtc->hwmode) 8157 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) == 8158 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) && 8159 (int)(target_vblank - 8160 amdgpu_get_vblank_counter_kms(pcrtc)) > 0)) { 8161 usleep_range(1000, 1100); 8162 } 8163 8164 /** 8165 * Prepare the flip event for the pageflip interrupt to handle. 8166 * 8167 * This only works in the case where we've already turned on the 8168 * appropriate hardware blocks (eg. HUBP) so in the transition case 8169 * from 0 -> n planes we have to skip a hardware generated event 8170 * and rely on sending it from software. 8171 */ 8172 if (acrtc_attach->base.state->event && 8173 acrtc_state->active_planes > 0) { 8174 drm_crtc_vblank_get(pcrtc); 8175 8176 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 8177 8178 WARN_ON(acrtc_attach->pflip_status != AMDGPU_FLIP_NONE); 8179 prepare_flip_isr(acrtc_attach); 8180 8181 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 8182 } 8183 8184 if (acrtc_state->stream) { 8185 if (acrtc_state->freesync_vrr_info_changed) 8186 bundle->stream_update.vrr_infopacket = 8187 &acrtc_state->stream->vrr_infopacket; 8188 } 8189 } else if (cursor_update && acrtc_state->active_planes > 0 && 8190 acrtc_attach->base.state->event) { 8191 drm_crtc_vblank_get(pcrtc); 8192 8193 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 8194 8195 acrtc_attach->event = acrtc_attach->base.state->event; 8196 acrtc_attach->base.state->event = NULL; 8197 8198 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 8199 } 8200 8201 /* Update the planes if changed or disable if we don't have any. */ 8202 if ((planes_count || acrtc_state->active_planes == 0) && 8203 acrtc_state->stream) { 8204 /* 8205 * If PSR or idle optimizations are enabled then flush out 8206 * any pending work before hardware programming. 8207 */ 8208 if (dm->vblank_control_workqueue) 8209 flush_workqueue(dm->vblank_control_workqueue); 8210 8211 bundle->stream_update.stream = acrtc_state->stream; 8212 if (new_pcrtc_state->mode_changed) { 8213 bundle->stream_update.src = acrtc_state->stream->src; 8214 bundle->stream_update.dst = acrtc_state->stream->dst; 8215 } 8216 8217 if (new_pcrtc_state->color_mgmt_changed) { 8218 /* 8219 * TODO: This isn't fully correct since we've actually 8220 * already modified the stream in place. 8221 */ 8222 bundle->stream_update.gamut_remap = 8223 &acrtc_state->stream->gamut_remap_matrix; 8224 bundle->stream_update.output_csc_transform = 8225 &acrtc_state->stream->csc_color_matrix; 8226 bundle->stream_update.out_transfer_func = 8227 acrtc_state->stream->out_transfer_func; 8228 } 8229 8230 acrtc_state->stream->abm_level = acrtc_state->abm_level; 8231 if (acrtc_state->abm_level != dm_old_crtc_state->abm_level) 8232 bundle->stream_update.abm_level = &acrtc_state->abm_level; 8233 8234 /* 8235 * If FreeSync state on the stream has changed then we need to 8236 * re-adjust the min/max bounds now that DC doesn't handle this 8237 * as part of commit. 8238 */ 8239 if (is_dc_timing_adjust_needed(dm_old_crtc_state, acrtc_state)) { 8240 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 8241 dc_stream_adjust_vmin_vmax( 8242 dm->dc, acrtc_state->stream, 8243 &acrtc_attach->dm_irq_params.vrr_params.adjust); 8244 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 8245 } 8246 mutex_lock(&dm->dc_lock); 8247 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) && 8248 acrtc_state->stream->link->psr_settings.psr_allow_active) 8249 amdgpu_dm_psr_disable(acrtc_state->stream); 8250 8251 update_planes_and_stream_adapter(dm->dc, 8252 acrtc_state->update_type, 8253 planes_count, 8254 acrtc_state->stream, 8255 &bundle->stream_update, 8256 bundle->surface_updates); 8257 8258 /** 8259 * Enable or disable the interrupts on the backend. 8260 * 8261 * Most pipes are put into power gating when unused. 8262 * 8263 * When power gating is enabled on a pipe we lose the 8264 * interrupt enablement state when power gating is disabled. 8265 * 8266 * So we need to update the IRQ control state in hardware 8267 * whenever the pipe turns on (since it could be previously 8268 * power gated) or off (since some pipes can't be power gated 8269 * on some ASICs). 8270 */ 8271 if (dm_old_crtc_state->active_planes != acrtc_state->active_planes) 8272 dm_update_pflip_irq_state(drm_to_adev(dev), 8273 acrtc_attach); 8274 8275 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) && 8276 acrtc_state->stream->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED && 8277 !acrtc_state->stream->link->psr_settings.psr_feature_enabled) 8278 amdgpu_dm_link_setup_psr(acrtc_state->stream); 8279 8280 /* Decrement skip count when PSR is enabled and we're doing fast updates. */ 8281 if (acrtc_state->update_type == UPDATE_TYPE_FAST && 8282 acrtc_state->stream->link->psr_settings.psr_feature_enabled) { 8283 struct amdgpu_dm_connector *aconn = 8284 (struct amdgpu_dm_connector *)acrtc_state->stream->dm_stream_context; 8285 8286 if (aconn->psr_skip_count > 0) 8287 aconn->psr_skip_count--; 8288 8289 /* Allow PSR when skip count is 0. */ 8290 acrtc_attach->dm_irq_params.allow_psr_entry = !aconn->psr_skip_count; 8291 8292 /* 8293 * If sink supports PSR SU, there is no need to rely on 8294 * a vblank event disable request to enable PSR. PSR SU 8295 * can be enabled immediately once OS demonstrates an 8296 * adequate number of fast atomic commits to notify KMD 8297 * of update events. See `vblank_control_worker()`. 8298 */ 8299 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 && 8300 acrtc_attach->dm_irq_params.allow_psr_entry && 8301 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY 8302 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) && 8303 #endif 8304 !acrtc_state->stream->link->psr_settings.psr_allow_active && 8305 (timestamp_ns - 8306 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns) > 8307 500000000) 8308 amdgpu_dm_psr_enable(acrtc_state->stream); 8309 } else { 8310 acrtc_attach->dm_irq_params.allow_psr_entry = false; 8311 } 8312 8313 mutex_unlock(&dm->dc_lock); 8314 } 8315 8316 /* 8317 * Update cursor state *after* programming all the planes. 8318 * This avoids redundant programming in the case where we're going 8319 * to be disabling a single plane - those pipes are being disabled. 8320 */ 8321 if (acrtc_state->active_planes) 8322 amdgpu_dm_commit_cursors(state); 8323 8324 cleanup: 8325 kfree(bundle); 8326 } 8327 8328 static void amdgpu_dm_commit_audio(struct drm_device *dev, 8329 struct drm_atomic_state *state) 8330 { 8331 struct amdgpu_device *adev = drm_to_adev(dev); 8332 struct amdgpu_dm_connector *aconnector; 8333 struct drm_connector *connector; 8334 struct drm_connector_state *old_con_state, *new_con_state; 8335 struct drm_crtc_state *new_crtc_state; 8336 struct dm_crtc_state *new_dm_crtc_state; 8337 const struct dc_stream_status *status; 8338 int i, inst; 8339 8340 /* Notify device removals. */ 8341 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 8342 if (old_con_state->crtc != new_con_state->crtc) { 8343 /* CRTC changes require notification. */ 8344 goto notify; 8345 } 8346 8347 if (!new_con_state->crtc) 8348 continue; 8349 8350 new_crtc_state = drm_atomic_get_new_crtc_state( 8351 state, new_con_state->crtc); 8352 8353 if (!new_crtc_state) 8354 continue; 8355 8356 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 8357 continue; 8358 8359 notify: 8360 aconnector = to_amdgpu_dm_connector(connector); 8361 8362 mutex_lock(&adev->dm.audio_lock); 8363 inst = aconnector->audio_inst; 8364 aconnector->audio_inst = -1; 8365 mutex_unlock(&adev->dm.audio_lock); 8366 8367 amdgpu_dm_audio_eld_notify(adev, inst); 8368 } 8369 8370 /* Notify audio device additions. */ 8371 for_each_new_connector_in_state(state, connector, new_con_state, i) { 8372 if (!new_con_state->crtc) 8373 continue; 8374 8375 new_crtc_state = drm_atomic_get_new_crtc_state( 8376 state, new_con_state->crtc); 8377 8378 if (!new_crtc_state) 8379 continue; 8380 8381 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 8382 continue; 8383 8384 new_dm_crtc_state = to_dm_crtc_state(new_crtc_state); 8385 if (!new_dm_crtc_state->stream) 8386 continue; 8387 8388 status = dc_stream_get_status(new_dm_crtc_state->stream); 8389 if (!status) 8390 continue; 8391 8392 aconnector = to_amdgpu_dm_connector(connector); 8393 8394 mutex_lock(&adev->dm.audio_lock); 8395 inst = status->audio_inst; 8396 aconnector->audio_inst = inst; 8397 mutex_unlock(&adev->dm.audio_lock); 8398 8399 amdgpu_dm_audio_eld_notify(adev, inst); 8400 } 8401 } 8402 8403 /* 8404 * amdgpu_dm_crtc_copy_transient_flags - copy mirrored flags from DRM to DC 8405 * @crtc_state: the DRM CRTC state 8406 * @stream_state: the DC stream state. 8407 * 8408 * Copy the mirrored transient state flags from DRM, to DC. It is used to bring 8409 * a dc_stream_state's flags in sync with a drm_crtc_state's flags. 8410 */ 8411 static void amdgpu_dm_crtc_copy_transient_flags(struct drm_crtc_state *crtc_state, 8412 struct dc_stream_state *stream_state) 8413 { 8414 stream_state->mode_changed = drm_atomic_crtc_needs_modeset(crtc_state); 8415 } 8416 8417 /** 8418 * amdgpu_dm_atomic_commit_tail() - AMDgpu DM's commit tail implementation. 8419 * @state: The atomic state to commit 8420 * 8421 * This will tell DC to commit the constructed DC state from atomic_check, 8422 * programming the hardware. Any failures here implies a hardware failure, since 8423 * atomic check should have filtered anything non-kosher. 8424 */ 8425 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state) 8426 { 8427 struct drm_device *dev = state->dev; 8428 struct amdgpu_device *adev = drm_to_adev(dev); 8429 struct amdgpu_display_manager *dm = &adev->dm; 8430 struct dm_atomic_state *dm_state; 8431 struct dc_state *dc_state = NULL, *dc_state_temp = NULL; 8432 u32 i, j; 8433 struct drm_crtc *crtc; 8434 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 8435 unsigned long flags; 8436 bool wait_for_vblank = true; 8437 struct drm_connector *connector; 8438 struct drm_connector_state *old_con_state, *new_con_state; 8439 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 8440 int crtc_disable_count = 0; 8441 bool mode_set_reset_required = false; 8442 int r; 8443 8444 trace_amdgpu_dm_atomic_commit_tail_begin(state); 8445 8446 r = drm_atomic_helper_wait_for_fences(dev, state, false); 8447 if (unlikely(r)) 8448 DRM_ERROR("Waiting for fences timed out!"); 8449 8450 drm_atomic_helper_update_legacy_modeset_state(dev, state); 8451 drm_dp_mst_atomic_wait_for_dependencies(state); 8452 8453 dm_state = dm_atomic_get_new_state(state); 8454 if (dm_state && dm_state->context) { 8455 dc_state = dm_state->context; 8456 } else { 8457 /* No state changes, retain current state. */ 8458 dc_state_temp = dc_create_state(dm->dc); 8459 ASSERT(dc_state_temp); 8460 dc_state = dc_state_temp; 8461 dc_resource_state_copy_construct_current(dm->dc, dc_state); 8462 } 8463 8464 for_each_oldnew_crtc_in_state (state, crtc, old_crtc_state, 8465 new_crtc_state, i) { 8466 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 8467 8468 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 8469 8470 if (old_crtc_state->active && 8471 (!new_crtc_state->active || 8472 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 8473 manage_dm_interrupts(adev, acrtc, false); 8474 dc_stream_release(dm_old_crtc_state->stream); 8475 } 8476 } 8477 8478 drm_atomic_helper_calc_timestamping_constants(state); 8479 8480 /* update changed items */ 8481 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 8482 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 8483 8484 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 8485 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 8486 8487 drm_dbg_state(state->dev, 8488 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, " 8489 "planes_changed:%d, mode_changed:%d,active_changed:%d," 8490 "connectors_changed:%d\n", 8491 acrtc->crtc_id, 8492 new_crtc_state->enable, 8493 new_crtc_state->active, 8494 new_crtc_state->planes_changed, 8495 new_crtc_state->mode_changed, 8496 new_crtc_state->active_changed, 8497 new_crtc_state->connectors_changed); 8498 8499 /* Disable cursor if disabling crtc */ 8500 if (old_crtc_state->active && !new_crtc_state->active) { 8501 struct dc_cursor_position position; 8502 8503 memset(&position, 0, sizeof(position)); 8504 mutex_lock(&dm->dc_lock); 8505 dc_stream_set_cursor_position(dm_old_crtc_state->stream, &position); 8506 mutex_unlock(&dm->dc_lock); 8507 } 8508 8509 /* Copy all transient state flags into dc state */ 8510 if (dm_new_crtc_state->stream) { 8511 amdgpu_dm_crtc_copy_transient_flags(&dm_new_crtc_state->base, 8512 dm_new_crtc_state->stream); 8513 } 8514 8515 /* handles headless hotplug case, updating new_state and 8516 * aconnector as needed 8517 */ 8518 8519 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, dm_new_crtc_state->stream, dm_old_crtc_state->stream)) { 8520 8521 DRM_DEBUG_ATOMIC("Atomic commit: SET crtc id %d: [%p]\n", acrtc->crtc_id, acrtc); 8522 8523 if (!dm_new_crtc_state->stream) { 8524 /* 8525 * this could happen because of issues with 8526 * userspace notifications delivery. 8527 * In this case userspace tries to set mode on 8528 * display which is disconnected in fact. 8529 * dc_sink is NULL in this case on aconnector. 8530 * We expect reset mode will come soon. 8531 * 8532 * This can also happen when unplug is done 8533 * during resume sequence ended 8534 * 8535 * In this case, we want to pretend we still 8536 * have a sink to keep the pipe running so that 8537 * hw state is consistent with the sw state 8538 */ 8539 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n", 8540 __func__, acrtc->base.base.id); 8541 continue; 8542 } 8543 8544 if (dm_old_crtc_state->stream) 8545 remove_stream(adev, acrtc, dm_old_crtc_state->stream); 8546 8547 pm_runtime_get_noresume(dev->dev); 8548 8549 acrtc->enabled = true; 8550 acrtc->hw_mode = new_crtc_state->mode; 8551 crtc->hwmode = new_crtc_state->mode; 8552 mode_set_reset_required = true; 8553 } else if (modereset_required(new_crtc_state)) { 8554 DRM_DEBUG_ATOMIC("Atomic commit: RESET. crtc id %d:[%p]\n", acrtc->crtc_id, acrtc); 8555 /* i.e. reset mode */ 8556 if (dm_old_crtc_state->stream) 8557 remove_stream(adev, acrtc, dm_old_crtc_state->stream); 8558 8559 mode_set_reset_required = true; 8560 } 8561 } /* for_each_crtc_in_state() */ 8562 8563 if (dc_state) { 8564 /* if there mode set or reset, disable eDP PSR */ 8565 if (mode_set_reset_required) { 8566 if (dm->vblank_control_workqueue) 8567 flush_workqueue(dm->vblank_control_workqueue); 8568 8569 amdgpu_dm_psr_disable_all(dm); 8570 } 8571 8572 dm_enable_per_frame_crtc_master_sync(dc_state); 8573 mutex_lock(&dm->dc_lock); 8574 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count)); 8575 8576 /* Allow idle optimization when vblank count is 0 for display off */ 8577 if (dm->active_vblank_irq_count == 0) 8578 dc_allow_idle_optimizations(dm->dc, true); 8579 mutex_unlock(&dm->dc_lock); 8580 } 8581 8582 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 8583 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 8584 8585 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 8586 8587 if (dm_new_crtc_state->stream != NULL) { 8588 const struct dc_stream_status *status = 8589 dc_stream_get_status(dm_new_crtc_state->stream); 8590 8591 if (!status) 8592 status = dc_stream_get_status_from_state(dc_state, 8593 dm_new_crtc_state->stream); 8594 if (!status) 8595 DC_ERR("got no status for stream %p on acrtc%p\n", dm_new_crtc_state->stream, acrtc); 8596 else 8597 acrtc->otg_inst = status->primary_otg_inst; 8598 } 8599 } 8600 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 8601 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 8602 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 8603 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 8604 8605 if (!adev->dm.hdcp_workqueue) 8606 continue; 8607 8608 pr_debug("[HDCP_DM] -------------- i : %x ----------\n", i); 8609 8610 if (!connector) 8611 continue; 8612 8613 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n", 8614 connector->index, connector->status, connector->dpms); 8615 pr_debug("[HDCP_DM] state protection old: %x new: %x\n", 8616 old_con_state->content_protection, new_con_state->content_protection); 8617 8618 if (aconnector->dc_sink) { 8619 if (aconnector->dc_sink->sink_signal != SIGNAL_TYPE_VIRTUAL && 8620 aconnector->dc_sink->sink_signal != SIGNAL_TYPE_NONE) { 8621 pr_debug("[HDCP_DM] pipe_ctx dispname=%s\n", 8622 aconnector->dc_sink->edid_caps.display_name); 8623 } 8624 } 8625 8626 new_crtc_state = NULL; 8627 old_crtc_state = NULL; 8628 8629 if (acrtc) { 8630 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base); 8631 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base); 8632 } 8633 8634 if (old_crtc_state) 8635 pr_debug("old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 8636 old_crtc_state->enable, 8637 old_crtc_state->active, 8638 old_crtc_state->mode_changed, 8639 old_crtc_state->active_changed, 8640 old_crtc_state->connectors_changed); 8641 8642 if (new_crtc_state) 8643 pr_debug("NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 8644 new_crtc_state->enable, 8645 new_crtc_state->active, 8646 new_crtc_state->mode_changed, 8647 new_crtc_state->active_changed, 8648 new_crtc_state->connectors_changed); 8649 } 8650 8651 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 8652 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 8653 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 8654 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 8655 8656 if (!adev->dm.hdcp_workqueue) 8657 continue; 8658 8659 new_crtc_state = NULL; 8660 old_crtc_state = NULL; 8661 8662 if (acrtc) { 8663 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base); 8664 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base); 8665 } 8666 8667 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 8668 8669 if (dm_new_crtc_state && dm_new_crtc_state->stream == NULL && 8670 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) { 8671 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index); 8672 new_con_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 8673 dm_new_con_state->update_hdcp = true; 8674 continue; 8675 } 8676 8677 if (is_content_protection_different(new_crtc_state, old_crtc_state, new_con_state, 8678 old_con_state, connector, adev->dm.hdcp_workqueue)) { 8679 /* when display is unplugged from mst hub, connctor will 8680 * be destroyed within dm_dp_mst_connector_destroy. connector 8681 * hdcp perperties, like type, undesired, desired, enabled, 8682 * will be lost. So, save hdcp properties into hdcp_work within 8683 * amdgpu_dm_atomic_commit_tail. if the same display is 8684 * plugged back with same display index, its hdcp properties 8685 * will be retrieved from hdcp_work within dm_dp_mst_get_modes 8686 */ 8687 8688 bool enable_encryption = false; 8689 8690 if (new_con_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) 8691 enable_encryption = true; 8692 8693 if (aconnector->dc_link && aconnector->dc_sink && 8694 aconnector->dc_link->type == dc_connection_mst_branch) { 8695 struct hdcp_workqueue *hdcp_work = adev->dm.hdcp_workqueue; 8696 struct hdcp_workqueue *hdcp_w = 8697 &hdcp_work[aconnector->dc_link->link_index]; 8698 8699 hdcp_w->hdcp_content_type[connector->index] = 8700 new_con_state->hdcp_content_type; 8701 hdcp_w->content_protection[connector->index] = 8702 new_con_state->content_protection; 8703 } 8704 8705 if (new_crtc_state && new_crtc_state->mode_changed && 8706 new_con_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) 8707 enable_encryption = true; 8708 8709 DRM_INFO("[HDCP_DM] hdcp_update_display enable_encryption = %x\n", enable_encryption); 8710 8711 hdcp_update_display( 8712 adev->dm.hdcp_workqueue, aconnector->dc_link->link_index, aconnector, 8713 new_con_state->hdcp_content_type, enable_encryption); 8714 } 8715 } 8716 8717 /* Handle connector state changes */ 8718 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 8719 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 8720 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state); 8721 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 8722 struct dc_surface_update dummy_updates[MAX_SURFACES]; 8723 struct dc_stream_update stream_update; 8724 struct dc_info_packet hdr_packet; 8725 struct dc_stream_status *status = NULL; 8726 bool abm_changed, hdr_changed, scaling_changed; 8727 8728 memset(&dummy_updates, 0, sizeof(dummy_updates)); 8729 memset(&stream_update, 0, sizeof(stream_update)); 8730 8731 if (acrtc) { 8732 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base); 8733 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base); 8734 } 8735 8736 /* Skip any modesets/resets */ 8737 if (!acrtc || drm_atomic_crtc_needs_modeset(new_crtc_state)) 8738 continue; 8739 8740 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 8741 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 8742 8743 scaling_changed = is_scaling_state_different(dm_new_con_state, 8744 dm_old_con_state); 8745 8746 abm_changed = dm_new_crtc_state->abm_level != 8747 dm_old_crtc_state->abm_level; 8748 8749 hdr_changed = 8750 !drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state); 8751 8752 if (!scaling_changed && !abm_changed && !hdr_changed) 8753 continue; 8754 8755 stream_update.stream = dm_new_crtc_state->stream; 8756 if (scaling_changed) { 8757 update_stream_scaling_settings(&dm_new_con_state->base.crtc->mode, 8758 dm_new_con_state, dm_new_crtc_state->stream); 8759 8760 stream_update.src = dm_new_crtc_state->stream->src; 8761 stream_update.dst = dm_new_crtc_state->stream->dst; 8762 } 8763 8764 if (abm_changed) { 8765 dm_new_crtc_state->stream->abm_level = dm_new_crtc_state->abm_level; 8766 8767 stream_update.abm_level = &dm_new_crtc_state->abm_level; 8768 } 8769 8770 if (hdr_changed) { 8771 fill_hdr_info_packet(new_con_state, &hdr_packet); 8772 stream_update.hdr_static_metadata = &hdr_packet; 8773 } 8774 8775 status = dc_stream_get_status(dm_new_crtc_state->stream); 8776 8777 if (WARN_ON(!status)) 8778 continue; 8779 8780 WARN_ON(!status->plane_count); 8781 8782 /* 8783 * TODO: DC refuses to perform stream updates without a dc_surface_update. 8784 * Here we create an empty update on each plane. 8785 * To fix this, DC should permit updating only stream properties. 8786 */ 8787 for (j = 0; j < status->plane_count; j++) 8788 dummy_updates[j].surface = status->plane_states[0]; 8789 8790 8791 mutex_lock(&dm->dc_lock); 8792 dc_update_planes_and_stream(dm->dc, 8793 dummy_updates, 8794 status->plane_count, 8795 dm_new_crtc_state->stream, 8796 &stream_update); 8797 mutex_unlock(&dm->dc_lock); 8798 } 8799 8800 /** 8801 * Enable interrupts for CRTCs that are newly enabled or went through 8802 * a modeset. It was intentionally deferred until after the front end 8803 * state was modified to wait until the OTG was on and so the IRQ 8804 * handlers didn't access stale or invalid state. 8805 */ 8806 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 8807 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 8808 #ifdef CONFIG_DEBUG_FS 8809 enum amdgpu_dm_pipe_crc_source cur_crc_src; 8810 #endif 8811 /* Count number of newly disabled CRTCs for dropping PM refs later. */ 8812 if (old_crtc_state->active && !new_crtc_state->active) 8813 crtc_disable_count++; 8814 8815 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 8816 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 8817 8818 /* For freesync config update on crtc state and params for irq */ 8819 update_stream_irq_parameters(dm, dm_new_crtc_state); 8820 8821 #ifdef CONFIG_DEBUG_FS 8822 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 8823 cur_crc_src = acrtc->dm_irq_params.crc_src; 8824 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 8825 #endif 8826 8827 if (new_crtc_state->active && 8828 (!old_crtc_state->active || 8829 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 8830 dc_stream_retain(dm_new_crtc_state->stream); 8831 acrtc->dm_irq_params.stream = dm_new_crtc_state->stream; 8832 manage_dm_interrupts(adev, acrtc, true); 8833 } 8834 /* Handle vrr on->off / off->on transitions */ 8835 amdgpu_dm_handle_vrr_transition(dm_old_crtc_state, dm_new_crtc_state); 8836 8837 #ifdef CONFIG_DEBUG_FS 8838 if (new_crtc_state->active && 8839 (!old_crtc_state->active || 8840 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 8841 /** 8842 * Frontend may have changed so reapply the CRC capture 8843 * settings for the stream. 8844 */ 8845 if (amdgpu_dm_is_valid_crc_source(cur_crc_src)) { 8846 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 8847 if (amdgpu_dm_crc_window_is_activated(crtc)) { 8848 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 8849 acrtc->dm_irq_params.window_param.update_win = true; 8850 8851 /** 8852 * It takes 2 frames for HW to stably generate CRC when 8853 * resuming from suspend, so we set skip_frame_cnt 2. 8854 */ 8855 acrtc->dm_irq_params.window_param.skip_frame_cnt = 2; 8856 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 8857 } 8858 #endif 8859 if (amdgpu_dm_crtc_configure_crc_source( 8860 crtc, dm_new_crtc_state, cur_crc_src)) 8861 DRM_DEBUG_DRIVER("Failed to configure crc source"); 8862 } 8863 } 8864 #endif 8865 } 8866 8867 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) 8868 if (new_crtc_state->async_flip) 8869 wait_for_vblank = false; 8870 8871 /* update planes when needed per crtc*/ 8872 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) { 8873 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 8874 8875 if (dm_new_crtc_state->stream) 8876 amdgpu_dm_commit_planes(state, dc_state, dev, 8877 dm, crtc, wait_for_vblank); 8878 } 8879 8880 /* Update audio instances for each connector. */ 8881 amdgpu_dm_commit_audio(dev, state); 8882 8883 /* restore the backlight level */ 8884 for (i = 0; i < dm->num_of_edps; i++) { 8885 if (dm->backlight_dev[i] && 8886 (dm->actual_brightness[i] != dm->brightness[i])) 8887 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]); 8888 } 8889 8890 /* 8891 * send vblank event on all events not handled in flip and 8892 * mark consumed event for drm_atomic_helper_commit_hw_done 8893 */ 8894 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 8895 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 8896 8897 if (new_crtc_state->event) 8898 drm_send_event_locked(dev, &new_crtc_state->event->base); 8899 8900 new_crtc_state->event = NULL; 8901 } 8902 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 8903 8904 /* Signal HW programming completion */ 8905 drm_atomic_helper_commit_hw_done(state); 8906 8907 if (wait_for_vblank) 8908 drm_atomic_helper_wait_for_flip_done(dev, state); 8909 8910 drm_atomic_helper_cleanup_planes(dev, state); 8911 8912 /* return the stolen vga memory back to VRAM */ 8913 if (!adev->mman.keep_stolen_vga_memory) 8914 amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL); 8915 amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL); 8916 8917 /* 8918 * Finally, drop a runtime PM reference for each newly disabled CRTC, 8919 * so we can put the GPU into runtime suspend if we're not driving any 8920 * displays anymore 8921 */ 8922 for (i = 0; i < crtc_disable_count; i++) 8923 pm_runtime_put_autosuspend(dev->dev); 8924 pm_runtime_mark_last_busy(dev->dev); 8925 8926 if (dc_state_temp) 8927 dc_release_state(dc_state_temp); 8928 } 8929 8930 static int dm_force_atomic_commit(struct drm_connector *connector) 8931 { 8932 int ret = 0; 8933 struct drm_device *ddev = connector->dev; 8934 struct drm_atomic_state *state = drm_atomic_state_alloc(ddev); 8935 struct amdgpu_crtc *disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc); 8936 struct drm_plane *plane = disconnected_acrtc->base.primary; 8937 struct drm_connector_state *conn_state; 8938 struct drm_crtc_state *crtc_state; 8939 struct drm_plane_state *plane_state; 8940 8941 if (!state) 8942 return -ENOMEM; 8943 8944 state->acquire_ctx = ddev->mode_config.acquire_ctx; 8945 8946 /* Construct an atomic state to restore previous display setting */ 8947 8948 /* 8949 * Attach connectors to drm_atomic_state 8950 */ 8951 conn_state = drm_atomic_get_connector_state(state, connector); 8952 8953 ret = PTR_ERR_OR_ZERO(conn_state); 8954 if (ret) 8955 goto out; 8956 8957 /* Attach crtc to drm_atomic_state*/ 8958 crtc_state = drm_atomic_get_crtc_state(state, &disconnected_acrtc->base); 8959 8960 ret = PTR_ERR_OR_ZERO(crtc_state); 8961 if (ret) 8962 goto out; 8963 8964 /* force a restore */ 8965 crtc_state->mode_changed = true; 8966 8967 /* Attach plane to drm_atomic_state */ 8968 plane_state = drm_atomic_get_plane_state(state, plane); 8969 8970 ret = PTR_ERR_OR_ZERO(plane_state); 8971 if (ret) 8972 goto out; 8973 8974 /* Call commit internally with the state we just constructed */ 8975 ret = drm_atomic_commit(state); 8976 8977 out: 8978 drm_atomic_state_put(state); 8979 if (ret) 8980 DRM_ERROR("Restoring old state failed with %i\n", ret); 8981 8982 return ret; 8983 } 8984 8985 /* 8986 * This function handles all cases when set mode does not come upon hotplug. 8987 * This includes when a display is unplugged then plugged back into the 8988 * same port and when running without usermode desktop manager supprot 8989 */ 8990 void dm_restore_drm_connector_state(struct drm_device *dev, 8991 struct drm_connector *connector) 8992 { 8993 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 8994 struct amdgpu_crtc *disconnected_acrtc; 8995 struct dm_crtc_state *acrtc_state; 8996 8997 if (!aconnector->dc_sink || !connector->state || !connector->encoder) 8998 return; 8999 9000 disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc); 9001 if (!disconnected_acrtc) 9002 return; 9003 9004 acrtc_state = to_dm_crtc_state(disconnected_acrtc->base.state); 9005 if (!acrtc_state->stream) 9006 return; 9007 9008 /* 9009 * If the previous sink is not released and different from the current, 9010 * we deduce we are in a state where we can not rely on usermode call 9011 * to turn on the display, so we do it here 9012 */ 9013 if (acrtc_state->stream->sink != aconnector->dc_sink) 9014 dm_force_atomic_commit(&aconnector->base); 9015 } 9016 9017 /* 9018 * Grabs all modesetting locks to serialize against any blocking commits, 9019 * Waits for completion of all non blocking commits. 9020 */ 9021 static int do_aquire_global_lock(struct drm_device *dev, 9022 struct drm_atomic_state *state) 9023 { 9024 struct drm_crtc *crtc; 9025 struct drm_crtc_commit *commit; 9026 long ret; 9027 9028 /* 9029 * Adding all modeset locks to aquire_ctx will 9030 * ensure that when the framework release it the 9031 * extra locks we are locking here will get released to 9032 */ 9033 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx); 9034 if (ret) 9035 return ret; 9036 9037 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 9038 spin_lock(&crtc->commit_lock); 9039 commit = list_first_entry_or_null(&crtc->commit_list, 9040 struct drm_crtc_commit, commit_entry); 9041 if (commit) 9042 drm_crtc_commit_get(commit); 9043 spin_unlock(&crtc->commit_lock); 9044 9045 if (!commit) 9046 continue; 9047 9048 /* 9049 * Make sure all pending HW programming completed and 9050 * page flips done 9051 */ 9052 ret = wait_for_completion_interruptible_timeout(&commit->hw_done, 10*HZ); 9053 9054 if (ret > 0) 9055 ret = wait_for_completion_interruptible_timeout( 9056 &commit->flip_done, 10*HZ); 9057 9058 if (ret == 0) 9059 DRM_ERROR("[CRTC:%d:%s] hw_done or flip_done " 9060 "timed out\n", crtc->base.id, crtc->name); 9061 9062 drm_crtc_commit_put(commit); 9063 } 9064 9065 return ret < 0 ? ret : 0; 9066 } 9067 9068 static void get_freesync_config_for_crtc( 9069 struct dm_crtc_state *new_crtc_state, 9070 struct dm_connector_state *new_con_state) 9071 { 9072 struct mod_freesync_config config = {0}; 9073 struct amdgpu_dm_connector *aconnector = 9074 to_amdgpu_dm_connector(new_con_state->base.connector); 9075 struct drm_display_mode *mode = &new_crtc_state->base.mode; 9076 int vrefresh = drm_mode_vrefresh(mode); 9077 bool fs_vid_mode = false; 9078 9079 new_crtc_state->vrr_supported = new_con_state->freesync_capable && 9080 vrefresh >= aconnector->min_vfreq && 9081 vrefresh <= aconnector->max_vfreq; 9082 9083 if (new_crtc_state->vrr_supported) { 9084 new_crtc_state->stream->ignore_msa_timing_param = true; 9085 fs_vid_mode = new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED; 9086 9087 config.min_refresh_in_uhz = aconnector->min_vfreq * 1000000; 9088 config.max_refresh_in_uhz = aconnector->max_vfreq * 1000000; 9089 config.vsif_supported = true; 9090 config.btr = true; 9091 9092 if (fs_vid_mode) { 9093 config.state = VRR_STATE_ACTIVE_FIXED; 9094 config.fixed_refresh_in_uhz = new_crtc_state->freesync_config.fixed_refresh_in_uhz; 9095 goto out; 9096 } else if (new_crtc_state->base.vrr_enabled) { 9097 config.state = VRR_STATE_ACTIVE_VARIABLE; 9098 } else { 9099 config.state = VRR_STATE_INACTIVE; 9100 } 9101 } 9102 out: 9103 new_crtc_state->freesync_config = config; 9104 } 9105 9106 static void reset_freesync_config_for_crtc( 9107 struct dm_crtc_state *new_crtc_state) 9108 { 9109 new_crtc_state->vrr_supported = false; 9110 9111 memset(&new_crtc_state->vrr_infopacket, 0, 9112 sizeof(new_crtc_state->vrr_infopacket)); 9113 } 9114 9115 static bool 9116 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state, 9117 struct drm_crtc_state *new_crtc_state) 9118 { 9119 const struct drm_display_mode *old_mode, *new_mode; 9120 9121 if (!old_crtc_state || !new_crtc_state) 9122 return false; 9123 9124 old_mode = &old_crtc_state->mode; 9125 new_mode = &new_crtc_state->mode; 9126 9127 if (old_mode->clock == new_mode->clock && 9128 old_mode->hdisplay == new_mode->hdisplay && 9129 old_mode->vdisplay == new_mode->vdisplay && 9130 old_mode->htotal == new_mode->htotal && 9131 old_mode->vtotal != new_mode->vtotal && 9132 old_mode->hsync_start == new_mode->hsync_start && 9133 old_mode->vsync_start != new_mode->vsync_start && 9134 old_mode->hsync_end == new_mode->hsync_end && 9135 old_mode->vsync_end != new_mode->vsync_end && 9136 old_mode->hskew == new_mode->hskew && 9137 old_mode->vscan == new_mode->vscan && 9138 (old_mode->vsync_end - old_mode->vsync_start) == 9139 (new_mode->vsync_end - new_mode->vsync_start)) 9140 return true; 9141 9142 return false; 9143 } 9144 9145 static void set_freesync_fixed_config(struct dm_crtc_state *dm_new_crtc_state) { 9146 u64 num, den, res; 9147 struct drm_crtc_state *new_crtc_state = &dm_new_crtc_state->base; 9148 9149 dm_new_crtc_state->freesync_config.state = VRR_STATE_ACTIVE_FIXED; 9150 9151 num = (unsigned long long)new_crtc_state->mode.clock * 1000 * 1000000; 9152 den = (unsigned long long)new_crtc_state->mode.htotal * 9153 (unsigned long long)new_crtc_state->mode.vtotal; 9154 9155 res = div_u64(num, den); 9156 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = res; 9157 } 9158 9159 static int dm_update_crtc_state(struct amdgpu_display_manager *dm, 9160 struct drm_atomic_state *state, 9161 struct drm_crtc *crtc, 9162 struct drm_crtc_state *old_crtc_state, 9163 struct drm_crtc_state *new_crtc_state, 9164 bool enable, 9165 bool *lock_and_validation_needed) 9166 { 9167 struct dm_atomic_state *dm_state = NULL; 9168 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 9169 struct dc_stream_state *new_stream; 9170 int ret = 0; 9171 9172 /* 9173 * TODO Move this code into dm_crtc_atomic_check once we get rid of dc_validation_set 9174 * update changed items 9175 */ 9176 struct amdgpu_crtc *acrtc = NULL; 9177 struct amdgpu_dm_connector *aconnector = NULL; 9178 struct drm_connector_state *drm_new_conn_state = NULL, *drm_old_conn_state = NULL; 9179 struct dm_connector_state *dm_new_conn_state = NULL, *dm_old_conn_state = NULL; 9180 9181 new_stream = NULL; 9182 9183 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 9184 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 9185 acrtc = to_amdgpu_crtc(crtc); 9186 aconnector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc); 9187 9188 /* TODO This hack should go away */ 9189 if (aconnector && enable) { 9190 /* Make sure fake sink is created in plug-in scenario */ 9191 drm_new_conn_state = drm_atomic_get_new_connector_state(state, 9192 &aconnector->base); 9193 drm_old_conn_state = drm_atomic_get_old_connector_state(state, 9194 &aconnector->base); 9195 9196 if (IS_ERR(drm_new_conn_state)) { 9197 ret = PTR_ERR_OR_ZERO(drm_new_conn_state); 9198 goto fail; 9199 } 9200 9201 dm_new_conn_state = to_dm_connector_state(drm_new_conn_state); 9202 dm_old_conn_state = to_dm_connector_state(drm_old_conn_state); 9203 9204 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 9205 goto skip_modeset; 9206 9207 new_stream = create_validate_stream_for_sink(aconnector, 9208 &new_crtc_state->mode, 9209 dm_new_conn_state, 9210 dm_old_crtc_state->stream); 9211 9212 /* 9213 * we can have no stream on ACTION_SET if a display 9214 * was disconnected during S3, in this case it is not an 9215 * error, the OS will be updated after detection, and 9216 * will do the right thing on next atomic commit 9217 */ 9218 9219 if (!new_stream) { 9220 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n", 9221 __func__, acrtc->base.base.id); 9222 ret = -ENOMEM; 9223 goto fail; 9224 } 9225 9226 /* 9227 * TODO: Check VSDB bits to decide whether this should 9228 * be enabled or not. 9229 */ 9230 new_stream->triggered_crtc_reset.enabled = 9231 dm->force_timing_sync; 9232 9233 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level; 9234 9235 ret = fill_hdr_info_packet(drm_new_conn_state, 9236 &new_stream->hdr_static_metadata); 9237 if (ret) 9238 goto fail; 9239 9240 /* 9241 * If we already removed the old stream from the context 9242 * (and set the new stream to NULL) then we can't reuse 9243 * the old stream even if the stream and scaling are unchanged. 9244 * We'll hit the BUG_ON and black screen. 9245 * 9246 * TODO: Refactor this function to allow this check to work 9247 * in all conditions. 9248 */ 9249 if (amdgpu_freesync_vid_mode && 9250 dm_new_crtc_state->stream && 9251 is_timing_unchanged_for_freesync(new_crtc_state, old_crtc_state)) 9252 goto skip_modeset; 9253 9254 if (dm_new_crtc_state->stream && 9255 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) && 9256 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream)) { 9257 new_crtc_state->mode_changed = false; 9258 DRM_DEBUG_DRIVER("Mode change not required, setting mode_changed to %d", 9259 new_crtc_state->mode_changed); 9260 } 9261 } 9262 9263 /* mode_changed flag may get updated above, need to check again */ 9264 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 9265 goto skip_modeset; 9266 9267 drm_dbg_state(state->dev, 9268 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, " 9269 "planes_changed:%d, mode_changed:%d,active_changed:%d," 9270 "connectors_changed:%d\n", 9271 acrtc->crtc_id, 9272 new_crtc_state->enable, 9273 new_crtc_state->active, 9274 new_crtc_state->planes_changed, 9275 new_crtc_state->mode_changed, 9276 new_crtc_state->active_changed, 9277 new_crtc_state->connectors_changed); 9278 9279 /* Remove stream for any changed/disabled CRTC */ 9280 if (!enable) { 9281 9282 if (!dm_old_crtc_state->stream) 9283 goto skip_modeset; 9284 9285 /* Unset freesync video if it was active before */ 9286 if (dm_old_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) { 9287 dm_new_crtc_state->freesync_config.state = VRR_STATE_INACTIVE; 9288 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = 0; 9289 } 9290 9291 /* Now check if we should set freesync video mode */ 9292 if (amdgpu_freesync_vid_mode && dm_new_crtc_state->stream && 9293 is_timing_unchanged_for_freesync(new_crtc_state, 9294 old_crtc_state)) { 9295 new_crtc_state->mode_changed = false; 9296 DRM_DEBUG_DRIVER( 9297 "Mode change not required for front porch change, " 9298 "setting mode_changed to %d", 9299 new_crtc_state->mode_changed); 9300 9301 set_freesync_fixed_config(dm_new_crtc_state); 9302 9303 goto skip_modeset; 9304 } else if (amdgpu_freesync_vid_mode && aconnector && 9305 is_freesync_video_mode(&new_crtc_state->mode, 9306 aconnector)) { 9307 struct drm_display_mode *high_mode; 9308 9309 high_mode = get_highest_refresh_rate_mode(aconnector, false); 9310 if (!drm_mode_equal(&new_crtc_state->mode, high_mode)) { 9311 set_freesync_fixed_config(dm_new_crtc_state); 9312 } 9313 } 9314 9315 ret = dm_atomic_get_state(state, &dm_state); 9316 if (ret) 9317 goto fail; 9318 9319 DRM_DEBUG_DRIVER("Disabling DRM crtc: %d\n", 9320 crtc->base.id); 9321 9322 /* i.e. reset mode */ 9323 if (dc_remove_stream_from_ctx( 9324 dm->dc, 9325 dm_state->context, 9326 dm_old_crtc_state->stream) != DC_OK) { 9327 ret = -EINVAL; 9328 goto fail; 9329 } 9330 9331 dc_stream_release(dm_old_crtc_state->stream); 9332 dm_new_crtc_state->stream = NULL; 9333 9334 reset_freesync_config_for_crtc(dm_new_crtc_state); 9335 9336 *lock_and_validation_needed = true; 9337 9338 } else {/* Add stream for any updated/enabled CRTC */ 9339 /* 9340 * Quick fix to prevent NULL pointer on new_stream when 9341 * added MST connectors not found in existing crtc_state in the chained mode 9342 * TODO: need to dig out the root cause of that 9343 */ 9344 if (!aconnector) 9345 goto skip_modeset; 9346 9347 if (modereset_required(new_crtc_state)) 9348 goto skip_modeset; 9349 9350 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, new_stream, 9351 dm_old_crtc_state->stream)) { 9352 9353 WARN_ON(dm_new_crtc_state->stream); 9354 9355 ret = dm_atomic_get_state(state, &dm_state); 9356 if (ret) 9357 goto fail; 9358 9359 dm_new_crtc_state->stream = new_stream; 9360 9361 dc_stream_retain(new_stream); 9362 9363 DRM_DEBUG_ATOMIC("Enabling DRM crtc: %d\n", 9364 crtc->base.id); 9365 9366 if (dc_add_stream_to_ctx( 9367 dm->dc, 9368 dm_state->context, 9369 dm_new_crtc_state->stream) != DC_OK) { 9370 ret = -EINVAL; 9371 goto fail; 9372 } 9373 9374 *lock_and_validation_needed = true; 9375 } 9376 } 9377 9378 skip_modeset: 9379 /* Release extra reference */ 9380 if (new_stream) 9381 dc_stream_release(new_stream); 9382 9383 /* 9384 * We want to do dc stream updates that do not require a 9385 * full modeset below. 9386 */ 9387 if (!(enable && aconnector && new_crtc_state->active)) 9388 return 0; 9389 /* 9390 * Given above conditions, the dc state cannot be NULL because: 9391 * 1. We're in the process of enabling CRTCs (just been added 9392 * to the dc context, or already is on the context) 9393 * 2. Has a valid connector attached, and 9394 * 3. Is currently active and enabled. 9395 * => The dc stream state currently exists. 9396 */ 9397 BUG_ON(dm_new_crtc_state->stream == NULL); 9398 9399 /* Scaling or underscan settings */ 9400 if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) || 9401 drm_atomic_crtc_needs_modeset(new_crtc_state)) 9402 update_stream_scaling_settings( 9403 &new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream); 9404 9405 /* ABM settings */ 9406 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level; 9407 9408 /* 9409 * Color management settings. We also update color properties 9410 * when a modeset is needed, to ensure it gets reprogrammed. 9411 */ 9412 if (dm_new_crtc_state->base.color_mgmt_changed || 9413 drm_atomic_crtc_needs_modeset(new_crtc_state)) { 9414 ret = amdgpu_dm_update_crtc_color_mgmt(dm_new_crtc_state); 9415 if (ret) 9416 goto fail; 9417 } 9418 9419 /* Update Freesync settings. */ 9420 get_freesync_config_for_crtc(dm_new_crtc_state, 9421 dm_new_conn_state); 9422 9423 return ret; 9424 9425 fail: 9426 if (new_stream) 9427 dc_stream_release(new_stream); 9428 return ret; 9429 } 9430 9431 static bool should_reset_plane(struct drm_atomic_state *state, 9432 struct drm_plane *plane, 9433 struct drm_plane_state *old_plane_state, 9434 struct drm_plane_state *new_plane_state) 9435 { 9436 struct drm_plane *other; 9437 struct drm_plane_state *old_other_state, *new_other_state; 9438 struct drm_crtc_state *new_crtc_state; 9439 int i; 9440 9441 /* 9442 * TODO: Remove this hack once the checks below are sufficient 9443 * enough to determine when we need to reset all the planes on 9444 * the stream. 9445 */ 9446 if (state->allow_modeset) 9447 return true; 9448 9449 /* Exit early if we know that we're adding or removing the plane. */ 9450 if (old_plane_state->crtc != new_plane_state->crtc) 9451 return true; 9452 9453 /* old crtc == new_crtc == NULL, plane not in context. */ 9454 if (!new_plane_state->crtc) 9455 return false; 9456 9457 new_crtc_state = 9458 drm_atomic_get_new_crtc_state(state, new_plane_state->crtc); 9459 9460 if (!new_crtc_state) 9461 return true; 9462 9463 /* CRTC Degamma changes currently require us to recreate planes. */ 9464 if (new_crtc_state->color_mgmt_changed) 9465 return true; 9466 9467 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) 9468 return true; 9469 9470 /* 9471 * If there are any new primary or overlay planes being added or 9472 * removed then the z-order can potentially change. To ensure 9473 * correct z-order and pipe acquisition the current DC architecture 9474 * requires us to remove and recreate all existing planes. 9475 * 9476 * TODO: Come up with a more elegant solution for this. 9477 */ 9478 for_each_oldnew_plane_in_state(state, other, old_other_state, new_other_state, i) { 9479 struct amdgpu_framebuffer *old_afb, *new_afb; 9480 if (other->type == DRM_PLANE_TYPE_CURSOR) 9481 continue; 9482 9483 if (old_other_state->crtc != new_plane_state->crtc && 9484 new_other_state->crtc != new_plane_state->crtc) 9485 continue; 9486 9487 if (old_other_state->crtc != new_other_state->crtc) 9488 return true; 9489 9490 /* Src/dst size and scaling updates. */ 9491 if (old_other_state->src_w != new_other_state->src_w || 9492 old_other_state->src_h != new_other_state->src_h || 9493 old_other_state->crtc_w != new_other_state->crtc_w || 9494 old_other_state->crtc_h != new_other_state->crtc_h) 9495 return true; 9496 9497 /* Rotation / mirroring updates. */ 9498 if (old_other_state->rotation != new_other_state->rotation) 9499 return true; 9500 9501 /* Blending updates. */ 9502 if (old_other_state->pixel_blend_mode != 9503 new_other_state->pixel_blend_mode) 9504 return true; 9505 9506 /* Alpha updates. */ 9507 if (old_other_state->alpha != new_other_state->alpha) 9508 return true; 9509 9510 /* Colorspace changes. */ 9511 if (old_other_state->color_range != new_other_state->color_range || 9512 old_other_state->color_encoding != new_other_state->color_encoding) 9513 return true; 9514 9515 /* Framebuffer checks fall at the end. */ 9516 if (!old_other_state->fb || !new_other_state->fb) 9517 continue; 9518 9519 /* Pixel format changes can require bandwidth updates. */ 9520 if (old_other_state->fb->format != new_other_state->fb->format) 9521 return true; 9522 9523 old_afb = (struct amdgpu_framebuffer *)old_other_state->fb; 9524 new_afb = (struct amdgpu_framebuffer *)new_other_state->fb; 9525 9526 /* Tiling and DCC changes also require bandwidth updates. */ 9527 if (old_afb->tiling_flags != new_afb->tiling_flags || 9528 old_afb->base.modifier != new_afb->base.modifier) 9529 return true; 9530 } 9531 9532 return false; 9533 } 9534 9535 static int dm_check_cursor_fb(struct amdgpu_crtc *new_acrtc, 9536 struct drm_plane_state *new_plane_state, 9537 struct drm_framebuffer *fb) 9538 { 9539 struct amdgpu_device *adev = drm_to_adev(new_acrtc->base.dev); 9540 struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(fb); 9541 unsigned int pitch; 9542 bool linear; 9543 9544 if (fb->width > new_acrtc->max_cursor_width || 9545 fb->height > new_acrtc->max_cursor_height) { 9546 DRM_DEBUG_ATOMIC("Bad cursor FB size %dx%d\n", 9547 new_plane_state->fb->width, 9548 new_plane_state->fb->height); 9549 return -EINVAL; 9550 } 9551 if (new_plane_state->src_w != fb->width << 16 || 9552 new_plane_state->src_h != fb->height << 16) { 9553 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n"); 9554 return -EINVAL; 9555 } 9556 9557 /* Pitch in pixels */ 9558 pitch = fb->pitches[0] / fb->format->cpp[0]; 9559 9560 if (fb->width != pitch) { 9561 DRM_DEBUG_ATOMIC("Cursor FB width %d doesn't match pitch %d", 9562 fb->width, pitch); 9563 return -EINVAL; 9564 } 9565 9566 switch (pitch) { 9567 case 64: 9568 case 128: 9569 case 256: 9570 /* FB pitch is supported by cursor plane */ 9571 break; 9572 default: 9573 DRM_DEBUG_ATOMIC("Bad cursor FB pitch %d px\n", pitch); 9574 return -EINVAL; 9575 } 9576 9577 /* Core DRM takes care of checking FB modifiers, so we only need to 9578 * check tiling flags when the FB doesn't have a modifier. */ 9579 if (!(fb->flags & DRM_MODE_FB_MODIFIERS)) { 9580 if (adev->family < AMDGPU_FAMILY_AI) { 9581 linear = AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_2D_TILED_THIN1 && 9582 AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_1D_TILED_THIN1 && 9583 AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE) == 0; 9584 } else { 9585 linear = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0; 9586 } 9587 if (!linear) { 9588 DRM_DEBUG_ATOMIC("Cursor FB not linear"); 9589 return -EINVAL; 9590 } 9591 } 9592 9593 return 0; 9594 } 9595 9596 static int dm_update_plane_state(struct dc *dc, 9597 struct drm_atomic_state *state, 9598 struct drm_plane *plane, 9599 struct drm_plane_state *old_plane_state, 9600 struct drm_plane_state *new_plane_state, 9601 bool enable, 9602 bool *lock_and_validation_needed, 9603 bool *is_top_most_overlay) 9604 { 9605 9606 struct dm_atomic_state *dm_state = NULL; 9607 struct drm_crtc *new_plane_crtc, *old_plane_crtc; 9608 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 9609 struct dm_crtc_state *dm_new_crtc_state, *dm_old_crtc_state; 9610 struct dm_plane_state *dm_new_plane_state, *dm_old_plane_state; 9611 struct amdgpu_crtc *new_acrtc; 9612 bool needs_reset; 9613 int ret = 0; 9614 9615 9616 new_plane_crtc = new_plane_state->crtc; 9617 old_plane_crtc = old_plane_state->crtc; 9618 dm_new_plane_state = to_dm_plane_state(new_plane_state); 9619 dm_old_plane_state = to_dm_plane_state(old_plane_state); 9620 9621 if (plane->type == DRM_PLANE_TYPE_CURSOR) { 9622 if (!enable || !new_plane_crtc || 9623 drm_atomic_plane_disabling(plane->state, new_plane_state)) 9624 return 0; 9625 9626 new_acrtc = to_amdgpu_crtc(new_plane_crtc); 9627 9628 if (new_plane_state->src_x != 0 || new_plane_state->src_y != 0) { 9629 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n"); 9630 return -EINVAL; 9631 } 9632 9633 if (new_plane_state->fb) { 9634 ret = dm_check_cursor_fb(new_acrtc, new_plane_state, 9635 new_plane_state->fb); 9636 if (ret) 9637 return ret; 9638 } 9639 9640 return 0; 9641 } 9642 9643 needs_reset = should_reset_plane(state, plane, old_plane_state, 9644 new_plane_state); 9645 9646 /* Remove any changed/removed planes */ 9647 if (!enable) { 9648 if (!needs_reset) 9649 return 0; 9650 9651 if (!old_plane_crtc) 9652 return 0; 9653 9654 old_crtc_state = drm_atomic_get_old_crtc_state( 9655 state, old_plane_crtc); 9656 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 9657 9658 if (!dm_old_crtc_state->stream) 9659 return 0; 9660 9661 DRM_DEBUG_ATOMIC("Disabling DRM plane: %d on DRM crtc %d\n", 9662 plane->base.id, old_plane_crtc->base.id); 9663 9664 ret = dm_atomic_get_state(state, &dm_state); 9665 if (ret) 9666 return ret; 9667 9668 if (!dc_remove_plane_from_context( 9669 dc, 9670 dm_old_crtc_state->stream, 9671 dm_old_plane_state->dc_state, 9672 dm_state->context)) { 9673 9674 return -EINVAL; 9675 } 9676 9677 if (dm_old_plane_state->dc_state) 9678 dc_plane_state_release(dm_old_plane_state->dc_state); 9679 9680 dm_new_plane_state->dc_state = NULL; 9681 9682 *lock_and_validation_needed = true; 9683 9684 } else { /* Add new planes */ 9685 struct dc_plane_state *dc_new_plane_state; 9686 9687 if (drm_atomic_plane_disabling(plane->state, new_plane_state)) 9688 return 0; 9689 9690 if (!new_plane_crtc) 9691 return 0; 9692 9693 new_crtc_state = drm_atomic_get_new_crtc_state(state, new_plane_crtc); 9694 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 9695 9696 if (!dm_new_crtc_state->stream) 9697 return 0; 9698 9699 if (!needs_reset) 9700 return 0; 9701 9702 ret = amdgpu_dm_plane_helper_check_state(new_plane_state, new_crtc_state); 9703 if (ret) 9704 return ret; 9705 9706 WARN_ON(dm_new_plane_state->dc_state); 9707 9708 dc_new_plane_state = dc_create_plane_state(dc); 9709 if (!dc_new_plane_state) 9710 return -ENOMEM; 9711 9712 /* Block top most plane from being a video plane */ 9713 if (plane->type == DRM_PLANE_TYPE_OVERLAY) { 9714 if (is_video_format(new_plane_state->fb->format->format) && *is_top_most_overlay) 9715 return -EINVAL; 9716 else 9717 *is_top_most_overlay = false; 9718 } 9719 9720 DRM_DEBUG_ATOMIC("Enabling DRM plane: %d on DRM crtc %d\n", 9721 plane->base.id, new_plane_crtc->base.id); 9722 9723 ret = fill_dc_plane_attributes( 9724 drm_to_adev(new_plane_crtc->dev), 9725 dc_new_plane_state, 9726 new_plane_state, 9727 new_crtc_state); 9728 if (ret) { 9729 dc_plane_state_release(dc_new_plane_state); 9730 return ret; 9731 } 9732 9733 ret = dm_atomic_get_state(state, &dm_state); 9734 if (ret) { 9735 dc_plane_state_release(dc_new_plane_state); 9736 return ret; 9737 } 9738 9739 /* 9740 * Any atomic check errors that occur after this will 9741 * not need a release. The plane state will be attached 9742 * to the stream, and therefore part of the atomic 9743 * state. It'll be released when the atomic state is 9744 * cleaned. 9745 */ 9746 if (!dc_add_plane_to_context( 9747 dc, 9748 dm_new_crtc_state->stream, 9749 dc_new_plane_state, 9750 dm_state->context)) { 9751 9752 dc_plane_state_release(dc_new_plane_state); 9753 return -EINVAL; 9754 } 9755 9756 dm_new_plane_state->dc_state = dc_new_plane_state; 9757 9758 dm_new_crtc_state->mpo_requested |= (plane->type == DRM_PLANE_TYPE_OVERLAY); 9759 9760 /* Tell DC to do a full surface update every time there 9761 * is a plane change. Inefficient, but works for now. 9762 */ 9763 dm_new_plane_state->dc_state->update_flags.bits.full_update = 1; 9764 9765 *lock_and_validation_needed = true; 9766 } 9767 9768 9769 return ret; 9770 } 9771 9772 static void dm_get_oriented_plane_size(struct drm_plane_state *plane_state, 9773 int *src_w, int *src_h) 9774 { 9775 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) { 9776 case DRM_MODE_ROTATE_90: 9777 case DRM_MODE_ROTATE_270: 9778 *src_w = plane_state->src_h >> 16; 9779 *src_h = plane_state->src_w >> 16; 9780 break; 9781 case DRM_MODE_ROTATE_0: 9782 case DRM_MODE_ROTATE_180: 9783 default: 9784 *src_w = plane_state->src_w >> 16; 9785 *src_h = plane_state->src_h >> 16; 9786 break; 9787 } 9788 } 9789 9790 static int dm_check_crtc_cursor(struct drm_atomic_state *state, 9791 struct drm_crtc *crtc, 9792 struct drm_crtc_state *new_crtc_state) 9793 { 9794 struct drm_plane *cursor = crtc->cursor, *underlying; 9795 struct drm_plane_state *new_cursor_state, *new_underlying_state; 9796 int i; 9797 int cursor_scale_w, cursor_scale_h, underlying_scale_w, underlying_scale_h; 9798 int cursor_src_w, cursor_src_h; 9799 int underlying_src_w, underlying_src_h; 9800 9801 /* On DCE and DCN there is no dedicated hardware cursor plane. We get a 9802 * cursor per pipe but it's going to inherit the scaling and 9803 * positioning from the underlying pipe. Check the cursor plane's 9804 * blending properties match the underlying planes'. */ 9805 9806 new_cursor_state = drm_atomic_get_new_plane_state(state, cursor); 9807 if (!new_cursor_state || !new_cursor_state->fb) { 9808 return 0; 9809 } 9810 9811 dm_get_oriented_plane_size(new_cursor_state, &cursor_src_w, &cursor_src_h); 9812 cursor_scale_w = new_cursor_state->crtc_w * 1000 / cursor_src_w; 9813 cursor_scale_h = new_cursor_state->crtc_h * 1000 / cursor_src_h; 9814 9815 for_each_new_plane_in_state_reverse(state, underlying, new_underlying_state, i) { 9816 /* Narrow down to non-cursor planes on the same CRTC as the cursor */ 9817 if (new_underlying_state->crtc != crtc || underlying == crtc->cursor) 9818 continue; 9819 9820 /* Ignore disabled planes */ 9821 if (!new_underlying_state->fb) 9822 continue; 9823 9824 dm_get_oriented_plane_size(new_underlying_state, 9825 &underlying_src_w, &underlying_src_h); 9826 underlying_scale_w = new_underlying_state->crtc_w * 1000 / underlying_src_w; 9827 underlying_scale_h = new_underlying_state->crtc_h * 1000 / underlying_src_h; 9828 9829 if (cursor_scale_w != underlying_scale_w || 9830 cursor_scale_h != underlying_scale_h) { 9831 drm_dbg_atomic(crtc->dev, 9832 "Cursor [PLANE:%d:%s] scaling doesn't match underlying [PLANE:%d:%s]\n", 9833 cursor->base.id, cursor->name, underlying->base.id, underlying->name); 9834 return -EINVAL; 9835 } 9836 9837 /* If this plane covers the whole CRTC, no need to check planes underneath */ 9838 if (new_underlying_state->crtc_x <= 0 && 9839 new_underlying_state->crtc_y <= 0 && 9840 new_underlying_state->crtc_x + new_underlying_state->crtc_w >= new_crtc_state->mode.hdisplay && 9841 new_underlying_state->crtc_y + new_underlying_state->crtc_h >= new_crtc_state->mode.vdisplay) 9842 break; 9843 } 9844 9845 return 0; 9846 } 9847 9848 static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc) 9849 { 9850 struct drm_connector *connector; 9851 struct drm_connector_state *conn_state, *old_conn_state; 9852 struct amdgpu_dm_connector *aconnector = NULL; 9853 int i; 9854 for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) { 9855 if (!conn_state->crtc) 9856 conn_state = old_conn_state; 9857 9858 if (conn_state->crtc != crtc) 9859 continue; 9860 9861 aconnector = to_amdgpu_dm_connector(connector); 9862 if (!aconnector->mst_output_port || !aconnector->mst_root) 9863 aconnector = NULL; 9864 else 9865 break; 9866 } 9867 9868 if (!aconnector) 9869 return 0; 9870 9871 return drm_dp_mst_add_affected_dsc_crtcs(state, &aconnector->mst_root->mst_mgr); 9872 } 9873 9874 /** 9875 * amdgpu_dm_atomic_check() - Atomic check implementation for AMDgpu DM. 9876 * 9877 * @dev: The DRM device 9878 * @state: The atomic state to commit 9879 * 9880 * Validate that the given atomic state is programmable by DC into hardware. 9881 * This involves constructing a &struct dc_state reflecting the new hardware 9882 * state we wish to commit, then querying DC to see if it is programmable. It's 9883 * important not to modify the existing DC state. Otherwise, atomic_check 9884 * may unexpectedly commit hardware changes. 9885 * 9886 * When validating the DC state, it's important that the right locks are 9887 * acquired. For full updates case which removes/adds/updates streams on one 9888 * CRTC while flipping on another CRTC, acquiring global lock will guarantee 9889 * that any such full update commit will wait for completion of any outstanding 9890 * flip using DRMs synchronization events. 9891 * 9892 * Note that DM adds the affected connectors for all CRTCs in state, when that 9893 * might not seem necessary. This is because DC stream creation requires the 9894 * DC sink, which is tied to the DRM connector state. Cleaning this up should 9895 * be possible but non-trivial - a possible TODO item. 9896 * 9897 * Return: -Error code if validation failed. 9898 */ 9899 static int amdgpu_dm_atomic_check(struct drm_device *dev, 9900 struct drm_atomic_state *state) 9901 { 9902 struct amdgpu_device *adev = drm_to_adev(dev); 9903 struct dm_atomic_state *dm_state = NULL; 9904 struct dc *dc = adev->dm.dc; 9905 struct drm_connector *connector; 9906 struct drm_connector_state *old_con_state, *new_con_state; 9907 struct drm_crtc *crtc; 9908 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 9909 struct drm_plane *plane; 9910 struct drm_plane_state *old_plane_state, *new_plane_state; 9911 enum dc_status status; 9912 int ret, i; 9913 bool lock_and_validation_needed = false; 9914 bool is_top_most_overlay = true; 9915 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 9916 struct drm_dp_mst_topology_mgr *mgr; 9917 struct drm_dp_mst_topology_state *mst_state; 9918 struct dsc_mst_fairness_vars vars[MAX_PIPES]; 9919 9920 trace_amdgpu_dm_atomic_check_begin(state); 9921 9922 ret = drm_atomic_helper_check_modeset(dev, state); 9923 if (ret) { 9924 DRM_DEBUG_DRIVER("drm_atomic_helper_check_modeset() failed\n"); 9925 goto fail; 9926 } 9927 9928 /* Check connector changes */ 9929 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 9930 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state); 9931 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 9932 9933 /* Skip connectors that are disabled or part of modeset already. */ 9934 if (!new_con_state->crtc) 9935 continue; 9936 9937 new_crtc_state = drm_atomic_get_crtc_state(state, new_con_state->crtc); 9938 if (IS_ERR(new_crtc_state)) { 9939 DRM_DEBUG_DRIVER("drm_atomic_get_crtc_state() failed\n"); 9940 ret = PTR_ERR(new_crtc_state); 9941 goto fail; 9942 } 9943 9944 if (dm_old_con_state->abm_level != dm_new_con_state->abm_level || 9945 dm_old_con_state->scaling != dm_new_con_state->scaling) 9946 new_crtc_state->connectors_changed = true; 9947 } 9948 9949 if (dc_resource_is_dsc_encoding_supported(dc)) { 9950 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 9951 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) { 9952 ret = add_affected_mst_dsc_crtcs(state, crtc); 9953 if (ret) { 9954 DRM_DEBUG_DRIVER("add_affected_mst_dsc_crtcs() failed\n"); 9955 goto fail; 9956 } 9957 } 9958 } 9959 } 9960 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 9961 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 9962 9963 if (!drm_atomic_crtc_needs_modeset(new_crtc_state) && 9964 !new_crtc_state->color_mgmt_changed && 9965 old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled && 9966 dm_old_crtc_state->dsc_force_changed == false) 9967 continue; 9968 9969 ret = amdgpu_dm_verify_lut_sizes(new_crtc_state); 9970 if (ret) { 9971 DRM_DEBUG_DRIVER("amdgpu_dm_verify_lut_sizes() failed\n"); 9972 goto fail; 9973 } 9974 9975 if (!new_crtc_state->enable) 9976 continue; 9977 9978 ret = drm_atomic_add_affected_connectors(state, crtc); 9979 if (ret) { 9980 DRM_DEBUG_DRIVER("drm_atomic_add_affected_connectors() failed\n"); 9981 goto fail; 9982 } 9983 9984 ret = drm_atomic_add_affected_planes(state, crtc); 9985 if (ret) { 9986 DRM_DEBUG_DRIVER("drm_atomic_add_affected_planes() failed\n"); 9987 goto fail; 9988 } 9989 9990 if (dm_old_crtc_state->dsc_force_changed) 9991 new_crtc_state->mode_changed = true; 9992 } 9993 9994 /* 9995 * Add all primary and overlay planes on the CRTC to the state 9996 * whenever a plane is enabled to maintain correct z-ordering 9997 * and to enable fast surface updates. 9998 */ 9999 drm_for_each_crtc(crtc, dev) { 10000 bool modified = false; 10001 10002 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { 10003 if (plane->type == DRM_PLANE_TYPE_CURSOR) 10004 continue; 10005 10006 if (new_plane_state->crtc == crtc || 10007 old_plane_state->crtc == crtc) { 10008 modified = true; 10009 break; 10010 } 10011 } 10012 10013 if (!modified) 10014 continue; 10015 10016 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) { 10017 if (plane->type == DRM_PLANE_TYPE_CURSOR) 10018 continue; 10019 10020 new_plane_state = 10021 drm_atomic_get_plane_state(state, plane); 10022 10023 if (IS_ERR(new_plane_state)) { 10024 ret = PTR_ERR(new_plane_state); 10025 DRM_DEBUG_DRIVER("new_plane_state is BAD\n"); 10026 goto fail; 10027 } 10028 } 10029 } 10030 10031 /* 10032 * DC consults the zpos (layer_index in DC terminology) to determine the 10033 * hw plane on which to enable the hw cursor (see 10034 * `dcn10_can_pipe_disable_cursor`). By now, all modified planes are in 10035 * atomic state, so call drm helper to normalize zpos. 10036 */ 10037 ret = drm_atomic_normalize_zpos(dev, state); 10038 if (ret) { 10039 drm_dbg(dev, "drm_atomic_normalize_zpos() failed\n"); 10040 goto fail; 10041 } 10042 10043 /* Remove exiting planes if they are modified */ 10044 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) { 10045 ret = dm_update_plane_state(dc, state, plane, 10046 old_plane_state, 10047 new_plane_state, 10048 false, 10049 &lock_and_validation_needed, 10050 &is_top_most_overlay); 10051 if (ret) { 10052 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n"); 10053 goto fail; 10054 } 10055 } 10056 10057 /* Disable all crtcs which require disable */ 10058 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 10059 ret = dm_update_crtc_state(&adev->dm, state, crtc, 10060 old_crtc_state, 10061 new_crtc_state, 10062 false, 10063 &lock_and_validation_needed); 10064 if (ret) { 10065 DRM_DEBUG_DRIVER("DISABLE: dm_update_crtc_state() failed\n"); 10066 goto fail; 10067 } 10068 } 10069 10070 /* Enable all crtcs which require enable */ 10071 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 10072 ret = dm_update_crtc_state(&adev->dm, state, crtc, 10073 old_crtc_state, 10074 new_crtc_state, 10075 true, 10076 &lock_and_validation_needed); 10077 if (ret) { 10078 DRM_DEBUG_DRIVER("ENABLE: dm_update_crtc_state() failed\n"); 10079 goto fail; 10080 } 10081 } 10082 10083 /* Add new/modified planes */ 10084 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) { 10085 ret = dm_update_plane_state(dc, state, plane, 10086 old_plane_state, 10087 new_plane_state, 10088 true, 10089 &lock_and_validation_needed, 10090 &is_top_most_overlay); 10091 if (ret) { 10092 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n"); 10093 goto fail; 10094 } 10095 } 10096 10097 if (dc_resource_is_dsc_encoding_supported(dc)) { 10098 ret = pre_validate_dsc(state, &dm_state, vars); 10099 if (ret != 0) 10100 goto fail; 10101 } 10102 10103 /* Run this here since we want to validate the streams we created */ 10104 ret = drm_atomic_helper_check_planes(dev, state); 10105 if (ret) { 10106 DRM_DEBUG_DRIVER("drm_atomic_helper_check_planes() failed\n"); 10107 goto fail; 10108 } 10109 10110 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 10111 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10112 if (dm_new_crtc_state->mpo_requested) 10113 DRM_DEBUG_DRIVER("MPO enablement requested on crtc:[%p]\n", crtc); 10114 } 10115 10116 /* Check cursor planes scaling */ 10117 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 10118 ret = dm_check_crtc_cursor(state, crtc, new_crtc_state); 10119 if (ret) { 10120 DRM_DEBUG_DRIVER("dm_check_crtc_cursor() failed\n"); 10121 goto fail; 10122 } 10123 } 10124 10125 if (state->legacy_cursor_update) { 10126 /* 10127 * This is a fast cursor update coming from the plane update 10128 * helper, check if it can be done asynchronously for better 10129 * performance. 10130 */ 10131 state->async_update = 10132 !drm_atomic_helper_async_check(dev, state); 10133 10134 /* 10135 * Skip the remaining global validation if this is an async 10136 * update. Cursor updates can be done without affecting 10137 * state or bandwidth calcs and this avoids the performance 10138 * penalty of locking the private state object and 10139 * allocating a new dc_state. 10140 */ 10141 if (state->async_update) 10142 return 0; 10143 } 10144 10145 /* Check scaling and underscan changes*/ 10146 /* TODO Removed scaling changes validation due to inability to commit 10147 * new stream into context w\o causing full reset. Need to 10148 * decide how to handle. 10149 */ 10150 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 10151 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state); 10152 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 10153 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 10154 10155 /* Skip any modesets/resets */ 10156 if (!acrtc || drm_atomic_crtc_needs_modeset( 10157 drm_atomic_get_new_crtc_state(state, &acrtc->base))) 10158 continue; 10159 10160 /* Skip any thing not scale or underscan changes */ 10161 if (!is_scaling_state_different(dm_new_con_state, dm_old_con_state)) 10162 continue; 10163 10164 lock_and_validation_needed = true; 10165 } 10166 10167 /* set the slot info for each mst_state based on the link encoding format */ 10168 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) { 10169 struct amdgpu_dm_connector *aconnector; 10170 struct drm_connector *connector; 10171 struct drm_connector_list_iter iter; 10172 u8 link_coding_cap; 10173 10174 drm_connector_list_iter_begin(dev, &iter); 10175 drm_for_each_connector_iter(connector, &iter) { 10176 if (connector->index == mst_state->mgr->conn_base_id) { 10177 aconnector = to_amdgpu_dm_connector(connector); 10178 link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(aconnector->dc_link); 10179 drm_dp_mst_update_slots(mst_state, link_coding_cap); 10180 10181 break; 10182 } 10183 } 10184 drm_connector_list_iter_end(&iter); 10185 } 10186 10187 /** 10188 * Streams and planes are reset when there are changes that affect 10189 * bandwidth. Anything that affects bandwidth needs to go through 10190 * DC global validation to ensure that the configuration can be applied 10191 * to hardware. 10192 * 10193 * We have to currently stall out here in atomic_check for outstanding 10194 * commits to finish in this case because our IRQ handlers reference 10195 * DRM state directly - we can end up disabling interrupts too early 10196 * if we don't. 10197 * 10198 * TODO: Remove this stall and drop DM state private objects. 10199 */ 10200 if (lock_and_validation_needed) { 10201 ret = dm_atomic_get_state(state, &dm_state); 10202 if (ret) { 10203 DRM_DEBUG_DRIVER("dm_atomic_get_state() failed\n"); 10204 goto fail; 10205 } 10206 10207 ret = do_aquire_global_lock(dev, state); 10208 if (ret) { 10209 DRM_DEBUG_DRIVER("do_aquire_global_lock() failed\n"); 10210 goto fail; 10211 } 10212 10213 ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars); 10214 if (ret) { 10215 DRM_DEBUG_DRIVER("compute_mst_dsc_configs_for_state() failed\n"); 10216 ret = -EINVAL; 10217 goto fail; 10218 } 10219 10220 ret = dm_update_mst_vcpi_slots_for_dsc(state, dm_state->context, vars); 10221 if (ret) { 10222 DRM_DEBUG_DRIVER("dm_update_mst_vcpi_slots_for_dsc() failed\n"); 10223 goto fail; 10224 } 10225 10226 /* 10227 * Perform validation of MST topology in the state: 10228 * We need to perform MST atomic check before calling 10229 * dc_validate_global_state(), or there is a chance 10230 * to get stuck in an infinite loop and hang eventually. 10231 */ 10232 ret = drm_dp_mst_atomic_check(state); 10233 if (ret) { 10234 DRM_DEBUG_DRIVER("drm_dp_mst_atomic_check() failed\n"); 10235 goto fail; 10236 } 10237 status = dc_validate_global_state(dc, dm_state->context, true); 10238 if (status != DC_OK) { 10239 DRM_DEBUG_DRIVER("DC global validation failure: %s (%d)", 10240 dc_status_to_str(status), status); 10241 ret = -EINVAL; 10242 goto fail; 10243 } 10244 } else { 10245 /* 10246 * The commit is a fast update. Fast updates shouldn't change 10247 * the DC context, affect global validation, and can have their 10248 * commit work done in parallel with other commits not touching 10249 * the same resource. If we have a new DC context as part of 10250 * the DM atomic state from validation we need to free it and 10251 * retain the existing one instead. 10252 * 10253 * Furthermore, since the DM atomic state only contains the DC 10254 * context and can safely be annulled, we can free the state 10255 * and clear the associated private object now to free 10256 * some memory and avoid a possible use-after-free later. 10257 */ 10258 10259 for (i = 0; i < state->num_private_objs; i++) { 10260 struct drm_private_obj *obj = state->private_objs[i].ptr; 10261 10262 if (obj->funcs == adev->dm.atomic_obj.funcs) { 10263 int j = state->num_private_objs-1; 10264 10265 dm_atomic_destroy_state(obj, 10266 state->private_objs[i].state); 10267 10268 /* If i is not at the end of the array then the 10269 * last element needs to be moved to where i was 10270 * before the array can safely be truncated. 10271 */ 10272 if (i != j) 10273 state->private_objs[i] = 10274 state->private_objs[j]; 10275 10276 state->private_objs[j].ptr = NULL; 10277 state->private_objs[j].state = NULL; 10278 state->private_objs[j].old_state = NULL; 10279 state->private_objs[j].new_state = NULL; 10280 10281 state->num_private_objs = j; 10282 break; 10283 } 10284 } 10285 } 10286 10287 /* Store the overall update type for use later in atomic check. */ 10288 for_each_new_crtc_in_state (state, crtc, new_crtc_state, i) { 10289 struct dm_crtc_state *dm_new_crtc_state = 10290 to_dm_crtc_state(new_crtc_state); 10291 10292 dm_new_crtc_state->update_type = lock_and_validation_needed ? 10293 UPDATE_TYPE_FULL : 10294 UPDATE_TYPE_FAST; 10295 } 10296 10297 /* Must be success */ 10298 WARN_ON(ret); 10299 10300 trace_amdgpu_dm_atomic_check_finish(state, ret); 10301 10302 return ret; 10303 10304 fail: 10305 if (ret == -EDEADLK) 10306 DRM_DEBUG_DRIVER("Atomic check stopped to avoid deadlock.\n"); 10307 else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS) 10308 DRM_DEBUG_DRIVER("Atomic check stopped due to signal.\n"); 10309 else 10310 DRM_DEBUG_DRIVER("Atomic check failed with err: %d \n", ret); 10311 10312 trace_amdgpu_dm_atomic_check_finish(state, ret); 10313 10314 return ret; 10315 } 10316 10317 static bool is_dp_capable_without_timing_msa(struct dc *dc, 10318 struct amdgpu_dm_connector *amdgpu_dm_connector) 10319 { 10320 u8 dpcd_data; 10321 bool capable = false; 10322 10323 if (amdgpu_dm_connector->dc_link && 10324 dm_helpers_dp_read_dpcd( 10325 NULL, 10326 amdgpu_dm_connector->dc_link, 10327 DP_DOWN_STREAM_PORT_COUNT, 10328 &dpcd_data, 10329 sizeof(dpcd_data))) { 10330 capable = (dpcd_data & DP_MSA_TIMING_PAR_IGNORED) ? true:false; 10331 } 10332 10333 return capable; 10334 } 10335 10336 static bool dm_edid_parser_send_cea(struct amdgpu_display_manager *dm, 10337 unsigned int offset, 10338 unsigned int total_length, 10339 u8 *data, 10340 unsigned int length, 10341 struct amdgpu_hdmi_vsdb_info *vsdb) 10342 { 10343 bool res; 10344 union dmub_rb_cmd cmd; 10345 struct dmub_cmd_send_edid_cea *input; 10346 struct dmub_cmd_edid_cea_output *output; 10347 10348 if (length > DMUB_EDID_CEA_DATA_CHUNK_BYTES) 10349 return false; 10350 10351 memset(&cmd, 0, sizeof(cmd)); 10352 10353 input = &cmd.edid_cea.data.input; 10354 10355 cmd.edid_cea.header.type = DMUB_CMD__EDID_CEA; 10356 cmd.edid_cea.header.sub_type = 0; 10357 cmd.edid_cea.header.payload_bytes = 10358 sizeof(cmd.edid_cea) - sizeof(cmd.edid_cea.header); 10359 input->offset = offset; 10360 input->length = length; 10361 input->cea_total_length = total_length; 10362 memcpy(input->payload, data, length); 10363 10364 res = dm_execute_dmub_cmd(dm->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY); 10365 if (!res) { 10366 DRM_ERROR("EDID CEA parser failed\n"); 10367 return false; 10368 } 10369 10370 output = &cmd.edid_cea.data.output; 10371 10372 if (output->type == DMUB_CMD__EDID_CEA_ACK) { 10373 if (!output->ack.success) { 10374 DRM_ERROR("EDID CEA ack failed at offset %d\n", 10375 output->ack.offset); 10376 } 10377 } else if (output->type == DMUB_CMD__EDID_CEA_AMD_VSDB) { 10378 if (!output->amd_vsdb.vsdb_found) 10379 return false; 10380 10381 vsdb->freesync_supported = output->amd_vsdb.freesync_supported; 10382 vsdb->amd_vsdb_version = output->amd_vsdb.amd_vsdb_version; 10383 vsdb->min_refresh_rate_hz = output->amd_vsdb.min_frame_rate; 10384 vsdb->max_refresh_rate_hz = output->amd_vsdb.max_frame_rate; 10385 } else { 10386 DRM_WARN("Unknown EDID CEA parser results\n"); 10387 return false; 10388 } 10389 10390 return true; 10391 } 10392 10393 static bool parse_edid_cea_dmcu(struct amdgpu_display_manager *dm, 10394 u8 *edid_ext, int len, 10395 struct amdgpu_hdmi_vsdb_info *vsdb_info) 10396 { 10397 int i; 10398 10399 /* send extension block to DMCU for parsing */ 10400 for (i = 0; i < len; i += 8) { 10401 bool res; 10402 int offset; 10403 10404 /* send 8 bytes a time */ 10405 if (!dc_edid_parser_send_cea(dm->dc, i, len, &edid_ext[i], 8)) 10406 return false; 10407 10408 if (i+8 == len) { 10409 /* EDID block sent completed, expect result */ 10410 int version, min_rate, max_rate; 10411 10412 res = dc_edid_parser_recv_amd_vsdb(dm->dc, &version, &min_rate, &max_rate); 10413 if (res) { 10414 /* amd vsdb found */ 10415 vsdb_info->freesync_supported = 1; 10416 vsdb_info->amd_vsdb_version = version; 10417 vsdb_info->min_refresh_rate_hz = min_rate; 10418 vsdb_info->max_refresh_rate_hz = max_rate; 10419 return true; 10420 } 10421 /* not amd vsdb */ 10422 return false; 10423 } 10424 10425 /* check for ack*/ 10426 res = dc_edid_parser_recv_cea_ack(dm->dc, &offset); 10427 if (!res) 10428 return false; 10429 } 10430 10431 return false; 10432 } 10433 10434 static bool parse_edid_cea_dmub(struct amdgpu_display_manager *dm, 10435 u8 *edid_ext, int len, 10436 struct amdgpu_hdmi_vsdb_info *vsdb_info) 10437 { 10438 int i; 10439 10440 /* send extension block to DMCU for parsing */ 10441 for (i = 0; i < len; i += 8) { 10442 /* send 8 bytes a time */ 10443 if (!dm_edid_parser_send_cea(dm, i, len, &edid_ext[i], 8, vsdb_info)) 10444 return false; 10445 } 10446 10447 return vsdb_info->freesync_supported; 10448 } 10449 10450 static bool parse_edid_cea(struct amdgpu_dm_connector *aconnector, 10451 u8 *edid_ext, int len, 10452 struct amdgpu_hdmi_vsdb_info *vsdb_info) 10453 { 10454 struct amdgpu_device *adev = drm_to_adev(aconnector->base.dev); 10455 bool ret; 10456 10457 mutex_lock(&adev->dm.dc_lock); 10458 if (adev->dm.dmub_srv) 10459 ret = parse_edid_cea_dmub(&adev->dm, edid_ext, len, vsdb_info); 10460 else 10461 ret = parse_edid_cea_dmcu(&adev->dm, edid_ext, len, vsdb_info); 10462 mutex_unlock(&adev->dm.dc_lock); 10463 return ret; 10464 } 10465 10466 static int parse_hdmi_amd_vsdb(struct amdgpu_dm_connector *aconnector, 10467 struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info) 10468 { 10469 u8 *edid_ext = NULL; 10470 int i; 10471 bool valid_vsdb_found = false; 10472 10473 /*----- drm_find_cea_extension() -----*/ 10474 /* No EDID or EDID extensions */ 10475 if (edid == NULL || edid->extensions == 0) 10476 return -ENODEV; 10477 10478 /* Find CEA extension */ 10479 for (i = 0; i < edid->extensions; i++) { 10480 edid_ext = (uint8_t *)edid + EDID_LENGTH * (i + 1); 10481 if (edid_ext[0] == CEA_EXT) 10482 break; 10483 } 10484 10485 if (i == edid->extensions) 10486 return -ENODEV; 10487 10488 /*----- cea_db_offsets() -----*/ 10489 if (edid_ext[0] != CEA_EXT) 10490 return -ENODEV; 10491 10492 valid_vsdb_found = parse_edid_cea(aconnector, edid_ext, EDID_LENGTH, vsdb_info); 10493 10494 return valid_vsdb_found ? i : -ENODEV; 10495 } 10496 10497 /** 10498 * amdgpu_dm_update_freesync_caps - Update Freesync capabilities 10499 * 10500 * @connector: Connector to query. 10501 * @edid: EDID from monitor 10502 * 10503 * Amdgpu supports Freesync in DP and HDMI displays, and it is required to keep 10504 * track of some of the display information in the internal data struct used by 10505 * amdgpu_dm. This function checks which type of connector we need to set the 10506 * FreeSync parameters. 10507 */ 10508 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector, 10509 struct edid *edid) 10510 { 10511 int i = 0; 10512 struct detailed_timing *timing; 10513 struct detailed_non_pixel *data; 10514 struct detailed_data_monitor_range *range; 10515 struct amdgpu_dm_connector *amdgpu_dm_connector = 10516 to_amdgpu_dm_connector(connector); 10517 struct dm_connector_state *dm_con_state = NULL; 10518 struct dc_sink *sink; 10519 10520 struct drm_device *dev = connector->dev; 10521 struct amdgpu_device *adev = drm_to_adev(dev); 10522 struct amdgpu_hdmi_vsdb_info vsdb_info = {0}; 10523 bool freesync_capable = false; 10524 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE; 10525 10526 if (!connector->state) { 10527 DRM_ERROR("%s - Connector has no state", __func__); 10528 goto update; 10529 } 10530 10531 sink = amdgpu_dm_connector->dc_sink ? 10532 amdgpu_dm_connector->dc_sink : 10533 amdgpu_dm_connector->dc_em_sink; 10534 10535 if (!edid || !sink) { 10536 dm_con_state = to_dm_connector_state(connector->state); 10537 10538 amdgpu_dm_connector->min_vfreq = 0; 10539 amdgpu_dm_connector->max_vfreq = 0; 10540 amdgpu_dm_connector->pixel_clock_mhz = 0; 10541 connector->display_info.monitor_range.min_vfreq = 0; 10542 connector->display_info.monitor_range.max_vfreq = 0; 10543 freesync_capable = false; 10544 10545 goto update; 10546 } 10547 10548 dm_con_state = to_dm_connector_state(connector->state); 10549 10550 if (!adev->dm.freesync_module) 10551 goto update; 10552 10553 if (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT 10554 || sink->sink_signal == SIGNAL_TYPE_EDP) { 10555 bool edid_check_required = false; 10556 10557 if (edid) { 10558 edid_check_required = is_dp_capable_without_timing_msa( 10559 adev->dm.dc, 10560 amdgpu_dm_connector); 10561 } 10562 10563 if (edid_check_required == true && (edid->version > 1 || 10564 (edid->version == 1 && edid->revision > 1))) { 10565 for (i = 0; i < 4; i++) { 10566 10567 timing = &edid->detailed_timings[i]; 10568 data = &timing->data.other_data; 10569 range = &data->data.range; 10570 /* 10571 * Check if monitor has continuous frequency mode 10572 */ 10573 if (data->type != EDID_DETAIL_MONITOR_RANGE) 10574 continue; 10575 /* 10576 * Check for flag range limits only. If flag == 1 then 10577 * no additional timing information provided. 10578 * Default GTF, GTF Secondary curve and CVT are not 10579 * supported 10580 */ 10581 if (range->flags != 1) 10582 continue; 10583 10584 amdgpu_dm_connector->min_vfreq = range->min_vfreq; 10585 amdgpu_dm_connector->max_vfreq = range->max_vfreq; 10586 amdgpu_dm_connector->pixel_clock_mhz = 10587 range->pixel_clock_mhz * 10; 10588 10589 connector->display_info.monitor_range.min_vfreq = range->min_vfreq; 10590 connector->display_info.monitor_range.max_vfreq = range->max_vfreq; 10591 10592 break; 10593 } 10594 10595 if (amdgpu_dm_connector->max_vfreq - 10596 amdgpu_dm_connector->min_vfreq > 10) { 10597 10598 freesync_capable = true; 10599 } 10600 } 10601 } else if (edid && sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A) { 10602 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info); 10603 if (i >= 0 && vsdb_info.freesync_supported) { 10604 timing = &edid->detailed_timings[i]; 10605 data = &timing->data.other_data; 10606 10607 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz; 10608 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz; 10609 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 10610 freesync_capable = true; 10611 10612 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz; 10613 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz; 10614 } 10615 } 10616 10617 as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link); 10618 10619 if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) { 10620 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info); 10621 if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) { 10622 10623 amdgpu_dm_connector->pack_sdp_v1_3 = true; 10624 amdgpu_dm_connector->as_type = as_type; 10625 amdgpu_dm_connector->vsdb_info = vsdb_info; 10626 10627 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz; 10628 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz; 10629 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 10630 freesync_capable = true; 10631 10632 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz; 10633 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz; 10634 } 10635 } 10636 10637 update: 10638 if (dm_con_state) 10639 dm_con_state->freesync_capable = freesync_capable; 10640 10641 if (connector->vrr_capable_property) 10642 drm_connector_set_vrr_capable_property(connector, 10643 freesync_capable); 10644 } 10645 10646 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev) 10647 { 10648 struct amdgpu_device *adev = drm_to_adev(dev); 10649 struct dc *dc = adev->dm.dc; 10650 int i; 10651 10652 mutex_lock(&adev->dm.dc_lock); 10653 if (dc->current_state) { 10654 for (i = 0; i < dc->current_state->stream_count; ++i) 10655 dc->current_state->streams[i] 10656 ->triggered_crtc_reset.enabled = 10657 adev->dm.force_timing_sync; 10658 10659 dm_enable_per_frame_crtc_master_sync(dc->current_state); 10660 dc_trigger_sync(dc, dc->current_state); 10661 } 10662 mutex_unlock(&adev->dm.dc_lock); 10663 } 10664 10665 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address, 10666 u32 value, const char *func_name) 10667 { 10668 #ifdef DM_CHECK_ADDR_0 10669 if (address == 0) { 10670 DC_ERR("invalid register write. address = 0"); 10671 return; 10672 } 10673 #endif 10674 cgs_write_register(ctx->cgs_device, address, value); 10675 trace_amdgpu_dc_wreg(&ctx->perf_trace->write_count, address, value); 10676 } 10677 10678 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address, 10679 const char *func_name) 10680 { 10681 u32 value; 10682 #ifdef DM_CHECK_ADDR_0 10683 if (address == 0) { 10684 DC_ERR("invalid register read; address = 0\n"); 10685 return 0; 10686 } 10687 #endif 10688 10689 if (ctx->dmub_srv && 10690 ctx->dmub_srv->reg_helper_offload.gather_in_progress && 10691 !ctx->dmub_srv->reg_helper_offload.should_burst_write) { 10692 ASSERT(false); 10693 return 0; 10694 } 10695 10696 value = cgs_read_register(ctx->cgs_device, address); 10697 10698 trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value); 10699 10700 return value; 10701 } 10702 10703 int amdgpu_dm_process_dmub_aux_transfer_sync( 10704 struct dc_context *ctx, 10705 unsigned int link_index, 10706 struct aux_payload *payload, 10707 enum aux_return_code_type *operation_result) 10708 { 10709 struct amdgpu_device *adev = ctx->driver_context; 10710 struct dmub_notification *p_notify = adev->dm.dmub_notify; 10711 int ret = -1; 10712 10713 mutex_lock(&adev->dm.dpia_aux_lock); 10714 if (!dc_process_dmub_aux_transfer_async(ctx->dc, link_index, payload)) { 10715 *operation_result = AUX_RET_ERROR_ENGINE_ACQUIRE; 10716 goto out; 10717 } 10718 10719 if (!wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) { 10720 DRM_ERROR("wait_for_completion_timeout timeout!"); 10721 *operation_result = AUX_RET_ERROR_TIMEOUT; 10722 goto out; 10723 } 10724 10725 if (p_notify->result != AUX_RET_SUCCESS) { 10726 /* 10727 * Transient states before tunneling is enabled could 10728 * lead to this error. We can ignore this for now. 10729 */ 10730 if (p_notify->result != AUX_RET_ERROR_PROTOCOL_ERROR) { 10731 DRM_WARN("DPIA AUX failed on 0x%x(%d), error %d\n", 10732 payload->address, payload->length, 10733 p_notify->result); 10734 } 10735 *operation_result = AUX_RET_ERROR_INVALID_REPLY; 10736 goto out; 10737 } 10738 10739 10740 payload->reply[0] = adev->dm.dmub_notify->aux_reply.command; 10741 if (!payload->write && p_notify->aux_reply.length && 10742 (payload->reply[0] == AUX_TRANSACTION_REPLY_AUX_ACK)) { 10743 10744 if (payload->length != p_notify->aux_reply.length) { 10745 DRM_WARN("invalid read length %d from DPIA AUX 0x%x(%d)!\n", 10746 p_notify->aux_reply.length, 10747 payload->address, payload->length); 10748 *operation_result = AUX_RET_ERROR_INVALID_REPLY; 10749 goto out; 10750 } 10751 10752 memcpy(payload->data, p_notify->aux_reply.data, 10753 p_notify->aux_reply.length); 10754 } 10755 10756 /* success */ 10757 ret = p_notify->aux_reply.length; 10758 *operation_result = p_notify->result; 10759 out: 10760 reinit_completion(&adev->dm.dmub_aux_transfer_done); 10761 mutex_unlock(&adev->dm.dpia_aux_lock); 10762 return ret; 10763 } 10764 10765 int amdgpu_dm_process_dmub_set_config_sync( 10766 struct dc_context *ctx, 10767 unsigned int link_index, 10768 struct set_config_cmd_payload *payload, 10769 enum set_config_status *operation_result) 10770 { 10771 struct amdgpu_device *adev = ctx->driver_context; 10772 bool is_cmd_complete; 10773 int ret; 10774 10775 mutex_lock(&adev->dm.dpia_aux_lock); 10776 is_cmd_complete = dc_process_dmub_set_config_async(ctx->dc, 10777 link_index, payload, adev->dm.dmub_notify); 10778 10779 if (is_cmd_complete || wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) { 10780 ret = 0; 10781 *operation_result = adev->dm.dmub_notify->sc_status; 10782 } else { 10783 DRM_ERROR("wait_for_completion_timeout timeout!"); 10784 ret = -1; 10785 *operation_result = SET_CONFIG_UNKNOWN_ERROR; 10786 } 10787 10788 if (!is_cmd_complete) 10789 reinit_completion(&adev->dm.dmub_aux_transfer_done); 10790 mutex_unlock(&adev->dm.dpia_aux_lock); 10791 return ret; 10792 } 10793 10794 /* 10795 * Check whether seamless boot is supported. 10796 * 10797 * So far we only support seamless boot on CHIP_VANGOGH. 10798 * If everything goes well, we may consider expanding 10799 * seamless boot to other ASICs. 10800 */ 10801 bool check_seamless_boot_capability(struct amdgpu_device *adev) 10802 { 10803 switch (adev->ip_versions[DCE_HWIP][0]) { 10804 case IP_VERSION(3, 0, 1): 10805 if (!adev->mman.keep_stolen_vga_memory) 10806 return true; 10807 break; 10808 default: 10809 break; 10810 } 10811 10812 return false; 10813 } 10814 10815 bool dm_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type) 10816 { 10817 return dc_dmub_srv_cmd_run(ctx->dmub_srv, cmd, wait_type); 10818 } 10819 10820 bool dm_execute_dmub_cmd_list(const struct dc_context *ctx, unsigned int count, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type) 10821 { 10822 return dc_dmub_srv_cmd_run_list(ctx->dmub_srv, count, cmd, wait_type); 10823 } 10824