1 // SPDX-License-Identifier: MIT 2 /* 3 * Copyright 2015 Advanced Micro Devices, Inc. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included in 13 * all copies or substantial portions of the Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21 * OTHER DEALINGS IN THE SOFTWARE. 22 * 23 * Authors: AMD 24 * 25 */ 26 27 /* The caprices of the preprocessor require that this be declared right here */ 28 #define CREATE_TRACE_POINTS 29 30 #include "dm_services_types.h" 31 #include "dc.h" 32 #include "link_enc_cfg.h" 33 #include "dc/inc/core_types.h" 34 #include "dal_asic_id.h" 35 #include "dmub/dmub_srv.h" 36 #include "dc/inc/hw/dmcu.h" 37 #include "dc/inc/hw/abm.h" 38 #include "dc/dc_dmub_srv.h" 39 #include "dc/dc_edid_parser.h" 40 #include "dc/dc_stat.h" 41 #include "dc/dc_state.h" 42 #include "amdgpu_dm_trace.h" 43 #include "link/protocols/link_dpcd.h" 44 #include "link_service_types.h" 45 #include "link/protocols/link_dp_capability.h" 46 #include "link/protocols/link_ddc.h" 47 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_dm_wb.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 #include "amdgpu_dm_replay.h" 69 70 #include "ivsrcid/ivsrcid_vislands30.h" 71 72 #include <linux/backlight.h> 73 #include <linux/module.h> 74 #include <linux/moduleparam.h> 75 #include <linux/types.h> 76 #include <linux/pm_runtime.h> 77 #include <linux/pci.h> 78 #include <linux/power_supply.h> 79 #include <linux/firmware.h> 80 #include <linux/component.h> 81 #include <linux/sort.h> 82 83 #include <drm/drm_privacy_screen_consumer.h> 84 #include <drm/display/drm_dp_mst_helper.h> 85 #include <drm/display/drm_hdmi_helper.h> 86 #include <drm/drm_atomic.h> 87 #include <drm/drm_atomic_uapi.h> 88 #include <drm/drm_atomic_helper.h> 89 #include <drm/drm_blend.h> 90 #include <drm/drm_fixed.h> 91 #include <drm/drm_fourcc.h> 92 #include <drm/drm_edid.h> 93 #include <drm/drm_eld.h> 94 #include <drm/drm_utils.h> 95 #include <drm/drm_vblank.h> 96 #include <drm/drm_audio_component.h> 97 #include <drm/drm_gem_atomic_helper.h> 98 99 #include <media/cec-notifier.h> 100 #include <acpi/video.h> 101 102 #include "ivsrcid/dcn/irqsrcs_dcn_1_0.h" 103 104 #include "modules/inc/mod_freesync.h" 105 #include "modules/power/power_helpers.h" 106 107 static_assert(AMDGPU_DMUB_NOTIFICATION_MAX == DMUB_NOTIFICATION_MAX, "AMDGPU_DMUB_NOTIFICATION_MAX mismatch"); 108 109 #define FIRMWARE_RENOIR_DMUB "amdgpu/renoir_dmcub.bin" 110 MODULE_FIRMWARE(FIRMWARE_RENOIR_DMUB); 111 #define FIRMWARE_SIENNA_CICHLID_DMUB "amdgpu/sienna_cichlid_dmcub.bin" 112 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID_DMUB); 113 #define FIRMWARE_NAVY_FLOUNDER_DMUB "amdgpu/navy_flounder_dmcub.bin" 114 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER_DMUB); 115 #define FIRMWARE_GREEN_SARDINE_DMUB "amdgpu/green_sardine_dmcub.bin" 116 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE_DMUB); 117 #define FIRMWARE_VANGOGH_DMUB "amdgpu/vangogh_dmcub.bin" 118 MODULE_FIRMWARE(FIRMWARE_VANGOGH_DMUB); 119 #define FIRMWARE_DIMGREY_CAVEFISH_DMUB "amdgpu/dimgrey_cavefish_dmcub.bin" 120 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB); 121 #define FIRMWARE_BEIGE_GOBY_DMUB "amdgpu/beige_goby_dmcub.bin" 122 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB); 123 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin" 124 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB); 125 #define FIRMWARE_DCN_314_DMUB "amdgpu/dcn_3_1_4_dmcub.bin" 126 MODULE_FIRMWARE(FIRMWARE_DCN_314_DMUB); 127 #define FIRMWARE_DCN_315_DMUB "amdgpu/dcn_3_1_5_dmcub.bin" 128 MODULE_FIRMWARE(FIRMWARE_DCN_315_DMUB); 129 #define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin" 130 MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB); 131 132 #define FIRMWARE_DCN_V3_2_0_DMCUB "amdgpu/dcn_3_2_0_dmcub.bin" 133 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_0_DMCUB); 134 #define FIRMWARE_DCN_V3_2_1_DMCUB "amdgpu/dcn_3_2_1_dmcub.bin" 135 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_1_DMCUB); 136 137 #define FIRMWARE_RAVEN_DMCU "amdgpu/raven_dmcu.bin" 138 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU); 139 140 #define FIRMWARE_NAVI12_DMCU "amdgpu/navi12_dmcu.bin" 141 MODULE_FIRMWARE(FIRMWARE_NAVI12_DMCU); 142 143 #define FIRMWARE_DCN_35_DMUB "amdgpu/dcn_3_5_dmcub.bin" 144 MODULE_FIRMWARE(FIRMWARE_DCN_35_DMUB); 145 146 #define FIRMWARE_DCN_351_DMUB "amdgpu/dcn_3_5_1_dmcub.bin" 147 MODULE_FIRMWARE(FIRMWARE_DCN_351_DMUB); 148 149 #define FIRMWARE_DCN_36_DMUB "amdgpu/dcn_3_6_dmcub.bin" 150 MODULE_FIRMWARE(FIRMWARE_DCN_36_DMUB); 151 152 #define FIRMWARE_DCN_401_DMUB "amdgpu/dcn_4_0_1_dmcub.bin" 153 MODULE_FIRMWARE(FIRMWARE_DCN_401_DMUB); 154 155 /* Number of bytes in PSP header for firmware. */ 156 #define PSP_HEADER_BYTES 0x100 157 158 /* Number of bytes in PSP footer for firmware. */ 159 #define PSP_FOOTER_BYTES 0x100 160 161 /** 162 * DOC: overview 163 * 164 * The AMDgpu display manager, **amdgpu_dm** (or even simpler, 165 * **dm**) sits between DRM and DC. It acts as a liaison, converting DRM 166 * requests into DC requests, and DC responses into DRM responses. 167 * 168 * The root control structure is &struct amdgpu_display_manager. 169 */ 170 171 /* basic init/fini API */ 172 static int amdgpu_dm_init(struct amdgpu_device *adev); 173 static void amdgpu_dm_fini(struct amdgpu_device *adev); 174 static bool is_freesync_video_mode(const struct drm_display_mode *mode, struct amdgpu_dm_connector *aconnector); 175 static void reset_freesync_config_for_crtc(struct dm_crtc_state *new_crtc_state); 176 static struct amdgpu_i2c_adapter * 177 create_i2c(struct ddc_service *ddc_service, bool oem); 178 179 static enum drm_mode_subconnector get_subconnector_type(struct dc_link *link) 180 { 181 switch (link->dpcd_caps.dongle_type) { 182 case DISPLAY_DONGLE_NONE: 183 return DRM_MODE_SUBCONNECTOR_Native; 184 case DISPLAY_DONGLE_DP_VGA_CONVERTER: 185 return DRM_MODE_SUBCONNECTOR_VGA; 186 case DISPLAY_DONGLE_DP_DVI_CONVERTER: 187 case DISPLAY_DONGLE_DP_DVI_DONGLE: 188 return DRM_MODE_SUBCONNECTOR_DVID; 189 case DISPLAY_DONGLE_DP_HDMI_CONVERTER: 190 case DISPLAY_DONGLE_DP_HDMI_DONGLE: 191 return DRM_MODE_SUBCONNECTOR_HDMIA; 192 case DISPLAY_DONGLE_DP_HDMI_MISMATCHED_DONGLE: 193 default: 194 return DRM_MODE_SUBCONNECTOR_Unknown; 195 } 196 } 197 198 static void update_subconnector_property(struct amdgpu_dm_connector *aconnector) 199 { 200 struct dc_link *link = aconnector->dc_link; 201 struct drm_connector *connector = &aconnector->base; 202 enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown; 203 204 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) 205 return; 206 207 if (aconnector->dc_sink) 208 subconnector = get_subconnector_type(link); 209 210 drm_object_property_set_value(&connector->base, 211 connector->dev->mode_config.dp_subconnector_property, 212 subconnector); 213 } 214 215 /* 216 * initializes drm_device display related structures, based on the information 217 * provided by DAL. The drm strcutures are: drm_crtc, drm_connector, 218 * drm_encoder, drm_mode_config 219 * 220 * Returns 0 on success 221 */ 222 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev); 223 /* removes and deallocates the drm structures, created by the above function */ 224 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm); 225 226 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm, 227 struct amdgpu_dm_connector *amdgpu_dm_connector, 228 u32 link_index, 229 struct amdgpu_encoder *amdgpu_encoder); 230 static int amdgpu_dm_encoder_init(struct drm_device *dev, 231 struct amdgpu_encoder *aencoder, 232 uint32_t link_index); 233 234 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector); 235 236 static int amdgpu_dm_atomic_setup_commit(struct drm_atomic_state *state); 237 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state); 238 239 static int amdgpu_dm_atomic_check(struct drm_device *dev, 240 struct drm_atomic_state *state); 241 242 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector); 243 static void handle_hpd_rx_irq(void *param); 244 245 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm, 246 int bl_idx, 247 u32 user_brightness); 248 249 static bool 250 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state, 251 struct drm_crtc_state *new_crtc_state); 252 /* 253 * dm_vblank_get_counter 254 * 255 * @brief 256 * Get counter for number of vertical blanks 257 * 258 * @param 259 * struct amdgpu_device *adev - [in] desired amdgpu device 260 * int disp_idx - [in] which CRTC to get the counter from 261 * 262 * @return 263 * Counter for vertical blanks 264 */ 265 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc) 266 { 267 struct amdgpu_crtc *acrtc = NULL; 268 269 if (crtc >= adev->mode_info.num_crtc) 270 return 0; 271 272 acrtc = adev->mode_info.crtcs[crtc]; 273 274 if (!acrtc->dm_irq_params.stream) { 275 drm_err(adev_to_drm(adev), "dc_stream_state is NULL for crtc '%d'!\n", 276 crtc); 277 return 0; 278 } 279 280 return dc_stream_get_vblank_counter(acrtc->dm_irq_params.stream); 281 } 282 283 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc, 284 u32 *vbl, u32 *position) 285 { 286 u32 v_blank_start = 0, v_blank_end = 0, h_position = 0, v_position = 0; 287 struct amdgpu_crtc *acrtc = NULL; 288 struct dc *dc = adev->dm.dc; 289 290 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc)) 291 return -EINVAL; 292 293 acrtc = adev->mode_info.crtcs[crtc]; 294 295 if (!acrtc->dm_irq_params.stream) { 296 drm_err(adev_to_drm(adev), "dc_stream_state is NULL for crtc '%d'!\n", 297 crtc); 298 return 0; 299 } 300 301 if (dc && dc->caps.ips_support && dc->idle_optimizations_allowed) 302 dc_allow_idle_optimizations(dc, false); 303 304 /* 305 * TODO rework base driver to use values directly. 306 * for now parse it back into reg-format 307 */ 308 dc_stream_get_scanoutpos(acrtc->dm_irq_params.stream, 309 &v_blank_start, 310 &v_blank_end, 311 &h_position, 312 &v_position); 313 314 *position = v_position | (h_position << 16); 315 *vbl = v_blank_start | (v_blank_end << 16); 316 317 return 0; 318 } 319 320 static bool dm_is_idle(struct amdgpu_ip_block *ip_block) 321 { 322 /* XXX todo */ 323 return true; 324 } 325 326 static int dm_wait_for_idle(struct amdgpu_ip_block *ip_block) 327 { 328 /* XXX todo */ 329 return 0; 330 } 331 332 static bool dm_check_soft_reset(struct amdgpu_ip_block *ip_block) 333 { 334 return false; 335 } 336 337 static int dm_soft_reset(struct amdgpu_ip_block *ip_block) 338 { 339 /* XXX todo */ 340 return 0; 341 } 342 343 static struct amdgpu_crtc * 344 get_crtc_by_otg_inst(struct amdgpu_device *adev, 345 int otg_inst) 346 { 347 struct drm_device *dev = adev_to_drm(adev); 348 struct drm_crtc *crtc; 349 struct amdgpu_crtc *amdgpu_crtc; 350 351 if (WARN_ON(otg_inst == -1)) 352 return adev->mode_info.crtcs[0]; 353 354 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 355 amdgpu_crtc = to_amdgpu_crtc(crtc); 356 357 if (amdgpu_crtc->otg_inst == otg_inst) 358 return amdgpu_crtc; 359 } 360 361 return NULL; 362 } 363 364 static inline bool is_dc_timing_adjust_needed(struct dm_crtc_state *old_state, 365 struct dm_crtc_state *new_state) 366 { 367 if (new_state->stream->adjust.timing_adjust_pending) 368 return true; 369 if (new_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) 370 return true; 371 else if (amdgpu_dm_crtc_vrr_active(old_state) != amdgpu_dm_crtc_vrr_active(new_state)) 372 return true; 373 else 374 return false; 375 } 376 377 /* 378 * DC will program planes with their z-order determined by their ordering 379 * in the dc_surface_updates array. This comparator is used to sort them 380 * by descending zpos. 381 */ 382 static int dm_plane_layer_index_cmp(const void *a, const void *b) 383 { 384 const struct dc_surface_update *sa = (struct dc_surface_update *)a; 385 const struct dc_surface_update *sb = (struct dc_surface_update *)b; 386 387 /* Sort by descending dc_plane layer_index (i.e. normalized_zpos) */ 388 return sb->surface->layer_index - sa->surface->layer_index; 389 } 390 391 /** 392 * update_planes_and_stream_adapter() - Send planes to be updated in DC 393 * 394 * DC has a generic way to update planes and stream via 395 * dc_update_planes_and_stream function; however, DM might need some 396 * adjustments and preparation before calling it. This function is a wrapper 397 * for the dc_update_planes_and_stream that does any required configuration 398 * before passing control to DC. 399 * 400 * @dc: Display Core control structure 401 * @update_type: specify whether it is FULL/MEDIUM/FAST update 402 * @planes_count: planes count to update 403 * @stream: stream state 404 * @stream_update: stream update 405 * @array_of_surface_update: dc surface update pointer 406 * 407 */ 408 static inline bool update_planes_and_stream_adapter(struct dc *dc, 409 int update_type, 410 int planes_count, 411 struct dc_stream_state *stream, 412 struct dc_stream_update *stream_update, 413 struct dc_surface_update *array_of_surface_update) 414 { 415 sort(array_of_surface_update, planes_count, 416 sizeof(*array_of_surface_update), dm_plane_layer_index_cmp, NULL); 417 418 /* 419 * Previous frame finished and HW is ready for optimization. 420 */ 421 dc_post_update_surfaces_to_stream(dc); 422 423 return dc_update_planes_and_stream(dc, 424 array_of_surface_update, 425 planes_count, 426 stream, 427 stream_update); 428 } 429 430 /** 431 * dm_pflip_high_irq() - Handle pageflip interrupt 432 * @interrupt_params: ignored 433 * 434 * Handles the pageflip interrupt by notifying all interested parties 435 * that the pageflip has been completed. 436 */ 437 static void dm_pflip_high_irq(void *interrupt_params) 438 { 439 struct amdgpu_crtc *amdgpu_crtc; 440 struct common_irq_params *irq_params = interrupt_params; 441 struct amdgpu_device *adev = irq_params->adev; 442 struct drm_device *dev = adev_to_drm(adev); 443 unsigned long flags; 444 struct drm_pending_vblank_event *e; 445 u32 vpos, hpos, v_blank_start, v_blank_end; 446 bool vrr_active; 447 448 amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP); 449 450 /* IRQ could occur when in initial stage */ 451 /* TODO work and BO cleanup */ 452 if (amdgpu_crtc == NULL) { 453 drm_dbg_state(dev, "CRTC is null, returning.\n"); 454 return; 455 } 456 457 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 458 459 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED) { 460 drm_dbg_state(dev, 461 "amdgpu_crtc->pflip_status = %d != AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p]\n", 462 amdgpu_crtc->pflip_status, AMDGPU_FLIP_SUBMITTED, 463 amdgpu_crtc->crtc_id, amdgpu_crtc); 464 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 465 return; 466 } 467 468 /* page flip completed. */ 469 e = amdgpu_crtc->event; 470 amdgpu_crtc->event = NULL; 471 472 WARN_ON(!e); 473 474 vrr_active = amdgpu_dm_crtc_vrr_active_irq(amdgpu_crtc); 475 476 /* Fixed refresh rate, or VRR scanout position outside front-porch? */ 477 if (!vrr_active || 478 !dc_stream_get_scanoutpos(amdgpu_crtc->dm_irq_params.stream, &v_blank_start, 479 &v_blank_end, &hpos, &vpos) || 480 (vpos < v_blank_start)) { 481 /* Update to correct count and vblank timestamp if racing with 482 * vblank irq. This also updates to the correct vblank timestamp 483 * even in VRR mode, as scanout is past the front-porch atm. 484 */ 485 drm_crtc_accurate_vblank_count(&amdgpu_crtc->base); 486 487 /* Wake up userspace by sending the pageflip event with proper 488 * count and timestamp of vblank of flip completion. 489 */ 490 if (e) { 491 drm_crtc_send_vblank_event(&amdgpu_crtc->base, e); 492 493 /* Event sent, so done with vblank for this flip */ 494 drm_crtc_vblank_put(&amdgpu_crtc->base); 495 } 496 } else if (e) { 497 /* VRR active and inside front-porch: vblank count and 498 * timestamp for pageflip event will only be up to date after 499 * drm_crtc_handle_vblank() has been executed from late vblank 500 * irq handler after start of back-porch (vline 0). We queue the 501 * pageflip event for send-out by drm_crtc_handle_vblank() with 502 * updated timestamp and count, once it runs after us. 503 * 504 * We need to open-code this instead of using the helper 505 * drm_crtc_arm_vblank_event(), as that helper would 506 * call drm_crtc_accurate_vblank_count(), which we must 507 * not call in VRR mode while we are in front-porch! 508 */ 509 510 /* sequence will be replaced by real count during send-out. */ 511 e->sequence = drm_crtc_vblank_count(&amdgpu_crtc->base); 512 e->pipe = amdgpu_crtc->crtc_id; 513 514 list_add_tail(&e->base.link, &adev_to_drm(adev)->vblank_event_list); 515 e = NULL; 516 } 517 518 /* Keep track of vblank of this flip for flip throttling. We use the 519 * cooked hw counter, as that one incremented at start of this vblank 520 * of pageflip completion, so last_flip_vblank is the forbidden count 521 * for queueing new pageflips if vsync + VRR is enabled. 522 */ 523 amdgpu_crtc->dm_irq_params.last_flip_vblank = 524 amdgpu_get_vblank_counter_kms(&amdgpu_crtc->base); 525 526 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE; 527 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 528 529 drm_dbg_state(dev, 530 "crtc:%d[%p], pflip_stat:AMDGPU_FLIP_NONE, vrr[%d]-fp %d\n", 531 amdgpu_crtc->crtc_id, amdgpu_crtc, vrr_active, (int)!e); 532 } 533 534 static void dm_handle_vmin_vmax_update(struct work_struct *offload_work) 535 { 536 struct vupdate_offload_work *work = container_of(offload_work, struct vupdate_offload_work, work); 537 struct amdgpu_device *adev = work->adev; 538 struct dc_stream_state *stream = work->stream; 539 struct dc_crtc_timing_adjust *adjust = work->adjust; 540 541 mutex_lock(&adev->dm.dc_lock); 542 dc_stream_adjust_vmin_vmax(adev->dm.dc, stream, adjust); 543 mutex_unlock(&adev->dm.dc_lock); 544 545 dc_stream_release(stream); 546 kfree(work->adjust); 547 kfree(work); 548 } 549 550 static void schedule_dc_vmin_vmax(struct amdgpu_device *adev, 551 struct dc_stream_state *stream, 552 struct dc_crtc_timing_adjust *adjust) 553 { 554 struct vupdate_offload_work *offload_work = kzalloc(sizeof(*offload_work), GFP_NOWAIT); 555 if (!offload_work) { 556 drm_dbg_driver(adev_to_drm(adev), "Failed to allocate vupdate_offload_work\n"); 557 return; 558 } 559 560 struct dc_crtc_timing_adjust *adjust_copy = kzalloc(sizeof(*adjust_copy), GFP_NOWAIT); 561 if (!adjust_copy) { 562 drm_dbg_driver(adev_to_drm(adev), "Failed to allocate adjust_copy\n"); 563 kfree(offload_work); 564 return; 565 } 566 567 dc_stream_retain(stream); 568 memcpy(adjust_copy, adjust, sizeof(*adjust_copy)); 569 570 INIT_WORK(&offload_work->work, dm_handle_vmin_vmax_update); 571 offload_work->adev = adev; 572 offload_work->stream = stream; 573 offload_work->adjust = adjust_copy; 574 575 queue_work(system_wq, &offload_work->work); 576 } 577 578 static void dm_vupdate_high_irq(void *interrupt_params) 579 { 580 struct common_irq_params *irq_params = interrupt_params; 581 struct amdgpu_device *adev = irq_params->adev; 582 struct amdgpu_crtc *acrtc; 583 struct drm_device *drm_dev; 584 struct drm_vblank_crtc *vblank; 585 ktime_t frame_duration_ns, previous_timestamp; 586 unsigned long flags; 587 int vrr_active; 588 589 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VUPDATE); 590 591 if (acrtc) { 592 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc); 593 drm_dev = acrtc->base.dev; 594 vblank = drm_crtc_vblank_crtc(&acrtc->base); 595 previous_timestamp = atomic64_read(&irq_params->previous_timestamp); 596 frame_duration_ns = vblank->time - previous_timestamp; 597 598 if (frame_duration_ns > 0) { 599 trace_amdgpu_refresh_rate_track(acrtc->base.index, 600 frame_duration_ns, 601 ktime_divns(NSEC_PER_SEC, frame_duration_ns)); 602 atomic64_set(&irq_params->previous_timestamp, vblank->time); 603 } 604 605 drm_dbg_vbl(drm_dev, 606 "crtc:%d, vupdate-vrr:%d\n", acrtc->crtc_id, 607 vrr_active); 608 609 /* Core vblank handling is done here after end of front-porch in 610 * vrr mode, as vblank timestamping will give valid results 611 * while now done after front-porch. This will also deliver 612 * page-flip completion events that have been queued to us 613 * if a pageflip happened inside front-porch. 614 */ 615 if (vrr_active && acrtc->dm_irq_params.stream) { 616 bool replay_en = acrtc->dm_irq_params.stream->link->replay_settings.replay_feature_enabled; 617 bool psr_en = acrtc->dm_irq_params.stream->link->psr_settings.psr_feature_enabled; 618 bool fs_active_var_en = acrtc->dm_irq_params.freesync_config.state 619 == VRR_STATE_ACTIVE_VARIABLE; 620 621 amdgpu_dm_crtc_handle_vblank(acrtc); 622 623 /* BTR processing for pre-DCE12 ASICs */ 624 if (adev->family < AMDGPU_FAMILY_AI) { 625 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 626 mod_freesync_handle_v_update( 627 adev->dm.freesync_module, 628 acrtc->dm_irq_params.stream, 629 &acrtc->dm_irq_params.vrr_params); 630 631 if (fs_active_var_en || (!fs_active_var_en && !replay_en && !psr_en)) { 632 schedule_dc_vmin_vmax(adev, 633 acrtc->dm_irq_params.stream, 634 &acrtc->dm_irq_params.vrr_params.adjust); 635 } 636 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 637 } 638 } 639 } 640 } 641 642 /** 643 * dm_crtc_high_irq() - Handles CRTC interrupt 644 * @interrupt_params: used for determining the CRTC instance 645 * 646 * Handles the CRTC/VSYNC interrupt by notfying DRM's VBLANK 647 * event handler. 648 */ 649 static void dm_crtc_high_irq(void *interrupt_params) 650 { 651 struct common_irq_params *irq_params = interrupt_params; 652 struct amdgpu_device *adev = irq_params->adev; 653 struct drm_writeback_job *job; 654 struct amdgpu_crtc *acrtc; 655 unsigned long flags; 656 int vrr_active; 657 658 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK); 659 if (!acrtc) 660 return; 661 662 if (acrtc->wb_conn) { 663 spin_lock_irqsave(&acrtc->wb_conn->job_lock, flags); 664 665 if (acrtc->wb_pending) { 666 job = list_first_entry_or_null(&acrtc->wb_conn->job_queue, 667 struct drm_writeback_job, 668 list_entry); 669 acrtc->wb_pending = false; 670 spin_unlock_irqrestore(&acrtc->wb_conn->job_lock, flags); 671 672 if (job) { 673 unsigned int v_total, refresh_hz; 674 struct dc_stream_state *stream = acrtc->dm_irq_params.stream; 675 676 v_total = stream->adjust.v_total_max ? 677 stream->adjust.v_total_max : stream->timing.v_total; 678 refresh_hz = div_u64((uint64_t) stream->timing.pix_clk_100hz * 679 100LL, (v_total * stream->timing.h_total)); 680 mdelay(1000 / refresh_hz); 681 682 drm_writeback_signal_completion(acrtc->wb_conn, 0); 683 dc_stream_fc_disable_writeback(adev->dm.dc, 684 acrtc->dm_irq_params.stream, 0); 685 } 686 } else 687 spin_unlock_irqrestore(&acrtc->wb_conn->job_lock, flags); 688 } 689 690 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc); 691 692 drm_dbg_vbl(adev_to_drm(adev), 693 "crtc:%d, vupdate-vrr:%d, planes:%d\n", acrtc->crtc_id, 694 vrr_active, acrtc->dm_irq_params.active_planes); 695 696 /** 697 * Core vblank handling at start of front-porch is only possible 698 * in non-vrr mode, as only there vblank timestamping will give 699 * valid results while done in front-porch. Otherwise defer it 700 * to dm_vupdate_high_irq after end of front-porch. 701 */ 702 if (!vrr_active) 703 amdgpu_dm_crtc_handle_vblank(acrtc); 704 705 /** 706 * Following stuff must happen at start of vblank, for crc 707 * computation and below-the-range btr support in vrr mode. 708 */ 709 amdgpu_dm_crtc_handle_crc_irq(&acrtc->base); 710 711 /* BTR updates need to happen before VUPDATE on Vega and above. */ 712 if (adev->family < AMDGPU_FAMILY_AI) 713 return; 714 715 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 716 717 if (acrtc->dm_irq_params.stream && 718 acrtc->dm_irq_params.vrr_params.supported) { 719 bool replay_en = acrtc->dm_irq_params.stream->link->replay_settings.replay_feature_enabled; 720 bool psr_en = acrtc->dm_irq_params.stream->link->psr_settings.psr_feature_enabled; 721 bool fs_active_var_en = acrtc->dm_irq_params.freesync_config.state == VRR_STATE_ACTIVE_VARIABLE; 722 723 mod_freesync_handle_v_update(adev->dm.freesync_module, 724 acrtc->dm_irq_params.stream, 725 &acrtc->dm_irq_params.vrr_params); 726 727 /* update vmin_vmax only if freesync is enabled, or only if PSR and REPLAY are disabled */ 728 if (fs_active_var_en || (!fs_active_var_en && !replay_en && !psr_en)) { 729 schedule_dc_vmin_vmax(adev, acrtc->dm_irq_params.stream, 730 &acrtc->dm_irq_params.vrr_params.adjust); 731 } 732 } 733 734 /* 735 * If there aren't any active_planes then DCH HUBP may be clock-gated. 736 * In that case, pageflip completion interrupts won't fire and pageflip 737 * completion events won't get delivered. Prevent this by sending 738 * pending pageflip events from here if a flip is still pending. 739 * 740 * If any planes are enabled, use dm_pflip_high_irq() instead, to 741 * avoid race conditions between flip programming and completion, 742 * which could cause too early flip completion events. 743 */ 744 if (adev->family >= AMDGPU_FAMILY_RV && 745 acrtc->pflip_status == AMDGPU_FLIP_SUBMITTED && 746 acrtc->dm_irq_params.active_planes == 0) { 747 if (acrtc->event) { 748 drm_crtc_send_vblank_event(&acrtc->base, acrtc->event); 749 acrtc->event = NULL; 750 drm_crtc_vblank_put(&acrtc->base); 751 } 752 acrtc->pflip_status = AMDGPU_FLIP_NONE; 753 } 754 755 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 756 } 757 758 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 759 /** 760 * dm_dcn_vertical_interrupt0_high_irq() - Handles OTG Vertical interrupt0 for 761 * DCN generation ASICs 762 * @interrupt_params: interrupt parameters 763 * 764 * Used to set crc window/read out crc value at vertical line 0 position 765 */ 766 static void dm_dcn_vertical_interrupt0_high_irq(void *interrupt_params) 767 { 768 struct common_irq_params *irq_params = interrupt_params; 769 struct amdgpu_device *adev = irq_params->adev; 770 struct amdgpu_crtc *acrtc; 771 772 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VLINE0); 773 774 if (!acrtc) 775 return; 776 777 amdgpu_dm_crtc_handle_crc_window_irq(&acrtc->base); 778 } 779 #endif /* CONFIG_DRM_AMD_SECURE_DISPLAY */ 780 781 /** 782 * dmub_aux_setconfig_callback - Callback for AUX or SET_CONFIG command. 783 * @adev: amdgpu_device pointer 784 * @notify: dmub notification structure 785 * 786 * Dmub AUX or SET_CONFIG command completion processing callback 787 * Copies dmub notification to DM which is to be read by AUX command. 788 * issuing thread and also signals the event to wake up the thread. 789 */ 790 static void dmub_aux_setconfig_callback(struct amdgpu_device *adev, 791 struct dmub_notification *notify) 792 { 793 if (adev->dm.dmub_notify) 794 memcpy(adev->dm.dmub_notify, notify, sizeof(struct dmub_notification)); 795 if (notify->type == DMUB_NOTIFICATION_AUX_REPLY) 796 complete(&adev->dm.dmub_aux_transfer_done); 797 } 798 799 static void dmub_aux_fused_io_callback(struct amdgpu_device *adev, 800 struct dmub_notification *notify) 801 { 802 if (!adev || !notify) { 803 ASSERT(false); 804 return; 805 } 806 807 const struct dmub_cmd_fused_request *req = ¬ify->fused_request; 808 const uint8_t ddc_line = req->u.aux.ddc_line; 809 810 if (ddc_line >= ARRAY_SIZE(adev->dm.fused_io)) { 811 ASSERT(false); 812 return; 813 } 814 815 struct fused_io_sync *sync = &adev->dm.fused_io[ddc_line]; 816 817 static_assert(sizeof(*req) <= sizeof(sync->reply_data), "Size mismatch"); 818 memcpy(sync->reply_data, req, sizeof(*req)); 819 complete(&sync->replied); 820 } 821 822 /** 823 * dmub_hpd_callback - DMUB HPD interrupt processing callback. 824 * @adev: amdgpu_device pointer 825 * @notify: dmub notification structure 826 * 827 * Dmub Hpd interrupt processing callback. Gets displayindex through the 828 * ink index and calls helper to do the processing. 829 */ 830 static void dmub_hpd_callback(struct amdgpu_device *adev, 831 struct dmub_notification *notify) 832 { 833 struct amdgpu_dm_connector *aconnector; 834 struct amdgpu_dm_connector *hpd_aconnector = NULL; 835 struct drm_connector *connector; 836 struct drm_connector_list_iter iter; 837 struct dc_link *link; 838 u8 link_index = 0; 839 struct drm_device *dev; 840 841 if (adev == NULL) 842 return; 843 844 if (notify == NULL) { 845 drm_err(adev_to_drm(adev), "DMUB HPD callback notification was NULL"); 846 return; 847 } 848 849 if (notify->link_index > adev->dm.dc->link_count) { 850 drm_err(adev_to_drm(adev), "DMUB HPD index (%u)is abnormal", notify->link_index); 851 return; 852 } 853 854 /* Skip DMUB HPD IRQ in suspend/resume. We will probe them later. */ 855 if (notify->type == DMUB_NOTIFICATION_HPD && adev->in_suspend) { 856 drm_info(adev_to_drm(adev), "Skip DMUB HPD IRQ callback in suspend/resume\n"); 857 return; 858 } 859 860 link_index = notify->link_index; 861 link = adev->dm.dc->links[link_index]; 862 dev = adev->dm.ddev; 863 864 drm_connector_list_iter_begin(dev, &iter); 865 drm_for_each_connector_iter(connector, &iter) { 866 867 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 868 continue; 869 870 aconnector = to_amdgpu_dm_connector(connector); 871 if (link && aconnector->dc_link == link) { 872 if (notify->type == DMUB_NOTIFICATION_HPD) 873 drm_info(adev_to_drm(adev), "DMUB HPD IRQ callback: link_index=%u\n", link_index); 874 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ) 875 drm_info(adev_to_drm(adev), "DMUB HPD RX IRQ callback: link_index=%u\n", link_index); 876 else 877 drm_warn(adev_to_drm(adev), "DMUB Unknown HPD callback type %d, link_index=%u\n", 878 notify->type, link_index); 879 880 hpd_aconnector = aconnector; 881 break; 882 } 883 } 884 drm_connector_list_iter_end(&iter); 885 886 if (hpd_aconnector) { 887 if (notify->type == DMUB_NOTIFICATION_HPD) { 888 if (hpd_aconnector->dc_link->hpd_status == (notify->hpd_status == DP_HPD_PLUG)) 889 drm_warn(adev_to_drm(adev), "DMUB reported hpd status unchanged. link_index=%u\n", link_index); 890 handle_hpd_irq_helper(hpd_aconnector); 891 } else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ) { 892 handle_hpd_rx_irq(hpd_aconnector); 893 } 894 } 895 } 896 897 /** 898 * dmub_hpd_sense_callback - DMUB HPD sense processing callback. 899 * @adev: amdgpu_device pointer 900 * @notify: dmub notification structure 901 * 902 * HPD sense changes can occur during low power states and need to be 903 * notified from firmware to driver. 904 */ 905 static void dmub_hpd_sense_callback(struct amdgpu_device *adev, 906 struct dmub_notification *notify) 907 { 908 drm_dbg_driver(adev_to_drm(adev), "DMUB HPD SENSE callback.\n"); 909 } 910 911 /** 912 * register_dmub_notify_callback - Sets callback for DMUB notify 913 * @adev: amdgpu_device pointer 914 * @type: Type of dmub notification 915 * @callback: Dmub interrupt callback function 916 * @dmub_int_thread_offload: offload indicator 917 * 918 * API to register a dmub callback handler for a dmub notification 919 * Also sets indicator whether callback processing to be offloaded. 920 * to dmub interrupt handling thread 921 * Return: true if successfully registered, false if there is existing registration 922 */ 923 static bool register_dmub_notify_callback(struct amdgpu_device *adev, 924 enum dmub_notification_type type, 925 dmub_notify_interrupt_callback_t callback, 926 bool dmub_int_thread_offload) 927 { 928 if (callback != NULL && type < ARRAY_SIZE(adev->dm.dmub_thread_offload)) { 929 adev->dm.dmub_callback[type] = callback; 930 adev->dm.dmub_thread_offload[type] = dmub_int_thread_offload; 931 } else 932 return false; 933 934 return true; 935 } 936 937 static void dm_handle_hpd_work(struct work_struct *work) 938 { 939 struct dmub_hpd_work *dmub_hpd_wrk; 940 941 dmub_hpd_wrk = container_of(work, struct dmub_hpd_work, handle_hpd_work); 942 943 if (!dmub_hpd_wrk->dmub_notify) { 944 drm_err(adev_to_drm(dmub_hpd_wrk->adev), "dmub_hpd_wrk dmub_notify is NULL"); 945 return; 946 } 947 948 if (dmub_hpd_wrk->dmub_notify->type < ARRAY_SIZE(dmub_hpd_wrk->adev->dm.dmub_callback)) { 949 dmub_hpd_wrk->adev->dm.dmub_callback[dmub_hpd_wrk->dmub_notify->type](dmub_hpd_wrk->adev, 950 dmub_hpd_wrk->dmub_notify); 951 } 952 953 kfree(dmub_hpd_wrk->dmub_notify); 954 kfree(dmub_hpd_wrk); 955 956 } 957 958 static const char *dmub_notification_type_str(enum dmub_notification_type e) 959 { 960 switch (e) { 961 case DMUB_NOTIFICATION_NO_DATA: 962 return "NO_DATA"; 963 case DMUB_NOTIFICATION_AUX_REPLY: 964 return "AUX_REPLY"; 965 case DMUB_NOTIFICATION_HPD: 966 return "HPD"; 967 case DMUB_NOTIFICATION_HPD_IRQ: 968 return "HPD_IRQ"; 969 case DMUB_NOTIFICATION_SET_CONFIG_REPLY: 970 return "SET_CONFIG_REPLY"; 971 case DMUB_NOTIFICATION_DPIA_NOTIFICATION: 972 return "DPIA_NOTIFICATION"; 973 case DMUB_NOTIFICATION_HPD_SENSE_NOTIFY: 974 return "HPD_SENSE_NOTIFY"; 975 case DMUB_NOTIFICATION_FUSED_IO: 976 return "FUSED_IO"; 977 default: 978 return "<unknown>"; 979 } 980 } 981 982 #define DMUB_TRACE_MAX_READ 64 983 /** 984 * dm_dmub_outbox1_low_irq() - Handles Outbox interrupt 985 * @interrupt_params: used for determining the Outbox instance 986 * 987 * Handles the Outbox Interrupt 988 * event handler. 989 */ 990 static void dm_dmub_outbox1_low_irq(void *interrupt_params) 991 { 992 struct dmub_notification notify = {0}; 993 struct common_irq_params *irq_params = interrupt_params; 994 struct amdgpu_device *adev = irq_params->adev; 995 struct amdgpu_display_manager *dm = &adev->dm; 996 struct dmcub_trace_buf_entry entry = { 0 }; 997 u32 count = 0; 998 struct dmub_hpd_work *dmub_hpd_wrk; 999 1000 do { 1001 if (dc_dmub_srv_get_dmub_outbox0_msg(dm->dc, &entry)) { 1002 trace_amdgpu_dmub_trace_high_irq(entry.trace_code, entry.tick_count, 1003 entry.param0, entry.param1); 1004 1005 drm_dbg_driver(adev_to_drm(adev), "trace_code:%u, tick_count:%u, param0:%u, param1:%u\n", 1006 entry.trace_code, entry.tick_count, entry.param0, entry.param1); 1007 } else 1008 break; 1009 1010 count++; 1011 1012 } while (count <= DMUB_TRACE_MAX_READ); 1013 1014 if (count > DMUB_TRACE_MAX_READ) 1015 drm_dbg_driver(adev_to_drm(adev), "Warning : count > DMUB_TRACE_MAX_READ"); 1016 1017 if (dc_enable_dmub_notifications(adev->dm.dc) && 1018 irq_params->irq_src == DC_IRQ_SOURCE_DMCUB_OUTBOX) { 1019 1020 do { 1021 dc_stat_get_dmub_notification(adev->dm.dc, ¬ify); 1022 if (notify.type >= ARRAY_SIZE(dm->dmub_thread_offload)) { 1023 drm_err(adev_to_drm(adev), "DM: notify type %d invalid!", notify.type); 1024 continue; 1025 } 1026 if (!dm->dmub_callback[notify.type]) { 1027 drm_warn(adev_to_drm(adev), "DMUB notification skipped due to no handler: type=%s\n", 1028 dmub_notification_type_str(notify.type)); 1029 continue; 1030 } 1031 if (dm->dmub_thread_offload[notify.type] == true) { 1032 dmub_hpd_wrk = kzalloc(sizeof(*dmub_hpd_wrk), GFP_ATOMIC); 1033 if (!dmub_hpd_wrk) { 1034 drm_err(adev_to_drm(adev), "Failed to allocate dmub_hpd_wrk"); 1035 return; 1036 } 1037 dmub_hpd_wrk->dmub_notify = kmemdup(¬ify, sizeof(struct dmub_notification), 1038 GFP_ATOMIC); 1039 if (!dmub_hpd_wrk->dmub_notify) { 1040 kfree(dmub_hpd_wrk); 1041 drm_err(adev_to_drm(adev), "Failed to allocate dmub_hpd_wrk->dmub_notify"); 1042 return; 1043 } 1044 INIT_WORK(&dmub_hpd_wrk->handle_hpd_work, dm_handle_hpd_work); 1045 dmub_hpd_wrk->adev = adev; 1046 queue_work(adev->dm.delayed_hpd_wq, &dmub_hpd_wrk->handle_hpd_work); 1047 } else { 1048 dm->dmub_callback[notify.type](adev, ¬ify); 1049 } 1050 } while (notify.pending_notification); 1051 } 1052 } 1053 1054 static int dm_set_clockgating_state(struct amdgpu_ip_block *ip_block, 1055 enum amd_clockgating_state state) 1056 { 1057 return 0; 1058 } 1059 1060 static int dm_set_powergating_state(struct amdgpu_ip_block *ip_block, 1061 enum amd_powergating_state state) 1062 { 1063 return 0; 1064 } 1065 1066 /* Prototypes of private functions */ 1067 static int dm_early_init(struct amdgpu_ip_block *ip_block); 1068 1069 /* Allocate memory for FBC compressed data */ 1070 static void amdgpu_dm_fbc_init(struct drm_connector *connector) 1071 { 1072 struct amdgpu_device *adev = drm_to_adev(connector->dev); 1073 struct dm_compressor_info *compressor = &adev->dm.compressor; 1074 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector); 1075 struct drm_display_mode *mode; 1076 unsigned long max_size = 0; 1077 1078 if (adev->dm.dc->fbc_compressor == NULL) 1079 return; 1080 1081 if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP) 1082 return; 1083 1084 if (compressor->bo_ptr) 1085 return; 1086 1087 1088 list_for_each_entry(mode, &connector->modes, head) { 1089 if (max_size < (unsigned long) mode->htotal * mode->vtotal) 1090 max_size = (unsigned long) mode->htotal * mode->vtotal; 1091 } 1092 1093 if (max_size) { 1094 int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE, 1095 AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr, 1096 &compressor->gpu_addr, &compressor->cpu_addr); 1097 1098 if (r) 1099 drm_err(adev_to_drm(adev), "DM: Failed to initialize FBC\n"); 1100 else { 1101 adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr; 1102 drm_info(adev_to_drm(adev), "DM: FBC alloc %lu\n", max_size*4); 1103 } 1104 1105 } 1106 1107 } 1108 1109 static int amdgpu_dm_audio_component_get_eld(struct device *kdev, int port, 1110 int pipe, bool *enabled, 1111 unsigned char *buf, int max_bytes) 1112 { 1113 struct drm_device *dev = dev_get_drvdata(kdev); 1114 struct amdgpu_device *adev = drm_to_adev(dev); 1115 struct drm_connector *connector; 1116 struct drm_connector_list_iter conn_iter; 1117 struct amdgpu_dm_connector *aconnector; 1118 int ret = 0; 1119 1120 *enabled = false; 1121 1122 mutex_lock(&adev->dm.audio_lock); 1123 1124 drm_connector_list_iter_begin(dev, &conn_iter); 1125 drm_for_each_connector_iter(connector, &conn_iter) { 1126 1127 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 1128 continue; 1129 1130 aconnector = to_amdgpu_dm_connector(connector); 1131 if (aconnector->audio_inst != port) 1132 continue; 1133 1134 *enabled = true; 1135 mutex_lock(&connector->eld_mutex); 1136 ret = drm_eld_size(connector->eld); 1137 memcpy(buf, connector->eld, min(max_bytes, ret)); 1138 mutex_unlock(&connector->eld_mutex); 1139 1140 break; 1141 } 1142 drm_connector_list_iter_end(&conn_iter); 1143 1144 mutex_unlock(&adev->dm.audio_lock); 1145 1146 DRM_DEBUG_KMS("Get ELD : idx=%d ret=%d en=%d\n", port, ret, *enabled); 1147 1148 return ret; 1149 } 1150 1151 static const struct drm_audio_component_ops amdgpu_dm_audio_component_ops = { 1152 .get_eld = amdgpu_dm_audio_component_get_eld, 1153 }; 1154 1155 static int amdgpu_dm_audio_component_bind(struct device *kdev, 1156 struct device *hda_kdev, void *data) 1157 { 1158 struct drm_device *dev = dev_get_drvdata(kdev); 1159 struct amdgpu_device *adev = drm_to_adev(dev); 1160 struct drm_audio_component *acomp = data; 1161 1162 acomp->ops = &amdgpu_dm_audio_component_ops; 1163 acomp->dev = kdev; 1164 adev->dm.audio_component = acomp; 1165 1166 return 0; 1167 } 1168 1169 static void amdgpu_dm_audio_component_unbind(struct device *kdev, 1170 struct device *hda_kdev, void *data) 1171 { 1172 struct amdgpu_device *adev = drm_to_adev(dev_get_drvdata(kdev)); 1173 struct drm_audio_component *acomp = data; 1174 1175 acomp->ops = NULL; 1176 acomp->dev = NULL; 1177 adev->dm.audio_component = NULL; 1178 } 1179 1180 static const struct component_ops amdgpu_dm_audio_component_bind_ops = { 1181 .bind = amdgpu_dm_audio_component_bind, 1182 .unbind = amdgpu_dm_audio_component_unbind, 1183 }; 1184 1185 static int amdgpu_dm_audio_init(struct amdgpu_device *adev) 1186 { 1187 int i, ret; 1188 1189 if (!amdgpu_audio) 1190 return 0; 1191 1192 adev->mode_info.audio.enabled = true; 1193 1194 adev->mode_info.audio.num_pins = adev->dm.dc->res_pool->audio_count; 1195 1196 for (i = 0; i < adev->mode_info.audio.num_pins; i++) { 1197 adev->mode_info.audio.pin[i].channels = -1; 1198 adev->mode_info.audio.pin[i].rate = -1; 1199 adev->mode_info.audio.pin[i].bits_per_sample = -1; 1200 adev->mode_info.audio.pin[i].status_bits = 0; 1201 adev->mode_info.audio.pin[i].category_code = 0; 1202 adev->mode_info.audio.pin[i].connected = false; 1203 adev->mode_info.audio.pin[i].id = 1204 adev->dm.dc->res_pool->audios[i]->inst; 1205 adev->mode_info.audio.pin[i].offset = 0; 1206 } 1207 1208 ret = component_add(adev->dev, &amdgpu_dm_audio_component_bind_ops); 1209 if (ret < 0) 1210 return ret; 1211 1212 adev->dm.audio_registered = true; 1213 1214 return 0; 1215 } 1216 1217 static void amdgpu_dm_audio_fini(struct amdgpu_device *adev) 1218 { 1219 if (!amdgpu_audio) 1220 return; 1221 1222 if (!adev->mode_info.audio.enabled) 1223 return; 1224 1225 if (adev->dm.audio_registered) { 1226 component_del(adev->dev, &amdgpu_dm_audio_component_bind_ops); 1227 adev->dm.audio_registered = false; 1228 } 1229 1230 /* TODO: Disable audio? */ 1231 1232 adev->mode_info.audio.enabled = false; 1233 } 1234 1235 static void amdgpu_dm_audio_eld_notify(struct amdgpu_device *adev, int pin) 1236 { 1237 struct drm_audio_component *acomp = adev->dm.audio_component; 1238 1239 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify) { 1240 DRM_DEBUG_KMS("Notify ELD: %d\n", pin); 1241 1242 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr, 1243 pin, -1); 1244 } 1245 } 1246 1247 static int dm_dmub_hw_init(struct amdgpu_device *adev) 1248 { 1249 const struct dmcub_firmware_header_v1_0 *hdr; 1250 struct dmub_srv *dmub_srv = adev->dm.dmub_srv; 1251 struct dmub_srv_fb_info *fb_info = adev->dm.dmub_fb_info; 1252 const struct firmware *dmub_fw = adev->dm.dmub_fw; 1253 struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu; 1254 struct abm *abm = adev->dm.dc->res_pool->abm; 1255 struct dc_context *ctx = adev->dm.dc->ctx; 1256 struct dmub_srv_hw_params hw_params; 1257 enum dmub_status status; 1258 const unsigned char *fw_inst_const, *fw_bss_data; 1259 u32 i, fw_inst_const_size, fw_bss_data_size; 1260 bool has_hw_support; 1261 1262 if (!dmub_srv) 1263 /* DMUB isn't supported on the ASIC. */ 1264 return 0; 1265 1266 if (!fb_info) { 1267 drm_err(adev_to_drm(adev), "No framebuffer info for DMUB service.\n"); 1268 return -EINVAL; 1269 } 1270 1271 if (!dmub_fw) { 1272 /* Firmware required for DMUB support. */ 1273 drm_err(adev_to_drm(adev), "No firmware provided for DMUB.\n"); 1274 return -EINVAL; 1275 } 1276 1277 /* initialize register offsets for ASICs with runtime initialization available */ 1278 if (dmub_srv->hw_funcs.init_reg_offsets) 1279 dmub_srv->hw_funcs.init_reg_offsets(dmub_srv, ctx); 1280 1281 status = dmub_srv_has_hw_support(dmub_srv, &has_hw_support); 1282 if (status != DMUB_STATUS_OK) { 1283 drm_err(adev_to_drm(adev), "Error checking HW support for DMUB: %d\n", status); 1284 return -EINVAL; 1285 } 1286 1287 if (!has_hw_support) { 1288 drm_info(adev_to_drm(adev), "DMUB unsupported on ASIC\n"); 1289 return 0; 1290 } 1291 1292 /* Reset DMCUB if it was previously running - before we overwrite its memory. */ 1293 status = dmub_srv_hw_reset(dmub_srv); 1294 if (status != DMUB_STATUS_OK) 1295 drm_warn(adev_to_drm(adev), "Error resetting DMUB HW: %d\n", status); 1296 1297 hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data; 1298 1299 fw_inst_const = dmub_fw->data + 1300 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 1301 PSP_HEADER_BYTES; 1302 1303 fw_bss_data = dmub_fw->data + 1304 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 1305 le32_to_cpu(hdr->inst_const_bytes); 1306 1307 /* Copy firmware and bios info into FB memory. */ 1308 fw_inst_const_size = le32_to_cpu(hdr->inst_const_bytes) - 1309 PSP_HEADER_BYTES - PSP_FOOTER_BYTES; 1310 1311 fw_bss_data_size = le32_to_cpu(hdr->bss_data_bytes); 1312 1313 /* if adev->firmware.load_type == AMDGPU_FW_LOAD_PSP, 1314 * amdgpu_ucode_init_single_fw will load dmub firmware 1315 * fw_inst_const part to cw0; otherwise, the firmware back door load 1316 * will be done by dm_dmub_hw_init 1317 */ 1318 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) { 1319 memcpy(fb_info->fb[DMUB_WINDOW_0_INST_CONST].cpu_addr, fw_inst_const, 1320 fw_inst_const_size); 1321 } 1322 1323 if (fw_bss_data_size) 1324 memcpy(fb_info->fb[DMUB_WINDOW_2_BSS_DATA].cpu_addr, 1325 fw_bss_data, fw_bss_data_size); 1326 1327 /* Copy firmware bios info into FB memory. */ 1328 memcpy(fb_info->fb[DMUB_WINDOW_3_VBIOS].cpu_addr, adev->bios, 1329 adev->bios_size); 1330 1331 /* Reset regions that need to be reset. */ 1332 memset(fb_info->fb[DMUB_WINDOW_4_MAILBOX].cpu_addr, 0, 1333 fb_info->fb[DMUB_WINDOW_4_MAILBOX].size); 1334 1335 memset(fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].cpu_addr, 0, 1336 fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].size); 1337 1338 memset(fb_info->fb[DMUB_WINDOW_6_FW_STATE].cpu_addr, 0, 1339 fb_info->fb[DMUB_WINDOW_6_FW_STATE].size); 1340 1341 memset(fb_info->fb[DMUB_WINDOW_SHARED_STATE].cpu_addr, 0, 1342 fb_info->fb[DMUB_WINDOW_SHARED_STATE].size); 1343 1344 /* Initialize hardware. */ 1345 memset(&hw_params, 0, sizeof(hw_params)); 1346 hw_params.fb_base = adev->gmc.fb_start; 1347 hw_params.fb_offset = adev->vm_manager.vram_base_offset; 1348 1349 /* backdoor load firmware and trigger dmub running */ 1350 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) 1351 hw_params.load_inst_const = true; 1352 1353 if (dmcu) 1354 hw_params.psp_version = dmcu->psp_version; 1355 1356 for (i = 0; i < fb_info->num_fb; ++i) 1357 hw_params.fb[i] = &fb_info->fb[i]; 1358 1359 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 1360 case IP_VERSION(3, 1, 3): 1361 case IP_VERSION(3, 1, 4): 1362 case IP_VERSION(3, 5, 0): 1363 case IP_VERSION(3, 5, 1): 1364 case IP_VERSION(3, 6, 0): 1365 case IP_VERSION(4, 0, 1): 1366 hw_params.dpia_supported = true; 1367 hw_params.disable_dpia = adev->dm.dc->debug.dpia_debug.bits.disable_dpia; 1368 break; 1369 default: 1370 break; 1371 } 1372 1373 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 1374 case IP_VERSION(3, 5, 0): 1375 case IP_VERSION(3, 5, 1): 1376 case IP_VERSION(3, 6, 0): 1377 hw_params.ips_sequential_ono = adev->external_rev_id > 0x10; 1378 hw_params.lower_hbr3_phy_ssc = true; 1379 break; 1380 default: 1381 break; 1382 } 1383 1384 status = dmub_srv_hw_init(dmub_srv, &hw_params); 1385 if (status != DMUB_STATUS_OK) { 1386 drm_err(adev_to_drm(adev), "Error initializing DMUB HW: %d\n", status); 1387 return -EINVAL; 1388 } 1389 1390 /* Wait for firmware load to finish. */ 1391 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000); 1392 if (status != DMUB_STATUS_OK) 1393 drm_warn(adev_to_drm(adev), "Wait for DMUB auto-load failed: %d\n", status); 1394 1395 /* Init DMCU and ABM if available. */ 1396 if (dmcu && abm) { 1397 dmcu->funcs->dmcu_init(dmcu); 1398 abm->dmcu_is_running = dmcu->funcs->is_dmcu_initialized(dmcu); 1399 } 1400 1401 if (!adev->dm.dc->ctx->dmub_srv) 1402 adev->dm.dc->ctx->dmub_srv = dc_dmub_srv_create(adev->dm.dc, dmub_srv); 1403 if (!adev->dm.dc->ctx->dmub_srv) { 1404 drm_err(adev_to_drm(adev), "Couldn't allocate DC DMUB server!\n"); 1405 return -ENOMEM; 1406 } 1407 1408 drm_info(adev_to_drm(adev), "DMUB hardware initialized: version=0x%08X\n", 1409 adev->dm.dmcub_fw_version); 1410 1411 /* Keeping sanity checks off if 1412 * DCN31 >= 4.0.59.0 1413 * DCN314 >= 8.0.16.0 1414 * Otherwise, turn on sanity checks 1415 */ 1416 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 1417 case IP_VERSION(3, 1, 2): 1418 case IP_VERSION(3, 1, 3): 1419 if (adev->dm.dmcub_fw_version && 1420 adev->dm.dmcub_fw_version >= DMUB_FW_VERSION(4, 0, 0) && 1421 adev->dm.dmcub_fw_version < DMUB_FW_VERSION(4, 0, 59)) 1422 adev->dm.dc->debug.sanity_checks = true; 1423 break; 1424 case IP_VERSION(3, 1, 4): 1425 if (adev->dm.dmcub_fw_version && 1426 adev->dm.dmcub_fw_version >= DMUB_FW_VERSION(4, 0, 0) && 1427 adev->dm.dmcub_fw_version < DMUB_FW_VERSION(8, 0, 16)) 1428 adev->dm.dc->debug.sanity_checks = true; 1429 break; 1430 default: 1431 break; 1432 } 1433 1434 return 0; 1435 } 1436 1437 static void dm_dmub_hw_resume(struct amdgpu_device *adev) 1438 { 1439 struct dmub_srv *dmub_srv = adev->dm.dmub_srv; 1440 enum dmub_status status; 1441 bool init; 1442 int r; 1443 1444 if (!dmub_srv) { 1445 /* DMUB isn't supported on the ASIC. */ 1446 return; 1447 } 1448 1449 status = dmub_srv_is_hw_init(dmub_srv, &init); 1450 if (status != DMUB_STATUS_OK) 1451 drm_warn(adev_to_drm(adev), "DMUB hardware init check failed: %d\n", status); 1452 1453 if (status == DMUB_STATUS_OK && init) { 1454 /* Wait for firmware load to finish. */ 1455 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000); 1456 if (status != DMUB_STATUS_OK) 1457 drm_warn(adev_to_drm(adev), "Wait for DMUB auto-load failed: %d\n", status); 1458 } else { 1459 /* Perform the full hardware initialization. */ 1460 r = dm_dmub_hw_init(adev); 1461 if (r) 1462 drm_err(adev_to_drm(adev), "DMUB interface failed to initialize: status=%d\n", r); 1463 } 1464 } 1465 1466 static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config) 1467 { 1468 u64 pt_base; 1469 u32 logical_addr_low; 1470 u32 logical_addr_high; 1471 u32 agp_base, agp_bot, agp_top; 1472 PHYSICAL_ADDRESS_LOC page_table_start, page_table_end, page_table_base; 1473 1474 memset(pa_config, 0, sizeof(*pa_config)); 1475 1476 agp_base = 0; 1477 agp_bot = adev->gmc.agp_start >> 24; 1478 agp_top = adev->gmc.agp_end >> 24; 1479 1480 /* AGP aperture is disabled */ 1481 if (agp_bot > agp_top) { 1482 logical_addr_low = adev->gmc.fb_start >> 18; 1483 if (adev->apu_flags & (AMD_APU_IS_RAVEN2 | 1484 AMD_APU_IS_RENOIR | 1485 AMD_APU_IS_GREEN_SARDINE)) 1486 /* 1487 * Raven2 has a HW issue that it is unable to use the vram which 1488 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the 1489 * workaround that increase system aperture high address (add 1) 1490 * to get rid of the VM fault and hardware hang. 1491 */ 1492 logical_addr_high = (adev->gmc.fb_end >> 18) + 0x1; 1493 else 1494 logical_addr_high = adev->gmc.fb_end >> 18; 1495 } else { 1496 logical_addr_low = min(adev->gmc.fb_start, adev->gmc.agp_start) >> 18; 1497 if (adev->apu_flags & (AMD_APU_IS_RAVEN2 | 1498 AMD_APU_IS_RENOIR | 1499 AMD_APU_IS_GREEN_SARDINE)) 1500 /* 1501 * Raven2 has a HW issue that it is unable to use the vram which 1502 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the 1503 * workaround that increase system aperture high address (add 1) 1504 * to get rid of the VM fault and hardware hang. 1505 */ 1506 logical_addr_high = max((adev->gmc.fb_end >> 18) + 0x1, adev->gmc.agp_end >> 18); 1507 else 1508 logical_addr_high = max(adev->gmc.fb_end, adev->gmc.agp_end) >> 18; 1509 } 1510 1511 pt_base = amdgpu_gmc_pd_addr(adev->gart.bo); 1512 1513 page_table_start.high_part = upper_32_bits(adev->gmc.gart_start >> 1514 AMDGPU_GPU_PAGE_SHIFT); 1515 page_table_start.low_part = lower_32_bits(adev->gmc.gart_start >> 1516 AMDGPU_GPU_PAGE_SHIFT); 1517 page_table_end.high_part = upper_32_bits(adev->gmc.gart_end >> 1518 AMDGPU_GPU_PAGE_SHIFT); 1519 page_table_end.low_part = lower_32_bits(adev->gmc.gart_end >> 1520 AMDGPU_GPU_PAGE_SHIFT); 1521 page_table_base.high_part = upper_32_bits(pt_base); 1522 page_table_base.low_part = lower_32_bits(pt_base); 1523 1524 pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18; 1525 pa_config->system_aperture.end_addr = (uint64_t)logical_addr_high << 18; 1526 1527 pa_config->system_aperture.agp_base = (uint64_t)agp_base << 24; 1528 pa_config->system_aperture.agp_bot = (uint64_t)agp_bot << 24; 1529 pa_config->system_aperture.agp_top = (uint64_t)agp_top << 24; 1530 1531 pa_config->system_aperture.fb_base = adev->gmc.fb_start; 1532 pa_config->system_aperture.fb_offset = adev->vm_manager.vram_base_offset; 1533 pa_config->system_aperture.fb_top = adev->gmc.fb_end; 1534 1535 pa_config->gart_config.page_table_start_addr = page_table_start.quad_part << 12; 1536 pa_config->gart_config.page_table_end_addr = page_table_end.quad_part << 12; 1537 pa_config->gart_config.page_table_base_addr = page_table_base.quad_part; 1538 1539 pa_config->is_hvm_enabled = adev->mode_info.gpu_vm_support; 1540 1541 } 1542 1543 static void force_connector_state( 1544 struct amdgpu_dm_connector *aconnector, 1545 enum drm_connector_force force_state) 1546 { 1547 struct drm_connector *connector = &aconnector->base; 1548 1549 mutex_lock(&connector->dev->mode_config.mutex); 1550 aconnector->base.force = force_state; 1551 mutex_unlock(&connector->dev->mode_config.mutex); 1552 1553 mutex_lock(&aconnector->hpd_lock); 1554 drm_kms_helper_connector_hotplug_event(connector); 1555 mutex_unlock(&aconnector->hpd_lock); 1556 } 1557 1558 static void dm_handle_hpd_rx_offload_work(struct work_struct *work) 1559 { 1560 struct hpd_rx_irq_offload_work *offload_work; 1561 struct amdgpu_dm_connector *aconnector; 1562 struct dc_link *dc_link; 1563 struct amdgpu_device *adev; 1564 enum dc_connection_type new_connection_type = dc_connection_none; 1565 unsigned long flags; 1566 union test_response test_response; 1567 1568 memset(&test_response, 0, sizeof(test_response)); 1569 1570 offload_work = container_of(work, struct hpd_rx_irq_offload_work, work); 1571 aconnector = offload_work->offload_wq->aconnector; 1572 adev = offload_work->adev; 1573 1574 if (!aconnector) { 1575 drm_err(adev_to_drm(adev), "Can't retrieve aconnector in hpd_rx_irq_offload_work"); 1576 goto skip; 1577 } 1578 1579 dc_link = aconnector->dc_link; 1580 1581 mutex_lock(&aconnector->hpd_lock); 1582 if (!dc_link_detect_connection_type(dc_link, &new_connection_type)) 1583 drm_err(adev_to_drm(adev), "KMS: Failed to detect connector\n"); 1584 mutex_unlock(&aconnector->hpd_lock); 1585 1586 if (new_connection_type == dc_connection_none) 1587 goto skip; 1588 1589 if (amdgpu_in_reset(adev)) 1590 goto skip; 1591 1592 if (offload_work->data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY || 1593 offload_work->data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) { 1594 dm_handle_mst_sideband_msg_ready_event(&aconnector->mst_mgr, DOWN_OR_UP_MSG_RDY_EVENT); 1595 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags); 1596 offload_work->offload_wq->is_handling_mst_msg_rdy_event = false; 1597 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags); 1598 goto skip; 1599 } 1600 1601 mutex_lock(&adev->dm.dc_lock); 1602 if (offload_work->data.bytes.device_service_irq.bits.AUTOMATED_TEST) { 1603 dc_link_dp_handle_automated_test(dc_link); 1604 1605 if (aconnector->timing_changed) { 1606 /* force connector disconnect and reconnect */ 1607 force_connector_state(aconnector, DRM_FORCE_OFF); 1608 msleep(100); 1609 force_connector_state(aconnector, DRM_FORCE_UNSPECIFIED); 1610 } 1611 1612 test_response.bits.ACK = 1; 1613 1614 core_link_write_dpcd( 1615 dc_link, 1616 DP_TEST_RESPONSE, 1617 &test_response.raw, 1618 sizeof(test_response)); 1619 } else if ((dc_link->connector_signal != SIGNAL_TYPE_EDP) && 1620 dc_link_check_link_loss_status(dc_link, &offload_work->data) && 1621 dc_link_dp_allow_hpd_rx_irq(dc_link)) { 1622 /* offload_work->data is from handle_hpd_rx_irq-> 1623 * schedule_hpd_rx_offload_work.this is defer handle 1624 * for hpd short pulse. upon here, link status may be 1625 * changed, need get latest link status from dpcd 1626 * registers. if link status is good, skip run link 1627 * training again. 1628 */ 1629 union hpd_irq_data irq_data; 1630 1631 memset(&irq_data, 0, sizeof(irq_data)); 1632 1633 /* before dc_link_dp_handle_link_loss, allow new link lost handle 1634 * request be added to work queue if link lost at end of dc_link_ 1635 * dp_handle_link_loss 1636 */ 1637 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags); 1638 offload_work->offload_wq->is_handling_link_loss = false; 1639 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags); 1640 1641 if ((dc_link_dp_read_hpd_rx_irq_data(dc_link, &irq_data) == DC_OK) && 1642 dc_link_check_link_loss_status(dc_link, &irq_data)) 1643 dc_link_dp_handle_link_loss(dc_link); 1644 } 1645 mutex_unlock(&adev->dm.dc_lock); 1646 1647 skip: 1648 kfree(offload_work); 1649 1650 } 1651 1652 static struct hpd_rx_irq_offload_work_queue *hpd_rx_irq_create_workqueue(struct amdgpu_device *adev) 1653 { 1654 struct dc *dc = adev->dm.dc; 1655 int max_caps = dc->caps.max_links; 1656 int i = 0; 1657 struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq = NULL; 1658 1659 hpd_rx_offload_wq = kcalloc(max_caps, sizeof(*hpd_rx_offload_wq), GFP_KERNEL); 1660 1661 if (!hpd_rx_offload_wq) 1662 return NULL; 1663 1664 1665 for (i = 0; i < max_caps; i++) { 1666 hpd_rx_offload_wq[i].wq = 1667 create_singlethread_workqueue("amdgpu_dm_hpd_rx_offload_wq"); 1668 1669 if (hpd_rx_offload_wq[i].wq == NULL) { 1670 drm_err(adev_to_drm(adev), "create amdgpu_dm_hpd_rx_offload_wq fail!"); 1671 goto out_err; 1672 } 1673 1674 spin_lock_init(&hpd_rx_offload_wq[i].offload_lock); 1675 } 1676 1677 return hpd_rx_offload_wq; 1678 1679 out_err: 1680 for (i = 0; i < max_caps; i++) { 1681 if (hpd_rx_offload_wq[i].wq) 1682 destroy_workqueue(hpd_rx_offload_wq[i].wq); 1683 } 1684 kfree(hpd_rx_offload_wq); 1685 return NULL; 1686 } 1687 1688 struct amdgpu_stutter_quirk { 1689 u16 chip_vendor; 1690 u16 chip_device; 1691 u16 subsys_vendor; 1692 u16 subsys_device; 1693 u8 revision; 1694 }; 1695 1696 static const struct amdgpu_stutter_quirk amdgpu_stutter_quirk_list[] = { 1697 /* https://bugzilla.kernel.org/show_bug.cgi?id=214417 */ 1698 { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 }, 1699 { 0, 0, 0, 0, 0 }, 1700 }; 1701 1702 static bool dm_should_disable_stutter(struct pci_dev *pdev) 1703 { 1704 const struct amdgpu_stutter_quirk *p = amdgpu_stutter_quirk_list; 1705 1706 while (p && p->chip_device != 0) { 1707 if (pdev->vendor == p->chip_vendor && 1708 pdev->device == p->chip_device && 1709 pdev->subsystem_vendor == p->subsys_vendor && 1710 pdev->subsystem_device == p->subsys_device && 1711 pdev->revision == p->revision) { 1712 return true; 1713 } 1714 ++p; 1715 } 1716 return false; 1717 } 1718 1719 1720 void* 1721 dm_allocate_gpu_mem( 1722 struct amdgpu_device *adev, 1723 enum dc_gpu_mem_alloc_type type, 1724 size_t size, 1725 long long *addr) 1726 { 1727 struct dal_allocation *da; 1728 u32 domain = (type == DC_MEM_ALLOC_TYPE_GART) ? 1729 AMDGPU_GEM_DOMAIN_GTT : AMDGPU_GEM_DOMAIN_VRAM; 1730 int ret; 1731 1732 da = kzalloc(sizeof(struct dal_allocation), GFP_KERNEL); 1733 if (!da) 1734 return NULL; 1735 1736 ret = amdgpu_bo_create_kernel(adev, size, PAGE_SIZE, 1737 domain, &da->bo, 1738 &da->gpu_addr, &da->cpu_ptr); 1739 1740 *addr = da->gpu_addr; 1741 1742 if (ret) { 1743 kfree(da); 1744 return NULL; 1745 } 1746 1747 /* add da to list in dm */ 1748 list_add(&da->list, &adev->dm.da_list); 1749 1750 return da->cpu_ptr; 1751 } 1752 1753 void 1754 dm_free_gpu_mem( 1755 struct amdgpu_device *adev, 1756 enum dc_gpu_mem_alloc_type type, 1757 void *pvMem) 1758 { 1759 struct dal_allocation *da; 1760 1761 /* walk the da list in DM */ 1762 list_for_each_entry(da, &adev->dm.da_list, list) { 1763 if (pvMem == da->cpu_ptr) { 1764 amdgpu_bo_free_kernel(&da->bo, &da->gpu_addr, &da->cpu_ptr); 1765 list_del(&da->list); 1766 kfree(da); 1767 break; 1768 } 1769 } 1770 1771 } 1772 1773 static enum dmub_status 1774 dm_dmub_send_vbios_gpint_command(struct amdgpu_device *adev, 1775 enum dmub_gpint_command command_code, 1776 uint16_t param, 1777 uint32_t timeout_us) 1778 { 1779 union dmub_gpint_data_register reg, test; 1780 uint32_t i; 1781 1782 /* Assume that VBIOS DMUB is ready to take commands */ 1783 1784 reg.bits.status = 1; 1785 reg.bits.command_code = command_code; 1786 reg.bits.param = param; 1787 1788 cgs_write_register(adev->dm.cgs_device, 0x34c0 + 0x01f8, reg.all); 1789 1790 for (i = 0; i < timeout_us; ++i) { 1791 udelay(1); 1792 1793 /* Check if our GPINT got acked */ 1794 reg.bits.status = 0; 1795 test = (union dmub_gpint_data_register) 1796 cgs_read_register(adev->dm.cgs_device, 0x34c0 + 0x01f8); 1797 1798 if (test.all == reg.all) 1799 return DMUB_STATUS_OK; 1800 } 1801 1802 return DMUB_STATUS_TIMEOUT; 1803 } 1804 1805 static void *dm_dmub_get_vbios_bounding_box(struct amdgpu_device *adev) 1806 { 1807 void *bb; 1808 long long addr; 1809 unsigned int bb_size; 1810 int i = 0; 1811 uint16_t chunk; 1812 enum dmub_gpint_command send_addrs[] = { 1813 DMUB_GPINT__SET_BB_ADDR_WORD0, 1814 DMUB_GPINT__SET_BB_ADDR_WORD1, 1815 DMUB_GPINT__SET_BB_ADDR_WORD2, 1816 DMUB_GPINT__SET_BB_ADDR_WORD3, 1817 }; 1818 enum dmub_status ret; 1819 1820 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 1821 case IP_VERSION(4, 0, 1): 1822 bb_size = sizeof(struct dml2_soc_bb); 1823 break; 1824 default: 1825 return NULL; 1826 } 1827 1828 bb = dm_allocate_gpu_mem(adev, 1829 DC_MEM_ALLOC_TYPE_GART, 1830 bb_size, 1831 &addr); 1832 if (!bb) 1833 return NULL; 1834 1835 for (i = 0; i < 4; i++) { 1836 /* Extract 16-bit chunk */ 1837 chunk = ((uint64_t) addr >> (i * 16)) & 0xFFFF; 1838 /* Send the chunk */ 1839 ret = dm_dmub_send_vbios_gpint_command(adev, send_addrs[i], chunk, 30000); 1840 if (ret != DMUB_STATUS_OK) 1841 goto free_bb; 1842 } 1843 1844 /* Now ask DMUB to copy the bb */ 1845 ret = dm_dmub_send_vbios_gpint_command(adev, DMUB_GPINT__BB_COPY, 1, 200000); 1846 if (ret != DMUB_STATUS_OK) 1847 goto free_bb; 1848 1849 return bb; 1850 1851 free_bb: 1852 dm_free_gpu_mem(adev, DC_MEM_ALLOC_TYPE_GART, (void *) bb); 1853 return NULL; 1854 1855 } 1856 1857 static enum dmub_ips_disable_type dm_get_default_ips_mode( 1858 struct amdgpu_device *adev) 1859 { 1860 enum dmub_ips_disable_type ret = DMUB_IPS_ENABLE; 1861 1862 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 1863 case IP_VERSION(3, 5, 0): 1864 case IP_VERSION(3, 6, 0): 1865 case IP_VERSION(3, 5, 1): 1866 ret = DMUB_IPS_RCG_IN_ACTIVE_IPS2_IN_OFF; 1867 break; 1868 default: 1869 /* ASICs older than DCN35 do not have IPSs */ 1870 if (amdgpu_ip_version(adev, DCE_HWIP, 0) < IP_VERSION(3, 5, 0)) 1871 ret = DMUB_IPS_DISABLE_ALL; 1872 break; 1873 } 1874 1875 return ret; 1876 } 1877 1878 static int amdgpu_dm_init(struct amdgpu_device *adev) 1879 { 1880 struct dc_init_data init_data; 1881 struct dc_callback_init init_params; 1882 int r; 1883 1884 adev->dm.ddev = adev_to_drm(adev); 1885 adev->dm.adev = adev; 1886 1887 /* Zero all the fields */ 1888 memset(&init_data, 0, sizeof(init_data)); 1889 memset(&init_params, 0, sizeof(init_params)); 1890 1891 mutex_init(&adev->dm.dpia_aux_lock); 1892 mutex_init(&adev->dm.dc_lock); 1893 mutex_init(&adev->dm.audio_lock); 1894 1895 if (amdgpu_dm_irq_init(adev)) { 1896 drm_err(adev_to_drm(adev), "failed to initialize DM IRQ support.\n"); 1897 goto error; 1898 } 1899 1900 init_data.asic_id.chip_family = adev->family; 1901 1902 init_data.asic_id.pci_revision_id = adev->pdev->revision; 1903 init_data.asic_id.hw_internal_rev = adev->external_rev_id; 1904 init_data.asic_id.chip_id = adev->pdev->device; 1905 1906 init_data.asic_id.vram_width = adev->gmc.vram_width; 1907 /* TODO: initialize init_data.asic_id.vram_type here!!!! */ 1908 init_data.asic_id.atombios_base_address = 1909 adev->mode_info.atom_context->bios; 1910 1911 init_data.driver = adev; 1912 1913 /* cgs_device was created in dm_sw_init() */ 1914 init_data.cgs_device = adev->dm.cgs_device; 1915 1916 init_data.dce_environment = DCE_ENV_PRODUCTION_DRV; 1917 1918 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 1919 case IP_VERSION(2, 1, 0): 1920 switch (adev->dm.dmcub_fw_version) { 1921 case 0: /* development */ 1922 case 0x1: /* linux-firmware.git hash 6d9f399 */ 1923 case 0x01000000: /* linux-firmware.git hash 9a0b0f4 */ 1924 init_data.flags.disable_dmcu = false; 1925 break; 1926 default: 1927 init_data.flags.disable_dmcu = true; 1928 } 1929 break; 1930 case IP_VERSION(2, 0, 3): 1931 init_data.flags.disable_dmcu = true; 1932 break; 1933 default: 1934 break; 1935 } 1936 1937 /* APU support S/G display by default except: 1938 * ASICs before Carrizo, 1939 * RAVEN1 (Users reported stability issue) 1940 */ 1941 1942 if (adev->asic_type < CHIP_CARRIZO) { 1943 init_data.flags.gpu_vm_support = false; 1944 } else if (adev->asic_type == CHIP_RAVEN) { 1945 if (adev->apu_flags & AMD_APU_IS_RAVEN) 1946 init_data.flags.gpu_vm_support = false; 1947 else 1948 init_data.flags.gpu_vm_support = (amdgpu_sg_display != 0); 1949 } else { 1950 if (amdgpu_ip_version(adev, DCE_HWIP, 0) == IP_VERSION(2, 0, 3)) 1951 init_data.flags.gpu_vm_support = (amdgpu_sg_display == 1); 1952 else 1953 init_data.flags.gpu_vm_support = 1954 (amdgpu_sg_display != 0) && (adev->flags & AMD_IS_APU); 1955 } 1956 1957 adev->mode_info.gpu_vm_support = init_data.flags.gpu_vm_support; 1958 1959 if (amdgpu_dc_feature_mask & DC_FBC_MASK) 1960 init_data.flags.fbc_support = true; 1961 1962 if (amdgpu_dc_feature_mask & DC_MULTI_MON_PP_MCLK_SWITCH_MASK) 1963 init_data.flags.multi_mon_pp_mclk_switch = true; 1964 1965 if (amdgpu_dc_feature_mask & DC_DISABLE_FRACTIONAL_PWM_MASK) 1966 init_data.flags.disable_fractional_pwm = true; 1967 1968 if (amdgpu_dc_feature_mask & DC_EDP_NO_POWER_SEQUENCING) 1969 init_data.flags.edp_no_power_sequencing = true; 1970 1971 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP1_4A) 1972 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP1_4A = true; 1973 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP2_0) 1974 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP2_0 = true; 1975 1976 init_data.flags.seamless_boot_edp_requested = false; 1977 1978 if (amdgpu_device_seamless_boot_supported(adev)) { 1979 init_data.flags.seamless_boot_edp_requested = true; 1980 init_data.flags.allow_seamless_boot_optimization = true; 1981 drm_dbg(adev->dm.ddev, "Seamless boot requested\n"); 1982 } 1983 1984 init_data.flags.enable_mipi_converter_optimization = true; 1985 1986 init_data.dcn_reg_offsets = adev->reg_offset[DCE_HWIP][0]; 1987 init_data.nbio_reg_offsets = adev->reg_offset[NBIO_HWIP][0]; 1988 init_data.clk_reg_offsets = adev->reg_offset[CLK_HWIP][0]; 1989 1990 if (amdgpu_dc_debug_mask & DC_DISABLE_IPS) 1991 init_data.flags.disable_ips = DMUB_IPS_DISABLE_ALL; 1992 else if (amdgpu_dc_debug_mask & DC_DISABLE_IPS_DYNAMIC) 1993 init_data.flags.disable_ips = DMUB_IPS_DISABLE_DYNAMIC; 1994 else if (amdgpu_dc_debug_mask & DC_DISABLE_IPS2_DYNAMIC) 1995 init_data.flags.disable_ips = DMUB_IPS_RCG_IN_ACTIVE_IPS2_IN_OFF; 1996 else if (amdgpu_dc_debug_mask & DC_FORCE_IPS_ENABLE) 1997 init_data.flags.disable_ips = DMUB_IPS_ENABLE; 1998 else 1999 init_data.flags.disable_ips = dm_get_default_ips_mode(adev); 2000 2001 init_data.flags.disable_ips_in_vpb = 0; 2002 2003 /* DCN35 and above supports dynamic DTBCLK switch */ 2004 if (amdgpu_ip_version(adev, DCE_HWIP, 0) >= IP_VERSION(3, 5, 0)) 2005 init_data.flags.allow_0_dtb_clk = true; 2006 2007 /* Enable DWB for tested platforms only */ 2008 if (amdgpu_ip_version(adev, DCE_HWIP, 0) >= IP_VERSION(3, 0, 0)) 2009 init_data.num_virtual_links = 1; 2010 2011 retrieve_dmi_info(&adev->dm); 2012 if (adev->dm.edp0_on_dp1_quirk) 2013 init_data.flags.support_edp0_on_dp1 = true; 2014 2015 if (adev->dm.bb_from_dmub) 2016 init_data.bb_from_dmub = adev->dm.bb_from_dmub; 2017 else 2018 init_data.bb_from_dmub = NULL; 2019 2020 /* Display Core create. */ 2021 adev->dm.dc = dc_create(&init_data); 2022 2023 if (adev->dm.dc) { 2024 drm_info(adev_to_drm(adev), "Display Core v%s initialized on %s\n", DC_VER, 2025 dce_version_to_string(adev->dm.dc->ctx->dce_version)); 2026 } else { 2027 drm_info(adev_to_drm(adev), "Display Core failed to initialize with v%s!\n", DC_VER); 2028 goto error; 2029 } 2030 2031 if (amdgpu_dc_debug_mask & DC_DISABLE_PIPE_SPLIT) { 2032 adev->dm.dc->debug.force_single_disp_pipe_split = false; 2033 adev->dm.dc->debug.pipe_split_policy = MPC_SPLIT_AVOID; 2034 } 2035 2036 if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY) 2037 adev->dm.dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true; 2038 if (dm_should_disable_stutter(adev->pdev)) 2039 adev->dm.dc->debug.disable_stutter = true; 2040 2041 if (amdgpu_dc_debug_mask & DC_DISABLE_STUTTER) 2042 adev->dm.dc->debug.disable_stutter = true; 2043 2044 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC) 2045 adev->dm.dc->debug.disable_dsc = true; 2046 2047 if (amdgpu_dc_debug_mask & DC_DISABLE_CLOCK_GATING) 2048 adev->dm.dc->debug.disable_clock_gate = true; 2049 2050 if (amdgpu_dc_debug_mask & DC_FORCE_SUBVP_MCLK_SWITCH) 2051 adev->dm.dc->debug.force_subvp_mclk_switch = true; 2052 2053 if (amdgpu_dc_debug_mask & DC_DISABLE_SUBVP_FAMS) { 2054 adev->dm.dc->debug.force_disable_subvp = true; 2055 adev->dm.dc->debug.fams2_config.bits.enable = false; 2056 } 2057 2058 if (amdgpu_dc_debug_mask & DC_ENABLE_DML2) { 2059 adev->dm.dc->debug.using_dml2 = true; 2060 adev->dm.dc->debug.using_dml21 = true; 2061 } 2062 2063 if (amdgpu_dc_debug_mask & DC_HDCP_LC_FORCE_FW_ENABLE) 2064 adev->dm.dc->debug.hdcp_lc_force_fw_enable = true; 2065 2066 if (amdgpu_dc_debug_mask & DC_HDCP_LC_ENABLE_SW_FALLBACK) 2067 adev->dm.dc->debug.hdcp_lc_enable_sw_fallback = true; 2068 2069 if (amdgpu_dc_debug_mask & DC_SKIP_DETECTION_LT) 2070 adev->dm.dc->debug.skip_detection_link_training = true; 2071 2072 adev->dm.dc->debug.visual_confirm = amdgpu_dc_visual_confirm; 2073 2074 /* TODO: Remove after DP2 receiver gets proper support of Cable ID feature */ 2075 adev->dm.dc->debug.ignore_cable_id = true; 2076 2077 if (adev->dm.dc->caps.dp_hdmi21_pcon_support) 2078 drm_info(adev_to_drm(adev), "DP-HDMI FRL PCON supported\n"); 2079 2080 r = dm_dmub_hw_init(adev); 2081 if (r) { 2082 drm_err(adev_to_drm(adev), "DMUB interface failed to initialize: status=%d\n", r); 2083 goto error; 2084 } 2085 2086 dc_hardware_init(adev->dm.dc); 2087 2088 adev->dm.hpd_rx_offload_wq = hpd_rx_irq_create_workqueue(adev); 2089 if (!adev->dm.hpd_rx_offload_wq) { 2090 drm_err(adev_to_drm(adev), "failed to create hpd rx offload workqueue.\n"); 2091 goto error; 2092 } 2093 2094 if ((adev->flags & AMD_IS_APU) && (adev->asic_type >= CHIP_CARRIZO)) { 2095 struct dc_phy_addr_space_config pa_config; 2096 2097 mmhub_read_system_context(adev, &pa_config); 2098 2099 // Call the DC init_memory func 2100 dc_setup_system_context(adev->dm.dc, &pa_config); 2101 } 2102 2103 adev->dm.freesync_module = mod_freesync_create(adev->dm.dc); 2104 if (!adev->dm.freesync_module) { 2105 drm_err(adev_to_drm(adev), 2106 "failed to initialize freesync_module.\n"); 2107 } else 2108 drm_dbg_driver(adev_to_drm(adev), "amdgpu: freesync_module init done %p.\n", 2109 adev->dm.freesync_module); 2110 2111 amdgpu_dm_init_color_mod(); 2112 2113 if (adev->dm.dc->caps.max_links > 0) { 2114 adev->dm.vblank_control_workqueue = 2115 create_singlethread_workqueue("dm_vblank_control_workqueue"); 2116 if (!adev->dm.vblank_control_workqueue) 2117 drm_err(adev_to_drm(adev), "failed to initialize vblank_workqueue.\n"); 2118 } 2119 2120 if (adev->dm.dc->caps.ips_support && 2121 adev->dm.dc->config.disable_ips != DMUB_IPS_DISABLE_ALL) 2122 adev->dm.idle_workqueue = idle_create_workqueue(adev); 2123 2124 if (adev->dm.dc->caps.max_links > 0 && adev->family >= AMDGPU_FAMILY_RV) { 2125 adev->dm.hdcp_workqueue = hdcp_create_workqueue(adev, &init_params.cp_psp, adev->dm.dc); 2126 2127 if (!adev->dm.hdcp_workqueue) 2128 drm_err(adev_to_drm(adev), "failed to initialize hdcp_workqueue.\n"); 2129 else 2130 drm_dbg_driver(adev_to_drm(adev), "amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue); 2131 2132 dc_init_callbacks(adev->dm.dc, &init_params); 2133 } 2134 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 2135 init_completion(&adev->dm.dmub_aux_transfer_done); 2136 adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL); 2137 if (!adev->dm.dmub_notify) { 2138 drm_info(adev_to_drm(adev), "fail to allocate adev->dm.dmub_notify"); 2139 goto error; 2140 } 2141 2142 adev->dm.delayed_hpd_wq = create_singlethread_workqueue("amdgpu_dm_hpd_wq"); 2143 if (!adev->dm.delayed_hpd_wq) { 2144 drm_err(adev_to_drm(adev), "failed to create hpd offload workqueue.\n"); 2145 goto error; 2146 } 2147 2148 amdgpu_dm_outbox_init(adev); 2149 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_AUX_REPLY, 2150 dmub_aux_setconfig_callback, false)) { 2151 drm_err(adev_to_drm(adev), "fail to register dmub aux callback"); 2152 goto error; 2153 } 2154 2155 for (size_t i = 0; i < ARRAY_SIZE(adev->dm.fused_io); i++) 2156 init_completion(&adev->dm.fused_io[i].replied); 2157 2158 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_FUSED_IO, 2159 dmub_aux_fused_io_callback, false)) { 2160 drm_err(adev_to_drm(adev), "fail to register dmub fused io callback"); 2161 goto error; 2162 } 2163 /* Enable outbox notification only after IRQ handlers are registered and DMUB is alive. 2164 * It is expected that DMUB will resend any pending notifications at this point. Note 2165 * that hpd and hpd_irq handler registration are deferred to register_hpd_handlers() to 2166 * align legacy interface initialization sequence. Connection status will be proactivly 2167 * detected once in the amdgpu_dm_initialize_drm_device. 2168 */ 2169 dc_enable_dmub_outbox(adev->dm.dc); 2170 2171 /* DPIA trace goes to dmesg logs only if outbox is enabled */ 2172 if (amdgpu_dc_debug_mask & DC_ENABLE_DPIA_TRACE) 2173 dc_dmub_srv_enable_dpia_trace(adev->dm.dc); 2174 } 2175 2176 if (amdgpu_dm_initialize_drm_device(adev)) { 2177 drm_err(adev_to_drm(adev), 2178 "failed to initialize sw for display support.\n"); 2179 goto error; 2180 } 2181 2182 /* create fake encoders for MST */ 2183 dm_dp_create_fake_mst_encoders(adev); 2184 2185 /* TODO: Add_display_info? */ 2186 2187 /* TODO use dynamic cursor width */ 2188 adev_to_drm(adev)->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size; 2189 adev_to_drm(adev)->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size; 2190 2191 if (drm_vblank_init(adev_to_drm(adev), adev->dm.display_indexes_num)) { 2192 drm_err(adev_to_drm(adev), 2193 "failed to initialize vblank for display support.\n"); 2194 goto error; 2195 } 2196 2197 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 2198 amdgpu_dm_crtc_secure_display_create_contexts(adev); 2199 if (!adev->dm.secure_display_ctx.crtc_ctx) 2200 drm_err(adev_to_drm(adev), "failed to initialize secure display contexts.\n"); 2201 2202 if (amdgpu_ip_version(adev, DCE_HWIP, 0) >= IP_VERSION(4, 0, 1)) 2203 adev->dm.secure_display_ctx.support_mul_roi = true; 2204 2205 #endif 2206 2207 drm_dbg_driver(adev_to_drm(adev), "KMS initialized.\n"); 2208 2209 return 0; 2210 error: 2211 amdgpu_dm_fini(adev); 2212 2213 return -EINVAL; 2214 } 2215 2216 static int amdgpu_dm_early_fini(struct amdgpu_ip_block *ip_block) 2217 { 2218 struct amdgpu_device *adev = ip_block->adev; 2219 2220 amdgpu_dm_audio_fini(adev); 2221 2222 return 0; 2223 } 2224 2225 static void amdgpu_dm_fini(struct amdgpu_device *adev) 2226 { 2227 int i; 2228 2229 if (adev->dm.vblank_control_workqueue) { 2230 destroy_workqueue(adev->dm.vblank_control_workqueue); 2231 adev->dm.vblank_control_workqueue = NULL; 2232 } 2233 2234 if (adev->dm.idle_workqueue) { 2235 if (adev->dm.idle_workqueue->running) { 2236 adev->dm.idle_workqueue->enable = false; 2237 flush_work(&adev->dm.idle_workqueue->work); 2238 } 2239 2240 kfree(adev->dm.idle_workqueue); 2241 adev->dm.idle_workqueue = NULL; 2242 } 2243 2244 amdgpu_dm_destroy_drm_device(&adev->dm); 2245 2246 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 2247 if (adev->dm.secure_display_ctx.crtc_ctx) { 2248 for (i = 0; i < adev->mode_info.num_crtc; i++) { 2249 if (adev->dm.secure_display_ctx.crtc_ctx[i].crtc) { 2250 flush_work(&adev->dm.secure_display_ctx.crtc_ctx[i].notify_ta_work); 2251 flush_work(&adev->dm.secure_display_ctx.crtc_ctx[i].forward_roi_work); 2252 } 2253 } 2254 kfree(adev->dm.secure_display_ctx.crtc_ctx); 2255 adev->dm.secure_display_ctx.crtc_ctx = NULL; 2256 } 2257 #endif 2258 if (adev->dm.hdcp_workqueue) { 2259 hdcp_destroy(&adev->dev->kobj, adev->dm.hdcp_workqueue); 2260 adev->dm.hdcp_workqueue = NULL; 2261 } 2262 2263 if (adev->dm.dc) { 2264 dc_deinit_callbacks(adev->dm.dc); 2265 dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv); 2266 if (dc_enable_dmub_notifications(adev->dm.dc)) { 2267 kfree(adev->dm.dmub_notify); 2268 adev->dm.dmub_notify = NULL; 2269 destroy_workqueue(adev->dm.delayed_hpd_wq); 2270 adev->dm.delayed_hpd_wq = NULL; 2271 } 2272 } 2273 2274 if (adev->dm.dmub_bo) 2275 amdgpu_bo_free_kernel(&adev->dm.dmub_bo, 2276 &adev->dm.dmub_bo_gpu_addr, 2277 &adev->dm.dmub_bo_cpu_addr); 2278 2279 if (adev->dm.hpd_rx_offload_wq && adev->dm.dc) { 2280 for (i = 0; i < adev->dm.dc->caps.max_links; i++) { 2281 if (adev->dm.hpd_rx_offload_wq[i].wq) { 2282 destroy_workqueue(adev->dm.hpd_rx_offload_wq[i].wq); 2283 adev->dm.hpd_rx_offload_wq[i].wq = NULL; 2284 } 2285 } 2286 2287 kfree(adev->dm.hpd_rx_offload_wq); 2288 adev->dm.hpd_rx_offload_wq = NULL; 2289 } 2290 2291 /* DC Destroy TODO: Replace destroy DAL */ 2292 if (adev->dm.dc) 2293 dc_destroy(&adev->dm.dc); 2294 /* 2295 * TODO: pageflip, vlank interrupt 2296 * 2297 * amdgpu_dm_irq_fini(adev); 2298 */ 2299 2300 if (adev->dm.cgs_device) { 2301 amdgpu_cgs_destroy_device(adev->dm.cgs_device); 2302 adev->dm.cgs_device = NULL; 2303 } 2304 if (adev->dm.freesync_module) { 2305 mod_freesync_destroy(adev->dm.freesync_module); 2306 adev->dm.freesync_module = NULL; 2307 } 2308 2309 mutex_destroy(&adev->dm.audio_lock); 2310 mutex_destroy(&adev->dm.dc_lock); 2311 mutex_destroy(&adev->dm.dpia_aux_lock); 2312 } 2313 2314 static int load_dmcu_fw(struct amdgpu_device *adev) 2315 { 2316 const char *fw_name_dmcu = NULL; 2317 int r; 2318 const struct dmcu_firmware_header_v1_0 *hdr; 2319 2320 switch (adev->asic_type) { 2321 #if defined(CONFIG_DRM_AMD_DC_SI) 2322 case CHIP_TAHITI: 2323 case CHIP_PITCAIRN: 2324 case CHIP_VERDE: 2325 case CHIP_OLAND: 2326 #endif 2327 case CHIP_BONAIRE: 2328 case CHIP_HAWAII: 2329 case CHIP_KAVERI: 2330 case CHIP_KABINI: 2331 case CHIP_MULLINS: 2332 case CHIP_TONGA: 2333 case CHIP_FIJI: 2334 case CHIP_CARRIZO: 2335 case CHIP_STONEY: 2336 case CHIP_POLARIS11: 2337 case CHIP_POLARIS10: 2338 case CHIP_POLARIS12: 2339 case CHIP_VEGAM: 2340 case CHIP_VEGA10: 2341 case CHIP_VEGA12: 2342 case CHIP_VEGA20: 2343 return 0; 2344 case CHIP_NAVI12: 2345 fw_name_dmcu = FIRMWARE_NAVI12_DMCU; 2346 break; 2347 case CHIP_RAVEN: 2348 if (ASICREV_IS_PICASSO(adev->external_rev_id)) 2349 fw_name_dmcu = FIRMWARE_RAVEN_DMCU; 2350 else if (ASICREV_IS_RAVEN2(adev->external_rev_id)) 2351 fw_name_dmcu = FIRMWARE_RAVEN_DMCU; 2352 else 2353 return 0; 2354 break; 2355 default: 2356 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 2357 case IP_VERSION(2, 0, 2): 2358 case IP_VERSION(2, 0, 3): 2359 case IP_VERSION(2, 0, 0): 2360 case IP_VERSION(2, 1, 0): 2361 case IP_VERSION(3, 0, 0): 2362 case IP_VERSION(3, 0, 2): 2363 case IP_VERSION(3, 0, 3): 2364 case IP_VERSION(3, 0, 1): 2365 case IP_VERSION(3, 1, 2): 2366 case IP_VERSION(3, 1, 3): 2367 case IP_VERSION(3, 1, 4): 2368 case IP_VERSION(3, 1, 5): 2369 case IP_VERSION(3, 1, 6): 2370 case IP_VERSION(3, 2, 0): 2371 case IP_VERSION(3, 2, 1): 2372 case IP_VERSION(3, 5, 0): 2373 case IP_VERSION(3, 5, 1): 2374 case IP_VERSION(3, 6, 0): 2375 case IP_VERSION(4, 0, 1): 2376 return 0; 2377 default: 2378 break; 2379 } 2380 drm_err(adev_to_drm(adev), "Unsupported ASIC type: 0x%X\n", adev->asic_type); 2381 return -EINVAL; 2382 } 2383 2384 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) { 2385 DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n"); 2386 return 0; 2387 } 2388 2389 r = amdgpu_ucode_request(adev, &adev->dm.fw_dmcu, AMDGPU_UCODE_REQUIRED, 2390 "%s", fw_name_dmcu); 2391 if (r == -ENODEV) { 2392 /* DMCU firmware is not necessary, so don't raise a fuss if it's missing */ 2393 DRM_DEBUG_KMS("dm: DMCU firmware not found\n"); 2394 adev->dm.fw_dmcu = NULL; 2395 return 0; 2396 } 2397 if (r) { 2398 drm_err(adev_to_drm(adev), "amdgpu_dm: Can't validate firmware \"%s\"\n", 2399 fw_name_dmcu); 2400 amdgpu_ucode_release(&adev->dm.fw_dmcu); 2401 return r; 2402 } 2403 2404 hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data; 2405 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM; 2406 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu; 2407 adev->firmware.fw_size += 2408 ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE); 2409 2410 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV; 2411 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu; 2412 adev->firmware.fw_size += 2413 ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE); 2414 2415 adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version); 2416 2417 DRM_DEBUG_KMS("PSP loading DMCU firmware\n"); 2418 2419 return 0; 2420 } 2421 2422 static uint32_t amdgpu_dm_dmub_reg_read(void *ctx, uint32_t address) 2423 { 2424 struct amdgpu_device *adev = ctx; 2425 2426 return dm_read_reg(adev->dm.dc->ctx, address); 2427 } 2428 2429 static void amdgpu_dm_dmub_reg_write(void *ctx, uint32_t address, 2430 uint32_t value) 2431 { 2432 struct amdgpu_device *adev = ctx; 2433 2434 return dm_write_reg(adev->dm.dc->ctx, address, value); 2435 } 2436 2437 static int dm_dmub_sw_init(struct amdgpu_device *adev) 2438 { 2439 struct dmub_srv_create_params create_params; 2440 struct dmub_srv_region_params region_params; 2441 struct dmub_srv_region_info region_info; 2442 struct dmub_srv_memory_params memory_params; 2443 struct dmub_srv_fb_info *fb_info; 2444 struct dmub_srv *dmub_srv; 2445 const struct dmcub_firmware_header_v1_0 *hdr; 2446 enum dmub_asic dmub_asic; 2447 enum dmub_status status; 2448 static enum dmub_window_memory_type window_memory_type[DMUB_WINDOW_TOTAL] = { 2449 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_0_INST_CONST 2450 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_1_STACK 2451 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_2_BSS_DATA 2452 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_3_VBIOS 2453 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_4_MAILBOX 2454 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_5_TRACEBUFF 2455 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_6_FW_STATE 2456 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_7_SCRATCH_MEM 2457 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_IB_MEM 2458 DMUB_WINDOW_MEMORY_TYPE_FB, //DMUB_WINDOW_SHARED_STATE 2459 }; 2460 int r; 2461 2462 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 2463 case IP_VERSION(2, 1, 0): 2464 dmub_asic = DMUB_ASIC_DCN21; 2465 break; 2466 case IP_VERSION(3, 0, 0): 2467 dmub_asic = DMUB_ASIC_DCN30; 2468 break; 2469 case IP_VERSION(3, 0, 1): 2470 dmub_asic = DMUB_ASIC_DCN301; 2471 break; 2472 case IP_VERSION(3, 0, 2): 2473 dmub_asic = DMUB_ASIC_DCN302; 2474 break; 2475 case IP_VERSION(3, 0, 3): 2476 dmub_asic = DMUB_ASIC_DCN303; 2477 break; 2478 case IP_VERSION(3, 1, 2): 2479 case IP_VERSION(3, 1, 3): 2480 dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31; 2481 break; 2482 case IP_VERSION(3, 1, 4): 2483 dmub_asic = DMUB_ASIC_DCN314; 2484 break; 2485 case IP_VERSION(3, 1, 5): 2486 dmub_asic = DMUB_ASIC_DCN315; 2487 break; 2488 case IP_VERSION(3, 1, 6): 2489 dmub_asic = DMUB_ASIC_DCN316; 2490 break; 2491 case IP_VERSION(3, 2, 0): 2492 dmub_asic = DMUB_ASIC_DCN32; 2493 break; 2494 case IP_VERSION(3, 2, 1): 2495 dmub_asic = DMUB_ASIC_DCN321; 2496 break; 2497 case IP_VERSION(3, 5, 0): 2498 case IP_VERSION(3, 5, 1): 2499 dmub_asic = DMUB_ASIC_DCN35; 2500 break; 2501 case IP_VERSION(3, 6, 0): 2502 dmub_asic = DMUB_ASIC_DCN36; 2503 break; 2504 case IP_VERSION(4, 0, 1): 2505 dmub_asic = DMUB_ASIC_DCN401; 2506 break; 2507 2508 default: 2509 /* ASIC doesn't support DMUB. */ 2510 return 0; 2511 } 2512 2513 hdr = (const struct dmcub_firmware_header_v1_0 *)adev->dm.dmub_fw->data; 2514 adev->dm.dmcub_fw_version = le32_to_cpu(hdr->header.ucode_version); 2515 2516 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) { 2517 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].ucode_id = 2518 AMDGPU_UCODE_ID_DMCUB; 2519 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].fw = 2520 adev->dm.dmub_fw; 2521 adev->firmware.fw_size += 2522 ALIGN(le32_to_cpu(hdr->inst_const_bytes), PAGE_SIZE); 2523 2524 drm_info(adev_to_drm(adev), "Loading DMUB firmware via PSP: version=0x%08X\n", 2525 adev->dm.dmcub_fw_version); 2526 } 2527 2528 2529 adev->dm.dmub_srv = kzalloc(sizeof(*adev->dm.dmub_srv), GFP_KERNEL); 2530 dmub_srv = adev->dm.dmub_srv; 2531 2532 if (!dmub_srv) { 2533 drm_err(adev_to_drm(adev), "Failed to allocate DMUB service!\n"); 2534 return -ENOMEM; 2535 } 2536 2537 memset(&create_params, 0, sizeof(create_params)); 2538 create_params.user_ctx = adev; 2539 create_params.funcs.reg_read = amdgpu_dm_dmub_reg_read; 2540 create_params.funcs.reg_write = amdgpu_dm_dmub_reg_write; 2541 create_params.asic = dmub_asic; 2542 2543 /* Create the DMUB service. */ 2544 status = dmub_srv_create(dmub_srv, &create_params); 2545 if (status != DMUB_STATUS_OK) { 2546 drm_err(adev_to_drm(adev), "Error creating DMUB service: %d\n", status); 2547 return -EINVAL; 2548 } 2549 2550 /* Calculate the size of all the regions for the DMUB service. */ 2551 memset(®ion_params, 0, sizeof(region_params)); 2552 2553 region_params.inst_const_size = le32_to_cpu(hdr->inst_const_bytes) - 2554 PSP_HEADER_BYTES - PSP_FOOTER_BYTES; 2555 region_params.bss_data_size = le32_to_cpu(hdr->bss_data_bytes); 2556 region_params.vbios_size = adev->bios_size; 2557 region_params.fw_bss_data = region_params.bss_data_size ? 2558 adev->dm.dmub_fw->data + 2559 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 2560 le32_to_cpu(hdr->inst_const_bytes) : NULL; 2561 region_params.fw_inst_const = 2562 adev->dm.dmub_fw->data + 2563 le32_to_cpu(hdr->header.ucode_array_offset_bytes) + 2564 PSP_HEADER_BYTES; 2565 region_params.window_memory_type = window_memory_type; 2566 2567 status = dmub_srv_calc_region_info(dmub_srv, ®ion_params, 2568 ®ion_info); 2569 2570 if (status != DMUB_STATUS_OK) { 2571 drm_err(adev_to_drm(adev), "Error calculating DMUB region info: %d\n", status); 2572 return -EINVAL; 2573 } 2574 2575 /* 2576 * Allocate a framebuffer based on the total size of all the regions. 2577 * TODO: Move this into GART. 2578 */ 2579 r = amdgpu_bo_create_kernel(adev, region_info.fb_size, PAGE_SIZE, 2580 AMDGPU_GEM_DOMAIN_VRAM | 2581 AMDGPU_GEM_DOMAIN_GTT, 2582 &adev->dm.dmub_bo, 2583 &adev->dm.dmub_bo_gpu_addr, 2584 &adev->dm.dmub_bo_cpu_addr); 2585 if (r) 2586 return r; 2587 2588 /* Rebase the regions on the framebuffer address. */ 2589 memset(&memory_params, 0, sizeof(memory_params)); 2590 memory_params.cpu_fb_addr = adev->dm.dmub_bo_cpu_addr; 2591 memory_params.gpu_fb_addr = adev->dm.dmub_bo_gpu_addr; 2592 memory_params.region_info = ®ion_info; 2593 memory_params.window_memory_type = window_memory_type; 2594 2595 adev->dm.dmub_fb_info = 2596 kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL); 2597 fb_info = adev->dm.dmub_fb_info; 2598 2599 if (!fb_info) { 2600 drm_err(adev_to_drm(adev), 2601 "Failed to allocate framebuffer info for DMUB service!\n"); 2602 return -ENOMEM; 2603 } 2604 2605 status = dmub_srv_calc_mem_info(dmub_srv, &memory_params, fb_info); 2606 if (status != DMUB_STATUS_OK) { 2607 drm_err(adev_to_drm(adev), "Error calculating DMUB FB info: %d\n", status); 2608 return -EINVAL; 2609 } 2610 2611 adev->dm.bb_from_dmub = dm_dmub_get_vbios_bounding_box(adev); 2612 2613 return 0; 2614 } 2615 2616 static int dm_sw_init(struct amdgpu_ip_block *ip_block) 2617 { 2618 struct amdgpu_device *adev = ip_block->adev; 2619 int r; 2620 2621 adev->dm.cgs_device = amdgpu_cgs_create_device(adev); 2622 2623 if (!adev->dm.cgs_device) { 2624 drm_err(adev_to_drm(adev), "failed to create cgs device.\n"); 2625 return -EINVAL; 2626 } 2627 2628 /* Moved from dm init since we need to use allocations for storing bounding box data */ 2629 INIT_LIST_HEAD(&adev->dm.da_list); 2630 2631 r = dm_dmub_sw_init(adev); 2632 if (r) 2633 return r; 2634 2635 return load_dmcu_fw(adev); 2636 } 2637 2638 static int dm_sw_fini(struct amdgpu_ip_block *ip_block) 2639 { 2640 struct amdgpu_device *adev = ip_block->adev; 2641 struct dal_allocation *da; 2642 2643 list_for_each_entry(da, &adev->dm.da_list, list) { 2644 if (adev->dm.bb_from_dmub == (void *) da->cpu_ptr) { 2645 amdgpu_bo_free_kernel(&da->bo, &da->gpu_addr, &da->cpu_ptr); 2646 list_del(&da->list); 2647 kfree(da); 2648 adev->dm.bb_from_dmub = NULL; 2649 break; 2650 } 2651 } 2652 2653 2654 kfree(adev->dm.dmub_fb_info); 2655 adev->dm.dmub_fb_info = NULL; 2656 2657 if (adev->dm.dmub_srv) { 2658 dmub_srv_destroy(adev->dm.dmub_srv); 2659 kfree(adev->dm.dmub_srv); 2660 adev->dm.dmub_srv = NULL; 2661 } 2662 2663 amdgpu_ucode_release(&adev->dm.dmub_fw); 2664 amdgpu_ucode_release(&adev->dm.fw_dmcu); 2665 2666 return 0; 2667 } 2668 2669 static int detect_mst_link_for_all_connectors(struct drm_device *dev) 2670 { 2671 struct amdgpu_dm_connector *aconnector; 2672 struct drm_connector *connector; 2673 struct drm_connector_list_iter iter; 2674 int ret = 0; 2675 2676 drm_connector_list_iter_begin(dev, &iter); 2677 drm_for_each_connector_iter(connector, &iter) { 2678 2679 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 2680 continue; 2681 2682 aconnector = to_amdgpu_dm_connector(connector); 2683 if (aconnector->dc_link->type == dc_connection_mst_branch && 2684 aconnector->mst_mgr.aux) { 2685 drm_dbg_kms(dev, "DM_MST: starting TM on aconnector: %p [id: %d]\n", 2686 aconnector, 2687 aconnector->base.base.id); 2688 2689 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true); 2690 if (ret < 0) { 2691 drm_err(dev, "DM_MST: Failed to start MST\n"); 2692 aconnector->dc_link->type = 2693 dc_connection_single; 2694 ret = dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx, 2695 aconnector->dc_link); 2696 break; 2697 } 2698 } 2699 } 2700 drm_connector_list_iter_end(&iter); 2701 2702 return ret; 2703 } 2704 2705 static int dm_late_init(struct amdgpu_ip_block *ip_block) 2706 { 2707 struct amdgpu_device *adev = ip_block->adev; 2708 2709 struct dmcu_iram_parameters params; 2710 unsigned int linear_lut[16]; 2711 int i; 2712 struct dmcu *dmcu = NULL; 2713 2714 dmcu = adev->dm.dc->res_pool->dmcu; 2715 2716 for (i = 0; i < 16; i++) 2717 linear_lut[i] = 0xFFFF * i / 15; 2718 2719 params.set = 0; 2720 params.backlight_ramping_override = false; 2721 params.backlight_ramping_start = 0xCCCC; 2722 params.backlight_ramping_reduction = 0xCCCCCCCC; 2723 params.backlight_lut_array_size = 16; 2724 params.backlight_lut_array = linear_lut; 2725 2726 /* Min backlight level after ABM reduction, Don't allow below 1% 2727 * 0xFFFF x 0.01 = 0x28F 2728 */ 2729 params.min_abm_backlight = 0x28F; 2730 /* In the case where abm is implemented on dmcub, 2731 * dmcu object will be null. 2732 * ABM 2.4 and up are implemented on dmcub. 2733 */ 2734 if (dmcu) { 2735 if (!dmcu_load_iram(dmcu, params)) 2736 return -EINVAL; 2737 } else if (adev->dm.dc->ctx->dmub_srv) { 2738 struct dc_link *edp_links[MAX_NUM_EDP]; 2739 int edp_num; 2740 2741 dc_get_edp_links(adev->dm.dc, edp_links, &edp_num); 2742 for (i = 0; i < edp_num; i++) { 2743 if (!dmub_init_abm_config(adev->dm.dc->res_pool, params, i)) 2744 return -EINVAL; 2745 } 2746 } 2747 2748 return detect_mst_link_for_all_connectors(adev_to_drm(adev)); 2749 } 2750 2751 static void resume_mst_branch_status(struct drm_dp_mst_topology_mgr *mgr) 2752 { 2753 u8 buf[UUID_SIZE]; 2754 guid_t guid; 2755 int ret; 2756 2757 mutex_lock(&mgr->lock); 2758 if (!mgr->mst_primary) 2759 goto out_fail; 2760 2761 if (drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd) < 0) { 2762 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n"); 2763 goto out_fail; 2764 } 2765 2766 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL, 2767 DP_MST_EN | 2768 DP_UP_REQ_EN | 2769 DP_UPSTREAM_IS_SRC); 2770 if (ret < 0) { 2771 drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n"); 2772 goto out_fail; 2773 } 2774 2775 /* Some hubs forget their guids after they resume */ 2776 ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, buf, sizeof(buf)); 2777 if (ret != sizeof(buf)) { 2778 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n"); 2779 goto out_fail; 2780 } 2781 2782 import_guid(&guid, buf); 2783 2784 if (guid_is_null(&guid)) { 2785 guid_gen(&guid); 2786 export_guid(buf, &guid); 2787 2788 ret = drm_dp_dpcd_write(mgr->aux, DP_GUID, buf, sizeof(buf)); 2789 2790 if (ret != sizeof(buf)) { 2791 drm_dbg_kms(mgr->dev, "check mstb guid failed - undocked during suspend?\n"); 2792 goto out_fail; 2793 } 2794 } 2795 2796 guid_copy(&mgr->mst_primary->guid, &guid); 2797 2798 out_fail: 2799 mutex_unlock(&mgr->lock); 2800 } 2801 2802 void hdmi_cec_unset_edid(struct amdgpu_dm_connector *aconnector) 2803 { 2804 struct cec_notifier *n = aconnector->notifier; 2805 2806 if (!n) 2807 return; 2808 2809 cec_notifier_phys_addr_invalidate(n); 2810 } 2811 2812 void hdmi_cec_set_edid(struct amdgpu_dm_connector *aconnector) 2813 { 2814 struct drm_connector *connector = &aconnector->base; 2815 struct cec_notifier *n = aconnector->notifier; 2816 2817 if (!n) 2818 return; 2819 2820 cec_notifier_set_phys_addr(n, 2821 connector->display_info.source_physical_address); 2822 } 2823 2824 static void s3_handle_hdmi_cec(struct drm_device *ddev, bool suspend) 2825 { 2826 struct amdgpu_dm_connector *aconnector; 2827 struct drm_connector *connector; 2828 struct drm_connector_list_iter conn_iter; 2829 2830 drm_connector_list_iter_begin(ddev, &conn_iter); 2831 drm_for_each_connector_iter(connector, &conn_iter) { 2832 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 2833 continue; 2834 2835 aconnector = to_amdgpu_dm_connector(connector); 2836 if (suspend) 2837 hdmi_cec_unset_edid(aconnector); 2838 else 2839 hdmi_cec_set_edid(aconnector); 2840 } 2841 drm_connector_list_iter_end(&conn_iter); 2842 } 2843 2844 static void s3_handle_mst(struct drm_device *dev, bool suspend) 2845 { 2846 struct amdgpu_dm_connector *aconnector; 2847 struct drm_connector *connector; 2848 struct drm_connector_list_iter iter; 2849 struct drm_dp_mst_topology_mgr *mgr; 2850 2851 drm_connector_list_iter_begin(dev, &iter); 2852 drm_for_each_connector_iter(connector, &iter) { 2853 2854 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 2855 continue; 2856 2857 aconnector = to_amdgpu_dm_connector(connector); 2858 if (aconnector->dc_link->type != dc_connection_mst_branch || 2859 aconnector->mst_root) 2860 continue; 2861 2862 mgr = &aconnector->mst_mgr; 2863 2864 if (suspend) { 2865 drm_dp_mst_topology_mgr_suspend(mgr); 2866 } else { 2867 /* if extended timeout is supported in hardware, 2868 * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer 2869 * CTS 4.2.1.1 regression introduced by CTS specs requirement update. 2870 */ 2871 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD); 2872 if (!dp_is_lttpr_present(aconnector->dc_link)) 2873 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD); 2874 2875 /* TODO: move resume_mst_branch_status() into drm mst resume again 2876 * once topology probing work is pulled out from mst resume into mst 2877 * resume 2nd step. mst resume 2nd step should be called after old 2878 * state getting restored (i.e. drm_atomic_helper_resume()). 2879 */ 2880 resume_mst_branch_status(mgr); 2881 } 2882 } 2883 drm_connector_list_iter_end(&iter); 2884 } 2885 2886 static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev) 2887 { 2888 int ret = 0; 2889 2890 /* This interface is for dGPU Navi1x.Linux dc-pplib interface depends 2891 * on window driver dc implementation. 2892 * For Navi1x, clock settings of dcn watermarks are fixed. the settings 2893 * should be passed to smu during boot up and resume from s3. 2894 * boot up: dc calculate dcn watermark clock settings within dc_create, 2895 * dcn20_resource_construct 2896 * then call pplib functions below to pass the settings to smu: 2897 * smu_set_watermarks_for_clock_ranges 2898 * smu_set_watermarks_table 2899 * navi10_set_watermarks_table 2900 * smu_write_watermarks_table 2901 * 2902 * For Renoir, clock settings of dcn watermark are also fixed values. 2903 * dc has implemented different flow for window driver: 2904 * dc_hardware_init / dc_set_power_state 2905 * dcn10_init_hw 2906 * notify_wm_ranges 2907 * set_wm_ranges 2908 * -- Linux 2909 * smu_set_watermarks_for_clock_ranges 2910 * renoir_set_watermarks_table 2911 * smu_write_watermarks_table 2912 * 2913 * For Linux, 2914 * dc_hardware_init -> amdgpu_dm_init 2915 * dc_set_power_state --> dm_resume 2916 * 2917 * therefore, this function apply to navi10/12/14 but not Renoir 2918 * * 2919 */ 2920 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 2921 case IP_VERSION(2, 0, 2): 2922 case IP_VERSION(2, 0, 0): 2923 break; 2924 default: 2925 return 0; 2926 } 2927 2928 ret = amdgpu_dpm_write_watermarks_table(adev); 2929 if (ret) { 2930 drm_err(adev_to_drm(adev), "Failed to update WMTABLE!\n"); 2931 return ret; 2932 } 2933 2934 return 0; 2935 } 2936 2937 static int dm_oem_i2c_hw_init(struct amdgpu_device *adev) 2938 { 2939 struct amdgpu_display_manager *dm = &adev->dm; 2940 struct amdgpu_i2c_adapter *oem_i2c; 2941 struct ddc_service *oem_ddc_service; 2942 int r; 2943 2944 oem_ddc_service = dc_get_oem_i2c_device(adev->dm.dc); 2945 if (oem_ddc_service) { 2946 oem_i2c = create_i2c(oem_ddc_service, true); 2947 if (!oem_i2c) { 2948 drm_info(adev_to_drm(adev), "Failed to create oem i2c adapter data\n"); 2949 return -ENOMEM; 2950 } 2951 2952 r = devm_i2c_add_adapter(adev->dev, &oem_i2c->base); 2953 if (r) { 2954 drm_info(adev_to_drm(adev), "Failed to register oem i2c\n"); 2955 kfree(oem_i2c); 2956 return r; 2957 } 2958 dm->oem_i2c = oem_i2c; 2959 } 2960 2961 return 0; 2962 } 2963 2964 /** 2965 * dm_hw_init() - Initialize DC device 2966 * @ip_block: Pointer to the amdgpu_ip_block for this hw instance. 2967 * 2968 * Initialize the &struct amdgpu_display_manager device. This involves calling 2969 * the initializers of each DM component, then populating the struct with them. 2970 * 2971 * Although the function implies hardware initialization, both hardware and 2972 * software are initialized here. Splitting them out to their relevant init 2973 * hooks is a future TODO item. 2974 * 2975 * Some notable things that are initialized here: 2976 * 2977 * - Display Core, both software and hardware 2978 * - DC modules that we need (freesync and color management) 2979 * - DRM software states 2980 * - Interrupt sources and handlers 2981 * - Vblank support 2982 * - Debug FS entries, if enabled 2983 */ 2984 static int dm_hw_init(struct amdgpu_ip_block *ip_block) 2985 { 2986 struct amdgpu_device *adev = ip_block->adev; 2987 int r; 2988 2989 /* Create DAL display manager */ 2990 r = amdgpu_dm_init(adev); 2991 if (r) 2992 return r; 2993 amdgpu_dm_hpd_init(adev); 2994 2995 r = dm_oem_i2c_hw_init(adev); 2996 if (r) 2997 drm_info(adev_to_drm(adev), "Failed to add OEM i2c bus\n"); 2998 2999 return 0; 3000 } 3001 3002 /** 3003 * dm_hw_fini() - Teardown DC device 3004 * @ip_block: Pointer to the amdgpu_ip_block for this hw instance. 3005 * 3006 * Teardown components within &struct amdgpu_display_manager that require 3007 * cleanup. This involves cleaning up the DRM device, DC, and any modules that 3008 * were loaded. Also flush IRQ workqueues and disable them. 3009 */ 3010 static int dm_hw_fini(struct amdgpu_ip_block *ip_block) 3011 { 3012 struct amdgpu_device *adev = ip_block->adev; 3013 3014 amdgpu_dm_hpd_fini(adev); 3015 3016 amdgpu_dm_irq_fini(adev); 3017 amdgpu_dm_fini(adev); 3018 return 0; 3019 } 3020 3021 3022 static void dm_gpureset_toggle_interrupts(struct amdgpu_device *adev, 3023 struct dc_state *state, bool enable) 3024 { 3025 enum dc_irq_source irq_source; 3026 struct amdgpu_crtc *acrtc; 3027 int rc = -EBUSY; 3028 int i = 0; 3029 3030 for (i = 0; i < state->stream_count; i++) { 3031 acrtc = get_crtc_by_otg_inst( 3032 adev, state->stream_status[i].primary_otg_inst); 3033 3034 if (acrtc && state->stream_status[i].plane_count != 0) { 3035 irq_source = IRQ_TYPE_PFLIP + acrtc->otg_inst; 3036 rc = dc_interrupt_set(adev->dm.dc, irq_source, enable) ? 0 : -EBUSY; 3037 if (rc) 3038 drm_warn(adev_to_drm(adev), "Failed to %s pflip interrupts\n", 3039 enable ? "enable" : "disable"); 3040 3041 if (dc_supports_vrr(adev->dm.dc->ctx->dce_version)) { 3042 if (enable) { 3043 if (amdgpu_dm_crtc_vrr_active( 3044 to_dm_crtc_state(acrtc->base.state))) 3045 rc = amdgpu_dm_crtc_set_vupdate_irq( 3046 &acrtc->base, true); 3047 } else 3048 rc = amdgpu_dm_crtc_set_vupdate_irq( 3049 &acrtc->base, false); 3050 3051 if (rc) 3052 drm_warn(adev_to_drm(adev), "Failed to %sable vupdate interrupt\n", 3053 enable ? "en" : "dis"); 3054 } 3055 3056 irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst; 3057 /* During gpu-reset we disable and then enable vblank irq, so 3058 * don't use amdgpu_irq_get/put() to avoid refcount change. 3059 */ 3060 if (!dc_interrupt_set(adev->dm.dc, irq_source, enable)) 3061 drm_warn(adev_to_drm(adev), "Failed to %sable vblank interrupt\n", enable ? "en" : "dis"); 3062 } 3063 } 3064 3065 } 3066 3067 DEFINE_FREE(state_release, struct dc_state *, if (_T) dc_state_release(_T)) 3068 3069 static enum dc_status amdgpu_dm_commit_zero_streams(struct dc *dc) 3070 { 3071 struct dc_state *context __free(state_release) = NULL; 3072 int i; 3073 struct dc_stream_state *del_streams[MAX_PIPES]; 3074 int del_streams_count = 0; 3075 struct dc_commit_streams_params params = {}; 3076 3077 memset(del_streams, 0, sizeof(del_streams)); 3078 3079 context = dc_state_create_current_copy(dc); 3080 if (context == NULL) 3081 return DC_ERROR_UNEXPECTED; 3082 3083 /* First remove from context all streams */ 3084 for (i = 0; i < context->stream_count; i++) { 3085 struct dc_stream_state *stream = context->streams[i]; 3086 3087 del_streams[del_streams_count++] = stream; 3088 } 3089 3090 /* Remove all planes for removed streams and then remove the streams */ 3091 for (i = 0; i < del_streams_count; i++) { 3092 enum dc_status res; 3093 3094 if (!dc_state_rem_all_planes_for_stream(dc, del_streams[i], context)) 3095 return DC_FAIL_DETACH_SURFACES; 3096 3097 res = dc_state_remove_stream(dc, context, del_streams[i]); 3098 if (res != DC_OK) 3099 return res; 3100 } 3101 3102 params.streams = context->streams; 3103 params.stream_count = context->stream_count; 3104 3105 return dc_commit_streams(dc, ¶ms); 3106 } 3107 3108 static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm) 3109 { 3110 int i; 3111 3112 if (dm->hpd_rx_offload_wq) { 3113 for (i = 0; i < dm->dc->caps.max_links; i++) 3114 flush_workqueue(dm->hpd_rx_offload_wq[i].wq); 3115 } 3116 } 3117 3118 static int dm_cache_state(struct amdgpu_device *adev) 3119 { 3120 int r; 3121 3122 adev->dm.cached_state = drm_atomic_helper_suspend(adev_to_drm(adev)); 3123 if (IS_ERR(adev->dm.cached_state)) { 3124 r = PTR_ERR(adev->dm.cached_state); 3125 adev->dm.cached_state = NULL; 3126 } 3127 3128 return adev->dm.cached_state ? 0 : r; 3129 } 3130 3131 static void dm_destroy_cached_state(struct amdgpu_device *adev) 3132 { 3133 struct amdgpu_display_manager *dm = &adev->dm; 3134 struct drm_device *ddev = adev_to_drm(adev); 3135 struct dm_plane_state *dm_new_plane_state; 3136 struct drm_plane_state *new_plane_state; 3137 struct dm_crtc_state *dm_new_crtc_state; 3138 struct drm_crtc_state *new_crtc_state; 3139 struct drm_plane *plane; 3140 struct drm_crtc *crtc; 3141 int i; 3142 3143 if (!dm->cached_state) 3144 return; 3145 3146 /* Force mode set in atomic commit */ 3147 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) { 3148 new_crtc_state->active_changed = true; 3149 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 3150 reset_freesync_config_for_crtc(dm_new_crtc_state); 3151 } 3152 3153 /* 3154 * atomic_check is expected to create the dc states. We need to release 3155 * them here, since they were duplicated as part of the suspend 3156 * procedure. 3157 */ 3158 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) { 3159 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 3160 if (dm_new_crtc_state->stream) { 3161 WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1); 3162 dc_stream_release(dm_new_crtc_state->stream); 3163 dm_new_crtc_state->stream = NULL; 3164 } 3165 dm_new_crtc_state->base.color_mgmt_changed = true; 3166 } 3167 3168 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) { 3169 dm_new_plane_state = to_dm_plane_state(new_plane_state); 3170 if (dm_new_plane_state->dc_state) { 3171 WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1); 3172 dc_plane_state_release(dm_new_plane_state->dc_state); 3173 dm_new_plane_state->dc_state = NULL; 3174 } 3175 } 3176 3177 drm_atomic_helper_resume(ddev, dm->cached_state); 3178 3179 dm->cached_state = NULL; 3180 } 3181 3182 static int dm_suspend(struct amdgpu_ip_block *ip_block) 3183 { 3184 struct amdgpu_device *adev = ip_block->adev; 3185 struct amdgpu_display_manager *dm = &adev->dm; 3186 3187 if (amdgpu_in_reset(adev)) { 3188 enum dc_status res; 3189 3190 mutex_lock(&dm->dc_lock); 3191 3192 dc_allow_idle_optimizations(adev->dm.dc, false); 3193 3194 dm->cached_dc_state = dc_state_create_copy(dm->dc->current_state); 3195 3196 if (dm->cached_dc_state) 3197 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, false); 3198 3199 res = amdgpu_dm_commit_zero_streams(dm->dc); 3200 if (res != DC_OK) { 3201 drm_err(adev_to_drm(adev), "Failed to commit zero streams: %d\n", res); 3202 return -EINVAL; 3203 } 3204 3205 amdgpu_dm_irq_suspend(adev); 3206 3207 hpd_rx_irq_work_suspend(dm); 3208 3209 return 0; 3210 } 3211 3212 if (!adev->dm.cached_state) { 3213 int r = dm_cache_state(adev); 3214 3215 if (r) 3216 return r; 3217 } 3218 3219 s3_handle_hdmi_cec(adev_to_drm(adev), true); 3220 3221 s3_handle_mst(adev_to_drm(adev), true); 3222 3223 amdgpu_dm_irq_suspend(adev); 3224 3225 hpd_rx_irq_work_suspend(dm); 3226 3227 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3); 3228 3229 if (dm->dc->caps.ips_support && adev->in_s0ix) 3230 dc_allow_idle_optimizations(dm->dc, true); 3231 3232 dc_dmub_srv_set_power_state(dm->dc->ctx->dmub_srv, DC_ACPI_CM_POWER_STATE_D3); 3233 3234 return 0; 3235 } 3236 3237 struct drm_connector * 3238 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state, 3239 struct drm_crtc *crtc) 3240 { 3241 u32 i; 3242 struct drm_connector_state *new_con_state; 3243 struct drm_connector *connector; 3244 struct drm_crtc *crtc_from_state; 3245 3246 for_each_new_connector_in_state(state, connector, new_con_state, i) { 3247 crtc_from_state = new_con_state->crtc; 3248 3249 if (crtc_from_state == crtc) 3250 return connector; 3251 } 3252 3253 return NULL; 3254 } 3255 3256 static void emulated_link_detect(struct dc_link *link) 3257 { 3258 struct dc_sink_init_data sink_init_data = { 0 }; 3259 struct display_sink_capability sink_caps = { 0 }; 3260 enum dc_edid_status edid_status; 3261 struct dc_context *dc_ctx = link->ctx; 3262 struct drm_device *dev = adev_to_drm(dc_ctx->driver_context); 3263 struct dc_sink *sink = NULL; 3264 struct dc_sink *prev_sink = NULL; 3265 3266 link->type = dc_connection_none; 3267 prev_sink = link->local_sink; 3268 3269 if (prev_sink) 3270 dc_sink_release(prev_sink); 3271 3272 switch (link->connector_signal) { 3273 case SIGNAL_TYPE_HDMI_TYPE_A: { 3274 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 3275 sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A; 3276 break; 3277 } 3278 3279 case SIGNAL_TYPE_DVI_SINGLE_LINK: { 3280 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 3281 sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK; 3282 break; 3283 } 3284 3285 case SIGNAL_TYPE_DVI_DUAL_LINK: { 3286 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 3287 sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK; 3288 break; 3289 } 3290 3291 case SIGNAL_TYPE_LVDS: { 3292 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C; 3293 sink_caps.signal = SIGNAL_TYPE_LVDS; 3294 break; 3295 } 3296 3297 case SIGNAL_TYPE_EDP: { 3298 sink_caps.transaction_type = 3299 DDC_TRANSACTION_TYPE_I2C_OVER_AUX; 3300 sink_caps.signal = SIGNAL_TYPE_EDP; 3301 break; 3302 } 3303 3304 case SIGNAL_TYPE_DISPLAY_PORT: { 3305 sink_caps.transaction_type = 3306 DDC_TRANSACTION_TYPE_I2C_OVER_AUX; 3307 sink_caps.signal = SIGNAL_TYPE_VIRTUAL; 3308 break; 3309 } 3310 3311 default: 3312 drm_err(dev, "Invalid connector type! signal:%d\n", 3313 link->connector_signal); 3314 return; 3315 } 3316 3317 sink_init_data.link = link; 3318 sink_init_data.sink_signal = sink_caps.signal; 3319 3320 sink = dc_sink_create(&sink_init_data); 3321 if (!sink) { 3322 drm_err(dev, "Failed to create sink!\n"); 3323 return; 3324 } 3325 3326 /* dc_sink_create returns a new reference */ 3327 link->local_sink = sink; 3328 3329 edid_status = dm_helpers_read_local_edid( 3330 link->ctx, 3331 link, 3332 sink); 3333 3334 if (edid_status != EDID_OK) 3335 drm_err(dev, "Failed to read EDID\n"); 3336 3337 } 3338 3339 static void dm_gpureset_commit_state(struct dc_state *dc_state, 3340 struct amdgpu_display_manager *dm) 3341 { 3342 struct { 3343 struct dc_surface_update surface_updates[MAX_SURFACES]; 3344 struct dc_plane_info plane_infos[MAX_SURFACES]; 3345 struct dc_scaling_info scaling_infos[MAX_SURFACES]; 3346 struct dc_flip_addrs flip_addrs[MAX_SURFACES]; 3347 struct dc_stream_update stream_update; 3348 } *bundle __free(kfree); 3349 int k, m; 3350 3351 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL); 3352 3353 if (!bundle) { 3354 drm_err(dm->ddev, "Failed to allocate update bundle\n"); 3355 return; 3356 } 3357 3358 for (k = 0; k < dc_state->stream_count; k++) { 3359 bundle->stream_update.stream = dc_state->streams[k]; 3360 3361 for (m = 0; m < dc_state->stream_status[k].plane_count; m++) { 3362 bundle->surface_updates[m].surface = 3363 dc_state->stream_status[k].plane_states[m]; 3364 bundle->surface_updates[m].surface->force_full_update = 3365 true; 3366 } 3367 3368 update_planes_and_stream_adapter(dm->dc, 3369 UPDATE_TYPE_FULL, 3370 dc_state->stream_status[k].plane_count, 3371 dc_state->streams[k], 3372 &bundle->stream_update, 3373 bundle->surface_updates); 3374 } 3375 } 3376 3377 static void apply_delay_after_dpcd_poweroff(struct amdgpu_device *adev, 3378 struct dc_sink *sink) 3379 { 3380 struct dc_panel_patch *ppatch = NULL; 3381 3382 if (!sink) 3383 return; 3384 3385 ppatch = &sink->edid_caps.panel_patch; 3386 if (ppatch->wait_after_dpcd_poweroff_ms) { 3387 msleep(ppatch->wait_after_dpcd_poweroff_ms); 3388 drm_dbg_driver(adev_to_drm(adev), 3389 "%s: adding a %ds delay as w/a for panel\n", 3390 __func__, 3391 ppatch->wait_after_dpcd_poweroff_ms / 1000); 3392 } 3393 } 3394 3395 /** 3396 * amdgpu_dm_dump_links_and_sinks - Debug dump of all DC links and their sinks 3397 * @adev: amdgpu device pointer 3398 * 3399 * Iterates through all DC links and dumps information about local and remote 3400 * (MST) sinks. Should be called after connector detection is complete to see 3401 * the final state of all links. 3402 */ 3403 static void amdgpu_dm_dump_links_and_sinks(struct amdgpu_device *adev) 3404 { 3405 struct dc *dc = adev->dm.dc; 3406 struct drm_device *dev = adev_to_drm(adev); 3407 int li; 3408 3409 if (!dc) 3410 return; 3411 3412 for (li = 0; li < dc->link_count; li++) { 3413 struct dc_link *l = dc->links[li]; 3414 const char *name = NULL; 3415 int rs; 3416 3417 if (!l) 3418 continue; 3419 if (l->local_sink && l->local_sink->edid_caps.display_name[0]) 3420 name = l->local_sink->edid_caps.display_name; 3421 else 3422 name = "n/a"; 3423 3424 drm_dbg_kms(dev, 3425 "LINK_DUMP[%d]: local_sink=%p type=%d sink_signal=%d sink_count=%u edid_name=%s mst_capable=%d mst_alloc_streams=%d\n", 3426 li, 3427 l->local_sink, 3428 l->type, 3429 l->local_sink ? l->local_sink->sink_signal : SIGNAL_TYPE_NONE, 3430 l->sink_count, 3431 name, 3432 l->dpcd_caps.is_mst_capable, 3433 l->mst_stream_alloc_table.stream_count); 3434 3435 /* Dump remote (MST) sinks if any */ 3436 for (rs = 0; rs < l->sink_count; rs++) { 3437 struct dc_sink *rsink = l->remote_sinks[rs]; 3438 const char *rname = NULL; 3439 3440 if (!rsink) 3441 continue; 3442 if (rsink->edid_caps.display_name[0]) 3443 rname = rsink->edid_caps.display_name; 3444 else 3445 rname = "n/a"; 3446 drm_dbg_kms(dev, 3447 " REMOTE_SINK[%d:%d]: sink=%p signal=%d edid_name=%s\n", 3448 li, rs, 3449 rsink, 3450 rsink->sink_signal, 3451 rname); 3452 } 3453 } 3454 } 3455 3456 static int dm_resume(struct amdgpu_ip_block *ip_block) 3457 { 3458 struct amdgpu_device *adev = ip_block->adev; 3459 struct drm_device *ddev = adev_to_drm(adev); 3460 struct amdgpu_display_manager *dm = &adev->dm; 3461 struct amdgpu_dm_connector *aconnector; 3462 struct drm_connector *connector; 3463 struct drm_connector_list_iter iter; 3464 struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state); 3465 enum dc_connection_type new_connection_type = dc_connection_none; 3466 struct dc_state *dc_state; 3467 int i, r, j; 3468 struct dc_commit_streams_params commit_params = {}; 3469 3470 if (dm->dc->caps.ips_support) { 3471 dc_dmub_srv_apply_idle_power_optimizations(dm->dc, false); 3472 } 3473 3474 if (amdgpu_in_reset(adev)) { 3475 dc_state = dm->cached_dc_state; 3476 3477 /* 3478 * The dc->current_state is backed up into dm->cached_dc_state 3479 * before we commit 0 streams. 3480 * 3481 * DC will clear link encoder assignments on the real state 3482 * but the changes won't propagate over to the copy we made 3483 * before the 0 streams commit. 3484 * 3485 * DC expects that link encoder assignments are *not* valid 3486 * when committing a state, so as a workaround we can copy 3487 * off of the current state. 3488 * 3489 * We lose the previous assignments, but we had already 3490 * commit 0 streams anyway. 3491 */ 3492 link_enc_cfg_copy(adev->dm.dc->current_state, dc_state); 3493 3494 r = dm_dmub_hw_init(adev); 3495 if (r) { 3496 drm_err(adev_to_drm(adev), "DMUB interface failed to initialize: status=%d\n", r); 3497 return r; 3498 } 3499 3500 dc_dmub_srv_set_power_state(dm->dc->ctx->dmub_srv, DC_ACPI_CM_POWER_STATE_D0); 3501 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0); 3502 3503 dc_resume(dm->dc); 3504 3505 amdgpu_dm_irq_resume_early(adev); 3506 3507 for (i = 0; i < dc_state->stream_count; i++) { 3508 dc_state->streams[i]->mode_changed = true; 3509 for (j = 0; j < dc_state->stream_status[i].plane_count; j++) { 3510 dc_state->stream_status[i].plane_states[j]->update_flags.raw 3511 = 0xffffffff; 3512 } 3513 } 3514 3515 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 3516 amdgpu_dm_outbox_init(adev); 3517 dc_enable_dmub_outbox(adev->dm.dc); 3518 } 3519 3520 commit_params.streams = dc_state->streams; 3521 commit_params.stream_count = dc_state->stream_count; 3522 dc_exit_ips_for_hw_access(dm->dc); 3523 WARN_ON(!dc_commit_streams(dm->dc, &commit_params)); 3524 3525 dm_gpureset_commit_state(dm->cached_dc_state, dm); 3526 3527 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, true); 3528 3529 dc_state_release(dm->cached_dc_state); 3530 dm->cached_dc_state = NULL; 3531 3532 amdgpu_dm_irq_resume_late(adev); 3533 3534 mutex_unlock(&dm->dc_lock); 3535 3536 /* set the backlight after a reset */ 3537 for (i = 0; i < dm->num_of_edps; i++) { 3538 if (dm->backlight_dev[i]) 3539 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]); 3540 } 3541 3542 return 0; 3543 } 3544 /* Recreate dc_state - DC invalidates it when setting power state to S3. */ 3545 dc_state_release(dm_state->context); 3546 dm_state->context = dc_state_create(dm->dc, NULL); 3547 /* TODO: Remove dc_state->dccg, use dc->dccg directly. */ 3548 3549 /* Before powering on DC we need to re-initialize DMUB. */ 3550 dm_dmub_hw_resume(adev); 3551 3552 /* Re-enable outbox interrupts for DPIA. */ 3553 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 3554 amdgpu_dm_outbox_init(adev); 3555 dc_enable_dmub_outbox(adev->dm.dc); 3556 } 3557 3558 /* power on hardware */ 3559 dc_dmub_srv_set_power_state(dm->dc->ctx->dmub_srv, DC_ACPI_CM_POWER_STATE_D0); 3560 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0); 3561 3562 /* program HPD filter */ 3563 dc_resume(dm->dc); 3564 3565 /* 3566 * early enable HPD Rx IRQ, should be done before set mode as short 3567 * pulse interrupts are used for MST 3568 */ 3569 amdgpu_dm_irq_resume_early(adev); 3570 3571 s3_handle_hdmi_cec(ddev, false); 3572 3573 /* On resume we need to rewrite the MSTM control bits to enable MST*/ 3574 s3_handle_mst(ddev, false); 3575 3576 /* Do detection*/ 3577 drm_connector_list_iter_begin(ddev, &iter); 3578 drm_for_each_connector_iter(connector, &iter) { 3579 bool ret; 3580 3581 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 3582 continue; 3583 3584 aconnector = to_amdgpu_dm_connector(connector); 3585 3586 if (!aconnector->dc_link) 3587 continue; 3588 3589 /* 3590 * this is the case when traversing through already created end sink 3591 * MST connectors, should be skipped 3592 */ 3593 if (aconnector->mst_root) 3594 continue; 3595 3596 guard(mutex)(&aconnector->hpd_lock); 3597 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type)) 3598 drm_err(adev_to_drm(adev), "KMS: Failed to detect connector\n"); 3599 3600 if (aconnector->base.force && new_connection_type == dc_connection_none) { 3601 emulated_link_detect(aconnector->dc_link); 3602 } else { 3603 guard(mutex)(&dm->dc_lock); 3604 dc_exit_ips_for_hw_access(dm->dc); 3605 ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_RESUMEFROMS3S4); 3606 if (ret) { 3607 /* w/a delay for certain panels */ 3608 apply_delay_after_dpcd_poweroff(adev, aconnector->dc_sink); 3609 } 3610 } 3611 3612 if (aconnector->fake_enable && aconnector->dc_link->local_sink) 3613 aconnector->fake_enable = false; 3614 3615 if (aconnector->dc_sink) 3616 dc_sink_release(aconnector->dc_sink); 3617 aconnector->dc_sink = NULL; 3618 amdgpu_dm_update_connector_after_detect(aconnector); 3619 } 3620 drm_connector_list_iter_end(&iter); 3621 3622 dm_destroy_cached_state(adev); 3623 3624 /* Do mst topology probing after resuming cached state*/ 3625 drm_connector_list_iter_begin(ddev, &iter); 3626 drm_for_each_connector_iter(connector, &iter) { 3627 bool init = false; 3628 3629 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 3630 continue; 3631 3632 aconnector = to_amdgpu_dm_connector(connector); 3633 if (aconnector->dc_link->type != dc_connection_mst_branch || 3634 aconnector->mst_root) 3635 continue; 3636 3637 scoped_guard(mutex, &aconnector->mst_mgr.lock) { 3638 init = !aconnector->mst_mgr.mst_primary; 3639 } 3640 if (init) 3641 dm_helpers_dp_mst_start_top_mgr(aconnector->dc_link->ctx, 3642 aconnector->dc_link, false); 3643 else 3644 drm_dp_mst_topology_queue_probe(&aconnector->mst_mgr); 3645 } 3646 drm_connector_list_iter_end(&iter); 3647 3648 /* Debug dump: list all DC links and their associated sinks after detection 3649 * is complete for all connectors. This provides a comprehensive view of the 3650 * final state without repeating the dump for each connector. 3651 */ 3652 amdgpu_dm_dump_links_and_sinks(adev); 3653 3654 amdgpu_dm_irq_resume_late(adev); 3655 3656 amdgpu_dm_smu_write_watermarks_table(adev); 3657 3658 drm_kms_helper_hotplug_event(ddev); 3659 3660 return 0; 3661 } 3662 3663 /** 3664 * DOC: DM Lifecycle 3665 * 3666 * DM (and consequently DC) is registered in the amdgpu base driver as a IP 3667 * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to 3668 * the base driver's device list to be initialized and torn down accordingly. 3669 * 3670 * The functions to do so are provided as hooks in &struct amd_ip_funcs. 3671 */ 3672 3673 static const struct amd_ip_funcs amdgpu_dm_funcs = { 3674 .name = "dm", 3675 .early_init = dm_early_init, 3676 .late_init = dm_late_init, 3677 .sw_init = dm_sw_init, 3678 .sw_fini = dm_sw_fini, 3679 .early_fini = amdgpu_dm_early_fini, 3680 .hw_init = dm_hw_init, 3681 .hw_fini = dm_hw_fini, 3682 .suspend = dm_suspend, 3683 .resume = dm_resume, 3684 .is_idle = dm_is_idle, 3685 .wait_for_idle = dm_wait_for_idle, 3686 .check_soft_reset = dm_check_soft_reset, 3687 .soft_reset = dm_soft_reset, 3688 .set_clockgating_state = dm_set_clockgating_state, 3689 .set_powergating_state = dm_set_powergating_state, 3690 }; 3691 3692 const struct amdgpu_ip_block_version dm_ip_block = { 3693 .type = AMD_IP_BLOCK_TYPE_DCE, 3694 .major = 1, 3695 .minor = 0, 3696 .rev = 0, 3697 .funcs = &amdgpu_dm_funcs, 3698 }; 3699 3700 3701 /** 3702 * DOC: atomic 3703 * 3704 * *WIP* 3705 */ 3706 3707 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = { 3708 .fb_create = amdgpu_display_user_framebuffer_create, 3709 .get_format_info = amdgpu_dm_plane_get_format_info, 3710 .atomic_check = amdgpu_dm_atomic_check, 3711 .atomic_commit = drm_atomic_helper_commit, 3712 }; 3713 3714 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = { 3715 .atomic_commit_tail = amdgpu_dm_atomic_commit_tail, 3716 .atomic_commit_setup = amdgpu_dm_atomic_setup_commit, 3717 }; 3718 3719 static void update_connector_ext_caps(struct amdgpu_dm_connector *aconnector) 3720 { 3721 const struct drm_panel_backlight_quirk *panel_backlight_quirk; 3722 struct amdgpu_dm_backlight_caps *caps; 3723 struct drm_connector *conn_base; 3724 struct amdgpu_device *adev; 3725 struct drm_luminance_range_info *luminance_range; 3726 struct drm_device *drm; 3727 3728 if (aconnector->bl_idx == -1 || 3729 aconnector->dc_link->connector_signal != SIGNAL_TYPE_EDP) 3730 return; 3731 3732 conn_base = &aconnector->base; 3733 drm = conn_base->dev; 3734 adev = drm_to_adev(drm); 3735 3736 caps = &adev->dm.backlight_caps[aconnector->bl_idx]; 3737 caps->ext_caps = &aconnector->dc_link->dpcd_sink_ext_caps; 3738 caps->aux_support = false; 3739 3740 if (caps->ext_caps->bits.oled == 1 3741 /* 3742 * || 3743 * caps->ext_caps->bits.sdr_aux_backlight_control == 1 || 3744 * caps->ext_caps->bits.hdr_aux_backlight_control == 1 3745 */) 3746 caps->aux_support = true; 3747 3748 if (amdgpu_backlight == 0) 3749 caps->aux_support = false; 3750 else if (amdgpu_backlight == 1) 3751 caps->aux_support = true; 3752 if (caps->aux_support) 3753 aconnector->dc_link->backlight_control_type = BACKLIGHT_CONTROL_AMD_AUX; 3754 3755 luminance_range = &conn_base->display_info.luminance_range; 3756 3757 if (luminance_range->max_luminance) 3758 caps->aux_max_input_signal = luminance_range->max_luminance; 3759 else 3760 caps->aux_max_input_signal = 512; 3761 3762 if (luminance_range->min_luminance) 3763 caps->aux_min_input_signal = luminance_range->min_luminance; 3764 else 3765 caps->aux_min_input_signal = 1; 3766 3767 panel_backlight_quirk = 3768 drm_get_panel_backlight_quirk(aconnector->drm_edid); 3769 if (!IS_ERR_OR_NULL(panel_backlight_quirk)) { 3770 if (panel_backlight_quirk->min_brightness) { 3771 caps->min_input_signal = 3772 panel_backlight_quirk->min_brightness - 1; 3773 drm_info(drm, 3774 "Applying panel backlight quirk, min_brightness: %d\n", 3775 caps->min_input_signal); 3776 } 3777 if (panel_backlight_quirk->brightness_mask) { 3778 drm_info(drm, 3779 "Applying panel backlight quirk, brightness_mask: 0x%X\n", 3780 panel_backlight_quirk->brightness_mask); 3781 caps->brightness_mask = 3782 panel_backlight_quirk->brightness_mask; 3783 } 3784 } 3785 } 3786 3787 DEFINE_FREE(sink_release, struct dc_sink *, if (_T) dc_sink_release(_T)) 3788 3789 void amdgpu_dm_update_connector_after_detect( 3790 struct amdgpu_dm_connector *aconnector) 3791 { 3792 struct drm_connector *connector = &aconnector->base; 3793 struct dc_sink *sink __free(sink_release) = NULL; 3794 struct drm_device *dev = connector->dev; 3795 3796 /* MST handled by drm_mst framework */ 3797 if (aconnector->mst_mgr.mst_state == true) 3798 return; 3799 3800 sink = aconnector->dc_link->local_sink; 3801 if (sink) 3802 dc_sink_retain(sink); 3803 3804 /* 3805 * Edid mgmt connector gets first update only in mode_valid hook and then 3806 * the connector sink is set to either fake or physical sink depends on link status. 3807 * Skip if already done during boot. 3808 */ 3809 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED 3810 && aconnector->dc_em_sink) { 3811 3812 /* 3813 * For S3 resume with headless use eml_sink to fake stream 3814 * because on resume connector->sink is set to NULL 3815 */ 3816 guard(mutex)(&dev->mode_config.mutex); 3817 3818 if (sink) { 3819 if (aconnector->dc_sink) { 3820 amdgpu_dm_update_freesync_caps(connector, NULL); 3821 /* 3822 * retain and release below are used to 3823 * bump up refcount for sink because the link doesn't point 3824 * to it anymore after disconnect, so on next crtc to connector 3825 * reshuffle by UMD we will get into unwanted dc_sink release 3826 */ 3827 dc_sink_release(aconnector->dc_sink); 3828 } 3829 aconnector->dc_sink = sink; 3830 dc_sink_retain(aconnector->dc_sink); 3831 amdgpu_dm_update_freesync_caps(connector, 3832 aconnector->drm_edid); 3833 } else { 3834 amdgpu_dm_update_freesync_caps(connector, NULL); 3835 if (!aconnector->dc_sink) { 3836 aconnector->dc_sink = aconnector->dc_em_sink; 3837 dc_sink_retain(aconnector->dc_sink); 3838 } 3839 } 3840 3841 return; 3842 } 3843 3844 /* 3845 * TODO: temporary guard to look for proper fix 3846 * if this sink is MST sink, we should not do anything 3847 */ 3848 if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) 3849 return; 3850 3851 if (aconnector->dc_sink == sink) { 3852 /* 3853 * We got a DP short pulse (Link Loss, DP CTS, etc...). 3854 * Do nothing!! 3855 */ 3856 drm_dbg_kms(dev, "DCHPD: connector_id=%d: dc_sink didn't change.\n", 3857 aconnector->connector_id); 3858 return; 3859 } 3860 3861 drm_dbg_kms(dev, "DCHPD: connector_id=%d: Old sink=%p New sink=%p\n", 3862 aconnector->connector_id, aconnector->dc_sink, sink); 3863 3864 /* When polling, DRM has already locked the mutex for us. */ 3865 if (!drm_kms_helper_is_poll_worker()) 3866 mutex_lock(&dev->mode_config.mutex); 3867 3868 /* 3869 * 1. Update status of the drm connector 3870 * 2. Send an event and let userspace tell us what to do 3871 */ 3872 if (sink) { 3873 /* 3874 * TODO: check if we still need the S3 mode update workaround. 3875 * If yes, put it here. 3876 */ 3877 if (aconnector->dc_sink) { 3878 amdgpu_dm_update_freesync_caps(connector, NULL); 3879 dc_sink_release(aconnector->dc_sink); 3880 } 3881 3882 aconnector->dc_sink = sink; 3883 dc_sink_retain(aconnector->dc_sink); 3884 if (sink->dc_edid.length == 0) { 3885 aconnector->drm_edid = NULL; 3886 hdmi_cec_unset_edid(aconnector); 3887 if (aconnector->dc_link->aux_mode) { 3888 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux); 3889 } 3890 } else { 3891 const struct edid *edid = (const struct edid *)sink->dc_edid.raw_edid; 3892 3893 aconnector->drm_edid = drm_edid_alloc(edid, sink->dc_edid.length); 3894 drm_edid_connector_update(connector, aconnector->drm_edid); 3895 3896 hdmi_cec_set_edid(aconnector); 3897 if (aconnector->dc_link->aux_mode) 3898 drm_dp_cec_attach(&aconnector->dm_dp_aux.aux, 3899 connector->display_info.source_physical_address); 3900 } 3901 3902 if (!aconnector->timing_requested) { 3903 aconnector->timing_requested = 3904 kzalloc(sizeof(struct dc_crtc_timing), GFP_KERNEL); 3905 if (!aconnector->timing_requested) 3906 drm_err(dev, 3907 "failed to create aconnector->requested_timing\n"); 3908 } 3909 3910 amdgpu_dm_update_freesync_caps(connector, aconnector->drm_edid); 3911 update_connector_ext_caps(aconnector); 3912 } else { 3913 hdmi_cec_unset_edid(aconnector); 3914 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux); 3915 amdgpu_dm_update_freesync_caps(connector, NULL); 3916 aconnector->num_modes = 0; 3917 dc_sink_release(aconnector->dc_sink); 3918 aconnector->dc_sink = NULL; 3919 drm_edid_free(aconnector->drm_edid); 3920 aconnector->drm_edid = NULL; 3921 kfree(aconnector->timing_requested); 3922 aconnector->timing_requested = NULL; 3923 /* Set CP to DESIRED if it was ENABLED, so we can re-enable it again on hotplug */ 3924 if (connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) 3925 connector->state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 3926 } 3927 3928 update_subconnector_property(aconnector); 3929 3930 /* When polling, the mutex will be unlocked for us by DRM. */ 3931 if (!drm_kms_helper_is_poll_worker()) 3932 mutex_unlock(&dev->mode_config.mutex); 3933 } 3934 3935 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector) 3936 { 3937 struct drm_connector *connector = &aconnector->base; 3938 struct drm_device *dev = connector->dev; 3939 enum dc_connection_type new_connection_type = dc_connection_none; 3940 struct amdgpu_device *adev = drm_to_adev(dev); 3941 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state); 3942 struct dc *dc = aconnector->dc_link->ctx->dc; 3943 bool ret = false; 3944 3945 if (adev->dm.disable_hpd_irq) 3946 return; 3947 3948 /* 3949 * In case of failure or MST no need to update connector status or notify the OS 3950 * since (for MST case) MST does this in its own context. 3951 */ 3952 guard(mutex)(&aconnector->hpd_lock); 3953 3954 if (adev->dm.hdcp_workqueue) { 3955 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index); 3956 dm_con_state->update_hdcp = true; 3957 } 3958 if (aconnector->fake_enable) 3959 aconnector->fake_enable = false; 3960 3961 aconnector->timing_changed = false; 3962 3963 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type)) 3964 drm_err(adev_to_drm(adev), "KMS: Failed to detect connector\n"); 3965 3966 if (aconnector->base.force && new_connection_type == dc_connection_none) { 3967 emulated_link_detect(aconnector->dc_link); 3968 3969 drm_modeset_lock_all(dev); 3970 dm_restore_drm_connector_state(dev, connector); 3971 drm_modeset_unlock_all(dev); 3972 3973 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED) 3974 drm_kms_helper_connector_hotplug_event(connector); 3975 } else { 3976 scoped_guard(mutex, &adev->dm.dc_lock) { 3977 dc_exit_ips_for_hw_access(dc); 3978 ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD); 3979 } 3980 if (ret) { 3981 /* w/a delay for certain panels */ 3982 apply_delay_after_dpcd_poweroff(adev, aconnector->dc_sink); 3983 amdgpu_dm_update_connector_after_detect(aconnector); 3984 3985 drm_modeset_lock_all(dev); 3986 dm_restore_drm_connector_state(dev, connector); 3987 drm_modeset_unlock_all(dev); 3988 3989 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED) 3990 drm_kms_helper_connector_hotplug_event(connector); 3991 } 3992 } 3993 } 3994 3995 static void handle_hpd_irq(void *param) 3996 { 3997 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param; 3998 3999 handle_hpd_irq_helper(aconnector); 4000 4001 } 4002 4003 static void schedule_hpd_rx_offload_work(struct amdgpu_device *adev, struct hpd_rx_irq_offload_work_queue *offload_wq, 4004 union hpd_irq_data hpd_irq_data) 4005 { 4006 struct hpd_rx_irq_offload_work *offload_work = 4007 kzalloc(sizeof(*offload_work), GFP_KERNEL); 4008 4009 if (!offload_work) { 4010 drm_err(adev_to_drm(adev), "Failed to allocate hpd_rx_irq_offload_work.\n"); 4011 return; 4012 } 4013 4014 INIT_WORK(&offload_work->work, dm_handle_hpd_rx_offload_work); 4015 offload_work->data = hpd_irq_data; 4016 offload_work->offload_wq = offload_wq; 4017 offload_work->adev = adev; 4018 4019 queue_work(offload_wq->wq, &offload_work->work); 4020 DRM_DEBUG_KMS("queue work to handle hpd_rx offload work"); 4021 } 4022 4023 static void handle_hpd_rx_irq(void *param) 4024 { 4025 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param; 4026 struct drm_connector *connector = &aconnector->base; 4027 struct drm_device *dev = connector->dev; 4028 struct dc_link *dc_link = aconnector->dc_link; 4029 bool is_mst_root_connector = aconnector->mst_mgr.mst_state; 4030 bool result = false; 4031 enum dc_connection_type new_connection_type = dc_connection_none; 4032 struct amdgpu_device *adev = drm_to_adev(dev); 4033 union hpd_irq_data hpd_irq_data; 4034 bool link_loss = false; 4035 bool has_left_work = false; 4036 int idx = dc_link->link_index; 4037 struct hpd_rx_irq_offload_work_queue *offload_wq = &adev->dm.hpd_rx_offload_wq[idx]; 4038 struct dc *dc = aconnector->dc_link->ctx->dc; 4039 4040 memset(&hpd_irq_data, 0, sizeof(hpd_irq_data)); 4041 4042 if (adev->dm.disable_hpd_irq) 4043 return; 4044 4045 /* 4046 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio 4047 * conflict, after implement i2c helper, this mutex should be 4048 * retired. 4049 */ 4050 mutex_lock(&aconnector->hpd_lock); 4051 4052 result = dc_link_handle_hpd_rx_irq(dc_link, &hpd_irq_data, 4053 &link_loss, true, &has_left_work); 4054 4055 if (!has_left_work) 4056 goto out; 4057 4058 if (hpd_irq_data.bytes.device_service_irq.bits.AUTOMATED_TEST) { 4059 schedule_hpd_rx_offload_work(adev, offload_wq, hpd_irq_data); 4060 goto out; 4061 } 4062 4063 if (dc_link_dp_allow_hpd_rx_irq(dc_link)) { 4064 if (hpd_irq_data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY || 4065 hpd_irq_data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) { 4066 bool skip = false; 4067 4068 /* 4069 * DOWN_REP_MSG_RDY is also handled by polling method 4070 * mgr->cbs->poll_hpd_irq() 4071 */ 4072 spin_lock(&offload_wq->offload_lock); 4073 skip = offload_wq->is_handling_mst_msg_rdy_event; 4074 4075 if (!skip) 4076 offload_wq->is_handling_mst_msg_rdy_event = true; 4077 4078 spin_unlock(&offload_wq->offload_lock); 4079 4080 if (!skip) 4081 schedule_hpd_rx_offload_work(adev, offload_wq, hpd_irq_data); 4082 4083 goto out; 4084 } 4085 4086 if (link_loss) { 4087 bool skip = false; 4088 4089 spin_lock(&offload_wq->offload_lock); 4090 skip = offload_wq->is_handling_link_loss; 4091 4092 if (!skip) 4093 offload_wq->is_handling_link_loss = true; 4094 4095 spin_unlock(&offload_wq->offload_lock); 4096 4097 if (!skip) 4098 schedule_hpd_rx_offload_work(adev, offload_wq, hpd_irq_data); 4099 4100 goto out; 4101 } 4102 } 4103 4104 out: 4105 if (result && !is_mst_root_connector) { 4106 /* Downstream Port status changed. */ 4107 if (!dc_link_detect_connection_type(dc_link, &new_connection_type)) 4108 drm_err(adev_to_drm(adev), "KMS: Failed to detect connector\n"); 4109 4110 if (aconnector->base.force && new_connection_type == dc_connection_none) { 4111 emulated_link_detect(dc_link); 4112 4113 if (aconnector->fake_enable) 4114 aconnector->fake_enable = false; 4115 4116 amdgpu_dm_update_connector_after_detect(aconnector); 4117 4118 4119 drm_modeset_lock_all(dev); 4120 dm_restore_drm_connector_state(dev, connector); 4121 drm_modeset_unlock_all(dev); 4122 4123 drm_kms_helper_connector_hotplug_event(connector); 4124 } else { 4125 bool ret = false; 4126 4127 mutex_lock(&adev->dm.dc_lock); 4128 dc_exit_ips_for_hw_access(dc); 4129 ret = dc_link_detect(dc_link, DETECT_REASON_HPDRX); 4130 mutex_unlock(&adev->dm.dc_lock); 4131 4132 if (ret) { 4133 if (aconnector->fake_enable) 4134 aconnector->fake_enable = false; 4135 4136 amdgpu_dm_update_connector_after_detect(aconnector); 4137 4138 drm_modeset_lock_all(dev); 4139 dm_restore_drm_connector_state(dev, connector); 4140 drm_modeset_unlock_all(dev); 4141 4142 drm_kms_helper_connector_hotplug_event(connector); 4143 } 4144 } 4145 } 4146 if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) { 4147 if (adev->dm.hdcp_workqueue) 4148 hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index); 4149 } 4150 4151 if (dc_link->type != dc_connection_mst_branch) 4152 drm_dp_cec_irq(&aconnector->dm_dp_aux.aux); 4153 4154 mutex_unlock(&aconnector->hpd_lock); 4155 } 4156 4157 static int register_hpd_handlers(struct amdgpu_device *adev) 4158 { 4159 struct drm_device *dev = adev_to_drm(adev); 4160 struct drm_connector *connector; 4161 struct amdgpu_dm_connector *aconnector; 4162 const struct dc_link *dc_link; 4163 struct dc_interrupt_params int_params = {0}; 4164 4165 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 4166 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 4167 4168 if (dc_is_dmub_outbox_supported(adev->dm.dc)) { 4169 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, 4170 dmub_hpd_callback, true)) { 4171 drm_err(adev_to_drm(adev), "fail to register dmub hpd callback"); 4172 return -EINVAL; 4173 } 4174 4175 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, 4176 dmub_hpd_callback, true)) { 4177 drm_err(adev_to_drm(adev), "fail to register dmub hpd callback"); 4178 return -EINVAL; 4179 } 4180 4181 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_SENSE_NOTIFY, 4182 dmub_hpd_sense_callback, true)) { 4183 drm_err(adev_to_drm(adev), "fail to register dmub hpd sense callback"); 4184 return -EINVAL; 4185 } 4186 } 4187 4188 list_for_each_entry(connector, 4189 &dev->mode_config.connector_list, head) { 4190 4191 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 4192 continue; 4193 4194 aconnector = to_amdgpu_dm_connector(connector); 4195 dc_link = aconnector->dc_link; 4196 4197 if (dc_link->irq_source_hpd != DC_IRQ_SOURCE_INVALID) { 4198 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT; 4199 int_params.irq_source = dc_link->irq_source_hpd; 4200 4201 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4202 int_params.irq_source < DC_IRQ_SOURCE_HPD1 || 4203 int_params.irq_source > DC_IRQ_SOURCE_HPD6) { 4204 drm_err(adev_to_drm(adev), "Failed to register hpd irq!\n"); 4205 return -EINVAL; 4206 } 4207 4208 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4209 handle_hpd_irq, (void *) aconnector)) 4210 return -ENOMEM; 4211 } 4212 4213 if (dc_link->irq_source_hpd_rx != DC_IRQ_SOURCE_INVALID) { 4214 4215 /* Also register for DP short pulse (hpd_rx). */ 4216 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT; 4217 int_params.irq_source = dc_link->irq_source_hpd_rx; 4218 4219 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4220 int_params.irq_source < DC_IRQ_SOURCE_HPD1RX || 4221 int_params.irq_source > DC_IRQ_SOURCE_HPD6RX) { 4222 drm_err(adev_to_drm(adev), "Failed to register hpd rx irq!\n"); 4223 return -EINVAL; 4224 } 4225 4226 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4227 handle_hpd_rx_irq, (void *) aconnector)) 4228 return -ENOMEM; 4229 } 4230 } 4231 return 0; 4232 } 4233 4234 #if defined(CONFIG_DRM_AMD_DC_SI) 4235 /* Register IRQ sources and initialize IRQ callbacks */ 4236 static int dce60_register_irq_handlers(struct amdgpu_device *adev) 4237 { 4238 struct dc *dc = adev->dm.dc; 4239 struct common_irq_params *c_irq_params; 4240 struct dc_interrupt_params int_params = {0}; 4241 int r; 4242 int i; 4243 unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY; 4244 4245 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 4246 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 4247 4248 /* 4249 * Actions of amdgpu_irq_add_id(): 4250 * 1. Register a set() function with base driver. 4251 * Base driver will call set() function to enable/disable an 4252 * interrupt in DC hardware. 4253 * 2. Register amdgpu_dm_irq_handler(). 4254 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts 4255 * coming from DC hardware. 4256 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC 4257 * for acknowledging and handling. 4258 */ 4259 4260 /* Use VBLANK interrupt */ 4261 for (i = 0; i < adev->mode_info.num_crtc; i++) { 4262 r = amdgpu_irq_add_id(adev, client_id, i + 1, &adev->crtc_irq); 4263 if (r) { 4264 drm_err(adev_to_drm(adev), "Failed to add crtc irq id!\n"); 4265 return r; 4266 } 4267 4268 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4269 int_params.irq_source = 4270 dc_interrupt_to_irq_source(dc, i + 1, 0); 4271 4272 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4273 int_params.irq_source < DC_IRQ_SOURCE_VBLANK1 || 4274 int_params.irq_source > DC_IRQ_SOURCE_VBLANK6) { 4275 drm_err(adev_to_drm(adev), "Failed to register vblank irq!\n"); 4276 return -EINVAL; 4277 } 4278 4279 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1]; 4280 4281 c_irq_params->adev = adev; 4282 c_irq_params->irq_src = int_params.irq_source; 4283 4284 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4285 dm_crtc_high_irq, c_irq_params)) 4286 return -ENOMEM; 4287 } 4288 4289 /* Use GRPH_PFLIP interrupt */ 4290 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; 4291 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) { 4292 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq); 4293 if (r) { 4294 drm_err(adev_to_drm(adev), "Failed to add page flip irq id!\n"); 4295 return r; 4296 } 4297 4298 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4299 int_params.irq_source = 4300 dc_interrupt_to_irq_source(dc, i, 0); 4301 4302 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4303 int_params.irq_source < DC_IRQ_SOURCE_PFLIP_FIRST || 4304 int_params.irq_source > DC_IRQ_SOURCE_PFLIP_LAST) { 4305 drm_err(adev_to_drm(adev), "Failed to register pflip irq!\n"); 4306 return -EINVAL; 4307 } 4308 4309 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST]; 4310 4311 c_irq_params->adev = adev; 4312 c_irq_params->irq_src = int_params.irq_source; 4313 4314 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4315 dm_pflip_high_irq, c_irq_params)) 4316 return -ENOMEM; 4317 } 4318 4319 /* HPD */ 4320 r = amdgpu_irq_add_id(adev, client_id, 4321 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq); 4322 if (r) { 4323 drm_err(adev_to_drm(adev), "Failed to add hpd irq id!\n"); 4324 return r; 4325 } 4326 4327 r = register_hpd_handlers(adev); 4328 4329 return r; 4330 } 4331 #endif 4332 4333 /* Register IRQ sources and initialize IRQ callbacks */ 4334 static int dce110_register_irq_handlers(struct amdgpu_device *adev) 4335 { 4336 struct dc *dc = adev->dm.dc; 4337 struct common_irq_params *c_irq_params; 4338 struct dc_interrupt_params int_params = {0}; 4339 int r; 4340 int i; 4341 unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY; 4342 4343 if (adev->family >= AMDGPU_FAMILY_AI) 4344 client_id = SOC15_IH_CLIENTID_DCE; 4345 4346 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 4347 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 4348 4349 /* 4350 * Actions of amdgpu_irq_add_id(): 4351 * 1. Register a set() function with base driver. 4352 * Base driver will call set() function to enable/disable an 4353 * interrupt in DC hardware. 4354 * 2. Register amdgpu_dm_irq_handler(). 4355 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts 4356 * coming from DC hardware. 4357 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC 4358 * for acknowledging and handling. 4359 */ 4360 4361 /* Use VBLANK interrupt */ 4362 for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) { 4363 r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq); 4364 if (r) { 4365 drm_err(adev_to_drm(adev), "Failed to add crtc irq id!\n"); 4366 return r; 4367 } 4368 4369 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4370 int_params.irq_source = 4371 dc_interrupt_to_irq_source(dc, i, 0); 4372 4373 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4374 int_params.irq_source < DC_IRQ_SOURCE_VBLANK1 || 4375 int_params.irq_source > DC_IRQ_SOURCE_VBLANK6) { 4376 drm_err(adev_to_drm(adev), "Failed to register vblank irq!\n"); 4377 return -EINVAL; 4378 } 4379 4380 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1]; 4381 4382 c_irq_params->adev = adev; 4383 c_irq_params->irq_src = int_params.irq_source; 4384 4385 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4386 dm_crtc_high_irq, c_irq_params)) 4387 return -ENOMEM; 4388 } 4389 4390 /* Use VUPDATE interrupt */ 4391 for (i = VISLANDS30_IV_SRCID_D1_V_UPDATE_INT; i <= VISLANDS30_IV_SRCID_D6_V_UPDATE_INT; i += 2) { 4392 r = amdgpu_irq_add_id(adev, client_id, i, &adev->vupdate_irq); 4393 if (r) { 4394 drm_err(adev_to_drm(adev), "Failed to add vupdate irq id!\n"); 4395 return r; 4396 } 4397 4398 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4399 int_params.irq_source = 4400 dc_interrupt_to_irq_source(dc, i, 0); 4401 4402 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4403 int_params.irq_source < DC_IRQ_SOURCE_VUPDATE1 || 4404 int_params.irq_source > DC_IRQ_SOURCE_VUPDATE6) { 4405 drm_err(adev_to_drm(adev), "Failed to register vupdate irq!\n"); 4406 return -EINVAL; 4407 } 4408 4409 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1]; 4410 4411 c_irq_params->adev = adev; 4412 c_irq_params->irq_src = int_params.irq_source; 4413 4414 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4415 dm_vupdate_high_irq, c_irq_params)) 4416 return -ENOMEM; 4417 } 4418 4419 /* Use GRPH_PFLIP interrupt */ 4420 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; 4421 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) { 4422 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq); 4423 if (r) { 4424 drm_err(adev_to_drm(adev), "Failed to add page flip irq id!\n"); 4425 return r; 4426 } 4427 4428 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4429 int_params.irq_source = 4430 dc_interrupt_to_irq_source(dc, i, 0); 4431 4432 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4433 int_params.irq_source < DC_IRQ_SOURCE_PFLIP_FIRST || 4434 int_params.irq_source > DC_IRQ_SOURCE_PFLIP_LAST) { 4435 drm_err(adev_to_drm(adev), "Failed to register pflip irq!\n"); 4436 return -EINVAL; 4437 } 4438 4439 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST]; 4440 4441 c_irq_params->adev = adev; 4442 c_irq_params->irq_src = int_params.irq_source; 4443 4444 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4445 dm_pflip_high_irq, c_irq_params)) 4446 return -ENOMEM; 4447 } 4448 4449 /* HPD */ 4450 r = amdgpu_irq_add_id(adev, client_id, 4451 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq); 4452 if (r) { 4453 drm_err(adev_to_drm(adev), "Failed to add hpd irq id!\n"); 4454 return r; 4455 } 4456 4457 r = register_hpd_handlers(adev); 4458 4459 return r; 4460 } 4461 4462 /* Register IRQ sources and initialize IRQ callbacks */ 4463 static int dcn10_register_irq_handlers(struct amdgpu_device *adev) 4464 { 4465 struct dc *dc = adev->dm.dc; 4466 struct common_irq_params *c_irq_params; 4467 struct dc_interrupt_params int_params = {0}; 4468 int r; 4469 int i; 4470 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 4471 static const unsigned int vrtl_int_srcid[] = { 4472 DCN_1_0__SRCID__OTG1_VERTICAL_INTERRUPT0_CONTROL, 4473 DCN_1_0__SRCID__OTG2_VERTICAL_INTERRUPT0_CONTROL, 4474 DCN_1_0__SRCID__OTG3_VERTICAL_INTERRUPT0_CONTROL, 4475 DCN_1_0__SRCID__OTG4_VERTICAL_INTERRUPT0_CONTROL, 4476 DCN_1_0__SRCID__OTG5_VERTICAL_INTERRUPT0_CONTROL, 4477 DCN_1_0__SRCID__OTG6_VERTICAL_INTERRUPT0_CONTROL 4478 }; 4479 #endif 4480 4481 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 4482 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 4483 4484 /* 4485 * Actions of amdgpu_irq_add_id(): 4486 * 1. Register a set() function with base driver. 4487 * Base driver will call set() function to enable/disable an 4488 * interrupt in DC hardware. 4489 * 2. Register amdgpu_dm_irq_handler(). 4490 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts 4491 * coming from DC hardware. 4492 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC 4493 * for acknowledging and handling. 4494 */ 4495 4496 /* Use VSTARTUP interrupt */ 4497 for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP; 4498 i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1; 4499 i++) { 4500 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq); 4501 4502 if (r) { 4503 drm_err(adev_to_drm(adev), "Failed to add crtc irq id!\n"); 4504 return r; 4505 } 4506 4507 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4508 int_params.irq_source = 4509 dc_interrupt_to_irq_source(dc, i, 0); 4510 4511 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4512 int_params.irq_source < DC_IRQ_SOURCE_VBLANK1 || 4513 int_params.irq_source > DC_IRQ_SOURCE_VBLANK6) { 4514 drm_err(adev_to_drm(adev), "Failed to register vblank irq!\n"); 4515 return -EINVAL; 4516 } 4517 4518 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1]; 4519 4520 c_irq_params->adev = adev; 4521 c_irq_params->irq_src = int_params.irq_source; 4522 4523 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4524 dm_crtc_high_irq, c_irq_params)) 4525 return -ENOMEM; 4526 } 4527 4528 /* Use otg vertical line interrupt */ 4529 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 4530 for (i = 0; i <= adev->mode_info.num_crtc - 1; i++) { 4531 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, 4532 vrtl_int_srcid[i], &adev->vline0_irq); 4533 4534 if (r) { 4535 drm_err(adev_to_drm(adev), "Failed to add vline0 irq id!\n"); 4536 return r; 4537 } 4538 4539 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4540 int_params.irq_source = 4541 dc_interrupt_to_irq_source(dc, vrtl_int_srcid[i], 0); 4542 4543 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4544 int_params.irq_source < DC_IRQ_SOURCE_DC1_VLINE0 || 4545 int_params.irq_source > DC_IRQ_SOURCE_DC6_VLINE0) { 4546 drm_err(adev_to_drm(adev), "Failed to register vline0 irq!\n"); 4547 return -EINVAL; 4548 } 4549 4550 c_irq_params = &adev->dm.vline0_params[int_params.irq_source 4551 - DC_IRQ_SOURCE_DC1_VLINE0]; 4552 4553 c_irq_params->adev = adev; 4554 c_irq_params->irq_src = int_params.irq_source; 4555 4556 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4557 dm_dcn_vertical_interrupt0_high_irq, 4558 c_irq_params)) 4559 return -ENOMEM; 4560 } 4561 #endif 4562 4563 /* Use VUPDATE_NO_LOCK interrupt on DCN, which seems to correspond to 4564 * the regular VUPDATE interrupt on DCE. We want DC_IRQ_SOURCE_VUPDATEx 4565 * to trigger at end of each vblank, regardless of state of the lock, 4566 * matching DCE behaviour. 4567 */ 4568 for (i = DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT; 4569 i <= DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT + adev->mode_info.num_crtc - 1; 4570 i++) { 4571 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->vupdate_irq); 4572 4573 if (r) { 4574 drm_err(adev_to_drm(adev), "Failed to add vupdate irq id!\n"); 4575 return r; 4576 } 4577 4578 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4579 int_params.irq_source = 4580 dc_interrupt_to_irq_source(dc, i, 0); 4581 4582 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4583 int_params.irq_source < DC_IRQ_SOURCE_VUPDATE1 || 4584 int_params.irq_source > DC_IRQ_SOURCE_VUPDATE6) { 4585 drm_err(adev_to_drm(adev), "Failed to register vupdate irq!\n"); 4586 return -EINVAL; 4587 } 4588 4589 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1]; 4590 4591 c_irq_params->adev = adev; 4592 c_irq_params->irq_src = int_params.irq_source; 4593 4594 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4595 dm_vupdate_high_irq, c_irq_params)) 4596 return -ENOMEM; 4597 } 4598 4599 /* Use GRPH_PFLIP interrupt */ 4600 for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT; 4601 i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + dc->caps.max_otg_num - 1; 4602 i++) { 4603 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq); 4604 if (r) { 4605 drm_err(adev_to_drm(adev), "Failed to add page flip irq id!\n"); 4606 return r; 4607 } 4608 4609 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT; 4610 int_params.irq_source = 4611 dc_interrupt_to_irq_source(dc, i, 0); 4612 4613 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID || 4614 int_params.irq_source < DC_IRQ_SOURCE_PFLIP_FIRST || 4615 int_params.irq_source > DC_IRQ_SOURCE_PFLIP_LAST) { 4616 drm_err(adev_to_drm(adev), "Failed to register pflip irq!\n"); 4617 return -EINVAL; 4618 } 4619 4620 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST]; 4621 4622 c_irq_params->adev = adev; 4623 c_irq_params->irq_src = int_params.irq_source; 4624 4625 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4626 dm_pflip_high_irq, c_irq_params)) 4627 return -ENOMEM; 4628 } 4629 4630 /* HPD */ 4631 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT, 4632 &adev->hpd_irq); 4633 if (r) { 4634 drm_err(adev_to_drm(adev), "Failed to add hpd irq id!\n"); 4635 return r; 4636 } 4637 4638 r = register_hpd_handlers(adev); 4639 4640 return r; 4641 } 4642 /* Register Outbox IRQ sources and initialize IRQ callbacks */ 4643 static int register_outbox_irq_handlers(struct amdgpu_device *adev) 4644 { 4645 struct dc *dc = adev->dm.dc; 4646 struct common_irq_params *c_irq_params; 4647 struct dc_interrupt_params int_params = {0}; 4648 int r, i; 4649 4650 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT; 4651 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT; 4652 4653 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT, 4654 &adev->dmub_outbox_irq); 4655 if (r) { 4656 drm_err(adev_to_drm(adev), "Failed to add outbox irq id!\n"); 4657 return r; 4658 } 4659 4660 if (dc->ctx->dmub_srv) { 4661 i = DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT; 4662 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT; 4663 int_params.irq_source = 4664 dc_interrupt_to_irq_source(dc, i, 0); 4665 4666 c_irq_params = &adev->dm.dmub_outbox_params[0]; 4667 4668 c_irq_params->adev = adev; 4669 c_irq_params->irq_src = int_params.irq_source; 4670 4671 if (!amdgpu_dm_irq_register_interrupt(adev, &int_params, 4672 dm_dmub_outbox1_low_irq, c_irq_params)) 4673 return -ENOMEM; 4674 } 4675 4676 return 0; 4677 } 4678 4679 /* 4680 * Acquires the lock for the atomic state object and returns 4681 * the new atomic state. 4682 * 4683 * This should only be called during atomic check. 4684 */ 4685 int dm_atomic_get_state(struct drm_atomic_state *state, 4686 struct dm_atomic_state **dm_state) 4687 { 4688 struct drm_device *dev = state->dev; 4689 struct amdgpu_device *adev = drm_to_adev(dev); 4690 struct amdgpu_display_manager *dm = &adev->dm; 4691 struct drm_private_state *priv_state; 4692 4693 if (*dm_state) 4694 return 0; 4695 4696 priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj); 4697 if (IS_ERR(priv_state)) 4698 return PTR_ERR(priv_state); 4699 4700 *dm_state = to_dm_atomic_state(priv_state); 4701 4702 return 0; 4703 } 4704 4705 static struct dm_atomic_state * 4706 dm_atomic_get_new_state(struct drm_atomic_state *state) 4707 { 4708 struct drm_device *dev = state->dev; 4709 struct amdgpu_device *adev = drm_to_adev(dev); 4710 struct amdgpu_display_manager *dm = &adev->dm; 4711 struct drm_private_obj *obj; 4712 struct drm_private_state *new_obj_state; 4713 int i; 4714 4715 for_each_new_private_obj_in_state(state, obj, new_obj_state, i) { 4716 if (obj->funcs == dm->atomic_obj.funcs) 4717 return to_dm_atomic_state(new_obj_state); 4718 } 4719 4720 return NULL; 4721 } 4722 4723 static struct drm_private_state * 4724 dm_atomic_duplicate_state(struct drm_private_obj *obj) 4725 { 4726 struct dm_atomic_state *old_state, *new_state; 4727 4728 new_state = kzalloc(sizeof(*new_state), GFP_KERNEL); 4729 if (!new_state) 4730 return NULL; 4731 4732 __drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base); 4733 4734 old_state = to_dm_atomic_state(obj->state); 4735 4736 if (old_state && old_state->context) 4737 new_state->context = dc_state_create_copy(old_state->context); 4738 4739 if (!new_state->context) { 4740 kfree(new_state); 4741 return NULL; 4742 } 4743 4744 return &new_state->base; 4745 } 4746 4747 static void dm_atomic_destroy_state(struct drm_private_obj *obj, 4748 struct drm_private_state *state) 4749 { 4750 struct dm_atomic_state *dm_state = to_dm_atomic_state(state); 4751 4752 if (dm_state && dm_state->context) 4753 dc_state_release(dm_state->context); 4754 4755 kfree(dm_state); 4756 } 4757 4758 static struct drm_private_state_funcs dm_atomic_state_funcs = { 4759 .atomic_duplicate_state = dm_atomic_duplicate_state, 4760 .atomic_destroy_state = dm_atomic_destroy_state, 4761 }; 4762 4763 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev) 4764 { 4765 struct dm_atomic_state *state; 4766 int r; 4767 4768 adev->mode_info.mode_config_initialized = true; 4769 4770 adev_to_drm(adev)->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs; 4771 adev_to_drm(adev)->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs; 4772 4773 adev_to_drm(adev)->mode_config.max_width = 16384; 4774 adev_to_drm(adev)->mode_config.max_height = 16384; 4775 4776 adev_to_drm(adev)->mode_config.preferred_depth = 24; 4777 if (adev->asic_type == CHIP_HAWAII) 4778 /* disable prefer shadow for now due to hibernation issues */ 4779 adev_to_drm(adev)->mode_config.prefer_shadow = 0; 4780 else 4781 adev_to_drm(adev)->mode_config.prefer_shadow = 1; 4782 /* indicates support for immediate flip */ 4783 adev_to_drm(adev)->mode_config.async_page_flip = true; 4784 4785 state = kzalloc(sizeof(*state), GFP_KERNEL); 4786 if (!state) 4787 return -ENOMEM; 4788 4789 state->context = dc_state_create_current_copy(adev->dm.dc); 4790 if (!state->context) { 4791 kfree(state); 4792 return -ENOMEM; 4793 } 4794 4795 drm_atomic_private_obj_init(adev_to_drm(adev), 4796 &adev->dm.atomic_obj, 4797 &state->base, 4798 &dm_atomic_state_funcs); 4799 4800 r = amdgpu_display_modeset_create_props(adev); 4801 if (r) { 4802 dc_state_release(state->context); 4803 kfree(state); 4804 return r; 4805 } 4806 4807 #ifdef AMD_PRIVATE_COLOR 4808 if (amdgpu_dm_create_color_properties(adev)) { 4809 dc_state_release(state->context); 4810 kfree(state); 4811 return -ENOMEM; 4812 } 4813 #endif 4814 4815 r = amdgpu_dm_audio_init(adev); 4816 if (r) { 4817 dc_state_release(state->context); 4818 kfree(state); 4819 return r; 4820 } 4821 4822 return 0; 4823 } 4824 4825 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12 4826 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255 4827 #define AMDGPU_DM_MIN_SPREAD ((AMDGPU_DM_DEFAULT_MAX_BACKLIGHT - AMDGPU_DM_DEFAULT_MIN_BACKLIGHT) / 2) 4828 #define AUX_BL_DEFAULT_TRANSITION_TIME_MS 50 4829 4830 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm, 4831 int bl_idx) 4832 { 4833 struct amdgpu_dm_backlight_caps *caps = &dm->backlight_caps[bl_idx]; 4834 4835 if (caps->caps_valid) 4836 return; 4837 4838 #if defined(CONFIG_ACPI) 4839 amdgpu_acpi_get_backlight_caps(caps); 4840 4841 /* validate the firmware value is sane */ 4842 if (caps->caps_valid) { 4843 int spread = caps->max_input_signal - caps->min_input_signal; 4844 4845 if (caps->max_input_signal > AMDGPU_DM_DEFAULT_MAX_BACKLIGHT || 4846 caps->min_input_signal < 0 || 4847 spread > AMDGPU_DM_DEFAULT_MAX_BACKLIGHT || 4848 spread < AMDGPU_DM_MIN_SPREAD) { 4849 DRM_DEBUG_KMS("DM: Invalid backlight caps: min=%d, max=%d\n", 4850 caps->min_input_signal, caps->max_input_signal); 4851 caps->caps_valid = false; 4852 } 4853 } 4854 4855 if (!caps->caps_valid) { 4856 caps->min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT; 4857 caps->max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT; 4858 caps->caps_valid = true; 4859 } 4860 #else 4861 if (caps->aux_support) 4862 return; 4863 4864 caps->min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT; 4865 caps->max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT; 4866 caps->caps_valid = true; 4867 #endif 4868 } 4869 4870 static int get_brightness_range(const struct amdgpu_dm_backlight_caps *caps, 4871 unsigned int *min, unsigned int *max) 4872 { 4873 if (!caps) 4874 return 0; 4875 4876 if (caps->aux_support) { 4877 // Firmware limits are in nits, DC API wants millinits. 4878 *max = 1000 * caps->aux_max_input_signal; 4879 *min = 1000 * caps->aux_min_input_signal; 4880 } else { 4881 // Firmware limits are 8-bit, PWM control is 16-bit. 4882 *max = 0x101 * caps->max_input_signal; 4883 *min = 0x101 * caps->min_input_signal; 4884 } 4885 return 1; 4886 } 4887 4888 /* Rescale from [min..max] to [0..AMDGPU_MAX_BL_LEVEL] */ 4889 static inline u32 scale_input_to_fw(int min, int max, u64 input) 4890 { 4891 return DIV_ROUND_CLOSEST_ULL(input * AMDGPU_MAX_BL_LEVEL, max - min); 4892 } 4893 4894 /* Rescale from [0..AMDGPU_MAX_BL_LEVEL] to [min..max] */ 4895 static inline u32 scale_fw_to_input(int min, int max, u64 input) 4896 { 4897 return min + DIV_ROUND_CLOSEST_ULL(input * (max - min), AMDGPU_MAX_BL_LEVEL); 4898 } 4899 4900 static void convert_custom_brightness(const struct amdgpu_dm_backlight_caps *caps, 4901 unsigned int min, unsigned int max, 4902 uint32_t *user_brightness) 4903 { 4904 u32 brightness = scale_input_to_fw(min, max, *user_brightness); 4905 u8 lower_signal, upper_signal, upper_lum, lower_lum, lum; 4906 int left, right; 4907 4908 if (amdgpu_dc_debug_mask & DC_DISABLE_CUSTOM_BRIGHTNESS_CURVE) 4909 return; 4910 4911 if (!caps->data_points) 4912 return; 4913 4914 /* 4915 * Handle the case where brightness is below the first data point 4916 * Interpolate between (0,0) and (first_signal, first_lum) 4917 */ 4918 if (brightness < caps->luminance_data[0].input_signal) { 4919 lum = DIV_ROUND_CLOSEST(caps->luminance_data[0].luminance * brightness, 4920 caps->luminance_data[0].input_signal); 4921 goto scale; 4922 } 4923 4924 left = 0; 4925 right = caps->data_points - 1; 4926 while (left <= right) { 4927 int mid = left + (right - left) / 2; 4928 u8 signal = caps->luminance_data[mid].input_signal; 4929 4930 /* Exact match found */ 4931 if (signal == brightness) { 4932 lum = caps->luminance_data[mid].luminance; 4933 goto scale; 4934 } 4935 4936 if (signal < brightness) 4937 left = mid + 1; 4938 else 4939 right = mid - 1; 4940 } 4941 4942 /* verify bound */ 4943 if (left >= caps->data_points) 4944 left = caps->data_points - 1; 4945 4946 /* At this point, left > right */ 4947 lower_signal = caps->luminance_data[right].input_signal; 4948 upper_signal = caps->luminance_data[left].input_signal; 4949 lower_lum = caps->luminance_data[right].luminance; 4950 upper_lum = caps->luminance_data[left].luminance; 4951 4952 /* interpolate */ 4953 if (right == left || !lower_lum) 4954 lum = upper_lum; 4955 else 4956 lum = lower_lum + DIV_ROUND_CLOSEST((upper_lum - lower_lum) * 4957 (brightness - lower_signal), 4958 upper_signal - lower_signal); 4959 scale: 4960 *user_brightness = scale_fw_to_input(min, max, 4961 DIV_ROUND_CLOSEST(lum * brightness, 101)); 4962 } 4963 4964 static u32 convert_brightness_from_user(const struct amdgpu_dm_backlight_caps *caps, 4965 uint32_t brightness) 4966 { 4967 unsigned int min, max; 4968 4969 if (!get_brightness_range(caps, &min, &max)) 4970 return brightness; 4971 4972 convert_custom_brightness(caps, min, max, &brightness); 4973 4974 // Rescale 0..max to min..max 4975 return min + DIV_ROUND_CLOSEST_ULL((u64)(max - min) * brightness, max); 4976 } 4977 4978 static u32 convert_brightness_to_user(const struct amdgpu_dm_backlight_caps *caps, 4979 uint32_t brightness) 4980 { 4981 unsigned int min, max; 4982 4983 if (!get_brightness_range(caps, &min, &max)) 4984 return brightness; 4985 4986 if (brightness < min) 4987 return 0; 4988 // Rescale min..max to 0..max 4989 return DIV_ROUND_CLOSEST_ULL((u64)max * (brightness - min), 4990 max - min); 4991 } 4992 4993 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm, 4994 int bl_idx, 4995 u32 user_brightness) 4996 { 4997 struct amdgpu_dm_backlight_caps *caps; 4998 struct dc_link *link; 4999 u32 brightness; 5000 bool rc, reallow_idle = false; 5001 5002 amdgpu_dm_update_backlight_caps(dm, bl_idx); 5003 caps = &dm->backlight_caps[bl_idx]; 5004 5005 dm->brightness[bl_idx] = user_brightness; 5006 /* update scratch register */ 5007 if (bl_idx == 0) 5008 amdgpu_atombios_scratch_regs_set_backlight_level(dm->adev, dm->brightness[bl_idx]); 5009 brightness = convert_brightness_from_user(caps, dm->brightness[bl_idx]); 5010 link = (struct dc_link *)dm->backlight_link[bl_idx]; 5011 5012 /* Apply brightness quirk */ 5013 if (caps->brightness_mask) 5014 brightness |= caps->brightness_mask; 5015 5016 /* Change brightness based on AUX property */ 5017 mutex_lock(&dm->dc_lock); 5018 if (dm->dc->caps.ips_support && dm->dc->ctx->dmub_srv->idle_allowed) { 5019 dc_allow_idle_optimizations(dm->dc, false); 5020 reallow_idle = true; 5021 } 5022 5023 if (trace_amdgpu_dm_brightness_enabled()) { 5024 trace_amdgpu_dm_brightness(__builtin_return_address(0), 5025 user_brightness, 5026 brightness, 5027 caps->aux_support, 5028 power_supply_is_system_supplied() > 0); 5029 } 5030 5031 if (caps->aux_support) { 5032 rc = dc_link_set_backlight_level_nits(link, true, brightness, 5033 AUX_BL_DEFAULT_TRANSITION_TIME_MS); 5034 if (!rc) 5035 DRM_DEBUG("DM: Failed to update backlight via AUX on eDP[%d]\n", bl_idx); 5036 } else { 5037 struct set_backlight_level_params backlight_level_params = { 0 }; 5038 5039 backlight_level_params.backlight_pwm_u16_16 = brightness; 5040 backlight_level_params.transition_time_in_ms = 0; 5041 5042 rc = dc_link_set_backlight_level(link, &backlight_level_params); 5043 if (!rc) 5044 DRM_DEBUG("DM: Failed to update backlight on eDP[%d]\n", bl_idx); 5045 } 5046 5047 if (dm->dc->caps.ips_support && reallow_idle) 5048 dc_allow_idle_optimizations(dm->dc, true); 5049 5050 mutex_unlock(&dm->dc_lock); 5051 5052 if (rc) 5053 dm->actual_brightness[bl_idx] = user_brightness; 5054 } 5055 5056 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd) 5057 { 5058 struct amdgpu_display_manager *dm = bl_get_data(bd); 5059 int i; 5060 5061 for (i = 0; i < dm->num_of_edps; i++) { 5062 if (bd == dm->backlight_dev[i]) 5063 break; 5064 } 5065 if (i >= AMDGPU_DM_MAX_NUM_EDP) 5066 i = 0; 5067 amdgpu_dm_backlight_set_level(dm, i, bd->props.brightness); 5068 5069 return 0; 5070 } 5071 5072 static u32 amdgpu_dm_backlight_get_level(struct amdgpu_display_manager *dm, 5073 int bl_idx) 5074 { 5075 int ret; 5076 struct amdgpu_dm_backlight_caps caps; 5077 struct dc_link *link = (struct dc_link *)dm->backlight_link[bl_idx]; 5078 5079 amdgpu_dm_update_backlight_caps(dm, bl_idx); 5080 caps = dm->backlight_caps[bl_idx]; 5081 5082 if (caps.aux_support) { 5083 u32 avg, peak; 5084 5085 if (!dc_link_get_backlight_level_nits(link, &avg, &peak)) 5086 return dm->brightness[bl_idx]; 5087 return convert_brightness_to_user(&caps, avg); 5088 } 5089 5090 ret = dc_link_get_backlight_level(link); 5091 5092 if (ret == DC_ERROR_UNEXPECTED) 5093 return dm->brightness[bl_idx]; 5094 5095 return convert_brightness_to_user(&caps, ret); 5096 } 5097 5098 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd) 5099 { 5100 struct amdgpu_display_manager *dm = bl_get_data(bd); 5101 int i; 5102 5103 for (i = 0; i < dm->num_of_edps; i++) { 5104 if (bd == dm->backlight_dev[i]) 5105 break; 5106 } 5107 if (i >= AMDGPU_DM_MAX_NUM_EDP) 5108 i = 0; 5109 return amdgpu_dm_backlight_get_level(dm, i); 5110 } 5111 5112 static const struct backlight_ops amdgpu_dm_backlight_ops = { 5113 .options = BL_CORE_SUSPENDRESUME, 5114 .get_brightness = amdgpu_dm_backlight_get_brightness, 5115 .update_status = amdgpu_dm_backlight_update_status, 5116 }; 5117 5118 static void 5119 amdgpu_dm_register_backlight_device(struct amdgpu_dm_connector *aconnector) 5120 { 5121 struct drm_device *drm = aconnector->base.dev; 5122 struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm; 5123 struct backlight_properties props = { 0 }; 5124 struct amdgpu_dm_backlight_caps *caps; 5125 char bl_name[16]; 5126 int min, max; 5127 5128 if (aconnector->bl_idx == -1) 5129 return; 5130 5131 if (!acpi_video_backlight_use_native()) { 5132 drm_info(drm, "Skipping amdgpu DM backlight registration\n"); 5133 /* Try registering an ACPI video backlight device instead. */ 5134 acpi_video_register_backlight(); 5135 return; 5136 } 5137 5138 caps = &dm->backlight_caps[aconnector->bl_idx]; 5139 if (get_brightness_range(caps, &min, &max)) { 5140 if (power_supply_is_system_supplied() > 0) 5141 props.brightness = DIV_ROUND_CLOSEST((max - min) * caps->ac_level, 100); 5142 else 5143 props.brightness = DIV_ROUND_CLOSEST((max - min) * caps->dc_level, 100); 5144 /* min is zero, so max needs to be adjusted */ 5145 props.max_brightness = max - min; 5146 drm_dbg(drm, "Backlight caps: min: %d, max: %d, ac %d, dc %d\n", min, max, 5147 caps->ac_level, caps->dc_level); 5148 } else 5149 props.brightness = props.max_brightness = MAX_BACKLIGHT_LEVEL; 5150 5151 if (caps->data_points && !(amdgpu_dc_debug_mask & DC_DISABLE_CUSTOM_BRIGHTNESS_CURVE)) { 5152 drm_info(drm, "Using custom brightness curve\n"); 5153 props.scale = BACKLIGHT_SCALE_NON_LINEAR; 5154 } else 5155 props.scale = BACKLIGHT_SCALE_LINEAR; 5156 props.type = BACKLIGHT_RAW; 5157 5158 snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d", 5159 drm->primary->index + aconnector->bl_idx); 5160 5161 dm->backlight_dev[aconnector->bl_idx] = 5162 backlight_device_register(bl_name, aconnector->base.kdev, dm, 5163 &amdgpu_dm_backlight_ops, &props); 5164 dm->brightness[aconnector->bl_idx] = props.brightness; 5165 5166 if (IS_ERR(dm->backlight_dev[aconnector->bl_idx])) { 5167 drm_err(drm, "DM: Backlight registration failed!\n"); 5168 dm->backlight_dev[aconnector->bl_idx] = NULL; 5169 } else 5170 drm_dbg_driver(drm, "DM: Registered Backlight device: %s\n", bl_name); 5171 } 5172 5173 static int initialize_plane(struct amdgpu_display_manager *dm, 5174 struct amdgpu_mode_info *mode_info, int plane_id, 5175 enum drm_plane_type plane_type, 5176 const struct dc_plane_cap *plane_cap) 5177 { 5178 struct drm_plane *plane; 5179 unsigned long possible_crtcs; 5180 int ret = 0; 5181 5182 plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL); 5183 if (!plane) { 5184 drm_err(adev_to_drm(dm->adev), "KMS: Failed to allocate plane\n"); 5185 return -ENOMEM; 5186 } 5187 plane->type = plane_type; 5188 5189 /* 5190 * HACK: IGT tests expect that the primary plane for a CRTC 5191 * can only have one possible CRTC. Only expose support for 5192 * any CRTC if they're not going to be used as a primary plane 5193 * for a CRTC - like overlay or underlay planes. 5194 */ 5195 possible_crtcs = 1 << plane_id; 5196 if (plane_id >= dm->dc->caps.max_streams) 5197 possible_crtcs = 0xff; 5198 5199 ret = amdgpu_dm_plane_init(dm, plane, possible_crtcs, plane_cap); 5200 5201 if (ret) { 5202 drm_err(adev_to_drm(dm->adev), "KMS: Failed to initialize plane\n"); 5203 kfree(plane); 5204 return ret; 5205 } 5206 5207 if (mode_info) 5208 mode_info->planes[plane_id] = plane; 5209 5210 return ret; 5211 } 5212 5213 5214 static void setup_backlight_device(struct amdgpu_display_manager *dm, 5215 struct amdgpu_dm_connector *aconnector) 5216 { 5217 struct amdgpu_dm_backlight_caps *caps; 5218 struct dc_link *link = aconnector->dc_link; 5219 int bl_idx = dm->num_of_edps; 5220 5221 if (!(link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) || 5222 link->type == dc_connection_none) 5223 return; 5224 5225 if (dm->num_of_edps >= AMDGPU_DM_MAX_NUM_EDP) { 5226 drm_warn(adev_to_drm(dm->adev), "Too much eDP connections, skipping backlight setup for additional eDPs\n"); 5227 return; 5228 } 5229 5230 aconnector->bl_idx = bl_idx; 5231 5232 amdgpu_dm_update_backlight_caps(dm, bl_idx); 5233 dm->backlight_link[bl_idx] = link; 5234 dm->num_of_edps++; 5235 5236 update_connector_ext_caps(aconnector); 5237 caps = &dm->backlight_caps[aconnector->bl_idx]; 5238 5239 /* Only offer ABM property when non-OLED and user didn't turn off by module parameter */ 5240 if (!caps->ext_caps->bits.oled && amdgpu_dm_abm_level < 0) 5241 drm_object_attach_property(&aconnector->base.base, 5242 dm->adev->mode_info.abm_level_property, 5243 ABM_SYSFS_CONTROL); 5244 } 5245 5246 static void amdgpu_set_panel_orientation(struct drm_connector *connector); 5247 5248 /* 5249 * In this architecture, the association 5250 * connector -> encoder -> crtc 5251 * id not really requried. The crtc and connector will hold the 5252 * display_index as an abstraction to use with DAL component 5253 * 5254 * Returns 0 on success 5255 */ 5256 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev) 5257 { 5258 struct amdgpu_display_manager *dm = &adev->dm; 5259 s32 i; 5260 struct amdgpu_dm_connector *aconnector = NULL; 5261 struct amdgpu_encoder *aencoder = NULL; 5262 struct amdgpu_mode_info *mode_info = &adev->mode_info; 5263 u32 link_cnt; 5264 s32 primary_planes; 5265 enum dc_connection_type new_connection_type = dc_connection_none; 5266 const struct dc_plane_cap *plane; 5267 bool psr_feature_enabled = false; 5268 bool replay_feature_enabled = false; 5269 int max_overlay = dm->dc->caps.max_slave_planes; 5270 5271 dm->display_indexes_num = dm->dc->caps.max_streams; 5272 /* Update the actual used number of crtc */ 5273 adev->mode_info.num_crtc = adev->dm.display_indexes_num; 5274 5275 amdgpu_dm_set_irq_funcs(adev); 5276 5277 link_cnt = dm->dc->caps.max_links; 5278 if (amdgpu_dm_mode_config_init(dm->adev)) { 5279 drm_err(adev_to_drm(adev), "DM: Failed to initialize mode config\n"); 5280 return -EINVAL; 5281 } 5282 5283 /* There is one primary plane per CRTC */ 5284 primary_planes = dm->dc->caps.max_streams; 5285 if (primary_planes > AMDGPU_MAX_PLANES) { 5286 drm_err(adev_to_drm(adev), "DM: Plane nums out of 6 planes\n"); 5287 return -EINVAL; 5288 } 5289 5290 /* 5291 * Initialize primary planes, implicit planes for legacy IOCTLS. 5292 * Order is reversed to match iteration order in atomic check. 5293 */ 5294 for (i = (primary_planes - 1); i >= 0; i--) { 5295 plane = &dm->dc->caps.planes[i]; 5296 5297 if (initialize_plane(dm, mode_info, i, 5298 DRM_PLANE_TYPE_PRIMARY, plane)) { 5299 drm_err(adev_to_drm(adev), "KMS: Failed to initialize primary plane\n"); 5300 goto fail; 5301 } 5302 } 5303 5304 /* 5305 * Initialize overlay planes, index starting after primary planes. 5306 * These planes have a higher DRM index than the primary planes since 5307 * they should be considered as having a higher z-order. 5308 * Order is reversed to match iteration order in atomic check. 5309 * 5310 * Only support DCN for now, and only expose one so we don't encourage 5311 * userspace to use up all the pipes. 5312 */ 5313 for (i = 0; i < dm->dc->caps.max_planes; ++i) { 5314 struct dc_plane_cap *plane = &dm->dc->caps.planes[i]; 5315 5316 /* Do not create overlay if MPO disabled */ 5317 if (amdgpu_dc_debug_mask & DC_DISABLE_MPO) 5318 break; 5319 5320 if (plane->type != DC_PLANE_TYPE_DCN_UNIVERSAL) 5321 continue; 5322 5323 if (!plane->pixel_format_support.argb8888) 5324 continue; 5325 5326 if (max_overlay-- == 0) 5327 break; 5328 5329 if (initialize_plane(dm, NULL, primary_planes + i, 5330 DRM_PLANE_TYPE_OVERLAY, plane)) { 5331 drm_err(adev_to_drm(adev), "KMS: Failed to initialize overlay plane\n"); 5332 goto fail; 5333 } 5334 } 5335 5336 for (i = 0; i < dm->dc->caps.max_streams; i++) 5337 if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) { 5338 drm_err(adev_to_drm(adev), "KMS: Failed to initialize crtc\n"); 5339 goto fail; 5340 } 5341 5342 /* Use Outbox interrupt */ 5343 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 5344 case IP_VERSION(3, 0, 0): 5345 case IP_VERSION(3, 1, 2): 5346 case IP_VERSION(3, 1, 3): 5347 case IP_VERSION(3, 1, 4): 5348 case IP_VERSION(3, 1, 5): 5349 case IP_VERSION(3, 1, 6): 5350 case IP_VERSION(3, 2, 0): 5351 case IP_VERSION(3, 2, 1): 5352 case IP_VERSION(2, 1, 0): 5353 case IP_VERSION(3, 5, 0): 5354 case IP_VERSION(3, 5, 1): 5355 case IP_VERSION(3, 6, 0): 5356 case IP_VERSION(4, 0, 1): 5357 if (register_outbox_irq_handlers(dm->adev)) { 5358 drm_err(adev_to_drm(adev), "DM: Failed to initialize IRQ\n"); 5359 goto fail; 5360 } 5361 break; 5362 default: 5363 DRM_DEBUG_KMS("Unsupported DCN IP version for outbox: 0x%X\n", 5364 amdgpu_ip_version(adev, DCE_HWIP, 0)); 5365 } 5366 5367 /* Determine whether to enable PSR support by default. */ 5368 if (!(amdgpu_dc_debug_mask & DC_DISABLE_PSR)) { 5369 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 5370 case IP_VERSION(3, 1, 2): 5371 case IP_VERSION(3, 1, 3): 5372 case IP_VERSION(3, 1, 4): 5373 case IP_VERSION(3, 1, 5): 5374 case IP_VERSION(3, 1, 6): 5375 case IP_VERSION(3, 2, 0): 5376 case IP_VERSION(3, 2, 1): 5377 case IP_VERSION(3, 5, 0): 5378 case IP_VERSION(3, 5, 1): 5379 case IP_VERSION(3, 6, 0): 5380 case IP_VERSION(4, 0, 1): 5381 psr_feature_enabled = true; 5382 break; 5383 default: 5384 psr_feature_enabled = amdgpu_dc_feature_mask & DC_PSR_MASK; 5385 break; 5386 } 5387 } 5388 5389 /* Determine whether to enable Replay support by default. */ 5390 if (!(amdgpu_dc_debug_mask & DC_DISABLE_REPLAY)) { 5391 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 5392 case IP_VERSION(3, 1, 4): 5393 case IP_VERSION(3, 2, 0): 5394 case IP_VERSION(3, 2, 1): 5395 case IP_VERSION(3, 5, 0): 5396 case IP_VERSION(3, 5, 1): 5397 case IP_VERSION(3, 6, 0): 5398 replay_feature_enabled = true; 5399 break; 5400 5401 default: 5402 replay_feature_enabled = amdgpu_dc_feature_mask & DC_REPLAY_MASK; 5403 break; 5404 } 5405 } 5406 5407 if (link_cnt > MAX_LINKS) { 5408 drm_err(adev_to_drm(adev), 5409 "KMS: Cannot support more than %d display indexes\n", 5410 MAX_LINKS); 5411 goto fail; 5412 } 5413 5414 /* loops over all connectors on the board */ 5415 for (i = 0; i < link_cnt; i++) { 5416 struct dc_link *link = NULL; 5417 5418 link = dc_get_link_at_index(dm->dc, i); 5419 5420 if (link->connector_signal == SIGNAL_TYPE_VIRTUAL) { 5421 struct amdgpu_dm_wb_connector *wbcon = kzalloc(sizeof(*wbcon), GFP_KERNEL); 5422 5423 if (!wbcon) { 5424 drm_err(adev_to_drm(adev), "KMS: Failed to allocate writeback connector\n"); 5425 continue; 5426 } 5427 5428 if (amdgpu_dm_wb_connector_init(dm, wbcon, i)) { 5429 drm_err(adev_to_drm(adev), "KMS: Failed to initialize writeback connector\n"); 5430 kfree(wbcon); 5431 continue; 5432 } 5433 5434 link->psr_settings.psr_feature_enabled = false; 5435 link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED; 5436 5437 continue; 5438 } 5439 5440 aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL); 5441 if (!aconnector) 5442 goto fail; 5443 5444 aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL); 5445 if (!aencoder) 5446 goto fail; 5447 5448 if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) { 5449 drm_err(adev_to_drm(adev), "KMS: Failed to initialize encoder\n"); 5450 goto fail; 5451 } 5452 5453 if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) { 5454 drm_err(adev_to_drm(adev), "KMS: Failed to initialize connector\n"); 5455 goto fail; 5456 } 5457 5458 if (dm->hpd_rx_offload_wq) 5459 dm->hpd_rx_offload_wq[aconnector->base.index].aconnector = 5460 aconnector; 5461 5462 if (!dc_link_detect_connection_type(link, &new_connection_type)) 5463 drm_err(adev_to_drm(adev), "KMS: Failed to detect connector\n"); 5464 5465 if (aconnector->base.force && new_connection_type == dc_connection_none) { 5466 emulated_link_detect(link); 5467 amdgpu_dm_update_connector_after_detect(aconnector); 5468 } else { 5469 bool ret = false; 5470 5471 mutex_lock(&dm->dc_lock); 5472 dc_exit_ips_for_hw_access(dm->dc); 5473 ret = dc_link_detect(link, DETECT_REASON_BOOT); 5474 mutex_unlock(&dm->dc_lock); 5475 5476 if (ret) { 5477 amdgpu_dm_update_connector_after_detect(aconnector); 5478 setup_backlight_device(dm, aconnector); 5479 5480 /* Disable PSR if Replay can be enabled */ 5481 if (replay_feature_enabled) 5482 if (amdgpu_dm_set_replay_caps(link, aconnector)) 5483 psr_feature_enabled = false; 5484 5485 if (psr_feature_enabled) { 5486 amdgpu_dm_set_psr_caps(link); 5487 drm_info(adev_to_drm(adev), "PSR support %d, DC PSR ver %d, sink PSR ver %d DPCD caps 0x%x su_y_granularity %d\n", 5488 link->psr_settings.psr_feature_enabled, 5489 link->psr_settings.psr_version, 5490 link->dpcd_caps.psr_info.psr_version, 5491 link->dpcd_caps.psr_info.psr_dpcd_caps.raw, 5492 link->dpcd_caps.psr_info.psr2_su_y_granularity_cap); 5493 } 5494 } 5495 } 5496 amdgpu_set_panel_orientation(&aconnector->base); 5497 } 5498 5499 /* Debug dump: list all DC links and their associated sinks after detection 5500 * is complete for all connectors. This provides a comprehensive view of the 5501 * final state without repeating the dump for each connector. 5502 */ 5503 amdgpu_dm_dump_links_and_sinks(adev); 5504 5505 /* Software is initialized. Now we can register interrupt handlers. */ 5506 switch (adev->asic_type) { 5507 #if defined(CONFIG_DRM_AMD_DC_SI) 5508 case CHIP_TAHITI: 5509 case CHIP_PITCAIRN: 5510 case CHIP_VERDE: 5511 case CHIP_OLAND: 5512 if (dce60_register_irq_handlers(dm->adev)) { 5513 drm_err(adev_to_drm(adev), "DM: Failed to initialize IRQ\n"); 5514 goto fail; 5515 } 5516 break; 5517 #endif 5518 case CHIP_BONAIRE: 5519 case CHIP_HAWAII: 5520 case CHIP_KAVERI: 5521 case CHIP_KABINI: 5522 case CHIP_MULLINS: 5523 case CHIP_TONGA: 5524 case CHIP_FIJI: 5525 case CHIP_CARRIZO: 5526 case CHIP_STONEY: 5527 case CHIP_POLARIS11: 5528 case CHIP_POLARIS10: 5529 case CHIP_POLARIS12: 5530 case CHIP_VEGAM: 5531 case CHIP_VEGA10: 5532 case CHIP_VEGA12: 5533 case CHIP_VEGA20: 5534 if (dce110_register_irq_handlers(dm->adev)) { 5535 drm_err(adev_to_drm(adev), "DM: Failed to initialize IRQ\n"); 5536 goto fail; 5537 } 5538 break; 5539 default: 5540 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 5541 case IP_VERSION(1, 0, 0): 5542 case IP_VERSION(1, 0, 1): 5543 case IP_VERSION(2, 0, 2): 5544 case IP_VERSION(2, 0, 3): 5545 case IP_VERSION(2, 0, 0): 5546 case IP_VERSION(2, 1, 0): 5547 case IP_VERSION(3, 0, 0): 5548 case IP_VERSION(3, 0, 2): 5549 case IP_VERSION(3, 0, 3): 5550 case IP_VERSION(3, 0, 1): 5551 case IP_VERSION(3, 1, 2): 5552 case IP_VERSION(3, 1, 3): 5553 case IP_VERSION(3, 1, 4): 5554 case IP_VERSION(3, 1, 5): 5555 case IP_VERSION(3, 1, 6): 5556 case IP_VERSION(3, 2, 0): 5557 case IP_VERSION(3, 2, 1): 5558 case IP_VERSION(3, 5, 0): 5559 case IP_VERSION(3, 5, 1): 5560 case IP_VERSION(3, 6, 0): 5561 case IP_VERSION(4, 0, 1): 5562 if (dcn10_register_irq_handlers(dm->adev)) { 5563 drm_err(adev_to_drm(adev), "DM: Failed to initialize IRQ\n"); 5564 goto fail; 5565 } 5566 break; 5567 default: 5568 drm_err(adev_to_drm(adev), "Unsupported DCE IP versions: 0x%X\n", 5569 amdgpu_ip_version(adev, DCE_HWIP, 0)); 5570 goto fail; 5571 } 5572 break; 5573 } 5574 5575 return 0; 5576 fail: 5577 kfree(aencoder); 5578 kfree(aconnector); 5579 5580 return -EINVAL; 5581 } 5582 5583 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm) 5584 { 5585 if (dm->atomic_obj.state) 5586 drm_atomic_private_obj_fini(&dm->atomic_obj); 5587 } 5588 5589 /****************************************************************************** 5590 * amdgpu_display_funcs functions 5591 *****************************************************************************/ 5592 5593 /* 5594 * dm_bandwidth_update - program display watermarks 5595 * 5596 * @adev: amdgpu_device pointer 5597 * 5598 * Calculate and program the display watermarks and line buffer allocation. 5599 */ 5600 static void dm_bandwidth_update(struct amdgpu_device *adev) 5601 { 5602 /* TODO: implement later */ 5603 } 5604 5605 static const struct amdgpu_display_funcs dm_display_funcs = { 5606 .bandwidth_update = dm_bandwidth_update, /* called unconditionally */ 5607 .vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */ 5608 .backlight_set_level = NULL, /* never called for DC */ 5609 .backlight_get_level = NULL, /* never called for DC */ 5610 .hpd_sense = NULL,/* called unconditionally */ 5611 .hpd_set_polarity = NULL, /* called unconditionally */ 5612 .hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */ 5613 .page_flip_get_scanoutpos = 5614 dm_crtc_get_scanoutpos,/* called unconditionally */ 5615 .add_encoder = NULL, /* VBIOS parsing. DAL does it. */ 5616 .add_connector = NULL, /* VBIOS parsing. DAL does it. */ 5617 }; 5618 5619 #if defined(CONFIG_DEBUG_KERNEL_DC) 5620 5621 static ssize_t s3_debug_store(struct device *device, 5622 struct device_attribute *attr, 5623 const char *buf, 5624 size_t count) 5625 { 5626 int ret; 5627 int s3_state; 5628 struct drm_device *drm_dev = dev_get_drvdata(device); 5629 struct amdgpu_device *adev = drm_to_adev(drm_dev); 5630 struct amdgpu_ip_block *ip_block; 5631 5632 ip_block = amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_DCE); 5633 if (!ip_block) 5634 return -EINVAL; 5635 5636 ret = kstrtoint(buf, 0, &s3_state); 5637 5638 if (ret == 0) { 5639 if (s3_state) { 5640 dm_resume(ip_block); 5641 drm_kms_helper_hotplug_event(adev_to_drm(adev)); 5642 } else 5643 dm_suspend(ip_block); 5644 } 5645 5646 return ret == 0 ? count : 0; 5647 } 5648 5649 DEVICE_ATTR_WO(s3_debug); 5650 5651 #endif 5652 5653 static int dm_init_microcode(struct amdgpu_device *adev) 5654 { 5655 char *fw_name_dmub; 5656 int r; 5657 5658 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 5659 case IP_VERSION(2, 1, 0): 5660 fw_name_dmub = FIRMWARE_RENOIR_DMUB; 5661 if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id)) 5662 fw_name_dmub = FIRMWARE_GREEN_SARDINE_DMUB; 5663 break; 5664 case IP_VERSION(3, 0, 0): 5665 if (amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(10, 3, 0)) 5666 fw_name_dmub = FIRMWARE_SIENNA_CICHLID_DMUB; 5667 else 5668 fw_name_dmub = FIRMWARE_NAVY_FLOUNDER_DMUB; 5669 break; 5670 case IP_VERSION(3, 0, 1): 5671 fw_name_dmub = FIRMWARE_VANGOGH_DMUB; 5672 break; 5673 case IP_VERSION(3, 0, 2): 5674 fw_name_dmub = FIRMWARE_DIMGREY_CAVEFISH_DMUB; 5675 break; 5676 case IP_VERSION(3, 0, 3): 5677 fw_name_dmub = FIRMWARE_BEIGE_GOBY_DMUB; 5678 break; 5679 case IP_VERSION(3, 1, 2): 5680 case IP_VERSION(3, 1, 3): 5681 fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB; 5682 break; 5683 case IP_VERSION(3, 1, 4): 5684 fw_name_dmub = FIRMWARE_DCN_314_DMUB; 5685 break; 5686 case IP_VERSION(3, 1, 5): 5687 fw_name_dmub = FIRMWARE_DCN_315_DMUB; 5688 break; 5689 case IP_VERSION(3, 1, 6): 5690 fw_name_dmub = FIRMWARE_DCN316_DMUB; 5691 break; 5692 case IP_VERSION(3, 2, 0): 5693 fw_name_dmub = FIRMWARE_DCN_V3_2_0_DMCUB; 5694 break; 5695 case IP_VERSION(3, 2, 1): 5696 fw_name_dmub = FIRMWARE_DCN_V3_2_1_DMCUB; 5697 break; 5698 case IP_VERSION(3, 5, 0): 5699 fw_name_dmub = FIRMWARE_DCN_35_DMUB; 5700 break; 5701 case IP_VERSION(3, 5, 1): 5702 fw_name_dmub = FIRMWARE_DCN_351_DMUB; 5703 break; 5704 case IP_VERSION(3, 6, 0): 5705 fw_name_dmub = FIRMWARE_DCN_36_DMUB; 5706 break; 5707 case IP_VERSION(4, 0, 1): 5708 fw_name_dmub = FIRMWARE_DCN_401_DMUB; 5709 break; 5710 default: 5711 /* ASIC doesn't support DMUB. */ 5712 return 0; 5713 } 5714 r = amdgpu_ucode_request(adev, &adev->dm.dmub_fw, AMDGPU_UCODE_REQUIRED, 5715 "%s", fw_name_dmub); 5716 return r; 5717 } 5718 5719 static int dm_early_init(struct amdgpu_ip_block *ip_block) 5720 { 5721 struct amdgpu_device *adev = ip_block->adev; 5722 struct amdgpu_mode_info *mode_info = &adev->mode_info; 5723 struct atom_context *ctx = mode_info->atom_context; 5724 int index = GetIndexIntoMasterTable(DATA, Object_Header); 5725 u16 data_offset; 5726 5727 /* if there is no object header, skip DM */ 5728 if (!amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) { 5729 adev->harvest_ip_mask |= AMD_HARVEST_IP_DMU_MASK; 5730 drm_info(adev_to_drm(adev), "No object header, skipping DM\n"); 5731 return -ENOENT; 5732 } 5733 5734 switch (adev->asic_type) { 5735 #if defined(CONFIG_DRM_AMD_DC_SI) 5736 case CHIP_TAHITI: 5737 case CHIP_PITCAIRN: 5738 case CHIP_VERDE: 5739 adev->mode_info.num_crtc = 6; 5740 adev->mode_info.num_hpd = 6; 5741 adev->mode_info.num_dig = 6; 5742 break; 5743 case CHIP_OLAND: 5744 adev->mode_info.num_crtc = 2; 5745 adev->mode_info.num_hpd = 2; 5746 adev->mode_info.num_dig = 2; 5747 break; 5748 #endif 5749 case CHIP_BONAIRE: 5750 case CHIP_HAWAII: 5751 adev->mode_info.num_crtc = 6; 5752 adev->mode_info.num_hpd = 6; 5753 adev->mode_info.num_dig = 6; 5754 break; 5755 case CHIP_KAVERI: 5756 adev->mode_info.num_crtc = 4; 5757 adev->mode_info.num_hpd = 6; 5758 adev->mode_info.num_dig = 7; 5759 break; 5760 case CHIP_KABINI: 5761 case CHIP_MULLINS: 5762 adev->mode_info.num_crtc = 2; 5763 adev->mode_info.num_hpd = 6; 5764 adev->mode_info.num_dig = 6; 5765 break; 5766 case CHIP_FIJI: 5767 case CHIP_TONGA: 5768 adev->mode_info.num_crtc = 6; 5769 adev->mode_info.num_hpd = 6; 5770 adev->mode_info.num_dig = 7; 5771 break; 5772 case CHIP_CARRIZO: 5773 adev->mode_info.num_crtc = 3; 5774 adev->mode_info.num_hpd = 6; 5775 adev->mode_info.num_dig = 9; 5776 break; 5777 case CHIP_STONEY: 5778 adev->mode_info.num_crtc = 2; 5779 adev->mode_info.num_hpd = 6; 5780 adev->mode_info.num_dig = 9; 5781 break; 5782 case CHIP_POLARIS11: 5783 case CHIP_POLARIS12: 5784 adev->mode_info.num_crtc = 5; 5785 adev->mode_info.num_hpd = 5; 5786 adev->mode_info.num_dig = 5; 5787 break; 5788 case CHIP_POLARIS10: 5789 case CHIP_VEGAM: 5790 adev->mode_info.num_crtc = 6; 5791 adev->mode_info.num_hpd = 6; 5792 adev->mode_info.num_dig = 6; 5793 break; 5794 case CHIP_VEGA10: 5795 case CHIP_VEGA12: 5796 case CHIP_VEGA20: 5797 adev->mode_info.num_crtc = 6; 5798 adev->mode_info.num_hpd = 6; 5799 adev->mode_info.num_dig = 6; 5800 break; 5801 default: 5802 5803 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 5804 case IP_VERSION(2, 0, 2): 5805 case IP_VERSION(3, 0, 0): 5806 adev->mode_info.num_crtc = 6; 5807 adev->mode_info.num_hpd = 6; 5808 adev->mode_info.num_dig = 6; 5809 break; 5810 case IP_VERSION(2, 0, 0): 5811 case IP_VERSION(3, 0, 2): 5812 adev->mode_info.num_crtc = 5; 5813 adev->mode_info.num_hpd = 5; 5814 adev->mode_info.num_dig = 5; 5815 break; 5816 case IP_VERSION(2, 0, 3): 5817 case IP_VERSION(3, 0, 3): 5818 adev->mode_info.num_crtc = 2; 5819 adev->mode_info.num_hpd = 2; 5820 adev->mode_info.num_dig = 2; 5821 break; 5822 case IP_VERSION(1, 0, 0): 5823 case IP_VERSION(1, 0, 1): 5824 case IP_VERSION(3, 0, 1): 5825 case IP_VERSION(2, 1, 0): 5826 case IP_VERSION(3, 1, 2): 5827 case IP_VERSION(3, 1, 3): 5828 case IP_VERSION(3, 1, 4): 5829 case IP_VERSION(3, 1, 5): 5830 case IP_VERSION(3, 1, 6): 5831 case IP_VERSION(3, 2, 0): 5832 case IP_VERSION(3, 2, 1): 5833 case IP_VERSION(3, 5, 0): 5834 case IP_VERSION(3, 5, 1): 5835 case IP_VERSION(3, 6, 0): 5836 case IP_VERSION(4, 0, 1): 5837 adev->mode_info.num_crtc = 4; 5838 adev->mode_info.num_hpd = 4; 5839 adev->mode_info.num_dig = 4; 5840 break; 5841 default: 5842 drm_err(adev_to_drm(adev), "Unsupported DCE IP versions: 0x%x\n", 5843 amdgpu_ip_version(adev, DCE_HWIP, 0)); 5844 return -EINVAL; 5845 } 5846 break; 5847 } 5848 5849 if (adev->mode_info.funcs == NULL) 5850 adev->mode_info.funcs = &dm_display_funcs; 5851 5852 /* 5853 * Note: Do NOT change adev->audio_endpt_rreg and 5854 * adev->audio_endpt_wreg because they are initialised in 5855 * amdgpu_device_init() 5856 */ 5857 #if defined(CONFIG_DEBUG_KERNEL_DC) 5858 device_create_file( 5859 adev_to_drm(adev)->dev, 5860 &dev_attr_s3_debug); 5861 #endif 5862 adev->dc_enabled = true; 5863 5864 return dm_init_microcode(adev); 5865 } 5866 5867 static bool modereset_required(struct drm_crtc_state *crtc_state) 5868 { 5869 return !crtc_state->active && drm_atomic_crtc_needs_modeset(crtc_state); 5870 } 5871 5872 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder) 5873 { 5874 drm_encoder_cleanup(encoder); 5875 kfree(encoder); 5876 } 5877 5878 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = { 5879 .destroy = amdgpu_dm_encoder_destroy, 5880 }; 5881 5882 static int 5883 fill_plane_color_attributes(const struct drm_plane_state *plane_state, 5884 const enum surface_pixel_format format, 5885 enum dc_color_space *color_space) 5886 { 5887 bool full_range; 5888 5889 *color_space = COLOR_SPACE_SRGB; 5890 5891 /* Ignore properties when DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE is set */ 5892 if (plane_state->state && plane_state->state->plane_color_pipeline) 5893 return 0; 5894 5895 /* DRM color properties only affect non-RGB formats. */ 5896 if (format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN) 5897 return 0; 5898 5899 full_range = (plane_state->color_range == DRM_COLOR_YCBCR_FULL_RANGE); 5900 5901 switch (plane_state->color_encoding) { 5902 case DRM_COLOR_YCBCR_BT601: 5903 if (full_range) 5904 *color_space = COLOR_SPACE_YCBCR601; 5905 else 5906 *color_space = COLOR_SPACE_YCBCR601_LIMITED; 5907 break; 5908 5909 case DRM_COLOR_YCBCR_BT709: 5910 if (full_range) 5911 *color_space = COLOR_SPACE_YCBCR709; 5912 else 5913 *color_space = COLOR_SPACE_YCBCR709_LIMITED; 5914 break; 5915 5916 case DRM_COLOR_YCBCR_BT2020: 5917 if (full_range) 5918 *color_space = COLOR_SPACE_2020_YCBCR_FULL; 5919 else 5920 *color_space = COLOR_SPACE_2020_YCBCR_LIMITED; 5921 break; 5922 5923 default: 5924 return -EINVAL; 5925 } 5926 5927 return 0; 5928 } 5929 5930 static int 5931 fill_dc_plane_info_and_addr(struct amdgpu_device *adev, 5932 const struct drm_plane_state *plane_state, 5933 const u64 tiling_flags, 5934 struct dc_plane_info *plane_info, 5935 struct dc_plane_address *address, 5936 bool tmz_surface) 5937 { 5938 const struct drm_framebuffer *fb = plane_state->fb; 5939 const struct amdgpu_framebuffer *afb = 5940 to_amdgpu_framebuffer(plane_state->fb); 5941 int ret; 5942 5943 memset(plane_info, 0, sizeof(*plane_info)); 5944 5945 switch (fb->format->format) { 5946 case DRM_FORMAT_C8: 5947 plane_info->format = 5948 SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS; 5949 break; 5950 case DRM_FORMAT_RGB565: 5951 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565; 5952 break; 5953 case DRM_FORMAT_XRGB8888: 5954 case DRM_FORMAT_ARGB8888: 5955 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888; 5956 break; 5957 case DRM_FORMAT_XRGB2101010: 5958 case DRM_FORMAT_ARGB2101010: 5959 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010; 5960 break; 5961 case DRM_FORMAT_XBGR2101010: 5962 case DRM_FORMAT_ABGR2101010: 5963 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010; 5964 break; 5965 case DRM_FORMAT_XBGR8888: 5966 case DRM_FORMAT_ABGR8888: 5967 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888; 5968 break; 5969 case DRM_FORMAT_NV21: 5970 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr; 5971 break; 5972 case DRM_FORMAT_NV12: 5973 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb; 5974 break; 5975 case DRM_FORMAT_P010: 5976 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb; 5977 break; 5978 case DRM_FORMAT_XRGB16161616F: 5979 case DRM_FORMAT_ARGB16161616F: 5980 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F; 5981 break; 5982 case DRM_FORMAT_XBGR16161616F: 5983 case DRM_FORMAT_ABGR16161616F: 5984 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F; 5985 break; 5986 case DRM_FORMAT_XRGB16161616: 5987 case DRM_FORMAT_ARGB16161616: 5988 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616; 5989 break; 5990 case DRM_FORMAT_XBGR16161616: 5991 case DRM_FORMAT_ABGR16161616: 5992 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616; 5993 break; 5994 default: 5995 drm_err(adev_to_drm(adev), 5996 "Unsupported screen format %p4cc\n", 5997 &fb->format->format); 5998 return -EINVAL; 5999 } 6000 6001 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) { 6002 case DRM_MODE_ROTATE_0: 6003 plane_info->rotation = ROTATION_ANGLE_0; 6004 break; 6005 case DRM_MODE_ROTATE_90: 6006 plane_info->rotation = ROTATION_ANGLE_90; 6007 break; 6008 case DRM_MODE_ROTATE_180: 6009 plane_info->rotation = ROTATION_ANGLE_180; 6010 break; 6011 case DRM_MODE_ROTATE_270: 6012 plane_info->rotation = ROTATION_ANGLE_270; 6013 break; 6014 default: 6015 plane_info->rotation = ROTATION_ANGLE_0; 6016 break; 6017 } 6018 6019 6020 plane_info->visible = true; 6021 plane_info->stereo_format = PLANE_STEREO_FORMAT_NONE; 6022 6023 plane_info->layer_index = plane_state->normalized_zpos; 6024 6025 ret = fill_plane_color_attributes(plane_state, plane_info->format, 6026 &plane_info->color_space); 6027 if (ret) 6028 return ret; 6029 6030 ret = amdgpu_dm_plane_fill_plane_buffer_attributes(adev, afb, plane_info->format, 6031 plane_info->rotation, tiling_flags, 6032 &plane_info->tiling_info, 6033 &plane_info->plane_size, 6034 &plane_info->dcc, address, 6035 tmz_surface); 6036 if (ret) 6037 return ret; 6038 6039 amdgpu_dm_plane_fill_blending_from_plane_state( 6040 plane_state, &plane_info->per_pixel_alpha, &plane_info->pre_multiplied_alpha, 6041 &plane_info->global_alpha, &plane_info->global_alpha_value); 6042 6043 return 0; 6044 } 6045 6046 static int fill_dc_plane_attributes(struct amdgpu_device *adev, 6047 struct dc_plane_state *dc_plane_state, 6048 struct drm_plane_state *plane_state, 6049 struct drm_crtc_state *crtc_state) 6050 { 6051 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state); 6052 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)plane_state->fb; 6053 struct dc_scaling_info scaling_info; 6054 struct dc_plane_info plane_info; 6055 int ret; 6056 6057 ret = amdgpu_dm_plane_fill_dc_scaling_info(adev, plane_state, &scaling_info); 6058 if (ret) 6059 return ret; 6060 6061 dc_plane_state->src_rect = scaling_info.src_rect; 6062 dc_plane_state->dst_rect = scaling_info.dst_rect; 6063 dc_plane_state->clip_rect = scaling_info.clip_rect; 6064 dc_plane_state->scaling_quality = scaling_info.scaling_quality; 6065 6066 ret = fill_dc_plane_info_and_addr(adev, plane_state, 6067 afb->tiling_flags, 6068 &plane_info, 6069 &dc_plane_state->address, 6070 afb->tmz_surface); 6071 if (ret) 6072 return ret; 6073 6074 dc_plane_state->format = plane_info.format; 6075 dc_plane_state->color_space = plane_info.color_space; 6076 dc_plane_state->format = plane_info.format; 6077 dc_plane_state->plane_size = plane_info.plane_size; 6078 dc_plane_state->rotation = plane_info.rotation; 6079 dc_plane_state->horizontal_mirror = plane_info.horizontal_mirror; 6080 dc_plane_state->stereo_format = plane_info.stereo_format; 6081 dc_plane_state->tiling_info = plane_info.tiling_info; 6082 dc_plane_state->visible = plane_info.visible; 6083 dc_plane_state->per_pixel_alpha = plane_info.per_pixel_alpha; 6084 dc_plane_state->pre_multiplied_alpha = plane_info.pre_multiplied_alpha; 6085 dc_plane_state->global_alpha = plane_info.global_alpha; 6086 dc_plane_state->global_alpha_value = plane_info.global_alpha_value; 6087 dc_plane_state->dcc = plane_info.dcc; 6088 dc_plane_state->layer_index = plane_info.layer_index; 6089 dc_plane_state->flip_int_enabled = true; 6090 6091 /* 6092 * Always set input transfer function, since plane state is refreshed 6093 * every time. 6094 */ 6095 ret = amdgpu_dm_update_plane_color_mgmt(dm_crtc_state, 6096 plane_state, 6097 dc_plane_state); 6098 if (ret) 6099 return ret; 6100 6101 return 0; 6102 } 6103 6104 static inline void fill_dc_dirty_rect(struct drm_plane *plane, 6105 struct rect *dirty_rect, int32_t x, 6106 s32 y, s32 width, s32 height, 6107 int *i, bool ffu) 6108 { 6109 WARN_ON(*i >= DC_MAX_DIRTY_RECTS); 6110 6111 dirty_rect->x = x; 6112 dirty_rect->y = y; 6113 dirty_rect->width = width; 6114 dirty_rect->height = height; 6115 6116 if (ffu) 6117 drm_dbg(plane->dev, 6118 "[PLANE:%d] PSR FFU dirty rect size (%d, %d)\n", 6119 plane->base.id, width, height); 6120 else 6121 drm_dbg(plane->dev, 6122 "[PLANE:%d] PSR SU dirty rect at (%d, %d) size (%d, %d)", 6123 plane->base.id, x, y, width, height); 6124 6125 (*i)++; 6126 } 6127 6128 /** 6129 * fill_dc_dirty_rects() - Fill DC dirty regions for PSR selective updates 6130 * 6131 * @plane: DRM plane containing dirty regions that need to be flushed to the eDP 6132 * remote fb 6133 * @old_plane_state: Old state of @plane 6134 * @new_plane_state: New state of @plane 6135 * @crtc_state: New state of CRTC connected to the @plane 6136 * @flip_addrs: DC flip tracking struct, which also tracts dirty rects 6137 * @is_psr_su: Flag indicating whether Panel Self Refresh Selective Update (PSR SU) is enabled. 6138 * If PSR SU is enabled and damage clips are available, only the regions of the screen 6139 * that have changed will be updated. If PSR SU is not enabled, 6140 * or if damage clips are not available, the entire screen will be updated. 6141 * @dirty_regions_changed: dirty regions changed 6142 * 6143 * For PSR SU, DC informs the DMUB uController of dirty rectangle regions 6144 * (referred to as "damage clips" in DRM nomenclature) that require updating on 6145 * the eDP remote buffer. The responsibility of specifying the dirty regions is 6146 * amdgpu_dm's. 6147 * 6148 * A damage-aware DRM client should fill the FB_DAMAGE_CLIPS property on the 6149 * plane with regions that require flushing to the eDP remote buffer. In 6150 * addition, certain use cases - such as cursor and multi-plane overlay (MPO) - 6151 * implicitly provide damage clips without any client support via the plane 6152 * bounds. 6153 */ 6154 static void fill_dc_dirty_rects(struct drm_plane *plane, 6155 struct drm_plane_state *old_plane_state, 6156 struct drm_plane_state *new_plane_state, 6157 struct drm_crtc_state *crtc_state, 6158 struct dc_flip_addrs *flip_addrs, 6159 bool is_psr_su, 6160 bool *dirty_regions_changed) 6161 { 6162 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state); 6163 struct rect *dirty_rects = flip_addrs->dirty_rects; 6164 u32 num_clips; 6165 struct drm_mode_rect *clips; 6166 bool bb_changed; 6167 bool fb_changed; 6168 u32 i = 0; 6169 *dirty_regions_changed = false; 6170 6171 /* 6172 * Cursor plane has it's own dirty rect update interface. See 6173 * dcn10_dmub_update_cursor_data and dmub_cmd_update_cursor_info_data 6174 */ 6175 if (plane->type == DRM_PLANE_TYPE_CURSOR) 6176 return; 6177 6178 if (new_plane_state->rotation != DRM_MODE_ROTATE_0) 6179 goto ffu; 6180 6181 num_clips = drm_plane_get_damage_clips_count(new_plane_state); 6182 clips = drm_plane_get_damage_clips(new_plane_state); 6183 6184 if (num_clips && (!amdgpu_damage_clips || (amdgpu_damage_clips < 0 && 6185 is_psr_su))) 6186 goto ffu; 6187 6188 if (!dm_crtc_state->mpo_requested) { 6189 if (!num_clips || num_clips > DC_MAX_DIRTY_RECTS) 6190 goto ffu; 6191 6192 for (; flip_addrs->dirty_rect_count < num_clips; clips++) 6193 fill_dc_dirty_rect(new_plane_state->plane, 6194 &dirty_rects[flip_addrs->dirty_rect_count], 6195 clips->x1, clips->y1, 6196 clips->x2 - clips->x1, clips->y2 - clips->y1, 6197 &flip_addrs->dirty_rect_count, 6198 false); 6199 return; 6200 } 6201 6202 /* 6203 * MPO is requested. Add entire plane bounding box to dirty rects if 6204 * flipped to or damaged. 6205 * 6206 * If plane is moved or resized, also add old bounding box to dirty 6207 * rects. 6208 */ 6209 fb_changed = old_plane_state->fb->base.id != 6210 new_plane_state->fb->base.id; 6211 bb_changed = (old_plane_state->crtc_x != new_plane_state->crtc_x || 6212 old_plane_state->crtc_y != new_plane_state->crtc_y || 6213 old_plane_state->crtc_w != new_plane_state->crtc_w || 6214 old_plane_state->crtc_h != new_plane_state->crtc_h); 6215 6216 drm_dbg(plane->dev, 6217 "[PLANE:%d] PSR bb_changed:%d fb_changed:%d num_clips:%d\n", 6218 new_plane_state->plane->base.id, 6219 bb_changed, fb_changed, num_clips); 6220 6221 *dirty_regions_changed = bb_changed; 6222 6223 if ((num_clips + (bb_changed ? 2 : 0)) > DC_MAX_DIRTY_RECTS) 6224 goto ffu; 6225 6226 if (bb_changed) { 6227 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i], 6228 new_plane_state->crtc_x, 6229 new_plane_state->crtc_y, 6230 new_plane_state->crtc_w, 6231 new_plane_state->crtc_h, &i, false); 6232 6233 /* Add old plane bounding-box if plane is moved or resized */ 6234 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i], 6235 old_plane_state->crtc_x, 6236 old_plane_state->crtc_y, 6237 old_plane_state->crtc_w, 6238 old_plane_state->crtc_h, &i, false); 6239 } 6240 6241 if (num_clips) { 6242 for (; i < num_clips; clips++) 6243 fill_dc_dirty_rect(new_plane_state->plane, 6244 &dirty_rects[i], clips->x1, 6245 clips->y1, clips->x2 - clips->x1, 6246 clips->y2 - clips->y1, &i, false); 6247 } else if (fb_changed && !bb_changed) { 6248 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i], 6249 new_plane_state->crtc_x, 6250 new_plane_state->crtc_y, 6251 new_plane_state->crtc_w, 6252 new_plane_state->crtc_h, &i, false); 6253 } 6254 6255 flip_addrs->dirty_rect_count = i; 6256 return; 6257 6258 ffu: 6259 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[0], 0, 0, 6260 dm_crtc_state->base.mode.crtc_hdisplay, 6261 dm_crtc_state->base.mode.crtc_vdisplay, 6262 &flip_addrs->dirty_rect_count, true); 6263 } 6264 6265 static void update_stream_scaling_settings(const struct drm_display_mode *mode, 6266 const struct dm_connector_state *dm_state, 6267 struct dc_stream_state *stream) 6268 { 6269 enum amdgpu_rmx_type rmx_type; 6270 6271 struct rect src = { 0 }; /* viewport in composition space*/ 6272 struct rect dst = { 0 }; /* stream addressable area */ 6273 6274 /* no mode. nothing to be done */ 6275 if (!mode) 6276 return; 6277 6278 /* Full screen scaling by default */ 6279 src.width = mode->hdisplay; 6280 src.height = mode->vdisplay; 6281 dst.width = stream->timing.h_addressable; 6282 dst.height = stream->timing.v_addressable; 6283 6284 if (dm_state) { 6285 rmx_type = dm_state->scaling; 6286 if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) { 6287 if (src.width * dst.height < 6288 src.height * dst.width) { 6289 /* height needs less upscaling/more downscaling */ 6290 dst.width = src.width * 6291 dst.height / src.height; 6292 } else { 6293 /* width needs less upscaling/more downscaling */ 6294 dst.height = src.height * 6295 dst.width / src.width; 6296 } 6297 } else if (rmx_type == RMX_CENTER) { 6298 dst = src; 6299 } 6300 6301 dst.x = (stream->timing.h_addressable - dst.width) / 2; 6302 dst.y = (stream->timing.v_addressable - dst.height) / 2; 6303 6304 if (dm_state->underscan_enable) { 6305 dst.x += dm_state->underscan_hborder / 2; 6306 dst.y += dm_state->underscan_vborder / 2; 6307 dst.width -= dm_state->underscan_hborder; 6308 dst.height -= dm_state->underscan_vborder; 6309 } 6310 } 6311 6312 stream->src = src; 6313 stream->dst = dst; 6314 6315 DRM_DEBUG_KMS("Destination Rectangle x:%d y:%d width:%d height:%d\n", 6316 dst.x, dst.y, dst.width, dst.height); 6317 6318 } 6319 6320 static enum dc_color_depth 6321 convert_color_depth_from_display_info(const struct drm_connector *connector, 6322 bool is_y420, int requested_bpc) 6323 { 6324 u8 bpc; 6325 6326 if (is_y420) { 6327 bpc = 8; 6328 6329 /* Cap display bpc based on HDMI 2.0 HF-VSDB */ 6330 if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48) 6331 bpc = 16; 6332 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36) 6333 bpc = 12; 6334 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30) 6335 bpc = 10; 6336 } else { 6337 bpc = (uint8_t)connector->display_info.bpc; 6338 /* Assume 8 bpc by default if no bpc is specified. */ 6339 bpc = bpc ? bpc : 8; 6340 } 6341 6342 if (requested_bpc > 0) { 6343 /* 6344 * Cap display bpc based on the user requested value. 6345 * 6346 * The value for state->max_bpc may not correctly updated 6347 * depending on when the connector gets added to the state 6348 * or if this was called outside of atomic check, so it 6349 * can't be used directly. 6350 */ 6351 bpc = min_t(u8, bpc, requested_bpc); 6352 6353 /* Round down to the nearest even number. */ 6354 bpc = bpc - (bpc & 1); 6355 } 6356 6357 switch (bpc) { 6358 case 0: 6359 /* 6360 * Temporary Work around, DRM doesn't parse color depth for 6361 * EDID revision before 1.4 6362 * TODO: Fix edid parsing 6363 */ 6364 return COLOR_DEPTH_888; 6365 case 6: 6366 return COLOR_DEPTH_666; 6367 case 8: 6368 return COLOR_DEPTH_888; 6369 case 10: 6370 return COLOR_DEPTH_101010; 6371 case 12: 6372 return COLOR_DEPTH_121212; 6373 case 14: 6374 return COLOR_DEPTH_141414; 6375 case 16: 6376 return COLOR_DEPTH_161616; 6377 default: 6378 return COLOR_DEPTH_UNDEFINED; 6379 } 6380 } 6381 6382 static enum dc_aspect_ratio 6383 get_aspect_ratio(const struct drm_display_mode *mode_in) 6384 { 6385 /* 1-1 mapping, since both enums follow the HDMI spec. */ 6386 return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio; 6387 } 6388 6389 static enum dc_color_space 6390 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing, 6391 const struct drm_connector_state *connector_state) 6392 { 6393 enum dc_color_space color_space = COLOR_SPACE_SRGB; 6394 6395 switch (connector_state->colorspace) { 6396 case DRM_MODE_COLORIMETRY_BT601_YCC: 6397 if (dc_crtc_timing->flags.Y_ONLY) 6398 color_space = COLOR_SPACE_YCBCR601_LIMITED; 6399 else 6400 color_space = COLOR_SPACE_YCBCR601; 6401 break; 6402 case DRM_MODE_COLORIMETRY_BT709_YCC: 6403 if (dc_crtc_timing->flags.Y_ONLY) 6404 color_space = COLOR_SPACE_YCBCR709_LIMITED; 6405 else 6406 color_space = COLOR_SPACE_YCBCR709; 6407 break; 6408 case DRM_MODE_COLORIMETRY_OPRGB: 6409 color_space = COLOR_SPACE_ADOBERGB; 6410 break; 6411 case DRM_MODE_COLORIMETRY_BT2020_RGB: 6412 case DRM_MODE_COLORIMETRY_BT2020_YCC: 6413 if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB) 6414 color_space = COLOR_SPACE_2020_RGB_FULLRANGE; 6415 else 6416 color_space = COLOR_SPACE_2020_YCBCR_LIMITED; 6417 break; 6418 case DRM_MODE_COLORIMETRY_DEFAULT: // ITU601 6419 default: 6420 if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB) { 6421 color_space = COLOR_SPACE_SRGB; 6422 if (connector_state->hdmi.broadcast_rgb == DRM_HDMI_BROADCAST_RGB_LIMITED) 6423 color_space = COLOR_SPACE_SRGB_LIMITED; 6424 /* 6425 * 27030khz is the separation point between HDTV and SDTV 6426 * according to HDMI spec, we use YCbCr709 and YCbCr601 6427 * respectively 6428 */ 6429 } else if (dc_crtc_timing->pix_clk_100hz > 270300) { 6430 if (dc_crtc_timing->flags.Y_ONLY) 6431 color_space = 6432 COLOR_SPACE_YCBCR709_LIMITED; 6433 else 6434 color_space = COLOR_SPACE_YCBCR709; 6435 } else { 6436 if (dc_crtc_timing->flags.Y_ONLY) 6437 color_space = 6438 COLOR_SPACE_YCBCR601_LIMITED; 6439 else 6440 color_space = COLOR_SPACE_YCBCR601; 6441 } 6442 break; 6443 } 6444 6445 return color_space; 6446 } 6447 6448 static enum display_content_type 6449 get_output_content_type(const struct drm_connector_state *connector_state) 6450 { 6451 switch (connector_state->content_type) { 6452 default: 6453 case DRM_MODE_CONTENT_TYPE_NO_DATA: 6454 return DISPLAY_CONTENT_TYPE_NO_DATA; 6455 case DRM_MODE_CONTENT_TYPE_GRAPHICS: 6456 return DISPLAY_CONTENT_TYPE_GRAPHICS; 6457 case DRM_MODE_CONTENT_TYPE_PHOTO: 6458 return DISPLAY_CONTENT_TYPE_PHOTO; 6459 case DRM_MODE_CONTENT_TYPE_CINEMA: 6460 return DISPLAY_CONTENT_TYPE_CINEMA; 6461 case DRM_MODE_CONTENT_TYPE_GAME: 6462 return DISPLAY_CONTENT_TYPE_GAME; 6463 } 6464 } 6465 6466 static bool adjust_colour_depth_from_display_info( 6467 struct dc_crtc_timing *timing_out, 6468 const struct drm_display_info *info) 6469 { 6470 enum dc_color_depth depth = timing_out->display_color_depth; 6471 int normalized_clk; 6472 6473 do { 6474 normalized_clk = timing_out->pix_clk_100hz / 10; 6475 /* YCbCr 4:2:0 requires additional adjustment of 1/2 */ 6476 if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420) 6477 normalized_clk /= 2; 6478 /* Adjusting pix clock following on HDMI spec based on colour depth */ 6479 switch (depth) { 6480 case COLOR_DEPTH_888: 6481 break; 6482 case COLOR_DEPTH_101010: 6483 normalized_clk = (normalized_clk * 30) / 24; 6484 break; 6485 case COLOR_DEPTH_121212: 6486 normalized_clk = (normalized_clk * 36) / 24; 6487 break; 6488 case COLOR_DEPTH_161616: 6489 normalized_clk = (normalized_clk * 48) / 24; 6490 break; 6491 default: 6492 /* The above depths are the only ones valid for HDMI. */ 6493 return false; 6494 } 6495 if (normalized_clk <= info->max_tmds_clock) { 6496 timing_out->display_color_depth = depth; 6497 return true; 6498 } 6499 } while (--depth > COLOR_DEPTH_666); 6500 return false; 6501 } 6502 6503 static void fill_stream_properties_from_drm_display_mode( 6504 struct dc_stream_state *stream, 6505 const struct drm_display_mode *mode_in, 6506 const struct drm_connector *connector, 6507 const struct drm_connector_state *connector_state, 6508 const struct dc_stream_state *old_stream, 6509 int requested_bpc) 6510 { 6511 struct dc_crtc_timing *timing_out = &stream->timing; 6512 const struct drm_display_info *info = &connector->display_info; 6513 struct amdgpu_dm_connector *aconnector = NULL; 6514 struct hdmi_vendor_infoframe hv_frame; 6515 struct hdmi_avi_infoframe avi_frame; 6516 ssize_t err; 6517 6518 if (connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) 6519 aconnector = to_amdgpu_dm_connector(connector); 6520 6521 memset(&hv_frame, 0, sizeof(hv_frame)); 6522 memset(&avi_frame, 0, sizeof(avi_frame)); 6523 6524 timing_out->h_border_left = 0; 6525 timing_out->h_border_right = 0; 6526 timing_out->v_border_top = 0; 6527 timing_out->v_border_bottom = 0; 6528 /* TODO: un-hardcode */ 6529 if (drm_mode_is_420_only(info, mode_in) 6530 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) 6531 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420; 6532 else if (drm_mode_is_420_also(info, mode_in) 6533 && aconnector 6534 && aconnector->force_yuv420_output) 6535 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420; 6536 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR422) 6537 && aconnector 6538 && aconnector->force_yuv422_output) 6539 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR422; 6540 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR444) 6541 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) 6542 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444; 6543 else 6544 timing_out->pixel_encoding = PIXEL_ENCODING_RGB; 6545 6546 timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE; 6547 timing_out->display_color_depth = convert_color_depth_from_display_info( 6548 connector, 6549 (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420), 6550 requested_bpc); 6551 timing_out->scan_type = SCANNING_TYPE_NODATA; 6552 timing_out->hdmi_vic = 0; 6553 6554 if (old_stream) { 6555 timing_out->vic = old_stream->timing.vic; 6556 timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY; 6557 timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY; 6558 } else { 6559 timing_out->vic = drm_match_cea_mode(mode_in); 6560 if (mode_in->flags & DRM_MODE_FLAG_PHSYNC) 6561 timing_out->flags.HSYNC_POSITIVE_POLARITY = 1; 6562 if (mode_in->flags & DRM_MODE_FLAG_PVSYNC) 6563 timing_out->flags.VSYNC_POSITIVE_POLARITY = 1; 6564 } 6565 6566 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) { 6567 err = drm_hdmi_avi_infoframe_from_display_mode(&avi_frame, 6568 (struct drm_connector *)connector, 6569 mode_in); 6570 if (err < 0) 6571 drm_warn_once(connector->dev, "Failed to setup avi infoframe on connector %s: %zd\n", 6572 connector->name, err); 6573 timing_out->vic = avi_frame.video_code; 6574 err = drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame, 6575 (struct drm_connector *)connector, 6576 mode_in); 6577 if (err < 0) 6578 drm_warn_once(connector->dev, "Failed to setup vendor infoframe on connector %s: %zd\n", 6579 connector->name, err); 6580 timing_out->hdmi_vic = hv_frame.vic; 6581 } 6582 6583 if (aconnector && is_freesync_video_mode(mode_in, aconnector)) { 6584 timing_out->h_addressable = mode_in->hdisplay; 6585 timing_out->h_total = mode_in->htotal; 6586 timing_out->h_sync_width = mode_in->hsync_end - mode_in->hsync_start; 6587 timing_out->h_front_porch = mode_in->hsync_start - mode_in->hdisplay; 6588 timing_out->v_total = mode_in->vtotal; 6589 timing_out->v_addressable = mode_in->vdisplay; 6590 timing_out->v_front_porch = mode_in->vsync_start - mode_in->vdisplay; 6591 timing_out->v_sync_width = mode_in->vsync_end - mode_in->vsync_start; 6592 timing_out->pix_clk_100hz = mode_in->clock * 10; 6593 } else { 6594 timing_out->h_addressable = mode_in->crtc_hdisplay; 6595 timing_out->h_total = mode_in->crtc_htotal; 6596 timing_out->h_sync_width = mode_in->crtc_hsync_end - mode_in->crtc_hsync_start; 6597 timing_out->h_front_porch = mode_in->crtc_hsync_start - mode_in->crtc_hdisplay; 6598 timing_out->v_total = mode_in->crtc_vtotal; 6599 timing_out->v_addressable = mode_in->crtc_vdisplay; 6600 timing_out->v_front_porch = mode_in->crtc_vsync_start - mode_in->crtc_vdisplay; 6601 timing_out->v_sync_width = mode_in->crtc_vsync_end - mode_in->crtc_vsync_start; 6602 timing_out->pix_clk_100hz = mode_in->crtc_clock * 10; 6603 } 6604 6605 timing_out->aspect_ratio = get_aspect_ratio(mode_in); 6606 6607 stream->out_transfer_func.type = TF_TYPE_PREDEFINED; 6608 stream->out_transfer_func.tf = TRANSFER_FUNCTION_SRGB; 6609 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) { 6610 if (!adjust_colour_depth_from_display_info(timing_out, info) && 6611 drm_mode_is_420_also(info, mode_in) && 6612 timing_out->pixel_encoding != PIXEL_ENCODING_YCBCR420) { 6613 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420; 6614 adjust_colour_depth_from_display_info(timing_out, info); 6615 } 6616 } 6617 6618 stream->output_color_space = get_output_color_space(timing_out, connector_state); 6619 stream->content_type = get_output_content_type(connector_state); 6620 } 6621 6622 static void fill_audio_info(struct audio_info *audio_info, 6623 const struct drm_connector *drm_connector, 6624 const struct dc_sink *dc_sink) 6625 { 6626 int i = 0; 6627 int cea_revision = 0; 6628 const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps; 6629 6630 audio_info->manufacture_id = edid_caps->manufacturer_id; 6631 audio_info->product_id = edid_caps->product_id; 6632 6633 cea_revision = drm_connector->display_info.cea_rev; 6634 6635 strscpy(audio_info->display_name, 6636 edid_caps->display_name, 6637 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS); 6638 6639 if (cea_revision >= 3) { 6640 audio_info->mode_count = edid_caps->audio_mode_count; 6641 6642 for (i = 0; i < audio_info->mode_count; ++i) { 6643 audio_info->modes[i].format_code = 6644 (enum audio_format_code) 6645 (edid_caps->audio_modes[i].format_code); 6646 audio_info->modes[i].channel_count = 6647 edid_caps->audio_modes[i].channel_count; 6648 audio_info->modes[i].sample_rates.all = 6649 edid_caps->audio_modes[i].sample_rate; 6650 audio_info->modes[i].sample_size = 6651 edid_caps->audio_modes[i].sample_size; 6652 } 6653 } 6654 6655 audio_info->flags.all = edid_caps->speaker_flags; 6656 6657 /* TODO: We only check for the progressive mode, check for interlace mode too */ 6658 if (drm_connector->latency_present[0]) { 6659 audio_info->video_latency = drm_connector->video_latency[0]; 6660 audio_info->audio_latency = drm_connector->audio_latency[0]; 6661 } 6662 6663 /* TODO: For DP, video and audio latency should be calculated from DPCD caps */ 6664 6665 } 6666 6667 static void 6668 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode, 6669 struct drm_display_mode *dst_mode) 6670 { 6671 dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay; 6672 dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay; 6673 dst_mode->crtc_clock = src_mode->crtc_clock; 6674 dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start; 6675 dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end; 6676 dst_mode->crtc_hsync_start = src_mode->crtc_hsync_start; 6677 dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end; 6678 dst_mode->crtc_htotal = src_mode->crtc_htotal; 6679 dst_mode->crtc_hskew = src_mode->crtc_hskew; 6680 dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start; 6681 dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end; 6682 dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start; 6683 dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end; 6684 dst_mode->crtc_vtotal = src_mode->crtc_vtotal; 6685 } 6686 6687 static void 6688 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode, 6689 const struct drm_display_mode *native_mode, 6690 bool scale_enabled) 6691 { 6692 if (scale_enabled || ( 6693 native_mode->clock == drm_mode->clock && 6694 native_mode->htotal == drm_mode->htotal && 6695 native_mode->vtotal == drm_mode->vtotal)) { 6696 if (native_mode->crtc_clock) 6697 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode); 6698 } else { 6699 /* no scaling nor amdgpu inserted, no need to patch */ 6700 } 6701 } 6702 6703 static struct dc_sink * 6704 create_fake_sink(struct drm_device *dev, struct dc_link *link) 6705 { 6706 struct dc_sink_init_data sink_init_data = { 0 }; 6707 struct dc_sink *sink = NULL; 6708 6709 sink_init_data.link = link; 6710 sink_init_data.sink_signal = link->connector_signal; 6711 6712 sink = dc_sink_create(&sink_init_data); 6713 if (!sink) { 6714 drm_err(dev, "Failed to create sink!\n"); 6715 return NULL; 6716 } 6717 sink->sink_signal = SIGNAL_TYPE_VIRTUAL; 6718 6719 return sink; 6720 } 6721 6722 static void set_multisync_trigger_params( 6723 struct dc_stream_state *stream) 6724 { 6725 struct dc_stream_state *master = NULL; 6726 6727 if (stream->triggered_crtc_reset.enabled) { 6728 master = stream->triggered_crtc_reset.event_source; 6729 stream->triggered_crtc_reset.event = 6730 master->timing.flags.VSYNC_POSITIVE_POLARITY ? 6731 CRTC_EVENT_VSYNC_RISING : CRTC_EVENT_VSYNC_FALLING; 6732 stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_PIXEL; 6733 } 6734 } 6735 6736 static void set_master_stream(struct dc_stream_state *stream_set[], 6737 int stream_count) 6738 { 6739 int j, highest_rfr = 0, master_stream = 0; 6740 6741 for (j = 0; j < stream_count; j++) { 6742 if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) { 6743 int refresh_rate = 0; 6744 6745 refresh_rate = (stream_set[j]->timing.pix_clk_100hz*100)/ 6746 (stream_set[j]->timing.h_total*stream_set[j]->timing.v_total); 6747 if (refresh_rate > highest_rfr) { 6748 highest_rfr = refresh_rate; 6749 master_stream = j; 6750 } 6751 } 6752 } 6753 for (j = 0; j < stream_count; j++) { 6754 if (stream_set[j]) 6755 stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream]; 6756 } 6757 } 6758 6759 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context) 6760 { 6761 int i = 0; 6762 struct dc_stream_state *stream; 6763 6764 if (context->stream_count < 2) 6765 return; 6766 for (i = 0; i < context->stream_count ; i++) { 6767 if (!context->streams[i]) 6768 continue; 6769 /* 6770 * TODO: add a function to read AMD VSDB bits and set 6771 * crtc_sync_master.multi_sync_enabled flag 6772 * For now it's set to false 6773 */ 6774 } 6775 6776 set_master_stream(context->streams, context->stream_count); 6777 6778 for (i = 0; i < context->stream_count ; i++) { 6779 stream = context->streams[i]; 6780 6781 if (!stream) 6782 continue; 6783 6784 set_multisync_trigger_params(stream); 6785 } 6786 } 6787 6788 /** 6789 * DOC: FreeSync Video 6790 * 6791 * When a userspace application wants to play a video, the content follows a 6792 * standard format definition that usually specifies the FPS for that format. 6793 * The below list illustrates some video format and the expected FPS, 6794 * respectively: 6795 * 6796 * - TV/NTSC (23.976 FPS) 6797 * - Cinema (24 FPS) 6798 * - TV/PAL (25 FPS) 6799 * - TV/NTSC (29.97 FPS) 6800 * - TV/NTSC (30 FPS) 6801 * - Cinema HFR (48 FPS) 6802 * - TV/PAL (50 FPS) 6803 * - Commonly used (60 FPS) 6804 * - Multiples of 24 (48,72,96 FPS) 6805 * 6806 * The list of standards video format is not huge and can be added to the 6807 * connector modeset list beforehand. With that, userspace can leverage 6808 * FreeSync to extends the front porch in order to attain the target refresh 6809 * rate. Such a switch will happen seamlessly, without screen blanking or 6810 * reprogramming of the output in any other way. If the userspace requests a 6811 * modesetting change compatible with FreeSync modes that only differ in the 6812 * refresh rate, DC will skip the full update and avoid blink during the 6813 * transition. For example, the video player can change the modesetting from 6814 * 60Hz to 30Hz for playing TV/NTSC content when it goes full screen without 6815 * causing any display blink. This same concept can be applied to a mode 6816 * setting change. 6817 */ 6818 static struct drm_display_mode * 6819 get_highest_refresh_rate_mode(struct amdgpu_dm_connector *aconnector, 6820 bool use_probed_modes) 6821 { 6822 struct drm_display_mode *m, *m_pref = NULL; 6823 u16 current_refresh, highest_refresh; 6824 struct list_head *list_head = use_probed_modes ? 6825 &aconnector->base.probed_modes : 6826 &aconnector->base.modes; 6827 6828 if (aconnector->base.connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 6829 return NULL; 6830 6831 if (aconnector->freesync_vid_base.clock != 0) 6832 return &aconnector->freesync_vid_base; 6833 6834 /* Find the preferred mode */ 6835 list_for_each_entry(m, list_head, head) { 6836 if (m->type & DRM_MODE_TYPE_PREFERRED) { 6837 m_pref = m; 6838 break; 6839 } 6840 } 6841 6842 if (!m_pref) { 6843 /* Probably an EDID with no preferred mode. Fallback to first entry */ 6844 m_pref = list_first_entry_or_null( 6845 &aconnector->base.modes, struct drm_display_mode, head); 6846 if (!m_pref) { 6847 drm_dbg_driver(aconnector->base.dev, "No preferred mode found in EDID\n"); 6848 return NULL; 6849 } 6850 } 6851 6852 highest_refresh = drm_mode_vrefresh(m_pref); 6853 6854 /* 6855 * Find the mode with highest refresh rate with same resolution. 6856 * For some monitors, preferred mode is not the mode with highest 6857 * supported refresh rate. 6858 */ 6859 list_for_each_entry(m, list_head, head) { 6860 current_refresh = drm_mode_vrefresh(m); 6861 6862 if (m->hdisplay == m_pref->hdisplay && 6863 m->vdisplay == m_pref->vdisplay && 6864 highest_refresh < current_refresh) { 6865 highest_refresh = current_refresh; 6866 m_pref = m; 6867 } 6868 } 6869 6870 drm_mode_copy(&aconnector->freesync_vid_base, m_pref); 6871 return m_pref; 6872 } 6873 6874 static bool is_freesync_video_mode(const struct drm_display_mode *mode, 6875 struct amdgpu_dm_connector *aconnector) 6876 { 6877 struct drm_display_mode *high_mode; 6878 int timing_diff; 6879 6880 high_mode = get_highest_refresh_rate_mode(aconnector, false); 6881 if (!high_mode || !mode) 6882 return false; 6883 6884 timing_diff = high_mode->vtotal - mode->vtotal; 6885 6886 if (high_mode->clock == 0 || high_mode->clock != mode->clock || 6887 high_mode->hdisplay != mode->hdisplay || 6888 high_mode->vdisplay != mode->vdisplay || 6889 high_mode->hsync_start != mode->hsync_start || 6890 high_mode->hsync_end != mode->hsync_end || 6891 high_mode->htotal != mode->htotal || 6892 high_mode->hskew != mode->hskew || 6893 high_mode->vscan != mode->vscan || 6894 high_mode->vsync_start - mode->vsync_start != timing_diff || 6895 high_mode->vsync_end - mode->vsync_end != timing_diff) 6896 return false; 6897 else 6898 return true; 6899 } 6900 6901 #if defined(CONFIG_DRM_AMD_DC_FP) 6902 static void update_dsc_caps(struct amdgpu_dm_connector *aconnector, 6903 struct dc_sink *sink, struct dc_stream_state *stream, 6904 struct dsc_dec_dpcd_caps *dsc_caps) 6905 { 6906 stream->timing.flags.DSC = 0; 6907 dsc_caps->is_dsc_supported = false; 6908 6909 if (aconnector->dc_link && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT || 6910 sink->sink_signal == SIGNAL_TYPE_EDP)) { 6911 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE || 6912 sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) 6913 dc_dsc_parse_dsc_dpcd(aconnector->dc_link->ctx->dc, 6914 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw, 6915 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw, 6916 dsc_caps); 6917 } 6918 } 6919 6920 static void apply_dsc_policy_for_edp(struct amdgpu_dm_connector *aconnector, 6921 struct dc_sink *sink, struct dc_stream_state *stream, 6922 struct dsc_dec_dpcd_caps *dsc_caps, 6923 uint32_t max_dsc_target_bpp_limit_override) 6924 { 6925 const struct dc_link_settings *verified_link_cap = NULL; 6926 u32 link_bw_in_kbps; 6927 u32 edp_min_bpp_x16, edp_max_bpp_x16; 6928 struct dc *dc = sink->ctx->dc; 6929 struct dc_dsc_bw_range bw_range = {0}; 6930 struct dc_dsc_config dsc_cfg = {0}; 6931 struct dc_dsc_config_options dsc_options = {0}; 6932 6933 dc_dsc_get_default_config_option(dc, &dsc_options); 6934 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16; 6935 6936 verified_link_cap = dc_link_get_link_cap(stream->link); 6937 link_bw_in_kbps = dc_link_bandwidth_kbps(stream->link, verified_link_cap); 6938 edp_min_bpp_x16 = 8 * 16; 6939 edp_max_bpp_x16 = 8 * 16; 6940 6941 if (edp_max_bpp_x16 > dsc_caps->edp_max_bits_per_pixel) 6942 edp_max_bpp_x16 = dsc_caps->edp_max_bits_per_pixel; 6943 6944 if (edp_max_bpp_x16 < edp_min_bpp_x16) 6945 edp_min_bpp_x16 = edp_max_bpp_x16; 6946 6947 if (dc_dsc_compute_bandwidth_range(dc->res_pool->dscs[0], 6948 dc->debug.dsc_min_slice_height_override, 6949 edp_min_bpp_x16, edp_max_bpp_x16, 6950 dsc_caps, 6951 &stream->timing, 6952 dc_link_get_highest_encoding_format(aconnector->dc_link), 6953 &bw_range)) { 6954 6955 if (bw_range.max_kbps < link_bw_in_kbps) { 6956 if (dc_dsc_compute_config(dc->res_pool->dscs[0], 6957 dsc_caps, 6958 &dsc_options, 6959 0, 6960 &stream->timing, 6961 dc_link_get_highest_encoding_format(aconnector->dc_link), 6962 &dsc_cfg)) { 6963 stream->timing.dsc_cfg = dsc_cfg; 6964 stream->timing.flags.DSC = 1; 6965 stream->timing.dsc_cfg.bits_per_pixel = edp_max_bpp_x16; 6966 } 6967 return; 6968 } 6969 } 6970 6971 if (dc_dsc_compute_config(dc->res_pool->dscs[0], 6972 dsc_caps, 6973 &dsc_options, 6974 link_bw_in_kbps, 6975 &stream->timing, 6976 dc_link_get_highest_encoding_format(aconnector->dc_link), 6977 &dsc_cfg)) { 6978 stream->timing.dsc_cfg = dsc_cfg; 6979 stream->timing.flags.DSC = 1; 6980 } 6981 } 6982 6983 static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector, 6984 struct dc_sink *sink, struct dc_stream_state *stream, 6985 struct dsc_dec_dpcd_caps *dsc_caps) 6986 { 6987 struct drm_connector *drm_connector = &aconnector->base; 6988 u32 link_bandwidth_kbps; 6989 struct dc *dc = sink->ctx->dc; 6990 u32 max_supported_bw_in_kbps, timing_bw_in_kbps; 6991 u32 dsc_max_supported_bw_in_kbps; 6992 u32 max_dsc_target_bpp_limit_override = 6993 drm_connector->display_info.max_dsc_bpp; 6994 struct dc_dsc_config_options dsc_options = {0}; 6995 6996 dc_dsc_get_default_config_option(dc, &dsc_options); 6997 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16; 6998 6999 link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link, 7000 dc_link_get_link_cap(aconnector->dc_link)); 7001 7002 /* Set DSC policy according to dsc_clock_en */ 7003 dc_dsc_policy_set_enable_dsc_when_not_needed( 7004 aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE); 7005 7006 if (sink->sink_signal == SIGNAL_TYPE_EDP && 7007 !aconnector->dc_link->panel_config.dsc.disable_dsc_edp && 7008 dc->caps.edp_dsc_support && aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE) { 7009 7010 apply_dsc_policy_for_edp(aconnector, sink, stream, dsc_caps, max_dsc_target_bpp_limit_override); 7011 7012 } else if (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT) { 7013 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) { 7014 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0], 7015 dsc_caps, 7016 &dsc_options, 7017 link_bandwidth_kbps, 7018 &stream->timing, 7019 dc_link_get_highest_encoding_format(aconnector->dc_link), 7020 &stream->timing.dsc_cfg)) { 7021 stream->timing.flags.DSC = 1; 7022 drm_dbg_driver(drm_connector->dev, "%s: SST_DSC [%s] DSC is selected from SST RX\n", 7023 __func__, drm_connector->name); 7024 } 7025 } else if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) { 7026 timing_bw_in_kbps = dc_bandwidth_in_kbps_from_timing(&stream->timing, 7027 dc_link_get_highest_encoding_format(aconnector->dc_link)); 7028 max_supported_bw_in_kbps = link_bandwidth_kbps; 7029 dsc_max_supported_bw_in_kbps = link_bandwidth_kbps; 7030 7031 if (timing_bw_in_kbps > max_supported_bw_in_kbps && 7032 max_supported_bw_in_kbps > 0 && 7033 dsc_max_supported_bw_in_kbps > 0) 7034 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0], 7035 dsc_caps, 7036 &dsc_options, 7037 dsc_max_supported_bw_in_kbps, 7038 &stream->timing, 7039 dc_link_get_highest_encoding_format(aconnector->dc_link), 7040 &stream->timing.dsc_cfg)) { 7041 stream->timing.flags.DSC = 1; 7042 drm_dbg_driver(drm_connector->dev, "%s: SST_DSC [%s] DSC is selected from DP-HDMI PCON\n", 7043 __func__, drm_connector->name); 7044 } 7045 } 7046 } 7047 7048 /* Overwrite the stream flag if DSC is enabled through debugfs */ 7049 if (aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE) 7050 stream->timing.flags.DSC = 1; 7051 7052 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_h) 7053 stream->timing.dsc_cfg.num_slices_h = aconnector->dsc_settings.dsc_num_slices_h; 7054 7055 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_v) 7056 stream->timing.dsc_cfg.num_slices_v = aconnector->dsc_settings.dsc_num_slices_v; 7057 7058 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_bits_per_pixel) 7059 stream->timing.dsc_cfg.bits_per_pixel = aconnector->dsc_settings.dsc_bits_per_pixel; 7060 } 7061 #endif 7062 7063 static struct dc_stream_state * 7064 create_stream_for_sink(struct drm_connector *connector, 7065 const struct drm_display_mode *drm_mode, 7066 const struct dm_connector_state *dm_state, 7067 const struct dc_stream_state *old_stream, 7068 int requested_bpc) 7069 { 7070 struct drm_device *dev = connector->dev; 7071 struct amdgpu_dm_connector *aconnector = NULL; 7072 struct drm_display_mode *preferred_mode = NULL; 7073 const struct drm_connector_state *con_state = &dm_state->base; 7074 struct dc_stream_state *stream = NULL; 7075 struct drm_display_mode mode; 7076 struct drm_display_mode saved_mode; 7077 struct drm_display_mode *freesync_mode = NULL; 7078 bool native_mode_found = false; 7079 bool recalculate_timing = false; 7080 bool scale = dm_state->scaling != RMX_OFF; 7081 int mode_refresh; 7082 int preferred_refresh = 0; 7083 enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN; 7084 #if defined(CONFIG_DRM_AMD_DC_FP) 7085 struct dsc_dec_dpcd_caps dsc_caps; 7086 #endif 7087 struct dc_link *link = NULL; 7088 struct dc_sink *sink = NULL; 7089 7090 drm_mode_init(&mode, drm_mode); 7091 memset(&saved_mode, 0, sizeof(saved_mode)); 7092 7093 if (connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) { 7094 aconnector = NULL; 7095 aconnector = to_amdgpu_dm_connector(connector); 7096 link = aconnector->dc_link; 7097 } else { 7098 struct drm_writeback_connector *wbcon = NULL; 7099 struct amdgpu_dm_wb_connector *dm_wbcon = NULL; 7100 7101 wbcon = drm_connector_to_writeback(connector); 7102 dm_wbcon = to_amdgpu_dm_wb_connector(wbcon); 7103 link = dm_wbcon->link; 7104 } 7105 7106 if (!aconnector || !aconnector->dc_sink) { 7107 sink = create_fake_sink(dev, link); 7108 if (!sink) 7109 return stream; 7110 7111 } else { 7112 sink = aconnector->dc_sink; 7113 dc_sink_retain(sink); 7114 } 7115 7116 stream = dc_create_stream_for_sink(sink); 7117 7118 if (stream == NULL) { 7119 drm_err(dev, "Failed to create stream for sink!\n"); 7120 goto finish; 7121 } 7122 7123 /* We leave this NULL for writeback connectors */ 7124 stream->dm_stream_context = aconnector; 7125 7126 stream->timing.flags.LTE_340MCSC_SCRAMBLE = 7127 connector->display_info.hdmi.scdc.scrambling.low_rates; 7128 7129 list_for_each_entry(preferred_mode, &connector->modes, head) { 7130 /* Search for preferred mode */ 7131 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) { 7132 native_mode_found = true; 7133 break; 7134 } 7135 } 7136 if (!native_mode_found) 7137 preferred_mode = list_first_entry_or_null( 7138 &connector->modes, 7139 struct drm_display_mode, 7140 head); 7141 7142 mode_refresh = drm_mode_vrefresh(&mode); 7143 7144 if (preferred_mode == NULL) { 7145 /* 7146 * This may not be an error, the use case is when we have no 7147 * usermode calls to reset and set mode upon hotplug. In this 7148 * case, we call set mode ourselves to restore the previous mode 7149 * and the modelist may not be filled in time. 7150 */ 7151 drm_dbg_driver(dev, "No preferred mode found\n"); 7152 } else if (aconnector) { 7153 recalculate_timing = amdgpu_freesync_vid_mode && 7154 is_freesync_video_mode(&mode, aconnector); 7155 if (recalculate_timing) { 7156 freesync_mode = get_highest_refresh_rate_mode(aconnector, false); 7157 drm_mode_copy(&saved_mode, &mode); 7158 saved_mode.picture_aspect_ratio = mode.picture_aspect_ratio; 7159 drm_mode_copy(&mode, freesync_mode); 7160 mode.picture_aspect_ratio = saved_mode.picture_aspect_ratio; 7161 } else { 7162 decide_crtc_timing_for_drm_display_mode( 7163 &mode, preferred_mode, scale); 7164 7165 preferred_refresh = drm_mode_vrefresh(preferred_mode); 7166 } 7167 } 7168 7169 if (recalculate_timing) 7170 drm_mode_set_crtcinfo(&saved_mode, 0); 7171 7172 /* 7173 * If scaling is enabled and refresh rate didn't change 7174 * we copy the vic and polarities of the old timings 7175 */ 7176 if (!scale || mode_refresh != preferred_refresh) 7177 fill_stream_properties_from_drm_display_mode( 7178 stream, &mode, connector, con_state, NULL, 7179 requested_bpc); 7180 else 7181 fill_stream_properties_from_drm_display_mode( 7182 stream, &mode, connector, con_state, old_stream, 7183 requested_bpc); 7184 7185 /* The rest isn't needed for writeback connectors */ 7186 if (!aconnector) 7187 goto finish; 7188 7189 if (aconnector->timing_changed) { 7190 drm_dbg(aconnector->base.dev, 7191 "overriding timing for automated test, bpc %d, changing to %d\n", 7192 stream->timing.display_color_depth, 7193 aconnector->timing_requested->display_color_depth); 7194 stream->timing = *aconnector->timing_requested; 7195 } 7196 7197 #if defined(CONFIG_DRM_AMD_DC_FP) 7198 /* SST DSC determination policy */ 7199 update_dsc_caps(aconnector, sink, stream, &dsc_caps); 7200 if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported) 7201 apply_dsc_policy_for_stream(aconnector, sink, stream, &dsc_caps); 7202 #endif 7203 7204 update_stream_scaling_settings(&mode, dm_state, stream); 7205 7206 fill_audio_info( 7207 &stream->audio_info, 7208 connector, 7209 sink); 7210 7211 update_stream_signal(stream, sink); 7212 7213 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) 7214 mod_build_hf_vsif_infopacket(stream, &stream->vsp_infopacket); 7215 7216 if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT || 7217 stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST || 7218 stream->signal == SIGNAL_TYPE_EDP) { 7219 const struct dc_edid_caps *edid_caps; 7220 unsigned int disable_colorimetry = 0; 7221 7222 if (aconnector->dc_sink) { 7223 edid_caps = &aconnector->dc_sink->edid_caps; 7224 disable_colorimetry = edid_caps->panel_patch.disable_colorimetry; 7225 } 7226 7227 // 7228 // should decide stream support vsc sdp colorimetry capability 7229 // before building vsc info packet 7230 // 7231 stream->use_vsc_sdp_for_colorimetry = stream->link->dpcd_caps.dpcd_rev.raw >= 0x14 && 7232 stream->link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED && 7233 !disable_colorimetry; 7234 7235 if (stream->out_transfer_func.tf == TRANSFER_FUNCTION_GAMMA22) 7236 tf = TRANSFER_FUNC_GAMMA_22; 7237 mod_build_vsc_infopacket(stream, &stream->vsc_infopacket, stream->output_color_space, tf); 7238 aconnector->sr_skip_count = AMDGPU_DM_PSR_ENTRY_DELAY; 7239 7240 } 7241 finish: 7242 dc_sink_release(sink); 7243 7244 return stream; 7245 } 7246 7247 /** 7248 * amdgpu_dm_connector_poll - Poll a connector to see if it's connected to a display 7249 * @aconnector: DM connector to poll (owns @base drm_connector and @dc_link) 7250 * @force: if true, force polling even when DAC load detection was used 7251 * 7252 * Used for connectors that don't support HPD (hotplug detection) to 7253 * periodically check whether the connector is connected to a display. 7254 * 7255 * When connection was determined via DAC load detection, we avoid 7256 * re-running it on normal polls to prevent visible glitches, unless 7257 * @force is set. 7258 * 7259 * Return: The probed connector status (connected/disconnected/unknown). 7260 */ 7261 static enum drm_connector_status 7262 amdgpu_dm_connector_poll(struct amdgpu_dm_connector *aconnector, bool force) 7263 { 7264 struct drm_connector *connector = &aconnector->base; 7265 struct drm_device *dev = connector->dev; 7266 struct amdgpu_device *adev = drm_to_adev(dev); 7267 struct dc_link *link = aconnector->dc_link; 7268 enum dc_connection_type conn_type = dc_connection_none; 7269 enum drm_connector_status status = connector_status_disconnected; 7270 7271 /* When we determined the connection using DAC load detection, 7272 * do NOT poll the connector do detect disconnect because 7273 * that would run DAC load detection again which can cause 7274 * visible visual glitches. 7275 * 7276 * Only allow to poll such a connector again when forcing. 7277 */ 7278 if (!force && link->local_sink && link->type == dc_connection_dac_load) 7279 return connector->status; 7280 7281 mutex_lock(&aconnector->hpd_lock); 7282 7283 if (dc_link_detect_connection_type(aconnector->dc_link, &conn_type) && 7284 conn_type != dc_connection_none) { 7285 mutex_lock(&adev->dm.dc_lock); 7286 7287 /* Only call full link detection when a sink isn't created yet, 7288 * ie. just when the display is plugged in, otherwise we risk flickering. 7289 */ 7290 if (link->local_sink || 7291 dc_link_detect(link, DETECT_REASON_HPD)) 7292 status = connector_status_connected; 7293 7294 mutex_unlock(&adev->dm.dc_lock); 7295 } 7296 7297 if (connector->status != status) { 7298 if (status == connector_status_disconnected) { 7299 if (link->local_sink) 7300 dc_sink_release(link->local_sink); 7301 7302 link->local_sink = NULL; 7303 link->dpcd_sink_count = 0; 7304 link->type = dc_connection_none; 7305 } 7306 7307 amdgpu_dm_update_connector_after_detect(aconnector); 7308 } 7309 7310 mutex_unlock(&aconnector->hpd_lock); 7311 return status; 7312 } 7313 7314 /** 7315 * amdgpu_dm_connector_detect() - Detect whether a DRM connector is connected to a display 7316 * 7317 * A connector is considered connected when it has a sink that is not NULL. 7318 * For connectors that support HPD (hotplug detection), the connection is 7319 * handled in the HPD interrupt. 7320 * For connectors that may not support HPD, such as analog connectors, 7321 * DRM will call this function repeatedly to poll them. 7322 * 7323 * Notes: 7324 * 1. This interface is NOT called in context of HPD irq. 7325 * 2. This interface *is called* in context of user-mode ioctl. Which 7326 * makes it a bad place for *any* MST-related activity. 7327 * 7328 * @connector: The DRM connector we are checking. We convert it to 7329 * amdgpu_dm_connector so we can read the DC link and state. 7330 * @force: If true, do a full detect again. This is used even when 7331 * a lighter check would normally be used to avoid flicker. 7332 * 7333 * Return: The connector status (connected, disconnected, or unknown). 7334 * 7335 */ 7336 static enum drm_connector_status 7337 amdgpu_dm_connector_detect(struct drm_connector *connector, bool force) 7338 { 7339 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 7340 7341 update_subconnector_property(aconnector); 7342 7343 if (aconnector->base.force == DRM_FORCE_ON || 7344 aconnector->base.force == DRM_FORCE_ON_DIGITAL) 7345 return connector_status_connected; 7346 else if (aconnector->base.force == DRM_FORCE_OFF) 7347 return connector_status_disconnected; 7348 7349 /* Poll analog connectors and only when either 7350 * disconnected or connected to an analog display. 7351 */ 7352 if (drm_kms_helper_is_poll_worker() && 7353 dc_connector_supports_analog(aconnector->dc_link->link_id.id) && 7354 (!aconnector->dc_sink || aconnector->dc_sink->edid_caps.analog)) 7355 return amdgpu_dm_connector_poll(aconnector, force); 7356 7357 return (aconnector->dc_sink ? connector_status_connected : 7358 connector_status_disconnected); 7359 } 7360 7361 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector, 7362 struct drm_connector_state *connector_state, 7363 struct drm_property *property, 7364 uint64_t val) 7365 { 7366 struct drm_device *dev = connector->dev; 7367 struct amdgpu_device *adev = drm_to_adev(dev); 7368 struct dm_connector_state *dm_old_state = 7369 to_dm_connector_state(connector->state); 7370 struct dm_connector_state *dm_new_state = 7371 to_dm_connector_state(connector_state); 7372 7373 int ret = -EINVAL; 7374 7375 if (property == dev->mode_config.scaling_mode_property) { 7376 enum amdgpu_rmx_type rmx_type; 7377 7378 switch (val) { 7379 case DRM_MODE_SCALE_CENTER: 7380 rmx_type = RMX_CENTER; 7381 break; 7382 case DRM_MODE_SCALE_ASPECT: 7383 rmx_type = RMX_ASPECT; 7384 break; 7385 case DRM_MODE_SCALE_FULLSCREEN: 7386 rmx_type = RMX_FULL; 7387 break; 7388 case DRM_MODE_SCALE_NONE: 7389 default: 7390 rmx_type = RMX_OFF; 7391 break; 7392 } 7393 7394 if (dm_old_state->scaling == rmx_type) 7395 return 0; 7396 7397 dm_new_state->scaling = rmx_type; 7398 ret = 0; 7399 } else if (property == adev->mode_info.underscan_hborder_property) { 7400 dm_new_state->underscan_hborder = val; 7401 ret = 0; 7402 } else if (property == adev->mode_info.underscan_vborder_property) { 7403 dm_new_state->underscan_vborder = val; 7404 ret = 0; 7405 } else if (property == adev->mode_info.underscan_property) { 7406 dm_new_state->underscan_enable = val; 7407 ret = 0; 7408 } else if (property == adev->mode_info.abm_level_property) { 7409 switch (val) { 7410 case ABM_SYSFS_CONTROL: 7411 dm_new_state->abm_sysfs_forbidden = false; 7412 break; 7413 case ABM_LEVEL_OFF: 7414 dm_new_state->abm_sysfs_forbidden = true; 7415 dm_new_state->abm_level = ABM_LEVEL_IMMEDIATE_DISABLE; 7416 break; 7417 default: 7418 dm_new_state->abm_sysfs_forbidden = true; 7419 dm_new_state->abm_level = val; 7420 } 7421 ret = 0; 7422 } 7423 7424 return ret; 7425 } 7426 7427 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector, 7428 const struct drm_connector_state *state, 7429 struct drm_property *property, 7430 uint64_t *val) 7431 { 7432 struct drm_device *dev = connector->dev; 7433 struct amdgpu_device *adev = drm_to_adev(dev); 7434 struct dm_connector_state *dm_state = 7435 to_dm_connector_state(state); 7436 int ret = -EINVAL; 7437 7438 if (property == dev->mode_config.scaling_mode_property) { 7439 switch (dm_state->scaling) { 7440 case RMX_CENTER: 7441 *val = DRM_MODE_SCALE_CENTER; 7442 break; 7443 case RMX_ASPECT: 7444 *val = DRM_MODE_SCALE_ASPECT; 7445 break; 7446 case RMX_FULL: 7447 *val = DRM_MODE_SCALE_FULLSCREEN; 7448 break; 7449 case RMX_OFF: 7450 default: 7451 *val = DRM_MODE_SCALE_NONE; 7452 break; 7453 } 7454 ret = 0; 7455 } else if (property == adev->mode_info.underscan_hborder_property) { 7456 *val = dm_state->underscan_hborder; 7457 ret = 0; 7458 } else if (property == adev->mode_info.underscan_vborder_property) { 7459 *val = dm_state->underscan_vborder; 7460 ret = 0; 7461 } else if (property == adev->mode_info.underscan_property) { 7462 *val = dm_state->underscan_enable; 7463 ret = 0; 7464 } else if (property == adev->mode_info.abm_level_property) { 7465 if (!dm_state->abm_sysfs_forbidden) 7466 *val = ABM_SYSFS_CONTROL; 7467 else 7468 *val = (dm_state->abm_level != ABM_LEVEL_IMMEDIATE_DISABLE) ? 7469 dm_state->abm_level : 0; 7470 ret = 0; 7471 } 7472 7473 return ret; 7474 } 7475 7476 /** 7477 * DOC: panel power savings 7478 * 7479 * The display manager allows you to set your desired **panel power savings** 7480 * level (between 0-4, with 0 representing off), e.g. using the following:: 7481 * 7482 * # echo 3 > /sys/class/drm/card0-eDP-1/amdgpu/panel_power_savings 7483 * 7484 * Modifying this value can have implications on color accuracy, so tread 7485 * carefully. 7486 */ 7487 7488 static ssize_t panel_power_savings_show(struct device *device, 7489 struct device_attribute *attr, 7490 char *buf) 7491 { 7492 struct drm_connector *connector = dev_get_drvdata(device); 7493 struct drm_device *dev = connector->dev; 7494 u8 val; 7495 7496 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); 7497 val = to_dm_connector_state(connector->state)->abm_level == 7498 ABM_LEVEL_IMMEDIATE_DISABLE ? 0 : 7499 to_dm_connector_state(connector->state)->abm_level; 7500 drm_modeset_unlock(&dev->mode_config.connection_mutex); 7501 7502 return sysfs_emit(buf, "%u\n", val); 7503 } 7504 7505 static ssize_t panel_power_savings_store(struct device *device, 7506 struct device_attribute *attr, 7507 const char *buf, size_t count) 7508 { 7509 struct drm_connector *connector = dev_get_drvdata(device); 7510 struct drm_device *dev = connector->dev; 7511 long val; 7512 int ret; 7513 7514 ret = kstrtol(buf, 0, &val); 7515 7516 if (ret) 7517 return ret; 7518 7519 if (val < 0 || val > 4) 7520 return -EINVAL; 7521 7522 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); 7523 if (to_dm_connector_state(connector->state)->abm_sysfs_forbidden) 7524 ret = -EBUSY; 7525 else 7526 to_dm_connector_state(connector->state)->abm_level = val ?: 7527 ABM_LEVEL_IMMEDIATE_DISABLE; 7528 drm_modeset_unlock(&dev->mode_config.connection_mutex); 7529 7530 if (ret) 7531 return ret; 7532 7533 drm_kms_helper_hotplug_event(dev); 7534 7535 return count; 7536 } 7537 7538 static DEVICE_ATTR_RW(panel_power_savings); 7539 7540 static struct attribute *amdgpu_attrs[] = { 7541 &dev_attr_panel_power_savings.attr, 7542 NULL 7543 }; 7544 7545 static const struct attribute_group amdgpu_group = { 7546 .name = "amdgpu", 7547 .attrs = amdgpu_attrs 7548 }; 7549 7550 static bool 7551 amdgpu_dm_should_create_sysfs(struct amdgpu_dm_connector *amdgpu_dm_connector) 7552 { 7553 if (amdgpu_dm_abm_level >= 0) 7554 return false; 7555 7556 if (amdgpu_dm_connector->base.connector_type != DRM_MODE_CONNECTOR_eDP) 7557 return false; 7558 7559 /* check for OLED panels */ 7560 if (amdgpu_dm_connector->bl_idx >= 0) { 7561 struct drm_device *drm = amdgpu_dm_connector->base.dev; 7562 struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm; 7563 struct amdgpu_dm_backlight_caps *caps; 7564 7565 caps = &dm->backlight_caps[amdgpu_dm_connector->bl_idx]; 7566 if (caps->aux_support) 7567 return false; 7568 } 7569 7570 return true; 7571 } 7572 7573 static void amdgpu_dm_connector_unregister(struct drm_connector *connector) 7574 { 7575 struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector); 7576 7577 if (amdgpu_dm_should_create_sysfs(amdgpu_dm_connector)) 7578 sysfs_remove_group(&connector->kdev->kobj, &amdgpu_group); 7579 7580 cec_notifier_conn_unregister(amdgpu_dm_connector->notifier); 7581 drm_dp_aux_unregister(&amdgpu_dm_connector->dm_dp_aux.aux); 7582 } 7583 7584 static void amdgpu_dm_connector_destroy(struct drm_connector *connector) 7585 { 7586 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 7587 struct amdgpu_device *adev = drm_to_adev(connector->dev); 7588 struct amdgpu_display_manager *dm = &adev->dm; 7589 7590 /* 7591 * Call only if mst_mgr was initialized before since it's not done 7592 * for all connector types. 7593 */ 7594 if (aconnector->mst_mgr.dev) 7595 drm_dp_mst_topology_mgr_destroy(&aconnector->mst_mgr); 7596 7597 if (aconnector->bl_idx != -1) { 7598 backlight_device_unregister(dm->backlight_dev[aconnector->bl_idx]); 7599 dm->backlight_dev[aconnector->bl_idx] = NULL; 7600 } 7601 7602 if (aconnector->dc_em_sink) 7603 dc_sink_release(aconnector->dc_em_sink); 7604 aconnector->dc_em_sink = NULL; 7605 if (aconnector->dc_sink) 7606 dc_sink_release(aconnector->dc_sink); 7607 aconnector->dc_sink = NULL; 7608 7609 drm_dp_cec_unregister_connector(&aconnector->dm_dp_aux.aux); 7610 drm_connector_unregister(connector); 7611 drm_connector_cleanup(connector); 7612 kfree(aconnector->dm_dp_aux.aux.name); 7613 7614 kfree(connector); 7615 } 7616 7617 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector) 7618 { 7619 struct dm_connector_state *state = 7620 to_dm_connector_state(connector->state); 7621 7622 if (connector->state) 7623 __drm_atomic_helper_connector_destroy_state(connector->state); 7624 7625 kfree(state); 7626 7627 state = kzalloc(sizeof(*state), GFP_KERNEL); 7628 7629 if (state) { 7630 state->scaling = RMX_OFF; 7631 state->underscan_enable = false; 7632 state->underscan_hborder = 0; 7633 state->underscan_vborder = 0; 7634 state->base.max_requested_bpc = 8; 7635 state->vcpi_slots = 0; 7636 state->pbn = 0; 7637 7638 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) { 7639 if (amdgpu_dm_abm_level <= 0) 7640 state->abm_level = ABM_LEVEL_IMMEDIATE_DISABLE; 7641 else 7642 state->abm_level = amdgpu_dm_abm_level; 7643 } 7644 7645 __drm_atomic_helper_connector_reset(connector, &state->base); 7646 } 7647 } 7648 7649 struct drm_connector_state * 7650 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector) 7651 { 7652 struct dm_connector_state *state = 7653 to_dm_connector_state(connector->state); 7654 7655 struct dm_connector_state *new_state = 7656 kmemdup(state, sizeof(*state), GFP_KERNEL); 7657 7658 if (!new_state) 7659 return NULL; 7660 7661 __drm_atomic_helper_connector_duplicate_state(connector, &new_state->base); 7662 7663 new_state->freesync_capable = state->freesync_capable; 7664 new_state->abm_level = state->abm_level; 7665 new_state->scaling = state->scaling; 7666 new_state->underscan_enable = state->underscan_enable; 7667 new_state->underscan_hborder = state->underscan_hborder; 7668 new_state->underscan_vborder = state->underscan_vborder; 7669 new_state->vcpi_slots = state->vcpi_slots; 7670 new_state->pbn = state->pbn; 7671 return &new_state->base; 7672 } 7673 7674 static int 7675 amdgpu_dm_connector_late_register(struct drm_connector *connector) 7676 { 7677 struct amdgpu_dm_connector *amdgpu_dm_connector = 7678 to_amdgpu_dm_connector(connector); 7679 int r; 7680 7681 if (amdgpu_dm_should_create_sysfs(amdgpu_dm_connector)) { 7682 r = sysfs_create_group(&connector->kdev->kobj, 7683 &amdgpu_group); 7684 if (r) 7685 return r; 7686 } 7687 7688 amdgpu_dm_register_backlight_device(amdgpu_dm_connector); 7689 7690 if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) || 7691 (connector->connector_type == DRM_MODE_CONNECTOR_eDP)) { 7692 amdgpu_dm_connector->dm_dp_aux.aux.dev = connector->kdev; 7693 r = drm_dp_aux_register(&amdgpu_dm_connector->dm_dp_aux.aux); 7694 if (r) 7695 return r; 7696 } 7697 7698 #if defined(CONFIG_DEBUG_FS) 7699 connector_debugfs_init(amdgpu_dm_connector); 7700 #endif 7701 7702 return 0; 7703 } 7704 7705 static void amdgpu_dm_connector_funcs_force(struct drm_connector *connector) 7706 { 7707 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 7708 struct dc_link *dc_link = aconnector->dc_link; 7709 struct dc_sink *dc_em_sink = aconnector->dc_em_sink; 7710 const struct drm_edid *drm_edid; 7711 struct i2c_adapter *ddc; 7712 struct drm_device *dev = connector->dev; 7713 7714 if (dc_link && dc_link->aux_mode) 7715 ddc = &aconnector->dm_dp_aux.aux.ddc; 7716 else 7717 ddc = &aconnector->i2c->base; 7718 7719 drm_edid = drm_edid_read_ddc(connector, ddc); 7720 drm_edid_connector_update(connector, drm_edid); 7721 if (!drm_edid) { 7722 drm_err(dev, "No EDID found on connector: %s.\n", connector->name); 7723 return; 7724 } 7725 7726 aconnector->drm_edid = drm_edid; 7727 /* Update emulated (virtual) sink's EDID */ 7728 if (dc_em_sink && dc_link) { 7729 // FIXME: Get rid of drm_edid_raw() 7730 const struct edid *edid = drm_edid_raw(drm_edid); 7731 7732 memset(&dc_em_sink->edid_caps, 0, sizeof(struct dc_edid_caps)); 7733 memmove(dc_em_sink->dc_edid.raw_edid, edid, 7734 (edid->extensions + 1) * EDID_LENGTH); 7735 dm_helpers_parse_edid_caps( 7736 dc_link, 7737 &dc_em_sink->dc_edid, 7738 &dc_em_sink->edid_caps); 7739 } 7740 } 7741 7742 static const struct drm_connector_funcs amdgpu_dm_connector_funcs = { 7743 .reset = amdgpu_dm_connector_funcs_reset, 7744 .detect = amdgpu_dm_connector_detect, 7745 .fill_modes = drm_helper_probe_single_connector_modes, 7746 .destroy = amdgpu_dm_connector_destroy, 7747 .atomic_duplicate_state = amdgpu_dm_connector_atomic_duplicate_state, 7748 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, 7749 .atomic_set_property = amdgpu_dm_connector_atomic_set_property, 7750 .atomic_get_property = amdgpu_dm_connector_atomic_get_property, 7751 .late_register = amdgpu_dm_connector_late_register, 7752 .early_unregister = amdgpu_dm_connector_unregister, 7753 .force = amdgpu_dm_connector_funcs_force 7754 }; 7755 7756 static int get_modes(struct drm_connector *connector) 7757 { 7758 return amdgpu_dm_connector_get_modes(connector); 7759 } 7760 7761 static void create_eml_sink(struct amdgpu_dm_connector *aconnector) 7762 { 7763 struct drm_connector *connector = &aconnector->base; 7764 struct dc_link *dc_link = aconnector->dc_link; 7765 struct dc_sink_init_data init_params = { 7766 .link = aconnector->dc_link, 7767 .sink_signal = SIGNAL_TYPE_VIRTUAL 7768 }; 7769 const struct drm_edid *drm_edid; 7770 const struct edid *edid; 7771 struct i2c_adapter *ddc; 7772 7773 if (dc_link && dc_link->aux_mode) 7774 ddc = &aconnector->dm_dp_aux.aux.ddc; 7775 else 7776 ddc = &aconnector->i2c->base; 7777 7778 drm_edid = drm_edid_read_ddc(connector, ddc); 7779 drm_edid_connector_update(connector, drm_edid); 7780 if (!drm_edid) { 7781 drm_err(connector->dev, "No EDID found on connector: %s.\n", connector->name); 7782 return; 7783 } 7784 7785 if (connector->display_info.is_hdmi) 7786 init_params.sink_signal = SIGNAL_TYPE_HDMI_TYPE_A; 7787 7788 aconnector->drm_edid = drm_edid; 7789 7790 edid = drm_edid_raw(drm_edid); // FIXME: Get rid of drm_edid_raw() 7791 aconnector->dc_em_sink = dc_link_add_remote_sink( 7792 aconnector->dc_link, 7793 (uint8_t *)edid, 7794 (edid->extensions + 1) * EDID_LENGTH, 7795 &init_params); 7796 7797 if (aconnector->base.force == DRM_FORCE_ON) { 7798 aconnector->dc_sink = aconnector->dc_link->local_sink ? 7799 aconnector->dc_link->local_sink : 7800 aconnector->dc_em_sink; 7801 if (aconnector->dc_sink) 7802 dc_sink_retain(aconnector->dc_sink); 7803 } 7804 } 7805 7806 static void handle_edid_mgmt(struct amdgpu_dm_connector *aconnector) 7807 { 7808 struct dc_link *link = (struct dc_link *)aconnector->dc_link; 7809 7810 /* 7811 * In case of headless boot with force on for DP managed connector 7812 * Those settings have to be != 0 to get initial modeset 7813 */ 7814 if (link->connector_signal == SIGNAL_TYPE_DISPLAY_PORT) { 7815 link->verified_link_cap.lane_count = LANE_COUNT_FOUR; 7816 link->verified_link_cap.link_rate = LINK_RATE_HIGH2; 7817 } 7818 7819 create_eml_sink(aconnector); 7820 } 7821 7822 static enum dc_status dm_validate_stream_and_context(struct dc *dc, 7823 struct dc_stream_state *stream) 7824 { 7825 enum dc_status dc_result = DC_ERROR_UNEXPECTED; 7826 struct dc_plane_state *dc_plane_state = NULL; 7827 struct dc_state *dc_state = NULL; 7828 7829 if (!stream) 7830 goto cleanup; 7831 7832 dc_plane_state = dc_create_plane_state(dc); 7833 if (!dc_plane_state) 7834 goto cleanup; 7835 7836 dc_state = dc_state_create(dc, NULL); 7837 if (!dc_state) 7838 goto cleanup; 7839 7840 /* populate stream to plane */ 7841 dc_plane_state->src_rect.height = stream->src.height; 7842 dc_plane_state->src_rect.width = stream->src.width; 7843 dc_plane_state->dst_rect.height = stream->src.height; 7844 dc_plane_state->dst_rect.width = stream->src.width; 7845 dc_plane_state->clip_rect.height = stream->src.height; 7846 dc_plane_state->clip_rect.width = stream->src.width; 7847 dc_plane_state->plane_size.surface_pitch = ((stream->src.width + 255) / 256) * 256; 7848 dc_plane_state->plane_size.surface_size.height = stream->src.height; 7849 dc_plane_state->plane_size.surface_size.width = stream->src.width; 7850 dc_plane_state->plane_size.chroma_size.height = stream->src.height; 7851 dc_plane_state->plane_size.chroma_size.width = stream->src.width; 7852 dc_plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888; 7853 dc_plane_state->tiling_info.gfx9.swizzle = DC_SW_UNKNOWN; 7854 dc_plane_state->rotation = ROTATION_ANGLE_0; 7855 dc_plane_state->is_tiling_rotated = false; 7856 dc_plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_LINEAR_GENERAL; 7857 7858 dc_result = dc_validate_stream(dc, stream); 7859 if (dc_result == DC_OK) 7860 dc_result = dc_validate_plane(dc, dc_plane_state); 7861 7862 if (dc_result == DC_OK) 7863 dc_result = dc_state_add_stream(dc, dc_state, stream); 7864 7865 if (dc_result == DC_OK && !dc_state_add_plane( 7866 dc, 7867 stream, 7868 dc_plane_state, 7869 dc_state)) 7870 dc_result = DC_FAIL_ATTACH_SURFACES; 7871 7872 if (dc_result == DC_OK) 7873 dc_result = dc_validate_global_state(dc, dc_state, DC_VALIDATE_MODE_ONLY); 7874 7875 cleanup: 7876 if (dc_state) 7877 dc_state_release(dc_state); 7878 7879 if (dc_plane_state) 7880 dc_plane_state_release(dc_plane_state); 7881 7882 return dc_result; 7883 } 7884 7885 struct dc_stream_state * 7886 create_validate_stream_for_sink(struct drm_connector *connector, 7887 const struct drm_display_mode *drm_mode, 7888 const struct dm_connector_state *dm_state, 7889 const struct dc_stream_state *old_stream) 7890 { 7891 struct amdgpu_dm_connector *aconnector = NULL; 7892 struct amdgpu_device *adev = drm_to_adev(connector->dev); 7893 struct dc_stream_state *stream; 7894 const struct drm_connector_state *drm_state = dm_state ? &dm_state->base : NULL; 7895 int requested_bpc = drm_state ? drm_state->max_requested_bpc : 8; 7896 enum dc_status dc_result = DC_OK; 7897 uint8_t bpc_limit = 6; 7898 7899 if (!dm_state) 7900 return NULL; 7901 7902 if (connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) 7903 aconnector = to_amdgpu_dm_connector(connector); 7904 7905 if (aconnector && 7906 (aconnector->dc_link->connector_signal == SIGNAL_TYPE_HDMI_TYPE_A || 7907 aconnector->dc_link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER)) 7908 bpc_limit = 8; 7909 7910 do { 7911 drm_dbg_kms(connector->dev, "Trying with %d bpc\n", requested_bpc); 7912 stream = create_stream_for_sink(connector, drm_mode, 7913 dm_state, old_stream, 7914 requested_bpc); 7915 if (stream == NULL) { 7916 drm_err(adev_to_drm(adev), "Failed to create stream for sink!\n"); 7917 break; 7918 } 7919 7920 dc_result = dc_validate_stream(adev->dm.dc, stream); 7921 7922 if (!aconnector) /* writeback connector */ 7923 return stream; 7924 7925 if (dc_result == DC_OK && stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST) 7926 dc_result = dm_dp_mst_is_port_support_mode(aconnector, stream); 7927 7928 if (dc_result == DC_OK) 7929 dc_result = dm_validate_stream_and_context(adev->dm.dc, stream); 7930 7931 if (dc_result != DC_OK) { 7932 DRM_DEBUG_KMS("Pruned mode %d x %d (clk %d) %s %s -- %s\n", 7933 drm_mode->hdisplay, 7934 drm_mode->vdisplay, 7935 drm_mode->clock, 7936 dc_pixel_encoding_to_str(stream->timing.pixel_encoding), 7937 dc_color_depth_to_str(stream->timing.display_color_depth), 7938 dc_status_to_str(dc_result)); 7939 7940 dc_stream_release(stream); 7941 stream = NULL; 7942 requested_bpc -= 2; /* lower bpc to retry validation */ 7943 } 7944 7945 } while (stream == NULL && requested_bpc >= bpc_limit); 7946 7947 switch (dc_result) { 7948 /* 7949 * If we failed to validate DP bandwidth stream with the requested RGB color depth, 7950 * we try to fallback and configure in order: 7951 * YUV422 (8bpc, 6bpc) 7952 * YUV420 (8bpc, 6bpc) 7953 */ 7954 case DC_FAIL_ENC_VALIDATE: 7955 case DC_EXCEED_DONGLE_CAP: 7956 case DC_NO_DP_LINK_BANDWIDTH: 7957 /* recursively entered twice and already tried both YUV422 and YUV420 */ 7958 if (aconnector->force_yuv422_output && aconnector->force_yuv420_output) 7959 break; 7960 /* first failure; try YUV422 */ 7961 if (!aconnector->force_yuv422_output) { 7962 drm_dbg_kms(connector->dev, "%s:%d Validation failed with %d, retrying w/ YUV422\n", 7963 __func__, __LINE__, dc_result); 7964 aconnector->force_yuv422_output = true; 7965 /* recursively entered and YUV422 failed, try YUV420 */ 7966 } else if (!aconnector->force_yuv420_output) { 7967 drm_dbg_kms(connector->dev, "%s:%d Validation failed with %d, retrying w/ YUV420\n", 7968 __func__, __LINE__, dc_result); 7969 aconnector->force_yuv420_output = true; 7970 } 7971 stream = create_validate_stream_for_sink(connector, drm_mode, 7972 dm_state, old_stream); 7973 aconnector->force_yuv422_output = false; 7974 aconnector->force_yuv420_output = false; 7975 break; 7976 case DC_OK: 7977 break; 7978 default: 7979 drm_dbg_kms(connector->dev, "%s:%d Unhandled validation failure %d\n", 7980 __func__, __LINE__, dc_result); 7981 break; 7982 } 7983 7984 return stream; 7985 } 7986 7987 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector, 7988 const struct drm_display_mode *mode) 7989 { 7990 int result = MODE_ERROR; 7991 struct dc_sink *dc_sink; 7992 struct drm_display_mode *test_mode; 7993 /* TODO: Unhardcode stream count */ 7994 struct dc_stream_state *stream; 7995 /* we always have an amdgpu_dm_connector here since we got 7996 * here via the amdgpu_dm_connector_helper_funcs 7997 */ 7998 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 7999 8000 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) || 8001 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) 8002 return result; 8003 8004 /* 8005 * Only run this the first time mode_valid is called to initilialize 8006 * EDID mgmt 8007 */ 8008 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED && 8009 !aconnector->dc_em_sink) 8010 handle_edid_mgmt(aconnector); 8011 8012 dc_sink = to_amdgpu_dm_connector(connector)->dc_sink; 8013 8014 if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL && 8015 aconnector->base.force != DRM_FORCE_ON) { 8016 drm_err(connector->dev, "dc_sink is NULL!\n"); 8017 goto fail; 8018 } 8019 8020 test_mode = drm_mode_duplicate(connector->dev, mode); 8021 if (!test_mode) 8022 goto fail; 8023 8024 drm_mode_set_crtcinfo(test_mode, 0); 8025 8026 stream = create_validate_stream_for_sink(connector, test_mode, 8027 to_dm_connector_state(connector->state), 8028 NULL); 8029 drm_mode_destroy(connector->dev, test_mode); 8030 if (stream) { 8031 dc_stream_release(stream); 8032 result = MODE_OK; 8033 } 8034 8035 fail: 8036 /* TODO: error handling*/ 8037 return result; 8038 } 8039 8040 static int fill_hdr_info_packet(const struct drm_connector_state *state, 8041 struct dc_info_packet *out) 8042 { 8043 struct hdmi_drm_infoframe frame; 8044 unsigned char buf[30]; /* 26 + 4 */ 8045 ssize_t len; 8046 int ret, i; 8047 8048 memset(out, 0, sizeof(*out)); 8049 8050 if (!state->hdr_output_metadata) 8051 return 0; 8052 8053 ret = drm_hdmi_infoframe_set_hdr_metadata(&frame, state); 8054 if (ret) 8055 return ret; 8056 8057 len = hdmi_drm_infoframe_pack_only(&frame, buf, sizeof(buf)); 8058 if (len < 0) 8059 return (int)len; 8060 8061 /* Static metadata is a fixed 26 bytes + 4 byte header. */ 8062 if (len != 30) 8063 return -EINVAL; 8064 8065 /* Prepare the infopacket for DC. */ 8066 switch (state->connector->connector_type) { 8067 case DRM_MODE_CONNECTOR_HDMIA: 8068 out->hb0 = 0x87; /* type */ 8069 out->hb1 = 0x01; /* version */ 8070 out->hb2 = 0x1A; /* length */ 8071 out->sb[0] = buf[3]; /* checksum */ 8072 i = 1; 8073 break; 8074 8075 case DRM_MODE_CONNECTOR_DisplayPort: 8076 case DRM_MODE_CONNECTOR_eDP: 8077 out->hb0 = 0x00; /* sdp id, zero */ 8078 out->hb1 = 0x87; /* type */ 8079 out->hb2 = 0x1D; /* payload len - 1 */ 8080 out->hb3 = (0x13 << 2); /* sdp version */ 8081 out->sb[0] = 0x01; /* version */ 8082 out->sb[1] = 0x1A; /* length */ 8083 i = 2; 8084 break; 8085 8086 default: 8087 return -EINVAL; 8088 } 8089 8090 memcpy(&out->sb[i], &buf[4], 26); 8091 out->valid = true; 8092 8093 print_hex_dump(KERN_DEBUG, "HDR SB:", DUMP_PREFIX_NONE, 16, 1, out->sb, 8094 sizeof(out->sb), false); 8095 8096 return 0; 8097 } 8098 8099 static int 8100 amdgpu_dm_connector_atomic_check(struct drm_connector *conn, 8101 struct drm_atomic_state *state) 8102 { 8103 struct drm_connector_state *new_con_state = 8104 drm_atomic_get_new_connector_state(state, conn); 8105 struct drm_connector_state *old_con_state = 8106 drm_atomic_get_old_connector_state(state, conn); 8107 struct drm_crtc *crtc = new_con_state->crtc; 8108 struct drm_crtc_state *new_crtc_state; 8109 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(conn); 8110 int ret; 8111 8112 if (WARN_ON(unlikely(!old_con_state || !new_con_state))) 8113 return -EINVAL; 8114 8115 trace_amdgpu_dm_connector_atomic_check(new_con_state); 8116 8117 if (conn->connector_type == DRM_MODE_CONNECTOR_DisplayPort) { 8118 ret = drm_dp_mst_root_conn_atomic_check(new_con_state, &aconn->mst_mgr); 8119 if (ret < 0) 8120 return ret; 8121 } 8122 8123 if (!crtc) 8124 return 0; 8125 8126 if (new_con_state->privacy_screen_sw_state != old_con_state->privacy_screen_sw_state) { 8127 new_crtc_state = drm_atomic_get_crtc_state(state, crtc); 8128 if (IS_ERR(new_crtc_state)) 8129 return PTR_ERR(new_crtc_state); 8130 8131 new_crtc_state->mode_changed = true; 8132 } 8133 8134 if (new_con_state->colorspace != old_con_state->colorspace) { 8135 new_crtc_state = drm_atomic_get_crtc_state(state, crtc); 8136 if (IS_ERR(new_crtc_state)) 8137 return PTR_ERR(new_crtc_state); 8138 8139 new_crtc_state->mode_changed = true; 8140 } 8141 8142 if (new_con_state->content_type != old_con_state->content_type) { 8143 new_crtc_state = drm_atomic_get_crtc_state(state, crtc); 8144 if (IS_ERR(new_crtc_state)) 8145 return PTR_ERR(new_crtc_state); 8146 8147 new_crtc_state->mode_changed = true; 8148 } 8149 8150 if (!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state)) { 8151 struct dc_info_packet hdr_infopacket; 8152 8153 ret = fill_hdr_info_packet(new_con_state, &hdr_infopacket); 8154 if (ret) 8155 return ret; 8156 8157 new_crtc_state = drm_atomic_get_crtc_state(state, crtc); 8158 if (IS_ERR(new_crtc_state)) 8159 return PTR_ERR(new_crtc_state); 8160 8161 /* 8162 * DC considers the stream backends changed if the 8163 * static metadata changes. Forcing the modeset also 8164 * gives a simple way for userspace to switch from 8165 * 8bpc to 10bpc when setting the metadata to enter 8166 * or exit HDR. 8167 * 8168 * Changing the static metadata after it's been 8169 * set is permissible, however. So only force a 8170 * modeset if we're entering or exiting HDR. 8171 */ 8172 new_crtc_state->mode_changed = new_crtc_state->mode_changed || 8173 !old_con_state->hdr_output_metadata || 8174 !new_con_state->hdr_output_metadata; 8175 } 8176 8177 return 0; 8178 } 8179 8180 static const struct drm_connector_helper_funcs 8181 amdgpu_dm_connector_helper_funcs = { 8182 /* 8183 * If hotplugging a second bigger display in FB Con mode, bigger resolution 8184 * modes will be filtered by drm_mode_validate_size(), and those modes 8185 * are missing after user start lightdm. So we need to renew modes list. 8186 * in get_modes call back, not just return the modes count 8187 */ 8188 .get_modes = get_modes, 8189 .mode_valid = amdgpu_dm_connector_mode_valid, 8190 .atomic_check = amdgpu_dm_connector_atomic_check, 8191 }; 8192 8193 static void dm_encoder_helper_disable(struct drm_encoder *encoder) 8194 { 8195 8196 } 8197 8198 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth) 8199 { 8200 switch (display_color_depth) { 8201 case COLOR_DEPTH_666: 8202 return 6; 8203 case COLOR_DEPTH_888: 8204 return 8; 8205 case COLOR_DEPTH_101010: 8206 return 10; 8207 case COLOR_DEPTH_121212: 8208 return 12; 8209 case COLOR_DEPTH_141414: 8210 return 14; 8211 case COLOR_DEPTH_161616: 8212 return 16; 8213 default: 8214 break; 8215 } 8216 return 0; 8217 } 8218 8219 static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder, 8220 struct drm_crtc_state *crtc_state, 8221 struct drm_connector_state *conn_state) 8222 { 8223 struct drm_atomic_state *state = crtc_state->state; 8224 struct drm_connector *connector = conn_state->connector; 8225 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 8226 struct dm_connector_state *dm_new_connector_state = to_dm_connector_state(conn_state); 8227 const struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode; 8228 struct drm_dp_mst_topology_mgr *mst_mgr; 8229 struct drm_dp_mst_port *mst_port; 8230 struct drm_dp_mst_topology_state *mst_state; 8231 enum dc_color_depth color_depth; 8232 int clock, bpp = 0; 8233 bool is_y420 = false; 8234 8235 if ((connector->connector_type == DRM_MODE_CONNECTOR_eDP) || 8236 (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)) { 8237 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder); 8238 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode; 8239 enum drm_mode_status result; 8240 8241 result = drm_crtc_helper_mode_valid_fixed(encoder->crtc, adjusted_mode, native_mode); 8242 if (result != MODE_OK && dm_new_connector_state->scaling == RMX_OFF) { 8243 drm_dbg_driver(encoder->dev, 8244 "mode %dx%d@%dHz is not native, enabling scaling\n", 8245 adjusted_mode->hdisplay, adjusted_mode->vdisplay, 8246 drm_mode_vrefresh(adjusted_mode)); 8247 dm_new_connector_state->scaling = RMX_ASPECT; 8248 } 8249 return 0; 8250 } 8251 8252 if (!aconnector->mst_output_port) 8253 return 0; 8254 8255 mst_port = aconnector->mst_output_port; 8256 mst_mgr = &aconnector->mst_root->mst_mgr; 8257 8258 if (!crtc_state->connectors_changed && !crtc_state->mode_changed) 8259 return 0; 8260 8261 mst_state = drm_atomic_get_mst_topology_state(state, mst_mgr); 8262 if (IS_ERR(mst_state)) 8263 return PTR_ERR(mst_state); 8264 8265 mst_state->pbn_div.full = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link); 8266 8267 if (!state->duplicated) { 8268 int max_bpc = conn_state->max_requested_bpc; 8269 8270 is_y420 = drm_mode_is_420_also(&connector->display_info, adjusted_mode) && 8271 aconnector->force_yuv420_output; 8272 color_depth = convert_color_depth_from_display_info(connector, 8273 is_y420, 8274 max_bpc); 8275 bpp = convert_dc_color_depth_into_bpc(color_depth) * 3; 8276 clock = adjusted_mode->clock; 8277 dm_new_connector_state->pbn = drm_dp_calc_pbn_mode(clock, bpp << 4); 8278 } 8279 8280 dm_new_connector_state->vcpi_slots = 8281 drm_dp_atomic_find_time_slots(state, mst_mgr, mst_port, 8282 dm_new_connector_state->pbn); 8283 if (dm_new_connector_state->vcpi_slots < 0) { 8284 DRM_DEBUG_ATOMIC("failed finding vcpi slots: %d\n", (int)dm_new_connector_state->vcpi_slots); 8285 return dm_new_connector_state->vcpi_slots; 8286 } 8287 return 0; 8288 } 8289 8290 const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs = { 8291 .disable = dm_encoder_helper_disable, 8292 .atomic_check = dm_encoder_helper_atomic_check 8293 }; 8294 8295 static int dm_update_mst_vcpi_slots_for_dsc(struct drm_atomic_state *state, 8296 struct dc_state *dc_state, 8297 struct dsc_mst_fairness_vars *vars) 8298 { 8299 struct dc_stream_state *stream = NULL; 8300 struct drm_connector *connector; 8301 struct drm_connector_state *new_con_state; 8302 struct amdgpu_dm_connector *aconnector; 8303 struct dm_connector_state *dm_conn_state; 8304 int i, j, ret; 8305 int vcpi, pbn_div, pbn = 0, slot_num = 0; 8306 8307 for_each_new_connector_in_state(state, connector, new_con_state, i) { 8308 8309 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 8310 continue; 8311 8312 aconnector = to_amdgpu_dm_connector(connector); 8313 8314 if (!aconnector->mst_output_port) 8315 continue; 8316 8317 if (!new_con_state || !new_con_state->crtc) 8318 continue; 8319 8320 dm_conn_state = to_dm_connector_state(new_con_state); 8321 8322 for (j = 0; j < dc_state->stream_count; j++) { 8323 stream = dc_state->streams[j]; 8324 if (!stream) 8325 continue; 8326 8327 if ((struct amdgpu_dm_connector *)stream->dm_stream_context == aconnector) 8328 break; 8329 8330 stream = NULL; 8331 } 8332 8333 if (!stream) 8334 continue; 8335 8336 pbn_div = dm_mst_get_pbn_divider(stream->link); 8337 /* pbn is calculated by compute_mst_dsc_configs_for_state*/ 8338 for (j = 0; j < dc_state->stream_count; j++) { 8339 if (vars[j].aconnector == aconnector) { 8340 pbn = vars[j].pbn; 8341 break; 8342 } 8343 } 8344 8345 if (j == dc_state->stream_count || pbn_div == 0) 8346 continue; 8347 8348 slot_num = DIV_ROUND_UP(pbn, pbn_div); 8349 8350 if (stream->timing.flags.DSC != 1) { 8351 dm_conn_state->pbn = pbn; 8352 dm_conn_state->vcpi_slots = slot_num; 8353 8354 ret = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, 8355 dm_conn_state->pbn, false); 8356 if (ret < 0) 8357 return ret; 8358 8359 continue; 8360 } 8361 8362 vcpi = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, pbn, true); 8363 if (vcpi < 0) 8364 return vcpi; 8365 8366 dm_conn_state->pbn = pbn; 8367 dm_conn_state->vcpi_slots = vcpi; 8368 } 8369 return 0; 8370 } 8371 8372 static int to_drm_connector_type(enum signal_type st, uint32_t connector_id) 8373 { 8374 switch (st) { 8375 case SIGNAL_TYPE_HDMI_TYPE_A: 8376 return DRM_MODE_CONNECTOR_HDMIA; 8377 case SIGNAL_TYPE_EDP: 8378 return DRM_MODE_CONNECTOR_eDP; 8379 case SIGNAL_TYPE_LVDS: 8380 return DRM_MODE_CONNECTOR_LVDS; 8381 case SIGNAL_TYPE_RGB: 8382 return DRM_MODE_CONNECTOR_VGA; 8383 case SIGNAL_TYPE_DISPLAY_PORT: 8384 case SIGNAL_TYPE_DISPLAY_PORT_MST: 8385 return DRM_MODE_CONNECTOR_DisplayPort; 8386 case SIGNAL_TYPE_DVI_DUAL_LINK: 8387 case SIGNAL_TYPE_DVI_SINGLE_LINK: 8388 if (connector_id == CONNECTOR_ID_SINGLE_LINK_DVII || 8389 connector_id == CONNECTOR_ID_DUAL_LINK_DVII) 8390 return DRM_MODE_CONNECTOR_DVII; 8391 8392 return DRM_MODE_CONNECTOR_DVID; 8393 case SIGNAL_TYPE_VIRTUAL: 8394 return DRM_MODE_CONNECTOR_VIRTUAL; 8395 8396 default: 8397 return DRM_MODE_CONNECTOR_Unknown; 8398 } 8399 } 8400 8401 static struct drm_encoder *amdgpu_dm_connector_to_encoder(struct drm_connector *connector) 8402 { 8403 struct drm_encoder *encoder; 8404 8405 /* There is only one encoder per connector */ 8406 drm_connector_for_each_possible_encoder(connector, encoder) 8407 return encoder; 8408 8409 return NULL; 8410 } 8411 8412 static void amdgpu_dm_get_native_mode(struct drm_connector *connector) 8413 { 8414 struct drm_encoder *encoder; 8415 struct amdgpu_encoder *amdgpu_encoder; 8416 8417 encoder = amdgpu_dm_connector_to_encoder(connector); 8418 8419 if (encoder == NULL) 8420 return; 8421 8422 amdgpu_encoder = to_amdgpu_encoder(encoder); 8423 8424 amdgpu_encoder->native_mode.clock = 0; 8425 8426 if (!list_empty(&connector->probed_modes)) { 8427 struct drm_display_mode *preferred_mode = NULL; 8428 8429 list_for_each_entry(preferred_mode, 8430 &connector->probed_modes, 8431 head) { 8432 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) 8433 amdgpu_encoder->native_mode = *preferred_mode; 8434 8435 break; 8436 } 8437 8438 } 8439 } 8440 8441 static struct drm_display_mode * 8442 amdgpu_dm_create_common_mode(struct drm_encoder *encoder, 8443 const char *name, 8444 int hdisplay, int vdisplay) 8445 { 8446 struct drm_device *dev = encoder->dev; 8447 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder); 8448 struct drm_display_mode *mode = NULL; 8449 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode; 8450 8451 mode = drm_mode_duplicate(dev, native_mode); 8452 8453 if (mode == NULL) 8454 return NULL; 8455 8456 mode->hdisplay = hdisplay; 8457 mode->vdisplay = vdisplay; 8458 mode->type &= ~DRM_MODE_TYPE_PREFERRED; 8459 strscpy(mode->name, name, DRM_DISPLAY_MODE_LEN); 8460 8461 return mode; 8462 8463 } 8464 8465 static const struct amdgpu_dm_mode_size { 8466 char name[DRM_DISPLAY_MODE_LEN]; 8467 int w; 8468 int h; 8469 } common_modes[] = { 8470 { "640x480", 640, 480}, 8471 { "800x600", 800, 600}, 8472 { "1024x768", 1024, 768}, 8473 { "1280x720", 1280, 720}, 8474 { "1280x800", 1280, 800}, 8475 {"1280x1024", 1280, 1024}, 8476 { "1440x900", 1440, 900}, 8477 {"1680x1050", 1680, 1050}, 8478 {"1600x1200", 1600, 1200}, 8479 {"1920x1080", 1920, 1080}, 8480 {"1920x1200", 1920, 1200} 8481 }; 8482 8483 static void amdgpu_dm_connector_add_common_modes(struct drm_encoder *encoder, 8484 struct drm_connector *connector) 8485 { 8486 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder); 8487 struct drm_display_mode *mode = NULL; 8488 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode; 8489 struct amdgpu_dm_connector *amdgpu_dm_connector = 8490 to_amdgpu_dm_connector(connector); 8491 int i; 8492 int n; 8493 8494 if ((connector->connector_type != DRM_MODE_CONNECTOR_eDP) && 8495 (connector->connector_type != DRM_MODE_CONNECTOR_LVDS)) 8496 return; 8497 8498 n = ARRAY_SIZE(common_modes); 8499 8500 for (i = 0; i < n; i++) { 8501 struct drm_display_mode *curmode = NULL; 8502 bool mode_existed = false; 8503 8504 if (common_modes[i].w > native_mode->hdisplay || 8505 common_modes[i].h > native_mode->vdisplay || 8506 (common_modes[i].w == native_mode->hdisplay && 8507 common_modes[i].h == native_mode->vdisplay)) 8508 continue; 8509 8510 list_for_each_entry(curmode, &connector->probed_modes, head) { 8511 if (common_modes[i].w == curmode->hdisplay && 8512 common_modes[i].h == curmode->vdisplay) { 8513 mode_existed = true; 8514 break; 8515 } 8516 } 8517 8518 if (mode_existed) 8519 continue; 8520 8521 mode = amdgpu_dm_create_common_mode(encoder, 8522 common_modes[i].name, common_modes[i].w, 8523 common_modes[i].h); 8524 if (!mode) 8525 continue; 8526 8527 drm_mode_probed_add(connector, mode); 8528 amdgpu_dm_connector->num_modes++; 8529 } 8530 } 8531 8532 static void amdgpu_set_panel_orientation(struct drm_connector *connector) 8533 { 8534 struct drm_encoder *encoder; 8535 struct amdgpu_encoder *amdgpu_encoder; 8536 const struct drm_display_mode *native_mode; 8537 8538 if (connector->connector_type != DRM_MODE_CONNECTOR_eDP && 8539 connector->connector_type != DRM_MODE_CONNECTOR_LVDS) 8540 return; 8541 8542 mutex_lock(&connector->dev->mode_config.mutex); 8543 amdgpu_dm_connector_get_modes(connector); 8544 mutex_unlock(&connector->dev->mode_config.mutex); 8545 8546 encoder = amdgpu_dm_connector_to_encoder(connector); 8547 if (!encoder) 8548 return; 8549 8550 amdgpu_encoder = to_amdgpu_encoder(encoder); 8551 8552 native_mode = &amdgpu_encoder->native_mode; 8553 if (native_mode->hdisplay == 0 || native_mode->vdisplay == 0) 8554 return; 8555 8556 drm_connector_set_panel_orientation_with_quirk(connector, 8557 DRM_MODE_PANEL_ORIENTATION_UNKNOWN, 8558 native_mode->hdisplay, 8559 native_mode->vdisplay); 8560 } 8561 8562 static void amdgpu_dm_connector_ddc_get_modes(struct drm_connector *connector, 8563 const struct drm_edid *drm_edid) 8564 { 8565 struct amdgpu_dm_connector *amdgpu_dm_connector = 8566 to_amdgpu_dm_connector(connector); 8567 8568 if (drm_edid) { 8569 /* empty probed_modes */ 8570 INIT_LIST_HEAD(&connector->probed_modes); 8571 amdgpu_dm_connector->num_modes = 8572 drm_edid_connector_add_modes(connector); 8573 8574 /* sorting the probed modes before calling function 8575 * amdgpu_dm_get_native_mode() since EDID can have 8576 * more than one preferred mode. The modes that are 8577 * later in the probed mode list could be of higher 8578 * and preferred resolution. For example, 3840x2160 8579 * resolution in base EDID preferred timing and 4096x2160 8580 * preferred resolution in DID extension block later. 8581 */ 8582 drm_mode_sort(&connector->probed_modes); 8583 amdgpu_dm_get_native_mode(connector); 8584 8585 /* Freesync capabilities are reset by calling 8586 * drm_edid_connector_add_modes() and need to be 8587 * restored here. 8588 */ 8589 amdgpu_dm_update_freesync_caps(connector, drm_edid); 8590 } else { 8591 amdgpu_dm_connector->num_modes = 0; 8592 } 8593 } 8594 8595 static bool is_duplicate_mode(struct amdgpu_dm_connector *aconnector, 8596 struct drm_display_mode *mode) 8597 { 8598 struct drm_display_mode *m; 8599 8600 list_for_each_entry(m, &aconnector->base.probed_modes, head) { 8601 if (drm_mode_equal(m, mode)) 8602 return true; 8603 } 8604 8605 return false; 8606 } 8607 8608 static uint add_fs_modes(struct amdgpu_dm_connector *aconnector) 8609 { 8610 const struct drm_display_mode *m; 8611 struct drm_display_mode *new_mode; 8612 uint i; 8613 u32 new_modes_count = 0; 8614 8615 /* Standard FPS values 8616 * 8617 * 23.976 - TV/NTSC 8618 * 24 - Cinema 8619 * 25 - TV/PAL 8620 * 29.97 - TV/NTSC 8621 * 30 - TV/NTSC 8622 * 48 - Cinema HFR 8623 * 50 - TV/PAL 8624 * 60 - Commonly used 8625 * 48,72,96,120 - Multiples of 24 8626 */ 8627 static const u32 common_rates[] = { 8628 23976, 24000, 25000, 29970, 30000, 8629 48000, 50000, 60000, 72000, 96000, 120000 8630 }; 8631 8632 /* 8633 * Find mode with highest refresh rate with the same resolution 8634 * as the preferred mode. Some monitors report a preferred mode 8635 * with lower resolution than the highest refresh rate supported. 8636 */ 8637 8638 m = get_highest_refresh_rate_mode(aconnector, true); 8639 if (!m) 8640 return 0; 8641 8642 for (i = 0; i < ARRAY_SIZE(common_rates); i++) { 8643 u64 target_vtotal, target_vtotal_diff; 8644 u64 num, den; 8645 8646 if (drm_mode_vrefresh(m) * 1000 < common_rates[i]) 8647 continue; 8648 8649 if (common_rates[i] < aconnector->min_vfreq * 1000 || 8650 common_rates[i] > aconnector->max_vfreq * 1000) 8651 continue; 8652 8653 num = (unsigned long long)m->clock * 1000 * 1000; 8654 den = common_rates[i] * (unsigned long long)m->htotal; 8655 target_vtotal = div_u64(num, den); 8656 target_vtotal_diff = target_vtotal - m->vtotal; 8657 8658 /* Check for illegal modes */ 8659 if (m->vsync_start + target_vtotal_diff < m->vdisplay || 8660 m->vsync_end + target_vtotal_diff < m->vsync_start || 8661 m->vtotal + target_vtotal_diff < m->vsync_end) 8662 continue; 8663 8664 new_mode = drm_mode_duplicate(aconnector->base.dev, m); 8665 if (!new_mode) 8666 goto out; 8667 8668 new_mode->vtotal += (u16)target_vtotal_diff; 8669 new_mode->vsync_start += (u16)target_vtotal_diff; 8670 new_mode->vsync_end += (u16)target_vtotal_diff; 8671 new_mode->type &= ~DRM_MODE_TYPE_PREFERRED; 8672 new_mode->type |= DRM_MODE_TYPE_DRIVER; 8673 8674 if (!is_duplicate_mode(aconnector, new_mode)) { 8675 drm_mode_probed_add(&aconnector->base, new_mode); 8676 new_modes_count += 1; 8677 } else 8678 drm_mode_destroy(aconnector->base.dev, new_mode); 8679 } 8680 out: 8681 return new_modes_count; 8682 } 8683 8684 static void amdgpu_dm_connector_add_freesync_modes(struct drm_connector *connector, 8685 const struct drm_edid *drm_edid) 8686 { 8687 struct amdgpu_dm_connector *amdgpu_dm_connector = 8688 to_amdgpu_dm_connector(connector); 8689 8690 if (!(amdgpu_freesync_vid_mode && drm_edid)) 8691 return; 8692 8693 if (!amdgpu_dm_connector->dc_sink || amdgpu_dm_connector->dc_sink->edid_caps.analog || 8694 !dc_supports_vrr(amdgpu_dm_connector->dc_sink->ctx->dce_version)) 8695 return; 8696 8697 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 8698 amdgpu_dm_connector->num_modes += 8699 add_fs_modes(amdgpu_dm_connector); 8700 } 8701 8702 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector) 8703 { 8704 struct amdgpu_dm_connector *amdgpu_dm_connector = 8705 to_amdgpu_dm_connector(connector); 8706 struct drm_encoder *encoder; 8707 const struct drm_edid *drm_edid = amdgpu_dm_connector->drm_edid; 8708 struct dc_link_settings *verified_link_cap = 8709 &amdgpu_dm_connector->dc_link->verified_link_cap; 8710 const struct dc *dc = amdgpu_dm_connector->dc_link->dc; 8711 8712 encoder = amdgpu_dm_connector_to_encoder(connector); 8713 8714 if (!drm_edid) { 8715 amdgpu_dm_connector->num_modes = 8716 drm_add_modes_noedid(connector, 640, 480); 8717 if (dc->link_srv->dp_get_encoding_format(verified_link_cap) == DP_128b_132b_ENCODING) 8718 amdgpu_dm_connector->num_modes += 8719 drm_add_modes_noedid(connector, 1920, 1080); 8720 8721 if (amdgpu_dm_connector->dc_sink && amdgpu_dm_connector->dc_sink->edid_caps.analog) { 8722 /* Analog monitor connected by DAC load detection. 8723 * Add common modes. It will be up to the user to select one that works. 8724 */ 8725 for (int i = 0; i < ARRAY_SIZE(common_modes); i++) 8726 amdgpu_dm_connector->num_modes += drm_add_modes_noedid( 8727 connector, common_modes[i].w, common_modes[i].h); 8728 } 8729 } else { 8730 amdgpu_dm_connector_ddc_get_modes(connector, drm_edid); 8731 if (encoder) 8732 amdgpu_dm_connector_add_common_modes(encoder, connector); 8733 amdgpu_dm_connector_add_freesync_modes(connector, drm_edid); 8734 } 8735 amdgpu_dm_fbc_init(connector); 8736 8737 return amdgpu_dm_connector->num_modes; 8738 } 8739 8740 static const u32 supported_colorspaces = 8741 BIT(DRM_MODE_COLORIMETRY_BT709_YCC) | 8742 BIT(DRM_MODE_COLORIMETRY_OPRGB) | 8743 BIT(DRM_MODE_COLORIMETRY_BT2020_RGB) | 8744 BIT(DRM_MODE_COLORIMETRY_BT2020_YCC); 8745 8746 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm, 8747 struct amdgpu_dm_connector *aconnector, 8748 int connector_type, 8749 struct dc_link *link, 8750 int link_index) 8751 { 8752 struct amdgpu_device *adev = drm_to_adev(dm->ddev); 8753 8754 /* 8755 * Some of the properties below require access to state, like bpc. 8756 * Allocate some default initial connector state with our reset helper. 8757 */ 8758 if (aconnector->base.funcs->reset) 8759 aconnector->base.funcs->reset(&aconnector->base); 8760 8761 aconnector->connector_id = link_index; 8762 aconnector->bl_idx = -1; 8763 aconnector->dc_link = link; 8764 aconnector->base.interlace_allowed = false; 8765 aconnector->base.doublescan_allowed = false; 8766 aconnector->base.stereo_allowed = false; 8767 aconnector->base.dpms = DRM_MODE_DPMS_OFF; 8768 aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */ 8769 aconnector->audio_inst = -1; 8770 aconnector->pack_sdp_v1_3 = false; 8771 aconnector->as_type = ADAPTIVE_SYNC_TYPE_NONE; 8772 memset(&aconnector->vsdb_info, 0, sizeof(aconnector->vsdb_info)); 8773 mutex_init(&aconnector->hpd_lock); 8774 mutex_init(&aconnector->handle_mst_msg_ready); 8775 8776 /* 8777 * configure support HPD hot plug connector_>polled default value is 0 8778 * which means HPD hot plug not supported 8779 */ 8780 switch (connector_type) { 8781 case DRM_MODE_CONNECTOR_HDMIA: 8782 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD; 8783 aconnector->base.ycbcr_420_allowed = 8784 link->link_enc->features.hdmi_ycbcr420_supported ? true : false; 8785 break; 8786 case DRM_MODE_CONNECTOR_DisplayPort: 8787 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD; 8788 link->link_enc = link_enc_cfg_get_link_enc(link); 8789 ASSERT(link->link_enc); 8790 if (link->link_enc) 8791 aconnector->base.ycbcr_420_allowed = 8792 link->link_enc->features.dp_ycbcr420_supported ? true : false; 8793 break; 8794 case DRM_MODE_CONNECTOR_DVID: 8795 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD; 8796 break; 8797 case DRM_MODE_CONNECTOR_DVII: 8798 case DRM_MODE_CONNECTOR_VGA: 8799 aconnector->base.polled = 8800 DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT; 8801 break; 8802 default: 8803 break; 8804 } 8805 8806 drm_object_attach_property(&aconnector->base.base, 8807 dm->ddev->mode_config.scaling_mode_property, 8808 DRM_MODE_SCALE_NONE); 8809 8810 if (connector_type == DRM_MODE_CONNECTOR_HDMIA 8811 || (connector_type == DRM_MODE_CONNECTOR_DisplayPort && !aconnector->mst_root)) 8812 drm_connector_attach_broadcast_rgb_property(&aconnector->base); 8813 8814 drm_object_attach_property(&aconnector->base.base, 8815 adev->mode_info.underscan_property, 8816 UNDERSCAN_OFF); 8817 drm_object_attach_property(&aconnector->base.base, 8818 adev->mode_info.underscan_hborder_property, 8819 0); 8820 drm_object_attach_property(&aconnector->base.base, 8821 adev->mode_info.underscan_vborder_property, 8822 0); 8823 8824 if (!aconnector->mst_root) 8825 drm_connector_attach_max_bpc_property(&aconnector->base, 8, 16); 8826 8827 aconnector->base.state->max_bpc = 16; 8828 aconnector->base.state->max_requested_bpc = aconnector->base.state->max_bpc; 8829 8830 if (connector_type == DRM_MODE_CONNECTOR_HDMIA) { 8831 /* Content Type is currently only implemented for HDMI. */ 8832 drm_connector_attach_content_type_property(&aconnector->base); 8833 } 8834 8835 if (connector_type == DRM_MODE_CONNECTOR_HDMIA) { 8836 if (!drm_mode_create_hdmi_colorspace_property(&aconnector->base, supported_colorspaces)) 8837 drm_connector_attach_colorspace_property(&aconnector->base); 8838 } else if ((connector_type == DRM_MODE_CONNECTOR_DisplayPort && !aconnector->mst_root) || 8839 connector_type == DRM_MODE_CONNECTOR_eDP) { 8840 if (!drm_mode_create_dp_colorspace_property(&aconnector->base, supported_colorspaces)) 8841 drm_connector_attach_colorspace_property(&aconnector->base); 8842 } 8843 8844 if (connector_type == DRM_MODE_CONNECTOR_HDMIA || 8845 connector_type == DRM_MODE_CONNECTOR_DisplayPort || 8846 connector_type == DRM_MODE_CONNECTOR_eDP) { 8847 drm_connector_attach_hdr_output_metadata_property(&aconnector->base); 8848 8849 if (!aconnector->mst_root) 8850 drm_connector_attach_vrr_capable_property(&aconnector->base); 8851 8852 if (adev->dm.hdcp_workqueue) 8853 drm_connector_attach_content_protection_property(&aconnector->base, true); 8854 } 8855 8856 if (connector_type == DRM_MODE_CONNECTOR_eDP) { 8857 struct drm_privacy_screen *privacy_screen; 8858 8859 privacy_screen = drm_privacy_screen_get(adev_to_drm(adev)->dev, NULL); 8860 if (!IS_ERR(privacy_screen)) { 8861 drm_connector_attach_privacy_screen_provider(&aconnector->base, 8862 privacy_screen); 8863 } else if (PTR_ERR(privacy_screen) != -ENODEV) { 8864 drm_warn(adev_to_drm(adev), "Error getting privacy-screen\n"); 8865 } 8866 } 8867 } 8868 8869 static int amdgpu_dm_i2c_xfer(struct i2c_adapter *i2c_adap, 8870 struct i2c_msg *msgs, int num) 8871 { 8872 struct amdgpu_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap); 8873 struct ddc_service *ddc_service = i2c->ddc_service; 8874 struct i2c_command cmd; 8875 int i; 8876 int result = -EIO; 8877 8878 if (!ddc_service->ddc_pin) 8879 return result; 8880 8881 cmd.payloads = kcalloc(num, sizeof(struct i2c_payload), GFP_KERNEL); 8882 8883 if (!cmd.payloads) 8884 return result; 8885 8886 cmd.number_of_payloads = num; 8887 cmd.engine = I2C_COMMAND_ENGINE_DEFAULT; 8888 cmd.speed = 100; 8889 8890 for (i = 0; i < num; i++) { 8891 cmd.payloads[i].write = !(msgs[i].flags & I2C_M_RD); 8892 cmd.payloads[i].address = msgs[i].addr; 8893 cmd.payloads[i].length = msgs[i].len; 8894 cmd.payloads[i].data = msgs[i].buf; 8895 } 8896 8897 if (i2c->oem) { 8898 if (dc_submit_i2c_oem( 8899 ddc_service->ctx->dc, 8900 &cmd)) 8901 result = num; 8902 } else { 8903 if (dc_submit_i2c( 8904 ddc_service->ctx->dc, 8905 ddc_service->link->link_index, 8906 &cmd)) 8907 result = num; 8908 } 8909 8910 kfree(cmd.payloads); 8911 return result; 8912 } 8913 8914 static u32 amdgpu_dm_i2c_func(struct i2c_adapter *adap) 8915 { 8916 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; 8917 } 8918 8919 static const struct i2c_algorithm amdgpu_dm_i2c_algo = { 8920 .master_xfer = amdgpu_dm_i2c_xfer, 8921 .functionality = amdgpu_dm_i2c_func, 8922 }; 8923 8924 static struct amdgpu_i2c_adapter * 8925 create_i2c(struct ddc_service *ddc_service, bool oem) 8926 { 8927 struct amdgpu_device *adev = ddc_service->ctx->driver_context; 8928 struct amdgpu_i2c_adapter *i2c; 8929 8930 i2c = kzalloc(sizeof(struct amdgpu_i2c_adapter), GFP_KERNEL); 8931 if (!i2c) 8932 return NULL; 8933 i2c->base.owner = THIS_MODULE; 8934 i2c->base.dev.parent = &adev->pdev->dev; 8935 i2c->base.algo = &amdgpu_dm_i2c_algo; 8936 if (oem) 8937 snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c OEM bus"); 8938 else 8939 snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c hw bus %d", 8940 ddc_service->link->link_index); 8941 i2c_set_adapdata(&i2c->base, i2c); 8942 i2c->ddc_service = ddc_service; 8943 i2c->oem = oem; 8944 8945 return i2c; 8946 } 8947 8948 int amdgpu_dm_initialize_hdmi_connector(struct amdgpu_dm_connector *aconnector) 8949 { 8950 struct cec_connector_info conn_info; 8951 struct drm_device *ddev = aconnector->base.dev; 8952 struct device *hdmi_dev = ddev->dev; 8953 8954 if (amdgpu_dc_debug_mask & DC_DISABLE_HDMI_CEC) { 8955 drm_info(ddev, "HDMI-CEC feature masked\n"); 8956 return -EINVAL; 8957 } 8958 8959 cec_fill_conn_info_from_drm(&conn_info, &aconnector->base); 8960 aconnector->notifier = 8961 cec_notifier_conn_register(hdmi_dev, NULL, &conn_info); 8962 if (!aconnector->notifier) { 8963 drm_err(ddev, "Failed to create cec notifier\n"); 8964 return -ENOMEM; 8965 } 8966 8967 return 0; 8968 } 8969 8970 /* 8971 * Note: this function assumes that dc_link_detect() was called for the 8972 * dc_link which will be represented by this aconnector. 8973 */ 8974 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm, 8975 struct amdgpu_dm_connector *aconnector, 8976 u32 link_index, 8977 struct amdgpu_encoder *aencoder) 8978 { 8979 int res = 0; 8980 int connector_type; 8981 struct dc *dc = dm->dc; 8982 struct dc_link *link = dc_get_link_at_index(dc, link_index); 8983 struct amdgpu_i2c_adapter *i2c; 8984 8985 /* Not needed for writeback connector */ 8986 link->priv = aconnector; 8987 8988 8989 i2c = create_i2c(link->ddc, false); 8990 if (!i2c) { 8991 drm_err(adev_to_drm(dm->adev), "Failed to create i2c adapter data\n"); 8992 return -ENOMEM; 8993 } 8994 8995 aconnector->i2c = i2c; 8996 res = devm_i2c_add_adapter(dm->adev->dev, &i2c->base); 8997 8998 if (res) { 8999 drm_err(adev_to_drm(dm->adev), "Failed to register hw i2c %d\n", link->link_index); 9000 goto out_free; 9001 } 9002 9003 connector_type = to_drm_connector_type(link->connector_signal, link->link_id.id); 9004 9005 res = drm_connector_init_with_ddc( 9006 dm->ddev, 9007 &aconnector->base, 9008 &amdgpu_dm_connector_funcs, 9009 connector_type, 9010 &i2c->base); 9011 9012 if (res) { 9013 drm_err(adev_to_drm(dm->adev), "connector_init failed\n"); 9014 aconnector->connector_id = -1; 9015 goto out_free; 9016 } 9017 9018 drm_connector_helper_add( 9019 &aconnector->base, 9020 &amdgpu_dm_connector_helper_funcs); 9021 9022 amdgpu_dm_connector_init_helper( 9023 dm, 9024 aconnector, 9025 connector_type, 9026 link, 9027 link_index); 9028 9029 drm_connector_attach_encoder( 9030 &aconnector->base, &aencoder->base); 9031 9032 if (connector_type == DRM_MODE_CONNECTOR_HDMIA || 9033 connector_type == DRM_MODE_CONNECTOR_HDMIB) 9034 amdgpu_dm_initialize_hdmi_connector(aconnector); 9035 9036 if (connector_type == DRM_MODE_CONNECTOR_DisplayPort 9037 || connector_type == DRM_MODE_CONNECTOR_eDP) 9038 amdgpu_dm_initialize_dp_connector(dm, aconnector, link->link_index); 9039 9040 out_free: 9041 if (res) { 9042 kfree(i2c); 9043 aconnector->i2c = NULL; 9044 } 9045 return res; 9046 } 9047 9048 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev) 9049 { 9050 switch (adev->mode_info.num_crtc) { 9051 case 1: 9052 return 0x1; 9053 case 2: 9054 return 0x3; 9055 case 3: 9056 return 0x7; 9057 case 4: 9058 return 0xf; 9059 case 5: 9060 return 0x1f; 9061 case 6: 9062 default: 9063 return 0x3f; 9064 } 9065 } 9066 9067 static int amdgpu_dm_encoder_init(struct drm_device *dev, 9068 struct amdgpu_encoder *aencoder, 9069 uint32_t link_index) 9070 { 9071 struct amdgpu_device *adev = drm_to_adev(dev); 9072 9073 int res = drm_encoder_init(dev, 9074 &aencoder->base, 9075 &amdgpu_dm_encoder_funcs, 9076 DRM_MODE_ENCODER_TMDS, 9077 NULL); 9078 9079 aencoder->base.possible_crtcs = amdgpu_dm_get_encoder_crtc_mask(adev); 9080 9081 if (!res) 9082 aencoder->encoder_id = link_index; 9083 else 9084 aencoder->encoder_id = -1; 9085 9086 drm_encoder_helper_add(&aencoder->base, &amdgpu_dm_encoder_helper_funcs); 9087 9088 return res; 9089 } 9090 9091 static void manage_dm_interrupts(struct amdgpu_device *adev, 9092 struct amdgpu_crtc *acrtc, 9093 struct dm_crtc_state *acrtc_state) 9094 { /* 9095 * We cannot be sure that the frontend index maps to the same 9096 * backend index - some even map to more than one. 9097 * So we have to go through the CRTC to find the right IRQ. 9098 */ 9099 int irq_type = amdgpu_display_crtc_idx_to_irq_type( 9100 adev, 9101 acrtc->crtc_id); 9102 struct drm_device *dev = adev_to_drm(adev); 9103 9104 struct drm_vblank_crtc_config config = {0}; 9105 struct dc_crtc_timing *timing; 9106 int offdelay; 9107 9108 if (acrtc_state) { 9109 timing = &acrtc_state->stream->timing; 9110 9111 /* 9112 * Depending on when the HW latching event of double-buffered 9113 * registers happen relative to the PSR SDP deadline, and how 9114 * bad the Panel clock has drifted since the last ALPM off 9115 * event, there can be up to 3 frames of delay between sending 9116 * the PSR exit cmd to DMUB fw, and when the panel starts 9117 * displaying live frames. 9118 * 9119 * We can set: 9120 * 9121 * 20/100 * offdelay_ms = 3_frames_ms 9122 * => offdelay_ms = 5 * 3_frames_ms 9123 * 9124 * This ensures that `3_frames_ms` will only be experienced as a 9125 * 20% delay on top how long the display has been static, and 9126 * thus make the delay less perceivable. 9127 */ 9128 if (acrtc_state->stream->link->psr_settings.psr_version < 9129 DC_PSR_VERSION_UNSUPPORTED) { 9130 offdelay = DIV64_U64_ROUND_UP((u64)5 * 3 * 10 * 9131 timing->v_total * 9132 timing->h_total, 9133 timing->pix_clk_100hz); 9134 config.offdelay_ms = offdelay ?: 30; 9135 } else if (amdgpu_ip_version(adev, DCE_HWIP, 0) < 9136 IP_VERSION(3, 5, 0) || 9137 !(adev->flags & AMD_IS_APU)) { 9138 /* 9139 * Older HW and DGPU have issues with instant off; 9140 * use a 2 frame offdelay. 9141 */ 9142 offdelay = DIV64_U64_ROUND_UP((u64)20 * 9143 timing->v_total * 9144 timing->h_total, 9145 timing->pix_clk_100hz); 9146 9147 config.offdelay_ms = offdelay ?: 30; 9148 } else { 9149 /* offdelay_ms = 0 will never disable vblank */ 9150 config.offdelay_ms = 1; 9151 config.disable_immediate = true; 9152 } 9153 9154 drm_crtc_vblank_on_config(&acrtc->base, 9155 &config); 9156 /* Allow RX6xxx, RX7700, RX7800 GPUs to call amdgpu_irq_get.*/ 9157 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 9158 case IP_VERSION(3, 0, 0): 9159 case IP_VERSION(3, 0, 2): 9160 case IP_VERSION(3, 0, 3): 9161 case IP_VERSION(3, 2, 0): 9162 if (amdgpu_irq_get(adev, &adev->pageflip_irq, irq_type)) 9163 drm_err(dev, "DM_IRQ: Cannot get pageflip irq!\n"); 9164 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 9165 if (amdgpu_irq_get(adev, &adev->vline0_irq, irq_type)) 9166 drm_err(dev, "DM_IRQ: Cannot get vline0 irq!\n"); 9167 #endif 9168 } 9169 9170 } else { 9171 /* Allow RX6xxx, RX7700, RX7800 GPUs to call amdgpu_irq_put.*/ 9172 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) { 9173 case IP_VERSION(3, 0, 0): 9174 case IP_VERSION(3, 0, 2): 9175 case IP_VERSION(3, 0, 3): 9176 case IP_VERSION(3, 2, 0): 9177 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 9178 if (amdgpu_irq_put(adev, &adev->vline0_irq, irq_type)) 9179 drm_err(dev, "DM_IRQ: Cannot put vline0 irq!\n"); 9180 #endif 9181 if (amdgpu_irq_put(adev, &adev->pageflip_irq, irq_type)) 9182 drm_err(dev, "DM_IRQ: Cannot put pageflip irq!\n"); 9183 } 9184 9185 drm_crtc_vblank_off(&acrtc->base); 9186 } 9187 } 9188 9189 static void dm_update_pflip_irq_state(struct amdgpu_device *adev, 9190 struct amdgpu_crtc *acrtc) 9191 { 9192 int irq_type = 9193 amdgpu_display_crtc_idx_to_irq_type(adev, acrtc->crtc_id); 9194 9195 /** 9196 * This reads the current state for the IRQ and force reapplies 9197 * the setting to hardware. 9198 */ 9199 amdgpu_irq_update(adev, &adev->pageflip_irq, irq_type); 9200 } 9201 9202 static bool 9203 is_scaling_state_different(const struct dm_connector_state *dm_state, 9204 const struct dm_connector_state *old_dm_state) 9205 { 9206 if (dm_state->scaling != old_dm_state->scaling) 9207 return true; 9208 if (!dm_state->underscan_enable && old_dm_state->underscan_enable) { 9209 if (old_dm_state->underscan_hborder != 0 && old_dm_state->underscan_vborder != 0) 9210 return true; 9211 } else if (dm_state->underscan_enable && !old_dm_state->underscan_enable) { 9212 if (dm_state->underscan_hborder != 0 && dm_state->underscan_vborder != 0) 9213 return true; 9214 } else if (dm_state->underscan_hborder != old_dm_state->underscan_hborder || 9215 dm_state->underscan_vborder != old_dm_state->underscan_vborder) 9216 return true; 9217 return false; 9218 } 9219 9220 static bool is_content_protection_different(struct drm_crtc_state *new_crtc_state, 9221 struct drm_crtc_state *old_crtc_state, 9222 struct drm_connector_state *new_conn_state, 9223 struct drm_connector_state *old_conn_state, 9224 const struct drm_connector *connector, 9225 struct hdcp_workqueue *hdcp_w) 9226 { 9227 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector); 9228 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state); 9229 9230 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n", 9231 connector->index, connector->status, connector->dpms); 9232 pr_debug("[HDCP_DM] state protection old: %x new: %x\n", 9233 old_conn_state->content_protection, new_conn_state->content_protection); 9234 9235 if (old_crtc_state) 9236 pr_debug("[HDCP_DM] old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 9237 old_crtc_state->enable, 9238 old_crtc_state->active, 9239 old_crtc_state->mode_changed, 9240 old_crtc_state->active_changed, 9241 old_crtc_state->connectors_changed); 9242 9243 if (new_crtc_state) 9244 pr_debug("[HDCP_DM] NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 9245 new_crtc_state->enable, 9246 new_crtc_state->active, 9247 new_crtc_state->mode_changed, 9248 new_crtc_state->active_changed, 9249 new_crtc_state->connectors_changed); 9250 9251 /* hdcp content type change */ 9252 if (old_conn_state->hdcp_content_type != new_conn_state->hdcp_content_type && 9253 new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) { 9254 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 9255 pr_debug("[HDCP_DM] Type0/1 change %s :true\n", __func__); 9256 return true; 9257 } 9258 9259 /* CP is being re enabled, ignore this */ 9260 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED && 9261 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) { 9262 if (new_crtc_state && new_crtc_state->mode_changed) { 9263 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 9264 pr_debug("[HDCP_DM] ENABLED->DESIRED & mode_changed %s :true\n", __func__); 9265 return true; 9266 } 9267 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_ENABLED; 9268 pr_debug("[HDCP_DM] ENABLED -> DESIRED %s :false\n", __func__); 9269 return false; 9270 } 9271 9272 /* S3 resume case, since old state will always be 0 (UNDESIRED) and the restored state will be ENABLED 9273 * 9274 * Handles: UNDESIRED -> ENABLED 9275 */ 9276 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_UNDESIRED && 9277 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) 9278 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 9279 9280 /* Stream removed and re-enabled 9281 * 9282 * Can sometimes overlap with the HPD case, 9283 * thus set update_hdcp to false to avoid 9284 * setting HDCP multiple times. 9285 * 9286 * Handles: DESIRED -> DESIRED (Special case) 9287 */ 9288 if (!(old_conn_state->crtc && old_conn_state->crtc->enabled) && 9289 new_conn_state->crtc && new_conn_state->crtc->enabled && 9290 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) { 9291 dm_con_state->update_hdcp = false; 9292 pr_debug("[HDCP_DM] DESIRED->DESIRED (Stream removed and re-enabled) %s :true\n", 9293 __func__); 9294 return true; 9295 } 9296 9297 /* Hot-plug, headless s3, dpms 9298 * 9299 * Only start HDCP if the display is connected/enabled. 9300 * update_hdcp flag will be set to false until the next 9301 * HPD comes in. 9302 * 9303 * Handles: DESIRED -> DESIRED (Special case) 9304 */ 9305 if (dm_con_state->update_hdcp && 9306 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED && 9307 connector->dpms == DRM_MODE_DPMS_ON && aconnector->dc_sink != NULL) { 9308 dm_con_state->update_hdcp = false; 9309 pr_debug("[HDCP_DM] DESIRED->DESIRED (Hot-plug, headless s3, dpms) %s :true\n", 9310 __func__); 9311 return true; 9312 } 9313 9314 if (old_conn_state->content_protection == new_conn_state->content_protection) { 9315 if (new_conn_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) { 9316 if (new_crtc_state && new_crtc_state->mode_changed) { 9317 pr_debug("[HDCP_DM] DESIRED->DESIRED or ENABLE->ENABLE mode_change %s :true\n", 9318 __func__); 9319 return true; 9320 } 9321 pr_debug("[HDCP_DM] DESIRED->DESIRED & ENABLE->ENABLE %s :false\n", 9322 __func__); 9323 return false; 9324 } 9325 9326 pr_debug("[HDCP_DM] UNDESIRED->UNDESIRED %s :false\n", __func__); 9327 return false; 9328 } 9329 9330 if (new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_ENABLED) { 9331 pr_debug("[HDCP_DM] UNDESIRED->DESIRED or DESIRED->UNDESIRED or ENABLED->UNDESIRED %s :true\n", 9332 __func__); 9333 return true; 9334 } 9335 9336 pr_debug("[HDCP_DM] DESIRED->ENABLED %s :false\n", __func__); 9337 return false; 9338 } 9339 9340 static void remove_stream(struct amdgpu_device *adev, 9341 struct amdgpu_crtc *acrtc, 9342 struct dc_stream_state *stream) 9343 { 9344 /* this is the update mode case */ 9345 9346 acrtc->otg_inst = -1; 9347 acrtc->enabled = false; 9348 } 9349 9350 static void prepare_flip_isr(struct amdgpu_crtc *acrtc) 9351 { 9352 9353 assert_spin_locked(&acrtc->base.dev->event_lock); 9354 WARN_ON(acrtc->event); 9355 9356 acrtc->event = acrtc->base.state->event; 9357 9358 /* Set the flip status */ 9359 acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED; 9360 9361 /* Mark this event as consumed */ 9362 acrtc->base.state->event = NULL; 9363 9364 drm_dbg_state(acrtc->base.dev, 9365 "crtc:%d, pflip_stat:AMDGPU_FLIP_SUBMITTED\n", 9366 acrtc->crtc_id); 9367 } 9368 9369 static void update_freesync_state_on_stream( 9370 struct amdgpu_display_manager *dm, 9371 struct dm_crtc_state *new_crtc_state, 9372 struct dc_stream_state *new_stream, 9373 struct dc_plane_state *surface, 9374 u32 flip_timestamp_in_us) 9375 { 9376 struct mod_vrr_params vrr_params; 9377 struct dc_info_packet vrr_infopacket = {0}; 9378 struct amdgpu_device *adev = dm->adev; 9379 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc); 9380 unsigned long flags; 9381 bool pack_sdp_v1_3 = false; 9382 struct amdgpu_dm_connector *aconn; 9383 enum vrr_packet_type packet_type = PACKET_TYPE_VRR; 9384 9385 if (!new_stream) 9386 return; 9387 9388 /* 9389 * TODO: Determine why min/max totals and vrefresh can be 0 here. 9390 * For now it's sufficient to just guard against these conditions. 9391 */ 9392 9393 if (!new_stream->timing.h_total || !new_stream->timing.v_total) 9394 return; 9395 9396 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 9397 vrr_params = acrtc->dm_irq_params.vrr_params; 9398 9399 if (surface) { 9400 mod_freesync_handle_preflip( 9401 dm->freesync_module, 9402 surface, 9403 new_stream, 9404 flip_timestamp_in_us, 9405 &vrr_params); 9406 9407 if (adev->family < AMDGPU_FAMILY_AI && 9408 amdgpu_dm_crtc_vrr_active(new_crtc_state)) { 9409 mod_freesync_handle_v_update(dm->freesync_module, 9410 new_stream, &vrr_params); 9411 9412 /* Need to call this before the frame ends. */ 9413 dc_stream_adjust_vmin_vmax(dm->dc, 9414 new_crtc_state->stream, 9415 &vrr_params.adjust); 9416 } 9417 } 9418 9419 aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context; 9420 9421 if (aconn && (aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST || aconn->vsdb_info.replay_mode)) { 9422 pack_sdp_v1_3 = aconn->pack_sdp_v1_3; 9423 9424 if (aconn->vsdb_info.amd_vsdb_version == 1) 9425 packet_type = PACKET_TYPE_FS_V1; 9426 else if (aconn->vsdb_info.amd_vsdb_version == 2) 9427 packet_type = PACKET_TYPE_FS_V2; 9428 else if (aconn->vsdb_info.amd_vsdb_version == 3) 9429 packet_type = PACKET_TYPE_FS_V3; 9430 9431 mod_build_adaptive_sync_infopacket(new_stream, aconn->as_type, NULL, 9432 &new_stream->adaptive_sync_infopacket); 9433 } 9434 9435 mod_freesync_build_vrr_infopacket( 9436 dm->freesync_module, 9437 new_stream, 9438 &vrr_params, 9439 packet_type, 9440 TRANSFER_FUNC_UNKNOWN, 9441 &vrr_infopacket, 9442 pack_sdp_v1_3); 9443 9444 new_crtc_state->freesync_vrr_info_changed |= 9445 (memcmp(&new_crtc_state->vrr_infopacket, 9446 &vrr_infopacket, 9447 sizeof(vrr_infopacket)) != 0); 9448 9449 acrtc->dm_irq_params.vrr_params = vrr_params; 9450 new_crtc_state->vrr_infopacket = vrr_infopacket; 9451 9452 new_stream->vrr_infopacket = vrr_infopacket; 9453 new_stream->allow_freesync = mod_freesync_get_freesync_enabled(&vrr_params); 9454 9455 if (new_crtc_state->freesync_vrr_info_changed) 9456 DRM_DEBUG_KMS("VRR packet update: crtc=%u enabled=%d state=%d", 9457 new_crtc_state->base.crtc->base.id, 9458 (int)new_crtc_state->base.vrr_enabled, 9459 (int)vrr_params.state); 9460 9461 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 9462 } 9463 9464 static void update_stream_irq_parameters( 9465 struct amdgpu_display_manager *dm, 9466 struct dm_crtc_state *new_crtc_state) 9467 { 9468 struct dc_stream_state *new_stream = new_crtc_state->stream; 9469 struct mod_vrr_params vrr_params; 9470 struct mod_freesync_config config = new_crtc_state->freesync_config; 9471 struct amdgpu_device *adev = dm->adev; 9472 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc); 9473 unsigned long flags; 9474 9475 if (!new_stream) 9476 return; 9477 9478 /* 9479 * TODO: Determine why min/max totals and vrefresh can be 0 here. 9480 * For now it's sufficient to just guard against these conditions. 9481 */ 9482 if (!new_stream->timing.h_total || !new_stream->timing.v_total) 9483 return; 9484 9485 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 9486 vrr_params = acrtc->dm_irq_params.vrr_params; 9487 9488 if (new_crtc_state->vrr_supported && 9489 config.min_refresh_in_uhz && 9490 config.max_refresh_in_uhz) { 9491 /* 9492 * if freesync compatible mode was set, config.state will be set 9493 * in atomic check 9494 */ 9495 if (config.state == VRR_STATE_ACTIVE_FIXED && config.fixed_refresh_in_uhz && 9496 (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) || 9497 new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)) { 9498 vrr_params.max_refresh_in_uhz = config.max_refresh_in_uhz; 9499 vrr_params.min_refresh_in_uhz = config.min_refresh_in_uhz; 9500 vrr_params.fixed_refresh_in_uhz = config.fixed_refresh_in_uhz; 9501 vrr_params.state = VRR_STATE_ACTIVE_FIXED; 9502 } else { 9503 config.state = new_crtc_state->base.vrr_enabled ? 9504 VRR_STATE_ACTIVE_VARIABLE : 9505 VRR_STATE_INACTIVE; 9506 } 9507 } else { 9508 config.state = VRR_STATE_UNSUPPORTED; 9509 } 9510 9511 mod_freesync_build_vrr_params(dm->freesync_module, 9512 new_stream, 9513 &config, &vrr_params); 9514 9515 new_crtc_state->freesync_config = config; 9516 /* Copy state for access from DM IRQ handler */ 9517 acrtc->dm_irq_params.freesync_config = config; 9518 acrtc->dm_irq_params.active_planes = new_crtc_state->active_planes; 9519 acrtc->dm_irq_params.vrr_params = vrr_params; 9520 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 9521 } 9522 9523 static void amdgpu_dm_handle_vrr_transition(struct dm_crtc_state *old_state, 9524 struct dm_crtc_state *new_state) 9525 { 9526 bool old_vrr_active = amdgpu_dm_crtc_vrr_active(old_state); 9527 bool new_vrr_active = amdgpu_dm_crtc_vrr_active(new_state); 9528 9529 if (!old_vrr_active && new_vrr_active) { 9530 /* Transition VRR inactive -> active: 9531 * While VRR is active, we must not disable vblank irq, as a 9532 * reenable after disable would compute bogus vblank/pflip 9533 * timestamps if it likely happened inside display front-porch. 9534 * 9535 * We also need vupdate irq for the actual core vblank handling 9536 * at end of vblank. 9537 */ 9538 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, true) != 0); 9539 WARN_ON(drm_crtc_vblank_get(new_state->base.crtc) != 0); 9540 drm_dbg_driver(new_state->base.crtc->dev, "%s: crtc=%u VRR off->on: Get vblank ref\n", 9541 __func__, new_state->base.crtc->base.id); 9542 } else if (old_vrr_active && !new_vrr_active) { 9543 /* Transition VRR active -> inactive: 9544 * Allow vblank irq disable again for fixed refresh rate. 9545 */ 9546 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, false) != 0); 9547 drm_crtc_vblank_put(new_state->base.crtc); 9548 drm_dbg_driver(new_state->base.crtc->dev, "%s: crtc=%u VRR on->off: Drop vblank ref\n", 9549 __func__, new_state->base.crtc->base.id); 9550 } 9551 } 9552 9553 static void amdgpu_dm_commit_cursors(struct drm_atomic_state *state) 9554 { 9555 struct drm_plane *plane; 9556 struct drm_plane_state *old_plane_state; 9557 int i; 9558 9559 /* 9560 * TODO: Make this per-stream so we don't issue redundant updates for 9561 * commits with multiple streams. 9562 */ 9563 for_each_old_plane_in_state(state, plane, old_plane_state, i) 9564 if (plane->type == DRM_PLANE_TYPE_CURSOR) 9565 amdgpu_dm_plane_handle_cursor_update(plane, old_plane_state); 9566 } 9567 9568 static inline uint32_t get_mem_type(struct drm_framebuffer *fb) 9569 { 9570 struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]); 9571 9572 return abo->tbo.resource ? abo->tbo.resource->mem_type : 0; 9573 } 9574 9575 static void amdgpu_dm_update_cursor(struct drm_plane *plane, 9576 struct drm_plane_state *old_plane_state, 9577 struct dc_stream_update *update) 9578 { 9579 struct amdgpu_device *adev = drm_to_adev(plane->dev); 9580 struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(plane->state->fb); 9581 struct drm_crtc *crtc = afb ? plane->state->crtc : old_plane_state->crtc; 9582 struct dm_crtc_state *crtc_state = crtc ? to_dm_crtc_state(crtc->state) : NULL; 9583 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); 9584 uint64_t address = afb ? afb->address : 0; 9585 struct dc_cursor_position position = {0}; 9586 struct dc_cursor_attributes attributes; 9587 int ret; 9588 9589 if (!plane->state->fb && !old_plane_state->fb) 9590 return; 9591 9592 drm_dbg_atomic(plane->dev, "crtc_id=%d with size %d to %d\n", 9593 amdgpu_crtc->crtc_id, plane->state->crtc_w, 9594 plane->state->crtc_h); 9595 9596 ret = amdgpu_dm_plane_get_cursor_position(plane, crtc, &position); 9597 if (ret) 9598 return; 9599 9600 if (!position.enable) { 9601 /* turn off cursor */ 9602 if (crtc_state && crtc_state->stream) { 9603 dc_stream_set_cursor_position(crtc_state->stream, 9604 &position); 9605 update->cursor_position = &crtc_state->stream->cursor_position; 9606 } 9607 return; 9608 } 9609 9610 amdgpu_crtc->cursor_width = plane->state->crtc_w; 9611 amdgpu_crtc->cursor_height = plane->state->crtc_h; 9612 9613 memset(&attributes, 0, sizeof(attributes)); 9614 attributes.address.high_part = upper_32_bits(address); 9615 attributes.address.low_part = lower_32_bits(address); 9616 attributes.width = plane->state->crtc_w; 9617 attributes.height = plane->state->crtc_h; 9618 attributes.color_format = CURSOR_MODE_COLOR_PRE_MULTIPLIED_ALPHA; 9619 attributes.rotation_angle = 0; 9620 attributes.attribute_flags.value = 0; 9621 9622 /* Enable cursor degamma ROM on DCN3+ for implicit sRGB degamma in DRM 9623 * legacy gamma setup. 9624 */ 9625 if (crtc_state->cm_is_degamma_srgb && 9626 adev->dm.dc->caps.color.dpp.gamma_corr) 9627 attributes.attribute_flags.bits.ENABLE_CURSOR_DEGAMMA = 1; 9628 9629 if (afb) 9630 attributes.pitch = afb->base.pitches[0] / afb->base.format->cpp[0]; 9631 9632 if (crtc_state->stream) { 9633 if (!dc_stream_set_cursor_attributes(crtc_state->stream, 9634 &attributes)) 9635 drm_err(adev_to_drm(adev), "DC failed to set cursor attributes\n"); 9636 9637 update->cursor_attributes = &crtc_state->stream->cursor_attributes; 9638 9639 if (!dc_stream_set_cursor_position(crtc_state->stream, 9640 &position)) 9641 drm_err(adev_to_drm(adev), "DC failed to set cursor position\n"); 9642 9643 update->cursor_position = &crtc_state->stream->cursor_position; 9644 } 9645 } 9646 9647 static void amdgpu_dm_enable_self_refresh(struct amdgpu_crtc *acrtc_attach, 9648 const struct dm_crtc_state *acrtc_state, 9649 const u64 current_ts) 9650 { 9651 struct psr_settings *psr = &acrtc_state->stream->link->psr_settings; 9652 struct replay_settings *pr = &acrtc_state->stream->link->replay_settings; 9653 struct amdgpu_dm_connector *aconn = 9654 (struct amdgpu_dm_connector *)acrtc_state->stream->dm_stream_context; 9655 bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state); 9656 9657 if (acrtc_state->update_type > UPDATE_TYPE_FAST) { 9658 if (pr->config.replay_supported && !pr->replay_feature_enabled) 9659 amdgpu_dm_link_setup_replay(acrtc_state->stream->link, aconn); 9660 else if (psr->psr_version != DC_PSR_VERSION_UNSUPPORTED && 9661 !psr->psr_feature_enabled) 9662 if (!aconn->disallow_edp_enter_psr) 9663 amdgpu_dm_link_setup_psr(acrtc_state->stream); 9664 } 9665 9666 /* Decrement skip count when SR is enabled and we're doing fast updates. */ 9667 if (acrtc_state->update_type == UPDATE_TYPE_FAST && 9668 (psr->psr_feature_enabled || pr->config.replay_supported)) { 9669 if (aconn->sr_skip_count > 0) 9670 aconn->sr_skip_count--; 9671 9672 /* Allow SR when skip count is 0. */ 9673 acrtc_attach->dm_irq_params.allow_sr_entry = !aconn->sr_skip_count; 9674 9675 /* 9676 * If sink supports PSR SU/Panel Replay, there is no need to rely on 9677 * a vblank event disable request to enable PSR/RP. PSR SU/RP 9678 * can be enabled immediately once OS demonstrates an 9679 * adequate number of fast atomic commits to notify KMD 9680 * of update events. See `vblank_control_worker()`. 9681 */ 9682 if (!vrr_active && 9683 acrtc_attach->dm_irq_params.allow_sr_entry && 9684 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY 9685 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) && 9686 #endif 9687 (current_ts - psr->psr_dirty_rects_change_timestamp_ns) > 500000000) { 9688 if (pr->replay_feature_enabled && !pr->replay_allow_active) 9689 amdgpu_dm_replay_enable(acrtc_state->stream, true); 9690 if (psr->psr_version == DC_PSR_VERSION_SU_1 && 9691 !psr->psr_allow_active && !aconn->disallow_edp_enter_psr) 9692 amdgpu_dm_psr_enable(acrtc_state->stream); 9693 } 9694 } else { 9695 acrtc_attach->dm_irq_params.allow_sr_entry = false; 9696 } 9697 } 9698 9699 static void amdgpu_dm_commit_planes(struct drm_atomic_state *state, 9700 struct drm_device *dev, 9701 struct amdgpu_display_manager *dm, 9702 struct drm_crtc *pcrtc, 9703 bool wait_for_vblank) 9704 { 9705 u32 i; 9706 u64 timestamp_ns = ktime_get_ns(); 9707 struct drm_plane *plane; 9708 struct drm_plane_state *old_plane_state, *new_plane_state; 9709 struct amdgpu_crtc *acrtc_attach = to_amdgpu_crtc(pcrtc); 9710 struct drm_crtc_state *new_pcrtc_state = 9711 drm_atomic_get_new_crtc_state(state, pcrtc); 9712 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(new_pcrtc_state); 9713 struct dm_crtc_state *dm_old_crtc_state = 9714 to_dm_crtc_state(drm_atomic_get_old_crtc_state(state, pcrtc)); 9715 int planes_count = 0, vpos, hpos; 9716 unsigned long flags; 9717 u32 target_vblank, last_flip_vblank; 9718 bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state); 9719 bool cursor_update = false; 9720 bool pflip_present = false; 9721 bool dirty_rects_changed = false; 9722 bool updated_planes_and_streams = false; 9723 struct { 9724 struct dc_surface_update surface_updates[MAX_SURFACES]; 9725 struct dc_plane_info plane_infos[MAX_SURFACES]; 9726 struct dc_scaling_info scaling_infos[MAX_SURFACES]; 9727 struct dc_flip_addrs flip_addrs[MAX_SURFACES]; 9728 struct dc_stream_update stream_update; 9729 } *bundle; 9730 9731 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL); 9732 9733 if (!bundle) { 9734 drm_err(dev, "Failed to allocate update bundle\n"); 9735 goto cleanup; 9736 } 9737 9738 /* 9739 * Disable the cursor first if we're disabling all the planes. 9740 * It'll remain on the screen after the planes are re-enabled 9741 * if we don't. 9742 * 9743 * If the cursor is transitioning from native to overlay mode, the 9744 * native cursor needs to be disabled first. 9745 */ 9746 if (acrtc_state->cursor_mode == DM_CURSOR_OVERLAY_MODE && 9747 dm_old_crtc_state->cursor_mode == DM_CURSOR_NATIVE_MODE) { 9748 struct dc_cursor_position cursor_position = {0}; 9749 9750 if (!dc_stream_set_cursor_position(acrtc_state->stream, 9751 &cursor_position)) 9752 drm_err(dev, "DC failed to disable native cursor\n"); 9753 9754 bundle->stream_update.cursor_position = 9755 &acrtc_state->stream->cursor_position; 9756 } 9757 9758 if (acrtc_state->active_planes == 0 && 9759 dm_old_crtc_state->cursor_mode == DM_CURSOR_NATIVE_MODE) 9760 amdgpu_dm_commit_cursors(state); 9761 9762 /* update planes when needed */ 9763 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { 9764 struct drm_crtc *crtc = new_plane_state->crtc; 9765 struct drm_crtc_state *new_crtc_state; 9766 struct drm_framebuffer *fb = new_plane_state->fb; 9767 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)fb; 9768 bool plane_needs_flip; 9769 struct dc_plane_state *dc_plane; 9770 struct dm_plane_state *dm_new_plane_state = to_dm_plane_state(new_plane_state); 9771 9772 /* Cursor plane is handled after stream updates */ 9773 if (plane->type == DRM_PLANE_TYPE_CURSOR && 9774 acrtc_state->cursor_mode == DM_CURSOR_NATIVE_MODE) { 9775 if ((fb && crtc == pcrtc) || 9776 (old_plane_state->fb && old_plane_state->crtc == pcrtc)) { 9777 cursor_update = true; 9778 if (amdgpu_ip_version(dm->adev, DCE_HWIP, 0) != 0) 9779 amdgpu_dm_update_cursor(plane, old_plane_state, &bundle->stream_update); 9780 } 9781 9782 continue; 9783 } 9784 9785 if (!fb || !crtc || pcrtc != crtc) 9786 continue; 9787 9788 new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc); 9789 if (!new_crtc_state->active) 9790 continue; 9791 9792 dc_plane = dm_new_plane_state->dc_state; 9793 if (!dc_plane) 9794 continue; 9795 9796 bundle->surface_updates[planes_count].surface = dc_plane; 9797 if (new_pcrtc_state->color_mgmt_changed) { 9798 bundle->surface_updates[planes_count].gamma = &dc_plane->gamma_correction; 9799 bundle->surface_updates[planes_count].in_transfer_func = &dc_plane->in_transfer_func; 9800 bundle->surface_updates[planes_count].gamut_remap_matrix = &dc_plane->gamut_remap_matrix; 9801 bundle->surface_updates[planes_count].hdr_mult = dc_plane->hdr_mult; 9802 bundle->surface_updates[planes_count].func_shaper = &dc_plane->in_shaper_func; 9803 bundle->surface_updates[planes_count].lut3d_func = &dc_plane->lut3d_func; 9804 bundle->surface_updates[planes_count].blend_tf = &dc_plane->blend_tf; 9805 } 9806 9807 amdgpu_dm_plane_fill_dc_scaling_info(dm->adev, new_plane_state, 9808 &bundle->scaling_infos[planes_count]); 9809 9810 bundle->surface_updates[planes_count].scaling_info = 9811 &bundle->scaling_infos[planes_count]; 9812 9813 plane_needs_flip = old_plane_state->fb && new_plane_state->fb; 9814 9815 pflip_present = pflip_present || plane_needs_flip; 9816 9817 if (!plane_needs_flip) { 9818 planes_count += 1; 9819 continue; 9820 } 9821 9822 fill_dc_plane_info_and_addr( 9823 dm->adev, new_plane_state, 9824 afb->tiling_flags, 9825 &bundle->plane_infos[planes_count], 9826 &bundle->flip_addrs[planes_count].address, 9827 afb->tmz_surface); 9828 9829 drm_dbg_state(state->dev, "plane: id=%d dcc_en=%d\n", 9830 new_plane_state->plane->index, 9831 bundle->plane_infos[planes_count].dcc.enable); 9832 9833 bundle->surface_updates[planes_count].plane_info = 9834 &bundle->plane_infos[planes_count]; 9835 9836 if (acrtc_state->stream->link->psr_settings.psr_feature_enabled || 9837 acrtc_state->stream->link->replay_settings.replay_feature_enabled) { 9838 fill_dc_dirty_rects(plane, old_plane_state, 9839 new_plane_state, new_crtc_state, 9840 &bundle->flip_addrs[planes_count], 9841 acrtc_state->stream->link->psr_settings.psr_version == 9842 DC_PSR_VERSION_SU_1, 9843 &dirty_rects_changed); 9844 9845 /* 9846 * If the dirty regions changed, PSR-SU need to be disabled temporarily 9847 * and enabled it again after dirty regions are stable to avoid video glitch. 9848 * PSR-SU will be enabled in vblank_control_worker() if user pause the video 9849 * during the PSR-SU was disabled. 9850 */ 9851 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 && 9852 acrtc_attach->dm_irq_params.allow_sr_entry && 9853 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY 9854 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) && 9855 #endif 9856 dirty_rects_changed) { 9857 mutex_lock(&dm->dc_lock); 9858 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns = 9859 timestamp_ns; 9860 if (acrtc_state->stream->link->psr_settings.psr_allow_active) 9861 amdgpu_dm_psr_disable(acrtc_state->stream, true); 9862 mutex_unlock(&dm->dc_lock); 9863 } 9864 } 9865 9866 /* 9867 * Only allow immediate flips for fast updates that don't 9868 * change memory domain, FB pitch, DCC state, rotation or 9869 * mirroring. 9870 * 9871 * dm_crtc_helper_atomic_check() only accepts async flips with 9872 * fast updates. 9873 */ 9874 if (crtc->state->async_flip && 9875 (acrtc_state->update_type != UPDATE_TYPE_FAST || 9876 get_mem_type(old_plane_state->fb) != get_mem_type(fb))) 9877 drm_warn_once(state->dev, 9878 "[PLANE:%d:%s] async flip with non-fast update\n", 9879 plane->base.id, plane->name); 9880 9881 bundle->flip_addrs[planes_count].flip_immediate = 9882 crtc->state->async_flip && 9883 acrtc_state->update_type == UPDATE_TYPE_FAST && 9884 get_mem_type(old_plane_state->fb) == get_mem_type(fb); 9885 9886 timestamp_ns = ktime_get_ns(); 9887 bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000); 9888 bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count]; 9889 bundle->surface_updates[planes_count].surface = dc_plane; 9890 9891 if (!bundle->surface_updates[planes_count].surface) { 9892 drm_err(dev, "No surface for CRTC: id=%d\n", 9893 acrtc_attach->crtc_id); 9894 continue; 9895 } 9896 9897 if (plane == pcrtc->primary) 9898 update_freesync_state_on_stream( 9899 dm, 9900 acrtc_state, 9901 acrtc_state->stream, 9902 dc_plane, 9903 bundle->flip_addrs[planes_count].flip_timestamp_in_us); 9904 9905 drm_dbg_state(state->dev, "%s Flipping to hi: 0x%x, low: 0x%x\n", 9906 __func__, 9907 bundle->flip_addrs[planes_count].address.grph.addr.high_part, 9908 bundle->flip_addrs[planes_count].address.grph.addr.low_part); 9909 9910 planes_count += 1; 9911 9912 } 9913 9914 if (pflip_present) { 9915 if (!vrr_active) { 9916 /* Use old throttling in non-vrr fixed refresh rate mode 9917 * to keep flip scheduling based on target vblank counts 9918 * working in a backwards compatible way, e.g., for 9919 * clients using the GLX_OML_sync_control extension or 9920 * DRI3/Present extension with defined target_msc. 9921 */ 9922 last_flip_vblank = amdgpu_get_vblank_counter_kms(pcrtc); 9923 } else { 9924 /* For variable refresh rate mode only: 9925 * Get vblank of last completed flip to avoid > 1 vrr 9926 * flips per video frame by use of throttling, but allow 9927 * flip programming anywhere in the possibly large 9928 * variable vrr vblank interval for fine-grained flip 9929 * timing control and more opportunity to avoid stutter 9930 * on late submission of flips. 9931 */ 9932 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 9933 last_flip_vblank = acrtc_attach->dm_irq_params.last_flip_vblank; 9934 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 9935 } 9936 9937 target_vblank = last_flip_vblank + wait_for_vblank; 9938 9939 /* 9940 * Wait until we're out of the vertical blank period before the one 9941 * targeted by the flip 9942 */ 9943 while ((acrtc_attach->enabled && 9944 (amdgpu_display_get_crtc_scanoutpos(dm->ddev, acrtc_attach->crtc_id, 9945 0, &vpos, &hpos, NULL, 9946 NULL, &pcrtc->hwmode) 9947 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) == 9948 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) && 9949 (int)(target_vblank - 9950 amdgpu_get_vblank_counter_kms(pcrtc)) > 0)) { 9951 usleep_range(1000, 1100); 9952 } 9953 9954 /** 9955 * Prepare the flip event for the pageflip interrupt to handle. 9956 * 9957 * This only works in the case where we've already turned on the 9958 * appropriate hardware blocks (eg. HUBP) so in the transition case 9959 * from 0 -> n planes we have to skip a hardware generated event 9960 * and rely on sending it from software. 9961 */ 9962 if (acrtc_attach->base.state->event && 9963 acrtc_state->active_planes > 0) { 9964 drm_crtc_vblank_get(pcrtc); 9965 9966 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 9967 9968 WARN_ON(acrtc_attach->pflip_status != AMDGPU_FLIP_NONE); 9969 prepare_flip_isr(acrtc_attach); 9970 9971 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 9972 } 9973 9974 if (acrtc_state->stream) { 9975 if (acrtc_state->freesync_vrr_info_changed) 9976 bundle->stream_update.vrr_infopacket = 9977 &acrtc_state->stream->vrr_infopacket; 9978 } 9979 } else if (cursor_update && acrtc_state->active_planes > 0) { 9980 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 9981 if (acrtc_attach->base.state->event) { 9982 drm_crtc_vblank_get(pcrtc); 9983 acrtc_attach->event = acrtc_attach->base.state->event; 9984 acrtc_attach->base.state->event = NULL; 9985 } 9986 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 9987 } 9988 9989 /* Update the planes if changed or disable if we don't have any. */ 9990 if ((planes_count || acrtc_state->active_planes == 0) && 9991 acrtc_state->stream) { 9992 /* 9993 * If PSR or idle optimizations are enabled then flush out 9994 * any pending work before hardware programming. 9995 */ 9996 if (dm->vblank_control_workqueue) 9997 flush_workqueue(dm->vblank_control_workqueue); 9998 9999 bundle->stream_update.stream = acrtc_state->stream; 10000 if (new_pcrtc_state->mode_changed) { 10001 bundle->stream_update.src = acrtc_state->stream->src; 10002 bundle->stream_update.dst = acrtc_state->stream->dst; 10003 } 10004 10005 if (new_pcrtc_state->color_mgmt_changed) { 10006 /* 10007 * TODO: This isn't fully correct since we've actually 10008 * already modified the stream in place. 10009 */ 10010 bundle->stream_update.gamut_remap = 10011 &acrtc_state->stream->gamut_remap_matrix; 10012 bundle->stream_update.output_csc_transform = 10013 &acrtc_state->stream->csc_color_matrix; 10014 bundle->stream_update.out_transfer_func = 10015 &acrtc_state->stream->out_transfer_func; 10016 bundle->stream_update.lut3d_func = 10017 (struct dc_3dlut *) acrtc_state->stream->lut3d_func; 10018 bundle->stream_update.func_shaper = 10019 (struct dc_transfer_func *) acrtc_state->stream->func_shaper; 10020 } 10021 10022 acrtc_state->stream->abm_level = acrtc_state->abm_level; 10023 if (acrtc_state->abm_level != dm_old_crtc_state->abm_level) 10024 bundle->stream_update.abm_level = &acrtc_state->abm_level; 10025 10026 mutex_lock(&dm->dc_lock); 10027 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) || vrr_active) { 10028 if (acrtc_state->stream->link->replay_settings.replay_allow_active) 10029 amdgpu_dm_replay_disable(acrtc_state->stream); 10030 if (acrtc_state->stream->link->psr_settings.psr_allow_active) 10031 amdgpu_dm_psr_disable(acrtc_state->stream, true); 10032 } 10033 mutex_unlock(&dm->dc_lock); 10034 10035 /* 10036 * If FreeSync state on the stream has changed then we need to 10037 * re-adjust the min/max bounds now that DC doesn't handle this 10038 * as part of commit. 10039 */ 10040 if (is_dc_timing_adjust_needed(dm_old_crtc_state, acrtc_state)) { 10041 spin_lock_irqsave(&pcrtc->dev->event_lock, flags); 10042 dc_stream_adjust_vmin_vmax( 10043 dm->dc, acrtc_state->stream, 10044 &acrtc_attach->dm_irq_params.vrr_params.adjust); 10045 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags); 10046 } 10047 mutex_lock(&dm->dc_lock); 10048 update_planes_and_stream_adapter(dm->dc, 10049 acrtc_state->update_type, 10050 planes_count, 10051 acrtc_state->stream, 10052 &bundle->stream_update, 10053 bundle->surface_updates); 10054 updated_planes_and_streams = true; 10055 10056 /** 10057 * Enable or disable the interrupts on the backend. 10058 * 10059 * Most pipes are put into power gating when unused. 10060 * 10061 * When power gating is enabled on a pipe we lose the 10062 * interrupt enablement state when power gating is disabled. 10063 * 10064 * So we need to update the IRQ control state in hardware 10065 * whenever the pipe turns on (since it could be previously 10066 * power gated) or off (since some pipes can't be power gated 10067 * on some ASICs). 10068 */ 10069 if (dm_old_crtc_state->active_planes != acrtc_state->active_planes) 10070 dm_update_pflip_irq_state(drm_to_adev(dev), 10071 acrtc_attach); 10072 10073 amdgpu_dm_enable_self_refresh(acrtc_attach, acrtc_state, timestamp_ns); 10074 mutex_unlock(&dm->dc_lock); 10075 } 10076 10077 /* 10078 * Update cursor state *after* programming all the planes. 10079 * This avoids redundant programming in the case where we're going 10080 * to be disabling a single plane - those pipes are being disabled. 10081 */ 10082 if (acrtc_state->active_planes && 10083 (!updated_planes_and_streams || amdgpu_ip_version(dm->adev, DCE_HWIP, 0) == 0) && 10084 acrtc_state->cursor_mode == DM_CURSOR_NATIVE_MODE) 10085 amdgpu_dm_commit_cursors(state); 10086 10087 cleanup: 10088 kfree(bundle); 10089 } 10090 10091 static void amdgpu_dm_commit_audio(struct drm_device *dev, 10092 struct drm_atomic_state *state) 10093 { 10094 struct amdgpu_device *adev = drm_to_adev(dev); 10095 struct amdgpu_dm_connector *aconnector; 10096 struct drm_connector *connector; 10097 struct drm_connector_state *old_con_state, *new_con_state; 10098 struct drm_crtc_state *new_crtc_state; 10099 struct dm_crtc_state *new_dm_crtc_state; 10100 const struct dc_stream_status *status; 10101 int i, inst; 10102 10103 /* Notify device removals. */ 10104 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 10105 if (old_con_state->crtc != new_con_state->crtc) { 10106 /* CRTC changes require notification. */ 10107 goto notify; 10108 } 10109 10110 if (!new_con_state->crtc) 10111 continue; 10112 10113 new_crtc_state = drm_atomic_get_new_crtc_state( 10114 state, new_con_state->crtc); 10115 10116 if (!new_crtc_state) 10117 continue; 10118 10119 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 10120 continue; 10121 10122 notify: 10123 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 10124 continue; 10125 10126 aconnector = to_amdgpu_dm_connector(connector); 10127 10128 mutex_lock(&adev->dm.audio_lock); 10129 inst = aconnector->audio_inst; 10130 aconnector->audio_inst = -1; 10131 mutex_unlock(&adev->dm.audio_lock); 10132 10133 amdgpu_dm_audio_eld_notify(adev, inst); 10134 } 10135 10136 /* Notify audio device additions. */ 10137 for_each_new_connector_in_state(state, connector, new_con_state, i) { 10138 if (!new_con_state->crtc) 10139 continue; 10140 10141 new_crtc_state = drm_atomic_get_new_crtc_state( 10142 state, new_con_state->crtc); 10143 10144 if (!new_crtc_state) 10145 continue; 10146 10147 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 10148 continue; 10149 10150 new_dm_crtc_state = to_dm_crtc_state(new_crtc_state); 10151 if (!new_dm_crtc_state->stream) 10152 continue; 10153 10154 status = dc_stream_get_status(new_dm_crtc_state->stream); 10155 if (!status) 10156 continue; 10157 10158 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 10159 continue; 10160 10161 aconnector = to_amdgpu_dm_connector(connector); 10162 10163 mutex_lock(&adev->dm.audio_lock); 10164 inst = status->audio_inst; 10165 aconnector->audio_inst = inst; 10166 mutex_unlock(&adev->dm.audio_lock); 10167 10168 amdgpu_dm_audio_eld_notify(adev, inst); 10169 } 10170 } 10171 10172 /* 10173 * amdgpu_dm_crtc_copy_transient_flags - copy mirrored flags from DRM to DC 10174 * @crtc_state: the DRM CRTC state 10175 * @stream_state: the DC stream state. 10176 * 10177 * Copy the mirrored transient state flags from DRM, to DC. It is used to bring 10178 * a dc_stream_state's flags in sync with a drm_crtc_state's flags. 10179 */ 10180 static void amdgpu_dm_crtc_copy_transient_flags(struct drm_crtc_state *crtc_state, 10181 struct dc_stream_state *stream_state) 10182 { 10183 stream_state->mode_changed = drm_atomic_crtc_needs_modeset(crtc_state); 10184 } 10185 10186 static void dm_clear_writeback(struct amdgpu_display_manager *dm, 10187 struct dm_crtc_state *crtc_state) 10188 { 10189 dc_stream_remove_writeback(dm->dc, crtc_state->stream, 0); 10190 } 10191 10192 static void amdgpu_dm_commit_streams(struct drm_atomic_state *state, 10193 struct dc_state *dc_state) 10194 { 10195 struct drm_device *dev = state->dev; 10196 struct amdgpu_device *adev = drm_to_adev(dev); 10197 struct amdgpu_display_manager *dm = &adev->dm; 10198 struct drm_crtc *crtc; 10199 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 10200 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 10201 struct drm_connector_state *old_con_state; 10202 struct drm_connector *connector; 10203 bool mode_set_reset_required = false; 10204 u32 i; 10205 struct dc_commit_streams_params params = {dc_state->streams, dc_state->stream_count}; 10206 bool set_backlight_level = false; 10207 10208 /* Disable writeback */ 10209 for_each_old_connector_in_state(state, connector, old_con_state, i) { 10210 struct dm_connector_state *dm_old_con_state; 10211 struct amdgpu_crtc *acrtc; 10212 10213 if (connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) 10214 continue; 10215 10216 old_crtc_state = NULL; 10217 10218 dm_old_con_state = to_dm_connector_state(old_con_state); 10219 if (!dm_old_con_state->base.crtc) 10220 continue; 10221 10222 acrtc = to_amdgpu_crtc(dm_old_con_state->base.crtc); 10223 if (acrtc) 10224 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base); 10225 10226 if (!acrtc || !acrtc->wb_enabled) 10227 continue; 10228 10229 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 10230 10231 dm_clear_writeback(dm, dm_old_crtc_state); 10232 acrtc->wb_enabled = false; 10233 } 10234 10235 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, 10236 new_crtc_state, i) { 10237 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 10238 10239 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 10240 10241 if (old_crtc_state->active && 10242 (!new_crtc_state->active || 10243 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 10244 manage_dm_interrupts(adev, acrtc, NULL); 10245 dc_stream_release(dm_old_crtc_state->stream); 10246 } 10247 } 10248 10249 drm_atomic_helper_calc_timestamping_constants(state); 10250 10251 /* update changed items */ 10252 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 10253 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 10254 10255 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10256 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 10257 10258 drm_dbg_state(state->dev, 10259 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n", 10260 acrtc->crtc_id, 10261 new_crtc_state->enable, 10262 new_crtc_state->active, 10263 new_crtc_state->planes_changed, 10264 new_crtc_state->mode_changed, 10265 new_crtc_state->active_changed, 10266 new_crtc_state->connectors_changed); 10267 10268 /* Disable cursor if disabling crtc */ 10269 if (old_crtc_state->active && !new_crtc_state->active) { 10270 struct dc_cursor_position position; 10271 10272 memset(&position, 0, sizeof(position)); 10273 mutex_lock(&dm->dc_lock); 10274 dc_exit_ips_for_hw_access(dm->dc); 10275 dc_stream_program_cursor_position(dm_old_crtc_state->stream, &position); 10276 mutex_unlock(&dm->dc_lock); 10277 } 10278 10279 /* Copy all transient state flags into dc state */ 10280 if (dm_new_crtc_state->stream) { 10281 amdgpu_dm_crtc_copy_transient_flags(&dm_new_crtc_state->base, 10282 dm_new_crtc_state->stream); 10283 } 10284 10285 /* handles headless hotplug case, updating new_state and 10286 * aconnector as needed 10287 */ 10288 10289 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, dm_new_crtc_state->stream, dm_old_crtc_state->stream)) { 10290 10291 drm_dbg_atomic(dev, 10292 "Atomic commit: SET crtc id %d: [%p]\n", 10293 acrtc->crtc_id, acrtc); 10294 10295 if (!dm_new_crtc_state->stream) { 10296 /* 10297 * this could happen because of issues with 10298 * userspace notifications delivery. 10299 * In this case userspace tries to set mode on 10300 * display which is disconnected in fact. 10301 * dc_sink is NULL in this case on aconnector. 10302 * We expect reset mode will come soon. 10303 * 10304 * This can also happen when unplug is done 10305 * during resume sequence ended 10306 * 10307 * In this case, we want to pretend we still 10308 * have a sink to keep the pipe running so that 10309 * hw state is consistent with the sw state 10310 */ 10311 drm_dbg_atomic(dev, 10312 "Failed to create new stream for crtc %d\n", 10313 acrtc->base.base.id); 10314 continue; 10315 } 10316 10317 if (dm_old_crtc_state->stream) 10318 remove_stream(adev, acrtc, dm_old_crtc_state->stream); 10319 10320 pm_runtime_get_noresume(dev->dev); 10321 10322 acrtc->enabled = true; 10323 acrtc->hw_mode = new_crtc_state->mode; 10324 crtc->hwmode = new_crtc_state->mode; 10325 mode_set_reset_required = true; 10326 set_backlight_level = true; 10327 } else if (modereset_required(new_crtc_state)) { 10328 drm_dbg_atomic(dev, 10329 "Atomic commit: RESET. crtc id %d:[%p]\n", 10330 acrtc->crtc_id, acrtc); 10331 /* i.e. reset mode */ 10332 if (dm_old_crtc_state->stream) 10333 remove_stream(adev, acrtc, dm_old_crtc_state->stream); 10334 10335 mode_set_reset_required = true; 10336 } 10337 } /* for_each_crtc_in_state() */ 10338 10339 /* if there mode set or reset, disable eDP PSR, Replay */ 10340 if (mode_set_reset_required) { 10341 if (dm->vblank_control_workqueue) 10342 flush_workqueue(dm->vblank_control_workqueue); 10343 10344 amdgpu_dm_replay_disable_all(dm); 10345 amdgpu_dm_psr_disable_all(dm); 10346 } 10347 10348 dm_enable_per_frame_crtc_master_sync(dc_state); 10349 mutex_lock(&dm->dc_lock); 10350 dc_exit_ips_for_hw_access(dm->dc); 10351 WARN_ON(!dc_commit_streams(dm->dc, ¶ms)); 10352 10353 /* Allow idle optimization when vblank count is 0 for display off */ 10354 if ((dm->active_vblank_irq_count == 0) && amdgpu_dm_is_headless(dm->adev)) 10355 dc_allow_idle_optimizations(dm->dc, true); 10356 mutex_unlock(&dm->dc_lock); 10357 10358 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 10359 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 10360 10361 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10362 10363 if (dm_new_crtc_state->stream != NULL) { 10364 const struct dc_stream_status *status = 10365 dc_stream_get_status(dm_new_crtc_state->stream); 10366 10367 if (!status) 10368 status = dc_state_get_stream_status(dc_state, 10369 dm_new_crtc_state->stream); 10370 if (!status) 10371 drm_err(dev, 10372 "got no status for stream %p on acrtc%p\n", 10373 dm_new_crtc_state->stream, acrtc); 10374 else 10375 acrtc->otg_inst = status->primary_otg_inst; 10376 } 10377 } 10378 10379 /* During boot up and resume the DC layer will reset the panel brightness 10380 * to fix a flicker issue. 10381 * It will cause the dm->actual_brightness is not the current panel brightness 10382 * level. (the dm->brightness is the correct panel level) 10383 * So we set the backlight level with dm->brightness value after set mode 10384 */ 10385 if (set_backlight_level) { 10386 for (i = 0; i < dm->num_of_edps; i++) { 10387 if (dm->backlight_dev[i]) 10388 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]); 10389 } 10390 } 10391 } 10392 10393 static void dm_set_writeback(struct amdgpu_display_manager *dm, 10394 struct dm_crtc_state *crtc_state, 10395 struct drm_connector *connector, 10396 struct drm_connector_state *new_con_state) 10397 { 10398 struct drm_writeback_connector *wb_conn = drm_connector_to_writeback(connector); 10399 struct amdgpu_device *adev = dm->adev; 10400 struct amdgpu_crtc *acrtc; 10401 struct dc_writeback_info *wb_info; 10402 struct pipe_ctx *pipe = NULL; 10403 struct amdgpu_framebuffer *afb; 10404 int i = 0; 10405 10406 wb_info = kzalloc(sizeof(*wb_info), GFP_KERNEL); 10407 if (!wb_info) { 10408 drm_err(adev_to_drm(adev), "Failed to allocate wb_info\n"); 10409 return; 10410 } 10411 10412 acrtc = to_amdgpu_crtc(wb_conn->encoder.crtc); 10413 if (!acrtc) { 10414 drm_err(adev_to_drm(adev), "no amdgpu_crtc found\n"); 10415 kfree(wb_info); 10416 return; 10417 } 10418 10419 afb = to_amdgpu_framebuffer(new_con_state->writeback_job->fb); 10420 if (!afb) { 10421 drm_err(adev_to_drm(adev), "No amdgpu_framebuffer found\n"); 10422 kfree(wb_info); 10423 return; 10424 } 10425 10426 for (i = 0; i < MAX_PIPES; i++) { 10427 if (dm->dc->current_state->res_ctx.pipe_ctx[i].stream == crtc_state->stream) { 10428 pipe = &dm->dc->current_state->res_ctx.pipe_ctx[i]; 10429 break; 10430 } 10431 } 10432 10433 /* fill in wb_info */ 10434 wb_info->wb_enabled = true; 10435 10436 wb_info->dwb_pipe_inst = 0; 10437 wb_info->dwb_params.dwbscl_black_color = 0; 10438 wb_info->dwb_params.hdr_mult = 0x1F000; 10439 wb_info->dwb_params.csc_params.gamut_adjust_type = CM_GAMUT_ADJUST_TYPE_BYPASS; 10440 wb_info->dwb_params.csc_params.gamut_coef_format = CM_GAMUT_REMAP_COEF_FORMAT_S2_13; 10441 wb_info->dwb_params.output_depth = DWB_OUTPUT_PIXEL_DEPTH_10BPC; 10442 wb_info->dwb_params.cnv_params.cnv_out_bpc = DWB_CNV_OUT_BPC_10BPC; 10443 10444 /* width & height from crtc */ 10445 wb_info->dwb_params.cnv_params.src_width = acrtc->base.mode.crtc_hdisplay; 10446 wb_info->dwb_params.cnv_params.src_height = acrtc->base.mode.crtc_vdisplay; 10447 wb_info->dwb_params.dest_width = acrtc->base.mode.crtc_hdisplay; 10448 wb_info->dwb_params.dest_height = acrtc->base.mode.crtc_vdisplay; 10449 10450 wb_info->dwb_params.cnv_params.crop_en = false; 10451 wb_info->dwb_params.stereo_params.stereo_enabled = false; 10452 10453 wb_info->dwb_params.cnv_params.out_max_pix_val = 0x3ff; // 10 bits 10454 wb_info->dwb_params.cnv_params.out_min_pix_val = 0; 10455 wb_info->dwb_params.cnv_params.fc_out_format = DWB_OUT_FORMAT_32BPP_ARGB; 10456 wb_info->dwb_params.cnv_params.out_denorm_mode = DWB_OUT_DENORM_BYPASS; 10457 10458 wb_info->dwb_params.out_format = dwb_scaler_mode_bypass444; 10459 10460 wb_info->dwb_params.capture_rate = dwb_capture_rate_0; 10461 10462 wb_info->dwb_params.scaler_taps.h_taps = 4; 10463 wb_info->dwb_params.scaler_taps.v_taps = 4; 10464 wb_info->dwb_params.scaler_taps.h_taps_c = 2; 10465 wb_info->dwb_params.scaler_taps.v_taps_c = 2; 10466 wb_info->dwb_params.subsample_position = DWB_INTERSTITIAL_SUBSAMPLING; 10467 10468 wb_info->mcif_buf_params.luma_pitch = afb->base.pitches[0]; 10469 wb_info->mcif_buf_params.chroma_pitch = afb->base.pitches[1]; 10470 10471 for (i = 0; i < DWB_MCIF_BUF_COUNT; i++) { 10472 wb_info->mcif_buf_params.luma_address[i] = afb->address; 10473 wb_info->mcif_buf_params.chroma_address[i] = 0; 10474 } 10475 10476 wb_info->mcif_buf_params.p_vmid = 1; 10477 if (amdgpu_ip_version(adev, DCE_HWIP, 0) >= IP_VERSION(3, 0, 0)) { 10478 wb_info->mcif_warmup_params.start_address.quad_part = afb->address; 10479 wb_info->mcif_warmup_params.region_size = 10480 wb_info->mcif_buf_params.luma_pitch * wb_info->dwb_params.dest_height; 10481 } 10482 wb_info->mcif_warmup_params.p_vmid = 1; 10483 wb_info->writeback_source_plane = pipe->plane_state; 10484 10485 dc_stream_add_writeback(dm->dc, crtc_state->stream, wb_info); 10486 10487 acrtc->wb_pending = true; 10488 acrtc->wb_conn = wb_conn; 10489 drm_writeback_queue_job(wb_conn, new_con_state); 10490 } 10491 10492 static void amdgpu_dm_update_hdcp(struct drm_atomic_state *state) 10493 { 10494 struct drm_connector_state *old_con_state, *new_con_state; 10495 struct drm_device *dev = state->dev; 10496 struct drm_connector *connector; 10497 struct amdgpu_device *adev = drm_to_adev(dev); 10498 int i; 10499 10500 if (!adev->dm.hdcp_workqueue) 10501 return; 10502 10503 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 10504 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 10505 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 10506 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 10507 struct dm_crtc_state *dm_new_crtc_state; 10508 struct amdgpu_dm_connector *aconnector; 10509 10510 if (!connector || connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 10511 continue; 10512 10513 aconnector = to_amdgpu_dm_connector(connector); 10514 10515 drm_dbg(dev, "[HDCP_DM] -------------- i : %x ----------\n", i); 10516 10517 drm_dbg(dev, "[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n", 10518 connector->index, connector->status, connector->dpms); 10519 drm_dbg(dev, "[HDCP_DM] state protection old: %x new: %x\n", 10520 old_con_state->content_protection, new_con_state->content_protection); 10521 10522 if (aconnector->dc_sink) { 10523 if (aconnector->dc_sink->sink_signal != SIGNAL_TYPE_VIRTUAL && 10524 aconnector->dc_sink->sink_signal != SIGNAL_TYPE_NONE) { 10525 drm_dbg(dev, "[HDCP_DM] pipe_ctx dispname=%s\n", 10526 aconnector->dc_sink->edid_caps.display_name); 10527 } 10528 } 10529 10530 new_crtc_state = NULL; 10531 old_crtc_state = NULL; 10532 10533 if (acrtc) { 10534 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base); 10535 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base); 10536 } 10537 10538 if (old_crtc_state) 10539 drm_dbg(dev, "old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 10540 old_crtc_state->enable, 10541 old_crtc_state->active, 10542 old_crtc_state->mode_changed, 10543 old_crtc_state->active_changed, 10544 old_crtc_state->connectors_changed); 10545 10546 if (new_crtc_state) 10547 drm_dbg(dev, "NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n", 10548 new_crtc_state->enable, 10549 new_crtc_state->active, 10550 new_crtc_state->mode_changed, 10551 new_crtc_state->active_changed, 10552 new_crtc_state->connectors_changed); 10553 10554 10555 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10556 10557 if (dm_new_crtc_state && dm_new_crtc_state->stream == NULL && 10558 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) { 10559 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index); 10560 new_con_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED; 10561 dm_new_con_state->update_hdcp = true; 10562 continue; 10563 } 10564 10565 if (is_content_protection_different(new_crtc_state, old_crtc_state, new_con_state, 10566 old_con_state, connector, adev->dm.hdcp_workqueue)) { 10567 /* when display is unplugged from mst hub, connctor will 10568 * be destroyed within dm_dp_mst_connector_destroy. connector 10569 * hdcp perperties, like type, undesired, desired, enabled, 10570 * will be lost. So, save hdcp properties into hdcp_work within 10571 * amdgpu_dm_atomic_commit_tail. if the same display is 10572 * plugged back with same display index, its hdcp properties 10573 * will be retrieved from hdcp_work within dm_dp_mst_get_modes 10574 */ 10575 10576 bool enable_encryption = false; 10577 10578 if (new_con_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) 10579 enable_encryption = true; 10580 10581 if (aconnector->dc_link && aconnector->dc_sink && 10582 aconnector->dc_link->type == dc_connection_mst_branch) { 10583 struct hdcp_workqueue *hdcp_work = adev->dm.hdcp_workqueue; 10584 struct hdcp_workqueue *hdcp_w = 10585 &hdcp_work[aconnector->dc_link->link_index]; 10586 10587 hdcp_w->hdcp_content_type[connector->index] = 10588 new_con_state->hdcp_content_type; 10589 hdcp_w->content_protection[connector->index] = 10590 new_con_state->content_protection; 10591 } 10592 10593 if (new_crtc_state && new_crtc_state->mode_changed && 10594 new_con_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) 10595 enable_encryption = true; 10596 10597 drm_info(dev, "[HDCP_DM] hdcp_update_display enable_encryption = %x\n", enable_encryption); 10598 10599 if (aconnector->dc_link) 10600 hdcp_update_display( 10601 adev->dm.hdcp_workqueue, aconnector->dc_link->link_index, aconnector, 10602 new_con_state->hdcp_content_type, enable_encryption); 10603 } 10604 } 10605 } 10606 10607 static int amdgpu_dm_atomic_setup_commit(struct drm_atomic_state *state) 10608 { 10609 struct drm_crtc *crtc; 10610 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 10611 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 10612 int i, ret; 10613 10614 ret = drm_dp_mst_atomic_setup_commit(state); 10615 if (ret) 10616 return ret; 10617 10618 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 10619 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 10620 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10621 /* 10622 * Color management settings. We also update color properties 10623 * when a modeset is needed, to ensure it gets reprogrammed. 10624 */ 10625 if (dm_new_crtc_state->base.active && dm_new_crtc_state->stream && 10626 (dm_new_crtc_state->base.color_mgmt_changed || 10627 dm_old_crtc_state->regamma_tf != dm_new_crtc_state->regamma_tf || 10628 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 10629 ret = amdgpu_dm_update_crtc_color_mgmt(dm_new_crtc_state); 10630 if (ret) { 10631 drm_dbg_atomic(state->dev, "Failed to update color state\n"); 10632 return ret; 10633 } 10634 } 10635 } 10636 10637 return 0; 10638 } 10639 10640 /** 10641 * amdgpu_dm_atomic_commit_tail() - AMDgpu DM's commit tail implementation. 10642 * @state: The atomic state to commit 10643 * 10644 * This will tell DC to commit the constructed DC state from atomic_check, 10645 * programming the hardware. Any failures here implies a hardware failure, since 10646 * atomic check should have filtered anything non-kosher. 10647 */ 10648 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state) 10649 { 10650 struct drm_device *dev = state->dev; 10651 struct amdgpu_device *adev = drm_to_adev(dev); 10652 struct amdgpu_display_manager *dm = &adev->dm; 10653 struct dm_atomic_state *dm_state; 10654 struct dc_state *dc_state = NULL; 10655 u32 i, j; 10656 struct drm_crtc *crtc; 10657 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 10658 unsigned long flags; 10659 bool wait_for_vblank = true; 10660 struct drm_connector *connector; 10661 struct drm_connector_state *old_con_state = NULL, *new_con_state = NULL; 10662 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 10663 int crtc_disable_count = 0; 10664 10665 trace_amdgpu_dm_atomic_commit_tail_begin(state); 10666 10667 drm_atomic_helper_update_legacy_modeset_state(dev, state); 10668 drm_dp_mst_atomic_wait_for_dependencies(state); 10669 10670 dm_state = dm_atomic_get_new_state(state); 10671 if (dm_state && dm_state->context) { 10672 dc_state = dm_state->context; 10673 amdgpu_dm_commit_streams(state, dc_state); 10674 } 10675 10676 amdgpu_dm_update_hdcp(state); 10677 10678 /* Handle connector state changes */ 10679 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 10680 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 10681 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state); 10682 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 10683 struct dc_surface_update *dummy_updates; 10684 struct dc_stream_update stream_update; 10685 struct dc_info_packet hdr_packet; 10686 struct dc_stream_status *status = NULL; 10687 bool abm_changed, hdr_changed, scaling_changed, output_color_space_changed = false; 10688 10689 memset(&stream_update, 0, sizeof(stream_update)); 10690 10691 if (acrtc) { 10692 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base); 10693 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base); 10694 } 10695 10696 /* Skip any modesets/resets */ 10697 if (!acrtc || drm_atomic_crtc_needs_modeset(new_crtc_state)) 10698 continue; 10699 10700 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10701 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 10702 10703 scaling_changed = is_scaling_state_different(dm_new_con_state, 10704 dm_old_con_state); 10705 10706 if ((new_con_state->hdmi.broadcast_rgb != old_con_state->hdmi.broadcast_rgb) && 10707 (dm_old_crtc_state->stream->output_color_space != 10708 get_output_color_space(&dm_new_crtc_state->stream->timing, new_con_state))) 10709 output_color_space_changed = true; 10710 10711 abm_changed = dm_new_crtc_state->abm_level != 10712 dm_old_crtc_state->abm_level; 10713 10714 hdr_changed = 10715 !drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state); 10716 10717 if (!scaling_changed && !abm_changed && !hdr_changed && !output_color_space_changed) 10718 continue; 10719 10720 stream_update.stream = dm_new_crtc_state->stream; 10721 if (scaling_changed) { 10722 update_stream_scaling_settings(&dm_new_con_state->base.crtc->mode, 10723 dm_new_con_state, dm_new_crtc_state->stream); 10724 10725 stream_update.src = dm_new_crtc_state->stream->src; 10726 stream_update.dst = dm_new_crtc_state->stream->dst; 10727 } 10728 10729 if (output_color_space_changed) { 10730 dm_new_crtc_state->stream->output_color_space 10731 = get_output_color_space(&dm_new_crtc_state->stream->timing, new_con_state); 10732 10733 stream_update.output_color_space = &dm_new_crtc_state->stream->output_color_space; 10734 } 10735 10736 if (abm_changed) { 10737 dm_new_crtc_state->stream->abm_level = dm_new_crtc_state->abm_level; 10738 10739 stream_update.abm_level = &dm_new_crtc_state->abm_level; 10740 } 10741 10742 if (hdr_changed) { 10743 fill_hdr_info_packet(new_con_state, &hdr_packet); 10744 stream_update.hdr_static_metadata = &hdr_packet; 10745 } 10746 10747 status = dc_stream_get_status(dm_new_crtc_state->stream); 10748 10749 if (WARN_ON(!status)) 10750 continue; 10751 10752 WARN_ON(!status->plane_count); 10753 10754 /* 10755 * TODO: DC refuses to perform stream updates without a dc_surface_update. 10756 * Here we create an empty update on each plane. 10757 * To fix this, DC should permit updating only stream properties. 10758 */ 10759 dummy_updates = kzalloc(sizeof(struct dc_surface_update) * MAX_SURFACES, GFP_KERNEL); 10760 if (!dummy_updates) { 10761 drm_err(adev_to_drm(adev), "Failed to allocate memory for dummy_updates.\n"); 10762 continue; 10763 } 10764 for (j = 0; j < status->plane_count; j++) 10765 dummy_updates[j].surface = status->plane_states[0]; 10766 10767 sort(dummy_updates, status->plane_count, 10768 sizeof(*dummy_updates), dm_plane_layer_index_cmp, NULL); 10769 10770 mutex_lock(&dm->dc_lock); 10771 dc_exit_ips_for_hw_access(dm->dc); 10772 dc_update_planes_and_stream(dm->dc, 10773 dummy_updates, 10774 status->plane_count, 10775 dm_new_crtc_state->stream, 10776 &stream_update); 10777 mutex_unlock(&dm->dc_lock); 10778 kfree(dummy_updates); 10779 10780 drm_connector_update_privacy_screen(new_con_state); 10781 } 10782 10783 /** 10784 * Enable interrupts for CRTCs that are newly enabled or went through 10785 * a modeset. It was intentionally deferred until after the front end 10786 * state was modified to wait until the OTG was on and so the IRQ 10787 * handlers didn't access stale or invalid state. 10788 */ 10789 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 10790 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc); 10791 #ifdef CONFIG_DEBUG_FS 10792 enum amdgpu_dm_pipe_crc_source cur_crc_src; 10793 #endif 10794 /* Count number of newly disabled CRTCs for dropping PM refs later. */ 10795 if (old_crtc_state->active && !new_crtc_state->active) 10796 crtc_disable_count++; 10797 10798 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10799 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 10800 10801 /* For freesync config update on crtc state and params for irq */ 10802 update_stream_irq_parameters(dm, dm_new_crtc_state); 10803 10804 #ifdef CONFIG_DEBUG_FS 10805 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 10806 cur_crc_src = acrtc->dm_irq_params.crc_src; 10807 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 10808 #endif 10809 10810 if (new_crtc_state->active && 10811 (!old_crtc_state->active || 10812 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 10813 dc_stream_retain(dm_new_crtc_state->stream); 10814 acrtc->dm_irq_params.stream = dm_new_crtc_state->stream; 10815 manage_dm_interrupts(adev, acrtc, dm_new_crtc_state); 10816 } 10817 /* Handle vrr on->off / off->on transitions */ 10818 amdgpu_dm_handle_vrr_transition(dm_old_crtc_state, dm_new_crtc_state); 10819 10820 #ifdef CONFIG_DEBUG_FS 10821 if (new_crtc_state->active && 10822 (!old_crtc_state->active || 10823 drm_atomic_crtc_needs_modeset(new_crtc_state))) { 10824 /** 10825 * Frontend may have changed so reapply the CRC capture 10826 * settings for the stream. 10827 */ 10828 if (amdgpu_dm_is_valid_crc_source(cur_crc_src)) { 10829 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) 10830 if (amdgpu_dm_crc_window_is_activated(crtc)) { 10831 uint8_t cnt; 10832 10833 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 10834 for (cnt = 0; cnt < MAX_CRC_WINDOW_NUM; cnt++) { 10835 if (acrtc->dm_irq_params.window_param[cnt].enable) { 10836 acrtc->dm_irq_params.window_param[cnt].update_win = true; 10837 10838 /** 10839 * It takes 2 frames for HW to stably generate CRC when 10840 * resuming from suspend, so we set skip_frame_cnt 2. 10841 */ 10842 acrtc->dm_irq_params.window_param[cnt].skip_frame_cnt = 2; 10843 } 10844 } 10845 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 10846 } 10847 #endif 10848 if (amdgpu_dm_crtc_configure_crc_source( 10849 crtc, dm_new_crtc_state, cur_crc_src)) 10850 drm_dbg_atomic(dev, "Failed to configure crc source"); 10851 } 10852 } 10853 #endif 10854 } 10855 10856 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) 10857 if (new_crtc_state->async_flip) 10858 wait_for_vblank = false; 10859 10860 /* update planes when needed per crtc*/ 10861 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) { 10862 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10863 10864 if (dm_new_crtc_state->stream) 10865 amdgpu_dm_commit_planes(state, dev, dm, crtc, wait_for_vblank); 10866 } 10867 10868 /* Enable writeback */ 10869 for_each_new_connector_in_state(state, connector, new_con_state, i) { 10870 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 10871 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 10872 10873 if (connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) 10874 continue; 10875 10876 if (!new_con_state->writeback_job) 10877 continue; 10878 10879 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base); 10880 10881 if (!new_crtc_state) 10882 continue; 10883 10884 if (acrtc->wb_enabled) 10885 continue; 10886 10887 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 10888 10889 dm_set_writeback(dm, dm_new_crtc_state, connector, new_con_state); 10890 acrtc->wb_enabled = true; 10891 } 10892 10893 /* Update audio instances for each connector. */ 10894 amdgpu_dm_commit_audio(dev, state); 10895 10896 /* restore the backlight level */ 10897 for (i = 0; i < dm->num_of_edps; i++) { 10898 if (dm->backlight_dev[i] && 10899 (dm->actual_brightness[i] != dm->brightness[i])) 10900 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]); 10901 } 10902 10903 /* 10904 * send vblank event on all events not handled in flip and 10905 * mark consumed event for drm_atomic_helper_commit_hw_done 10906 */ 10907 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags); 10908 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 10909 10910 if (new_crtc_state->event) 10911 drm_send_event_locked(dev, &new_crtc_state->event->base); 10912 10913 new_crtc_state->event = NULL; 10914 } 10915 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags); 10916 10917 /* Signal HW programming completion */ 10918 drm_atomic_helper_commit_hw_done(state); 10919 10920 if (wait_for_vblank) 10921 drm_atomic_helper_wait_for_flip_done(dev, state); 10922 10923 drm_atomic_helper_cleanup_planes(dev, state); 10924 10925 /* Don't free the memory if we are hitting this as part of suspend. 10926 * This way we don't free any memory during suspend; see 10927 * amdgpu_bo_free_kernel(). The memory will be freed in the first 10928 * non-suspend modeset or when the driver is torn down. 10929 */ 10930 if (!adev->in_suspend) { 10931 /* return the stolen vga memory back to VRAM */ 10932 if (!adev->mman.keep_stolen_vga_memory) 10933 amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL); 10934 amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL); 10935 } 10936 10937 /* 10938 * Finally, drop a runtime PM reference for each newly disabled CRTC, 10939 * so we can put the GPU into runtime suspend if we're not driving any 10940 * displays anymore 10941 */ 10942 for (i = 0; i < crtc_disable_count; i++) 10943 pm_runtime_put_autosuspend(dev->dev); 10944 pm_runtime_mark_last_busy(dev->dev); 10945 10946 trace_amdgpu_dm_atomic_commit_tail_finish(state); 10947 } 10948 10949 static int dm_force_atomic_commit(struct drm_connector *connector) 10950 { 10951 int ret = 0; 10952 struct drm_device *ddev = connector->dev; 10953 struct drm_atomic_state *state = drm_atomic_state_alloc(ddev); 10954 struct amdgpu_crtc *disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc); 10955 struct drm_plane *plane = disconnected_acrtc->base.primary; 10956 struct drm_connector_state *conn_state; 10957 struct drm_crtc_state *crtc_state; 10958 struct drm_plane_state *plane_state; 10959 10960 if (!state) 10961 return -ENOMEM; 10962 10963 state->acquire_ctx = ddev->mode_config.acquire_ctx; 10964 10965 /* Construct an atomic state to restore previous display setting */ 10966 10967 /* 10968 * Attach connectors to drm_atomic_state 10969 */ 10970 conn_state = drm_atomic_get_connector_state(state, connector); 10971 10972 /* Check for error in getting connector state */ 10973 if (IS_ERR(conn_state)) { 10974 ret = PTR_ERR(conn_state); 10975 goto out; 10976 } 10977 10978 /* Attach crtc to drm_atomic_state*/ 10979 crtc_state = drm_atomic_get_crtc_state(state, &disconnected_acrtc->base); 10980 10981 /* Check for error in getting crtc state */ 10982 if (IS_ERR(crtc_state)) { 10983 ret = PTR_ERR(crtc_state); 10984 goto out; 10985 } 10986 10987 /* force a restore */ 10988 crtc_state->mode_changed = true; 10989 10990 /* Attach plane to drm_atomic_state */ 10991 plane_state = drm_atomic_get_plane_state(state, plane); 10992 10993 /* Check for error in getting plane state */ 10994 if (IS_ERR(plane_state)) { 10995 ret = PTR_ERR(plane_state); 10996 goto out; 10997 } 10998 10999 /* Call commit internally with the state we just constructed */ 11000 ret = drm_atomic_commit(state); 11001 11002 out: 11003 drm_atomic_state_put(state); 11004 if (ret) 11005 drm_err(ddev, "Restoring old state failed with %i\n", ret); 11006 11007 return ret; 11008 } 11009 11010 /* 11011 * This function handles all cases when set mode does not come upon hotplug. 11012 * This includes when a display is unplugged then plugged back into the 11013 * same port and when running without usermode desktop manager supprot 11014 */ 11015 void dm_restore_drm_connector_state(struct drm_device *dev, 11016 struct drm_connector *connector) 11017 { 11018 struct amdgpu_dm_connector *aconnector; 11019 struct amdgpu_crtc *disconnected_acrtc; 11020 struct dm_crtc_state *acrtc_state; 11021 11022 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 11023 return; 11024 11025 aconnector = to_amdgpu_dm_connector(connector); 11026 11027 if (!aconnector->dc_sink || !connector->state || !connector->encoder) 11028 return; 11029 11030 disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc); 11031 if (!disconnected_acrtc) 11032 return; 11033 11034 acrtc_state = to_dm_crtc_state(disconnected_acrtc->base.state); 11035 if (!acrtc_state->stream) 11036 return; 11037 11038 /* 11039 * If the previous sink is not released and different from the current, 11040 * we deduce we are in a state where we can not rely on usermode call 11041 * to turn on the display, so we do it here 11042 */ 11043 if (acrtc_state->stream->sink != aconnector->dc_sink) 11044 dm_force_atomic_commit(&aconnector->base); 11045 } 11046 11047 /* 11048 * Grabs all modesetting locks to serialize against any blocking commits, 11049 * Waits for completion of all non blocking commits. 11050 */ 11051 static int do_aquire_global_lock(struct drm_device *dev, 11052 struct drm_atomic_state *state) 11053 { 11054 struct drm_crtc *crtc; 11055 struct drm_crtc_commit *commit; 11056 long ret; 11057 11058 /* 11059 * Adding all modeset locks to aquire_ctx will 11060 * ensure that when the framework release it the 11061 * extra locks we are locking here will get released to 11062 */ 11063 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx); 11064 if (ret) 11065 return ret; 11066 11067 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 11068 spin_lock(&crtc->commit_lock); 11069 commit = list_first_entry_or_null(&crtc->commit_list, 11070 struct drm_crtc_commit, commit_entry); 11071 if (commit) 11072 drm_crtc_commit_get(commit); 11073 spin_unlock(&crtc->commit_lock); 11074 11075 if (!commit) 11076 continue; 11077 11078 /* 11079 * Make sure all pending HW programming completed and 11080 * page flips done 11081 */ 11082 ret = wait_for_completion_interruptible_timeout(&commit->hw_done, 10*HZ); 11083 11084 if (ret > 0) 11085 ret = wait_for_completion_interruptible_timeout( 11086 &commit->flip_done, 10*HZ); 11087 11088 if (ret == 0) 11089 drm_err(dev, "[CRTC:%d:%s] hw_done or flip_done timed out\n", 11090 crtc->base.id, crtc->name); 11091 11092 drm_crtc_commit_put(commit); 11093 } 11094 11095 return ret < 0 ? ret : 0; 11096 } 11097 11098 static void get_freesync_config_for_crtc( 11099 struct dm_crtc_state *new_crtc_state, 11100 struct dm_connector_state *new_con_state) 11101 { 11102 struct mod_freesync_config config = {0}; 11103 struct amdgpu_dm_connector *aconnector; 11104 struct drm_display_mode *mode = &new_crtc_state->base.mode; 11105 int vrefresh = drm_mode_vrefresh(mode); 11106 bool fs_vid_mode = false; 11107 11108 if (new_con_state->base.connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 11109 return; 11110 11111 aconnector = to_amdgpu_dm_connector(new_con_state->base.connector); 11112 11113 new_crtc_state->vrr_supported = new_con_state->freesync_capable && 11114 vrefresh >= aconnector->min_vfreq && 11115 vrefresh <= aconnector->max_vfreq; 11116 11117 if (new_crtc_state->vrr_supported) { 11118 new_crtc_state->stream->ignore_msa_timing_param = true; 11119 fs_vid_mode = new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED; 11120 11121 config.min_refresh_in_uhz = aconnector->min_vfreq * 1000000; 11122 config.max_refresh_in_uhz = aconnector->max_vfreq * 1000000; 11123 config.vsif_supported = true; 11124 config.btr = true; 11125 11126 if (fs_vid_mode) { 11127 config.state = VRR_STATE_ACTIVE_FIXED; 11128 config.fixed_refresh_in_uhz = new_crtc_state->freesync_config.fixed_refresh_in_uhz; 11129 goto out; 11130 } else if (new_crtc_state->base.vrr_enabled) { 11131 config.state = VRR_STATE_ACTIVE_VARIABLE; 11132 } else { 11133 config.state = VRR_STATE_INACTIVE; 11134 } 11135 } else { 11136 config.state = VRR_STATE_UNSUPPORTED; 11137 } 11138 out: 11139 new_crtc_state->freesync_config = config; 11140 } 11141 11142 static void reset_freesync_config_for_crtc( 11143 struct dm_crtc_state *new_crtc_state) 11144 { 11145 new_crtc_state->vrr_supported = false; 11146 11147 memset(&new_crtc_state->vrr_infopacket, 0, 11148 sizeof(new_crtc_state->vrr_infopacket)); 11149 } 11150 11151 static bool 11152 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state, 11153 struct drm_crtc_state *new_crtc_state) 11154 { 11155 const struct drm_display_mode *old_mode, *new_mode; 11156 11157 if (!old_crtc_state || !new_crtc_state) 11158 return false; 11159 11160 old_mode = &old_crtc_state->mode; 11161 new_mode = &new_crtc_state->mode; 11162 11163 if (old_mode->clock == new_mode->clock && 11164 old_mode->hdisplay == new_mode->hdisplay && 11165 old_mode->vdisplay == new_mode->vdisplay && 11166 old_mode->htotal == new_mode->htotal && 11167 old_mode->vtotal != new_mode->vtotal && 11168 old_mode->hsync_start == new_mode->hsync_start && 11169 old_mode->vsync_start != new_mode->vsync_start && 11170 old_mode->hsync_end == new_mode->hsync_end && 11171 old_mode->vsync_end != new_mode->vsync_end && 11172 old_mode->hskew == new_mode->hskew && 11173 old_mode->vscan == new_mode->vscan && 11174 (old_mode->vsync_end - old_mode->vsync_start) == 11175 (new_mode->vsync_end - new_mode->vsync_start)) 11176 return true; 11177 11178 return false; 11179 } 11180 11181 static void set_freesync_fixed_config(struct dm_crtc_state *dm_new_crtc_state) 11182 { 11183 u64 num, den, res; 11184 struct drm_crtc_state *new_crtc_state = &dm_new_crtc_state->base; 11185 11186 dm_new_crtc_state->freesync_config.state = VRR_STATE_ACTIVE_FIXED; 11187 11188 num = (unsigned long long)new_crtc_state->mode.clock * 1000 * 1000000; 11189 den = (unsigned long long)new_crtc_state->mode.htotal * 11190 (unsigned long long)new_crtc_state->mode.vtotal; 11191 11192 res = div_u64(num, den); 11193 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = res; 11194 } 11195 11196 static int dm_update_crtc_state(struct amdgpu_display_manager *dm, 11197 struct drm_atomic_state *state, 11198 struct drm_crtc *crtc, 11199 struct drm_crtc_state *old_crtc_state, 11200 struct drm_crtc_state *new_crtc_state, 11201 bool enable, 11202 bool *lock_and_validation_needed) 11203 { 11204 struct dm_atomic_state *dm_state = NULL; 11205 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 11206 struct dc_stream_state *new_stream; 11207 struct amdgpu_device *adev = dm->adev; 11208 int ret = 0; 11209 11210 /* 11211 * TODO Move this code into dm_crtc_atomic_check once we get rid of dc_validation_set 11212 * update changed items 11213 */ 11214 struct amdgpu_crtc *acrtc = NULL; 11215 struct drm_connector *connector = NULL; 11216 struct amdgpu_dm_connector *aconnector = NULL; 11217 struct drm_connector_state *drm_new_conn_state = NULL, *drm_old_conn_state = NULL; 11218 struct dm_connector_state *dm_new_conn_state = NULL, *dm_old_conn_state = NULL; 11219 11220 new_stream = NULL; 11221 11222 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 11223 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 11224 acrtc = to_amdgpu_crtc(crtc); 11225 connector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc); 11226 if (connector) 11227 aconnector = to_amdgpu_dm_connector(connector); 11228 11229 /* TODO This hack should go away */ 11230 if (connector && enable) { 11231 /* Make sure fake sink is created in plug-in scenario */ 11232 drm_new_conn_state = drm_atomic_get_new_connector_state(state, 11233 connector); 11234 drm_old_conn_state = drm_atomic_get_old_connector_state(state, 11235 connector); 11236 11237 if (WARN_ON(!drm_new_conn_state)) { 11238 ret = -EINVAL; 11239 goto fail; 11240 } 11241 11242 dm_new_conn_state = to_dm_connector_state(drm_new_conn_state); 11243 dm_old_conn_state = to_dm_connector_state(drm_old_conn_state); 11244 11245 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 11246 goto skip_modeset; 11247 11248 new_stream = create_validate_stream_for_sink(connector, 11249 &new_crtc_state->mode, 11250 dm_new_conn_state, 11251 dm_old_crtc_state->stream); 11252 11253 /* 11254 * we can have no stream on ACTION_SET if a display 11255 * was disconnected during S3, in this case it is not an 11256 * error, the OS will be updated after detection, and 11257 * will do the right thing on next atomic commit 11258 */ 11259 11260 if (!new_stream) { 11261 drm_dbg_driver(adev_to_drm(adev), "%s: Failed to create new stream for crtc %d\n", 11262 __func__, acrtc->base.base.id); 11263 ret = -ENOMEM; 11264 goto fail; 11265 } 11266 11267 /* 11268 * TODO: Check VSDB bits to decide whether this should 11269 * be enabled or not. 11270 */ 11271 new_stream->triggered_crtc_reset.enabled = 11272 dm->force_timing_sync; 11273 11274 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level; 11275 11276 ret = fill_hdr_info_packet(drm_new_conn_state, 11277 &new_stream->hdr_static_metadata); 11278 if (ret) 11279 goto fail; 11280 11281 /* 11282 * If we already removed the old stream from the context 11283 * (and set the new stream to NULL) then we can't reuse 11284 * the old stream even if the stream and scaling are unchanged. 11285 * We'll hit the BUG_ON and black screen. 11286 * 11287 * TODO: Refactor this function to allow this check to work 11288 * in all conditions. 11289 */ 11290 if (amdgpu_freesync_vid_mode && 11291 dm_new_crtc_state->stream && 11292 is_timing_unchanged_for_freesync(new_crtc_state, old_crtc_state)) 11293 goto skip_modeset; 11294 11295 if (dm_new_crtc_state->stream && 11296 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) && 11297 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream)) { 11298 new_crtc_state->mode_changed = false; 11299 drm_dbg_driver(adev_to_drm(adev), "Mode change not required, setting mode_changed to %d", 11300 new_crtc_state->mode_changed); 11301 } 11302 } 11303 11304 /* mode_changed flag may get updated above, need to check again */ 11305 if (!drm_atomic_crtc_needs_modeset(new_crtc_state)) 11306 goto skip_modeset; 11307 11308 drm_dbg_state(state->dev, 11309 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n", 11310 acrtc->crtc_id, 11311 new_crtc_state->enable, 11312 new_crtc_state->active, 11313 new_crtc_state->planes_changed, 11314 new_crtc_state->mode_changed, 11315 new_crtc_state->active_changed, 11316 new_crtc_state->connectors_changed); 11317 11318 /* Remove stream for any changed/disabled CRTC */ 11319 if (!enable) { 11320 11321 if (!dm_old_crtc_state->stream) 11322 goto skip_modeset; 11323 11324 /* Unset freesync video if it was active before */ 11325 if (dm_old_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) { 11326 dm_new_crtc_state->freesync_config.state = VRR_STATE_INACTIVE; 11327 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = 0; 11328 } 11329 11330 /* Now check if we should set freesync video mode */ 11331 if (amdgpu_freesync_vid_mode && dm_new_crtc_state->stream && 11332 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) && 11333 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream) && 11334 is_timing_unchanged_for_freesync(new_crtc_state, 11335 old_crtc_state)) { 11336 new_crtc_state->mode_changed = false; 11337 drm_dbg_driver(adev_to_drm(adev), 11338 "Mode change not required for front porch change, setting mode_changed to %d", 11339 new_crtc_state->mode_changed); 11340 11341 set_freesync_fixed_config(dm_new_crtc_state); 11342 11343 goto skip_modeset; 11344 } else if (amdgpu_freesync_vid_mode && aconnector && 11345 is_freesync_video_mode(&new_crtc_state->mode, 11346 aconnector)) { 11347 struct drm_display_mode *high_mode; 11348 11349 high_mode = get_highest_refresh_rate_mode(aconnector, false); 11350 if (!drm_mode_equal(&new_crtc_state->mode, high_mode)) 11351 set_freesync_fixed_config(dm_new_crtc_state); 11352 } 11353 11354 ret = dm_atomic_get_state(state, &dm_state); 11355 if (ret) 11356 goto fail; 11357 11358 drm_dbg_driver(adev_to_drm(adev), "Disabling DRM crtc: %d\n", 11359 crtc->base.id); 11360 11361 /* i.e. reset mode */ 11362 if (dc_state_remove_stream( 11363 dm->dc, 11364 dm_state->context, 11365 dm_old_crtc_state->stream) != DC_OK) { 11366 ret = -EINVAL; 11367 goto fail; 11368 } 11369 11370 dc_stream_release(dm_old_crtc_state->stream); 11371 dm_new_crtc_state->stream = NULL; 11372 11373 reset_freesync_config_for_crtc(dm_new_crtc_state); 11374 11375 *lock_and_validation_needed = true; 11376 11377 } else {/* Add stream for any updated/enabled CRTC */ 11378 /* 11379 * Quick fix to prevent NULL pointer on new_stream when 11380 * added MST connectors not found in existing crtc_state in the chained mode 11381 * TODO: need to dig out the root cause of that 11382 */ 11383 if (!connector) 11384 goto skip_modeset; 11385 11386 if (modereset_required(new_crtc_state)) 11387 goto skip_modeset; 11388 11389 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, new_stream, 11390 dm_old_crtc_state->stream)) { 11391 11392 WARN_ON(dm_new_crtc_state->stream); 11393 11394 ret = dm_atomic_get_state(state, &dm_state); 11395 if (ret) 11396 goto fail; 11397 11398 dm_new_crtc_state->stream = new_stream; 11399 11400 dc_stream_retain(new_stream); 11401 11402 DRM_DEBUG_ATOMIC("Enabling DRM crtc: %d\n", 11403 crtc->base.id); 11404 11405 if (dc_state_add_stream( 11406 dm->dc, 11407 dm_state->context, 11408 dm_new_crtc_state->stream) != DC_OK) { 11409 ret = -EINVAL; 11410 goto fail; 11411 } 11412 11413 *lock_and_validation_needed = true; 11414 } 11415 } 11416 11417 skip_modeset: 11418 /* Release extra reference */ 11419 if (new_stream) 11420 dc_stream_release(new_stream); 11421 11422 /* 11423 * We want to do dc stream updates that do not require a 11424 * full modeset below. 11425 */ 11426 if (!(enable && connector && new_crtc_state->active)) 11427 return 0; 11428 /* 11429 * Given above conditions, the dc state cannot be NULL because: 11430 * 1. We're in the process of enabling CRTCs (just been added 11431 * to the dc context, or already is on the context) 11432 * 2. Has a valid connector attached, and 11433 * 3. Is currently active and enabled. 11434 * => The dc stream state currently exists. 11435 */ 11436 BUG_ON(dm_new_crtc_state->stream == NULL); 11437 11438 /* Scaling or underscan settings */ 11439 if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) || 11440 drm_atomic_crtc_needs_modeset(new_crtc_state)) 11441 update_stream_scaling_settings( 11442 &new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream); 11443 11444 /* ABM settings */ 11445 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level; 11446 11447 /* 11448 * Color management settings. We also update color properties 11449 * when a modeset is needed, to ensure it gets reprogrammed. 11450 */ 11451 if (dm_new_crtc_state->base.color_mgmt_changed || 11452 dm_old_crtc_state->regamma_tf != dm_new_crtc_state->regamma_tf || 11453 drm_atomic_crtc_needs_modeset(new_crtc_state)) { 11454 ret = amdgpu_dm_check_crtc_color_mgmt(dm_new_crtc_state, true); 11455 if (ret) 11456 goto fail; 11457 } 11458 11459 /* Update Freesync settings. */ 11460 get_freesync_config_for_crtc(dm_new_crtc_state, 11461 dm_new_conn_state); 11462 11463 return ret; 11464 11465 fail: 11466 if (new_stream) 11467 dc_stream_release(new_stream); 11468 return ret; 11469 } 11470 11471 static bool should_reset_plane(struct drm_atomic_state *state, 11472 struct drm_plane *plane, 11473 struct drm_plane_state *old_plane_state, 11474 struct drm_plane_state *new_plane_state) 11475 { 11476 struct drm_plane *other; 11477 struct drm_plane_state *old_other_state, *new_other_state; 11478 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 11479 struct dm_crtc_state *old_dm_crtc_state, *new_dm_crtc_state; 11480 struct amdgpu_device *adev = drm_to_adev(plane->dev); 11481 int i; 11482 11483 /* 11484 * TODO: Remove this hack for all asics once it proves that the 11485 * fast updates works fine on DCN3.2+. 11486 */ 11487 if (amdgpu_ip_version(adev, DCE_HWIP, 0) < IP_VERSION(3, 2, 0) && 11488 state->allow_modeset) 11489 return true; 11490 11491 if (amdgpu_in_reset(adev) && state->allow_modeset) 11492 return true; 11493 11494 /* Exit early if we know that we're adding or removing the plane. */ 11495 if (old_plane_state->crtc != new_plane_state->crtc) 11496 return true; 11497 11498 /* old crtc == new_crtc == NULL, plane not in context. */ 11499 if (!new_plane_state->crtc) 11500 return false; 11501 11502 new_crtc_state = 11503 drm_atomic_get_new_crtc_state(state, new_plane_state->crtc); 11504 old_crtc_state = 11505 drm_atomic_get_old_crtc_state(state, old_plane_state->crtc); 11506 11507 if (!new_crtc_state) 11508 return true; 11509 11510 /* 11511 * A change in cursor mode means a new dc pipe needs to be acquired or 11512 * released from the state 11513 */ 11514 old_dm_crtc_state = to_dm_crtc_state(old_crtc_state); 11515 new_dm_crtc_state = to_dm_crtc_state(new_crtc_state); 11516 if (plane->type == DRM_PLANE_TYPE_CURSOR && 11517 old_dm_crtc_state != NULL && 11518 old_dm_crtc_state->cursor_mode != new_dm_crtc_state->cursor_mode) { 11519 return true; 11520 } 11521 11522 /* CRTC Degamma changes currently require us to recreate planes. */ 11523 if (new_crtc_state->color_mgmt_changed) 11524 return true; 11525 11526 /* 11527 * On zpos change, planes need to be reordered by removing and re-adding 11528 * them one by one to the dc state, in order of descending zpos. 11529 * 11530 * TODO: We can likely skip bandwidth validation if the only thing that 11531 * changed about the plane was it'z z-ordering. 11532 */ 11533 if (old_plane_state->normalized_zpos != new_plane_state->normalized_zpos) 11534 return true; 11535 11536 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) 11537 return true; 11538 11539 /* 11540 * If there are any new primary or overlay planes being added or 11541 * removed then the z-order can potentially change. To ensure 11542 * correct z-order and pipe acquisition the current DC architecture 11543 * requires us to remove and recreate all existing planes. 11544 * 11545 * TODO: Come up with a more elegant solution for this. 11546 */ 11547 for_each_oldnew_plane_in_state(state, other, old_other_state, new_other_state, i) { 11548 struct amdgpu_framebuffer *old_afb, *new_afb; 11549 struct dm_plane_state *dm_new_other_state, *dm_old_other_state; 11550 11551 dm_new_other_state = to_dm_plane_state(new_other_state); 11552 dm_old_other_state = to_dm_plane_state(old_other_state); 11553 11554 if (other->type == DRM_PLANE_TYPE_CURSOR) 11555 continue; 11556 11557 if (old_other_state->crtc != new_plane_state->crtc && 11558 new_other_state->crtc != new_plane_state->crtc) 11559 continue; 11560 11561 if (old_other_state->crtc != new_other_state->crtc) 11562 return true; 11563 11564 /* Src/dst size and scaling updates. */ 11565 if (old_other_state->src_w != new_other_state->src_w || 11566 old_other_state->src_h != new_other_state->src_h || 11567 old_other_state->crtc_w != new_other_state->crtc_w || 11568 old_other_state->crtc_h != new_other_state->crtc_h) 11569 return true; 11570 11571 /* Rotation / mirroring updates. */ 11572 if (old_other_state->rotation != new_other_state->rotation) 11573 return true; 11574 11575 /* Blending updates. */ 11576 if (old_other_state->pixel_blend_mode != 11577 new_other_state->pixel_blend_mode) 11578 return true; 11579 11580 /* Alpha updates. */ 11581 if (old_other_state->alpha != new_other_state->alpha) 11582 return true; 11583 11584 /* Colorspace changes. */ 11585 if (old_other_state->color_range != new_other_state->color_range || 11586 old_other_state->color_encoding != new_other_state->color_encoding) 11587 return true; 11588 11589 /* HDR/Transfer Function changes. */ 11590 if (dm_old_other_state->degamma_tf != dm_new_other_state->degamma_tf || 11591 dm_old_other_state->degamma_lut != dm_new_other_state->degamma_lut || 11592 dm_old_other_state->hdr_mult != dm_new_other_state->hdr_mult || 11593 dm_old_other_state->ctm != dm_new_other_state->ctm || 11594 dm_old_other_state->shaper_lut != dm_new_other_state->shaper_lut || 11595 dm_old_other_state->shaper_tf != dm_new_other_state->shaper_tf || 11596 dm_old_other_state->lut3d != dm_new_other_state->lut3d || 11597 dm_old_other_state->blend_lut != dm_new_other_state->blend_lut || 11598 dm_old_other_state->blend_tf != dm_new_other_state->blend_tf) 11599 return true; 11600 11601 /* Framebuffer checks fall at the end. */ 11602 if (!old_other_state->fb || !new_other_state->fb) 11603 continue; 11604 11605 /* Pixel format changes can require bandwidth updates. */ 11606 if (old_other_state->fb->format != new_other_state->fb->format) 11607 return true; 11608 11609 old_afb = (struct amdgpu_framebuffer *)old_other_state->fb; 11610 new_afb = (struct amdgpu_framebuffer *)new_other_state->fb; 11611 11612 /* Tiling and DCC changes also require bandwidth updates. */ 11613 if (old_afb->tiling_flags != new_afb->tiling_flags || 11614 old_afb->base.modifier != new_afb->base.modifier) 11615 return true; 11616 } 11617 11618 return false; 11619 } 11620 11621 static int dm_check_cursor_fb(struct amdgpu_crtc *new_acrtc, 11622 struct drm_plane_state *new_plane_state, 11623 struct drm_framebuffer *fb) 11624 { 11625 struct amdgpu_device *adev = drm_to_adev(new_acrtc->base.dev); 11626 struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(fb); 11627 unsigned int pitch; 11628 bool linear; 11629 11630 if (fb->width > new_acrtc->max_cursor_width || 11631 fb->height > new_acrtc->max_cursor_height) { 11632 DRM_DEBUG_ATOMIC("Bad cursor FB size %dx%d\n", 11633 new_plane_state->fb->width, 11634 new_plane_state->fb->height); 11635 return -EINVAL; 11636 } 11637 if (new_plane_state->src_w != fb->width << 16 || 11638 new_plane_state->src_h != fb->height << 16) { 11639 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n"); 11640 return -EINVAL; 11641 } 11642 11643 /* Pitch in pixels */ 11644 pitch = fb->pitches[0] / fb->format->cpp[0]; 11645 11646 if (fb->width != pitch) { 11647 DRM_DEBUG_ATOMIC("Cursor FB width %d doesn't match pitch %d", 11648 fb->width, pitch); 11649 return -EINVAL; 11650 } 11651 11652 switch (pitch) { 11653 case 64: 11654 case 128: 11655 case 256: 11656 /* FB pitch is supported by cursor plane */ 11657 break; 11658 default: 11659 DRM_DEBUG_ATOMIC("Bad cursor FB pitch %d px\n", pitch); 11660 return -EINVAL; 11661 } 11662 11663 /* Core DRM takes care of checking FB modifiers, so we only need to 11664 * check tiling flags when the FB doesn't have a modifier. 11665 */ 11666 if (!(fb->flags & DRM_MODE_FB_MODIFIERS)) { 11667 if (adev->family >= AMDGPU_FAMILY_GC_12_0_0) { 11668 linear = AMDGPU_TILING_GET(afb->tiling_flags, GFX12_SWIZZLE_MODE) == 0; 11669 } else if (adev->family >= AMDGPU_FAMILY_AI) { 11670 linear = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0; 11671 } else { 11672 linear = AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_2D_TILED_THIN1 && 11673 AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_1D_TILED_THIN1 && 11674 AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE) == 0; 11675 } 11676 if (!linear) { 11677 DRM_DEBUG_ATOMIC("Cursor FB not linear"); 11678 return -EINVAL; 11679 } 11680 } 11681 11682 return 0; 11683 } 11684 11685 /* 11686 * Helper function for checking the cursor in native mode 11687 */ 11688 static int dm_check_native_cursor_state(struct drm_crtc *new_plane_crtc, 11689 struct drm_plane *plane, 11690 struct drm_plane_state *new_plane_state, 11691 bool enable) 11692 { 11693 11694 struct amdgpu_crtc *new_acrtc; 11695 int ret; 11696 11697 if (!enable || !new_plane_crtc || 11698 drm_atomic_plane_disabling(plane->state, new_plane_state)) 11699 return 0; 11700 11701 new_acrtc = to_amdgpu_crtc(new_plane_crtc); 11702 11703 if (new_plane_state->src_x != 0 || new_plane_state->src_y != 0) { 11704 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n"); 11705 return -EINVAL; 11706 } 11707 11708 if (new_plane_state->fb) { 11709 ret = dm_check_cursor_fb(new_acrtc, new_plane_state, 11710 new_plane_state->fb); 11711 if (ret) 11712 return ret; 11713 } 11714 11715 return 0; 11716 } 11717 11718 static bool dm_should_update_native_cursor(struct drm_atomic_state *state, 11719 struct drm_crtc *old_plane_crtc, 11720 struct drm_crtc *new_plane_crtc, 11721 bool enable) 11722 { 11723 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 11724 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 11725 11726 if (!enable) { 11727 if (old_plane_crtc == NULL) 11728 return true; 11729 11730 old_crtc_state = drm_atomic_get_old_crtc_state( 11731 state, old_plane_crtc); 11732 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 11733 11734 return dm_old_crtc_state->cursor_mode == DM_CURSOR_NATIVE_MODE; 11735 } else { 11736 if (new_plane_crtc == NULL) 11737 return true; 11738 11739 new_crtc_state = drm_atomic_get_new_crtc_state( 11740 state, new_plane_crtc); 11741 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 11742 11743 return dm_new_crtc_state->cursor_mode == DM_CURSOR_NATIVE_MODE; 11744 } 11745 } 11746 11747 static int dm_update_plane_state(struct dc *dc, 11748 struct drm_atomic_state *state, 11749 struct drm_plane *plane, 11750 struct drm_plane_state *old_plane_state, 11751 struct drm_plane_state *new_plane_state, 11752 bool enable, 11753 bool *lock_and_validation_needed, 11754 bool *is_top_most_overlay) 11755 { 11756 11757 struct dm_atomic_state *dm_state = NULL; 11758 struct drm_crtc *new_plane_crtc, *old_plane_crtc; 11759 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 11760 struct dm_crtc_state *dm_new_crtc_state, *dm_old_crtc_state; 11761 struct dm_plane_state *dm_new_plane_state, *dm_old_plane_state; 11762 bool needs_reset, update_native_cursor; 11763 int ret = 0; 11764 11765 11766 new_plane_crtc = new_plane_state->crtc; 11767 old_plane_crtc = old_plane_state->crtc; 11768 dm_new_plane_state = to_dm_plane_state(new_plane_state); 11769 dm_old_plane_state = to_dm_plane_state(old_plane_state); 11770 11771 update_native_cursor = dm_should_update_native_cursor(state, 11772 old_plane_crtc, 11773 new_plane_crtc, 11774 enable); 11775 11776 if (plane->type == DRM_PLANE_TYPE_CURSOR && update_native_cursor) { 11777 ret = dm_check_native_cursor_state(new_plane_crtc, plane, 11778 new_plane_state, enable); 11779 if (ret) 11780 return ret; 11781 11782 return 0; 11783 } 11784 11785 needs_reset = should_reset_plane(state, plane, old_plane_state, 11786 new_plane_state); 11787 11788 /* Remove any changed/removed planes */ 11789 if (!enable) { 11790 if (!needs_reset) 11791 return 0; 11792 11793 if (!old_plane_crtc) 11794 return 0; 11795 11796 old_crtc_state = drm_atomic_get_old_crtc_state( 11797 state, old_plane_crtc); 11798 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 11799 11800 if (!dm_old_crtc_state->stream) 11801 return 0; 11802 11803 DRM_DEBUG_ATOMIC("Disabling DRM plane: %d on DRM crtc %d\n", 11804 plane->base.id, old_plane_crtc->base.id); 11805 11806 ret = dm_atomic_get_state(state, &dm_state); 11807 if (ret) 11808 return ret; 11809 11810 if (!dc_state_remove_plane( 11811 dc, 11812 dm_old_crtc_state->stream, 11813 dm_old_plane_state->dc_state, 11814 dm_state->context)) { 11815 11816 return -EINVAL; 11817 } 11818 11819 if (dm_old_plane_state->dc_state) 11820 dc_plane_state_release(dm_old_plane_state->dc_state); 11821 11822 dm_new_plane_state->dc_state = NULL; 11823 11824 *lock_and_validation_needed = true; 11825 11826 } else { /* Add new planes */ 11827 struct dc_plane_state *dc_new_plane_state; 11828 11829 if (drm_atomic_plane_disabling(plane->state, new_plane_state)) 11830 return 0; 11831 11832 if (!new_plane_crtc) 11833 return 0; 11834 11835 new_crtc_state = drm_atomic_get_new_crtc_state(state, new_plane_crtc); 11836 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 11837 11838 if (!dm_new_crtc_state->stream) 11839 return 0; 11840 11841 if (!needs_reset) 11842 return 0; 11843 11844 ret = amdgpu_dm_plane_helper_check_state(new_plane_state, new_crtc_state); 11845 if (ret) 11846 goto out; 11847 11848 WARN_ON(dm_new_plane_state->dc_state); 11849 11850 dc_new_plane_state = dc_create_plane_state(dc); 11851 if (!dc_new_plane_state) { 11852 ret = -ENOMEM; 11853 goto out; 11854 } 11855 11856 DRM_DEBUG_ATOMIC("Enabling DRM plane: %d on DRM crtc %d\n", 11857 plane->base.id, new_plane_crtc->base.id); 11858 11859 ret = fill_dc_plane_attributes( 11860 drm_to_adev(new_plane_crtc->dev), 11861 dc_new_plane_state, 11862 new_plane_state, 11863 new_crtc_state); 11864 if (ret) { 11865 dc_plane_state_release(dc_new_plane_state); 11866 goto out; 11867 } 11868 11869 ret = dm_atomic_get_state(state, &dm_state); 11870 if (ret) { 11871 dc_plane_state_release(dc_new_plane_state); 11872 goto out; 11873 } 11874 11875 /* 11876 * Any atomic check errors that occur after this will 11877 * not need a release. The plane state will be attached 11878 * to the stream, and therefore part of the atomic 11879 * state. It'll be released when the atomic state is 11880 * cleaned. 11881 */ 11882 if (!dc_state_add_plane( 11883 dc, 11884 dm_new_crtc_state->stream, 11885 dc_new_plane_state, 11886 dm_state->context)) { 11887 11888 dc_plane_state_release(dc_new_plane_state); 11889 ret = -EINVAL; 11890 goto out; 11891 } 11892 11893 dm_new_plane_state->dc_state = dc_new_plane_state; 11894 11895 dm_new_crtc_state->mpo_requested |= (plane->type == DRM_PLANE_TYPE_OVERLAY); 11896 11897 /* Tell DC to do a full surface update every time there 11898 * is a plane change. Inefficient, but works for now. 11899 */ 11900 dm_new_plane_state->dc_state->update_flags.bits.full_update = 1; 11901 11902 *lock_and_validation_needed = true; 11903 } 11904 11905 out: 11906 /* If enabling cursor overlay failed, attempt fallback to native mode */ 11907 if (enable && ret == -EINVAL && plane->type == DRM_PLANE_TYPE_CURSOR) { 11908 ret = dm_check_native_cursor_state(new_plane_crtc, plane, 11909 new_plane_state, enable); 11910 if (ret) 11911 return ret; 11912 11913 dm_new_crtc_state->cursor_mode = DM_CURSOR_NATIVE_MODE; 11914 } 11915 11916 return ret; 11917 } 11918 11919 static void dm_get_oriented_plane_size(struct drm_plane_state *plane_state, 11920 int *src_w, int *src_h) 11921 { 11922 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) { 11923 case DRM_MODE_ROTATE_90: 11924 case DRM_MODE_ROTATE_270: 11925 *src_w = plane_state->src_h >> 16; 11926 *src_h = plane_state->src_w >> 16; 11927 break; 11928 case DRM_MODE_ROTATE_0: 11929 case DRM_MODE_ROTATE_180: 11930 default: 11931 *src_w = plane_state->src_w >> 16; 11932 *src_h = plane_state->src_h >> 16; 11933 break; 11934 } 11935 } 11936 11937 static void 11938 dm_get_plane_scale(struct drm_plane_state *plane_state, 11939 int *out_plane_scale_w, int *out_plane_scale_h) 11940 { 11941 int plane_src_w, plane_src_h; 11942 11943 dm_get_oriented_plane_size(plane_state, &plane_src_w, &plane_src_h); 11944 *out_plane_scale_w = plane_src_w ? plane_state->crtc_w * 1000 / plane_src_w : 0; 11945 *out_plane_scale_h = plane_src_h ? plane_state->crtc_h * 1000 / plane_src_h : 0; 11946 } 11947 11948 /* 11949 * The normalized_zpos value cannot be used by this iterator directly. It's only 11950 * calculated for enabled planes, potentially causing normalized_zpos collisions 11951 * between enabled/disabled planes in the atomic state. We need a unique value 11952 * so that the iterator will not generate the same object twice, or loop 11953 * indefinitely. 11954 */ 11955 static inline struct __drm_planes_state *__get_next_zpos( 11956 struct drm_atomic_state *state, 11957 struct __drm_planes_state *prev) 11958 { 11959 unsigned int highest_zpos = 0, prev_zpos = 256; 11960 uint32_t highest_id = 0, prev_id = UINT_MAX; 11961 struct drm_plane_state *new_plane_state; 11962 struct drm_plane *plane; 11963 int i, highest_i = -1; 11964 11965 if (prev != NULL) { 11966 prev_zpos = prev->new_state->zpos; 11967 prev_id = prev->ptr->base.id; 11968 } 11969 11970 for_each_new_plane_in_state(state, plane, new_plane_state, i) { 11971 /* Skip planes with higher zpos than the previously returned */ 11972 if (new_plane_state->zpos > prev_zpos || 11973 (new_plane_state->zpos == prev_zpos && 11974 plane->base.id >= prev_id)) 11975 continue; 11976 11977 /* Save the index of the plane with highest zpos */ 11978 if (new_plane_state->zpos > highest_zpos || 11979 (new_plane_state->zpos == highest_zpos && 11980 plane->base.id > highest_id)) { 11981 highest_zpos = new_plane_state->zpos; 11982 highest_id = plane->base.id; 11983 highest_i = i; 11984 } 11985 } 11986 11987 if (highest_i < 0) 11988 return NULL; 11989 11990 return &state->planes[highest_i]; 11991 } 11992 11993 /* 11994 * Use the uniqueness of the plane's (zpos, drm obj ID) combination to iterate 11995 * by descending zpos, as read from the new plane state. This is the same 11996 * ordering as defined by drm_atomic_normalize_zpos(). 11997 */ 11998 #define for_each_oldnew_plane_in_descending_zpos(__state, plane, old_plane_state, new_plane_state) \ 11999 for (struct __drm_planes_state *__i = __get_next_zpos((__state), NULL); \ 12000 __i != NULL; __i = __get_next_zpos((__state), __i)) \ 12001 for_each_if(((plane) = __i->ptr, \ 12002 (void)(plane) /* Only to avoid unused-but-set-variable warning */, \ 12003 (old_plane_state) = __i->old_state, \ 12004 (new_plane_state) = __i->new_state, 1)) 12005 12006 static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc) 12007 { 12008 struct drm_connector *connector; 12009 struct drm_connector_state *conn_state, *old_conn_state; 12010 struct amdgpu_dm_connector *aconnector = NULL; 12011 int i; 12012 12013 for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) { 12014 if (!conn_state->crtc) 12015 conn_state = old_conn_state; 12016 12017 if (conn_state->crtc != crtc) 12018 continue; 12019 12020 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 12021 continue; 12022 12023 aconnector = to_amdgpu_dm_connector(connector); 12024 if (!aconnector->mst_output_port || !aconnector->mst_root) 12025 aconnector = NULL; 12026 else 12027 break; 12028 } 12029 12030 if (!aconnector) 12031 return 0; 12032 12033 return drm_dp_mst_add_affected_dsc_crtcs(state, &aconnector->mst_root->mst_mgr); 12034 } 12035 12036 /** 12037 * DOC: Cursor Modes - Native vs Overlay 12038 * 12039 * In native mode, the cursor uses a integrated cursor pipe within each DCN hw 12040 * plane. It does not require a dedicated hw plane to enable, but it is 12041 * subjected to the same z-order and scaling as the hw plane. It also has format 12042 * restrictions, a RGB cursor in native mode cannot be enabled within a non-RGB 12043 * hw plane. 12044 * 12045 * In overlay mode, the cursor uses a separate DCN hw plane, and thus has its 12046 * own scaling and z-pos. It also has no blending restrictions. It lends to a 12047 * cursor behavior more akin to a DRM client's expectations. However, it does 12048 * occupy an extra DCN plane, and therefore will only be used if a DCN plane is 12049 * available. 12050 */ 12051 12052 /** 12053 * dm_crtc_get_cursor_mode() - Determine the required cursor mode on crtc 12054 * @adev: amdgpu device 12055 * @state: DRM atomic state 12056 * @dm_crtc_state: amdgpu state for the CRTC containing the cursor 12057 * @cursor_mode: Returns the required cursor mode on dm_crtc_state 12058 * 12059 * Get whether the cursor should be enabled in native mode, or overlay mode, on 12060 * the dm_crtc_state. 12061 * 12062 * The cursor should be enabled in overlay mode if there exists an underlying 12063 * plane - on which the cursor may be blended - that is either YUV formatted, or 12064 * scaled differently from the cursor. 12065 * 12066 * Since zpos info is required, drm_atomic_normalize_zpos must be called before 12067 * calling this function. 12068 * 12069 * Return: 0 on success, or an error code if getting the cursor plane state 12070 * failed. 12071 */ 12072 static int dm_crtc_get_cursor_mode(struct amdgpu_device *adev, 12073 struct drm_atomic_state *state, 12074 struct dm_crtc_state *dm_crtc_state, 12075 enum amdgpu_dm_cursor_mode *cursor_mode) 12076 { 12077 struct drm_plane_state *old_plane_state, *plane_state, *cursor_state; 12078 struct drm_crtc_state *crtc_state = &dm_crtc_state->base; 12079 struct drm_plane *plane; 12080 bool consider_mode_change = false; 12081 bool entire_crtc_covered = false; 12082 bool cursor_changed = false; 12083 int underlying_scale_w, underlying_scale_h; 12084 int cursor_scale_w, cursor_scale_h; 12085 int i; 12086 12087 /* Overlay cursor not supported on HW before DCN 12088 * DCN401 does not have the cursor-on-scaled-plane or cursor-on-yuv-plane restrictions 12089 * as previous DCN generations, so enable native mode on DCN401 in addition to DCE 12090 */ 12091 if (amdgpu_ip_version(adev, DCE_HWIP, 0) == 0 || 12092 amdgpu_ip_version(adev, DCE_HWIP, 0) == IP_VERSION(4, 0, 1)) { 12093 *cursor_mode = DM_CURSOR_NATIVE_MODE; 12094 return 0; 12095 } 12096 12097 /* Init cursor_mode to be the same as current */ 12098 *cursor_mode = dm_crtc_state->cursor_mode; 12099 12100 /* 12101 * Cursor mode can change if a plane's format changes, scale changes, is 12102 * enabled/disabled, or z-order changes. 12103 */ 12104 for_each_oldnew_plane_in_state(state, plane, old_plane_state, plane_state, i) { 12105 int new_scale_w, new_scale_h, old_scale_w, old_scale_h; 12106 12107 /* Only care about planes on this CRTC */ 12108 if ((drm_plane_mask(plane) & crtc_state->plane_mask) == 0) 12109 continue; 12110 12111 if (plane->type == DRM_PLANE_TYPE_CURSOR) 12112 cursor_changed = true; 12113 12114 if (drm_atomic_plane_enabling(old_plane_state, plane_state) || 12115 drm_atomic_plane_disabling(old_plane_state, plane_state) || 12116 old_plane_state->fb->format != plane_state->fb->format) { 12117 consider_mode_change = true; 12118 break; 12119 } 12120 12121 dm_get_plane_scale(plane_state, &new_scale_w, &new_scale_h); 12122 dm_get_plane_scale(old_plane_state, &old_scale_w, &old_scale_h); 12123 if (new_scale_w != old_scale_w || new_scale_h != old_scale_h) { 12124 consider_mode_change = true; 12125 break; 12126 } 12127 } 12128 12129 if (!consider_mode_change && !crtc_state->zpos_changed) 12130 return 0; 12131 12132 /* 12133 * If no cursor change on this CRTC, and not enabled on this CRTC, then 12134 * no need to set cursor mode. This avoids needlessly locking the cursor 12135 * state. 12136 */ 12137 if (!cursor_changed && 12138 !(drm_plane_mask(crtc_state->crtc->cursor) & crtc_state->plane_mask)) { 12139 return 0; 12140 } 12141 12142 cursor_state = drm_atomic_get_plane_state(state, 12143 crtc_state->crtc->cursor); 12144 if (IS_ERR(cursor_state)) 12145 return PTR_ERR(cursor_state); 12146 12147 /* Cursor is disabled */ 12148 if (!cursor_state->fb) 12149 return 0; 12150 12151 /* For all planes in descending z-order (all of which are below cursor 12152 * as per zpos definitions), check their scaling and format 12153 */ 12154 for_each_oldnew_plane_in_descending_zpos(state, plane, old_plane_state, plane_state) { 12155 12156 /* Only care about non-cursor planes on this CRTC */ 12157 if ((drm_plane_mask(plane) & crtc_state->plane_mask) == 0 || 12158 plane->type == DRM_PLANE_TYPE_CURSOR) 12159 continue; 12160 12161 /* Underlying plane is YUV format - use overlay cursor */ 12162 if (amdgpu_dm_plane_is_video_format(plane_state->fb->format->format)) { 12163 *cursor_mode = DM_CURSOR_OVERLAY_MODE; 12164 return 0; 12165 } 12166 12167 dm_get_plane_scale(plane_state, 12168 &underlying_scale_w, &underlying_scale_h); 12169 dm_get_plane_scale(cursor_state, 12170 &cursor_scale_w, &cursor_scale_h); 12171 12172 /* Underlying plane has different scale - use overlay cursor */ 12173 if (cursor_scale_w != underlying_scale_w && 12174 cursor_scale_h != underlying_scale_h) { 12175 *cursor_mode = DM_CURSOR_OVERLAY_MODE; 12176 return 0; 12177 } 12178 12179 /* If this plane covers the whole CRTC, no need to check planes underneath */ 12180 if (plane_state->crtc_x <= 0 && plane_state->crtc_y <= 0 && 12181 plane_state->crtc_x + plane_state->crtc_w >= crtc_state->mode.hdisplay && 12182 plane_state->crtc_y + plane_state->crtc_h >= crtc_state->mode.vdisplay) { 12183 entire_crtc_covered = true; 12184 break; 12185 } 12186 } 12187 12188 /* If planes do not cover the entire CRTC, use overlay mode to enable 12189 * cursor over holes 12190 */ 12191 if (entire_crtc_covered) 12192 *cursor_mode = DM_CURSOR_NATIVE_MODE; 12193 else 12194 *cursor_mode = DM_CURSOR_OVERLAY_MODE; 12195 12196 return 0; 12197 } 12198 12199 static bool amdgpu_dm_crtc_mem_type_changed(struct drm_device *dev, 12200 struct drm_atomic_state *state, 12201 struct drm_crtc_state *crtc_state) 12202 { 12203 struct drm_plane *plane; 12204 struct drm_plane_state *new_plane_state, *old_plane_state; 12205 12206 drm_for_each_plane_mask(plane, dev, crtc_state->plane_mask) { 12207 new_plane_state = drm_atomic_get_plane_state(state, plane); 12208 old_plane_state = drm_atomic_get_plane_state(state, plane); 12209 12210 if (IS_ERR(new_plane_state) || IS_ERR(old_plane_state)) { 12211 drm_err(dev, "Failed to get plane state for plane %s\n", plane->name); 12212 return false; 12213 } 12214 12215 if (old_plane_state->fb && new_plane_state->fb && 12216 get_mem_type(old_plane_state->fb) != get_mem_type(new_plane_state->fb)) 12217 return true; 12218 } 12219 12220 return false; 12221 } 12222 12223 /** 12224 * amdgpu_dm_atomic_check() - Atomic check implementation for AMDgpu DM. 12225 * 12226 * @dev: The DRM device 12227 * @state: The atomic state to commit 12228 * 12229 * Validate that the given atomic state is programmable by DC into hardware. 12230 * This involves constructing a &struct dc_state reflecting the new hardware 12231 * state we wish to commit, then querying DC to see if it is programmable. It's 12232 * important not to modify the existing DC state. Otherwise, atomic_check 12233 * may unexpectedly commit hardware changes. 12234 * 12235 * When validating the DC state, it's important that the right locks are 12236 * acquired. For full updates case which removes/adds/updates streams on one 12237 * CRTC while flipping on another CRTC, acquiring global lock will guarantee 12238 * that any such full update commit will wait for completion of any outstanding 12239 * flip using DRMs synchronization events. 12240 * 12241 * Note that DM adds the affected connectors for all CRTCs in state, when that 12242 * might not seem necessary. This is because DC stream creation requires the 12243 * DC sink, which is tied to the DRM connector state. Cleaning this up should 12244 * be possible but non-trivial - a possible TODO item. 12245 * 12246 * Return: -Error code if validation failed. 12247 */ 12248 static int amdgpu_dm_atomic_check(struct drm_device *dev, 12249 struct drm_atomic_state *state) 12250 { 12251 struct amdgpu_device *adev = drm_to_adev(dev); 12252 struct dm_atomic_state *dm_state = NULL; 12253 struct dc *dc = adev->dm.dc; 12254 struct drm_connector *connector; 12255 struct drm_connector_state *old_con_state, *new_con_state; 12256 struct drm_crtc *crtc; 12257 struct drm_crtc_state *old_crtc_state, *new_crtc_state; 12258 struct drm_plane *plane; 12259 struct drm_plane_state *old_plane_state, *new_plane_state, *new_cursor_state; 12260 enum dc_status status; 12261 int ret, i; 12262 bool lock_and_validation_needed = false; 12263 bool is_top_most_overlay = true; 12264 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state; 12265 struct drm_dp_mst_topology_mgr *mgr; 12266 struct drm_dp_mst_topology_state *mst_state; 12267 struct dsc_mst_fairness_vars vars[MAX_PIPES] = {0}; 12268 12269 trace_amdgpu_dm_atomic_check_begin(state); 12270 12271 ret = drm_atomic_helper_check_modeset(dev, state); 12272 if (ret) { 12273 drm_dbg_atomic(dev, "drm_atomic_helper_check_modeset() failed\n"); 12274 goto fail; 12275 } 12276 12277 /* Check connector changes */ 12278 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 12279 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state); 12280 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 12281 12282 /* Skip connectors that are disabled or part of modeset already. */ 12283 if (!new_con_state->crtc) 12284 continue; 12285 12286 new_crtc_state = drm_atomic_get_crtc_state(state, new_con_state->crtc); 12287 if (IS_ERR(new_crtc_state)) { 12288 drm_dbg_atomic(dev, "drm_atomic_get_crtc_state() failed\n"); 12289 ret = PTR_ERR(new_crtc_state); 12290 goto fail; 12291 } 12292 12293 if (dm_old_con_state->abm_level != dm_new_con_state->abm_level || 12294 dm_old_con_state->scaling != dm_new_con_state->scaling) 12295 new_crtc_state->connectors_changed = true; 12296 } 12297 12298 if (dc_resource_is_dsc_encoding_supported(dc)) { 12299 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 12300 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) { 12301 ret = add_affected_mst_dsc_crtcs(state, crtc); 12302 if (ret) { 12303 drm_dbg_atomic(dev, "add_affected_mst_dsc_crtcs() failed\n"); 12304 goto fail; 12305 } 12306 } 12307 } 12308 } 12309 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 12310 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state); 12311 12312 if (!drm_atomic_crtc_needs_modeset(new_crtc_state) && 12313 !new_crtc_state->color_mgmt_changed && 12314 old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled && 12315 dm_old_crtc_state->dsc_force_changed == false) 12316 continue; 12317 12318 ret = amdgpu_dm_verify_lut_sizes(new_crtc_state); 12319 if (ret) { 12320 drm_dbg_atomic(dev, "amdgpu_dm_verify_lut_sizes() failed\n"); 12321 goto fail; 12322 } 12323 12324 if (!new_crtc_state->enable) 12325 continue; 12326 12327 ret = drm_atomic_add_affected_connectors(state, crtc); 12328 if (ret) { 12329 drm_dbg_atomic(dev, "drm_atomic_add_affected_connectors() failed\n"); 12330 goto fail; 12331 } 12332 12333 ret = drm_atomic_add_affected_planes(state, crtc); 12334 if (ret) { 12335 drm_dbg_atomic(dev, "drm_atomic_add_affected_planes() failed\n"); 12336 goto fail; 12337 } 12338 12339 if (dm_old_crtc_state->dsc_force_changed) 12340 new_crtc_state->mode_changed = true; 12341 } 12342 12343 /* 12344 * Add all primary and overlay planes on the CRTC to the state 12345 * whenever a plane is enabled to maintain correct z-ordering 12346 * and to enable fast surface updates. 12347 */ 12348 drm_for_each_crtc(crtc, dev) { 12349 bool modified = false; 12350 12351 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { 12352 if (plane->type == DRM_PLANE_TYPE_CURSOR) 12353 continue; 12354 12355 if (new_plane_state->crtc == crtc || 12356 old_plane_state->crtc == crtc) { 12357 modified = true; 12358 break; 12359 } 12360 } 12361 12362 if (!modified) 12363 continue; 12364 12365 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) { 12366 if (plane->type == DRM_PLANE_TYPE_CURSOR) 12367 continue; 12368 12369 new_plane_state = 12370 drm_atomic_get_plane_state(state, plane); 12371 12372 if (IS_ERR(new_plane_state)) { 12373 ret = PTR_ERR(new_plane_state); 12374 drm_dbg_atomic(dev, "new_plane_state is BAD\n"); 12375 goto fail; 12376 } 12377 } 12378 } 12379 12380 /* 12381 * DC consults the zpos (layer_index in DC terminology) to determine the 12382 * hw plane on which to enable the hw cursor (see 12383 * `dcn10_can_pipe_disable_cursor`). By now, all modified planes are in 12384 * atomic state, so call drm helper to normalize zpos. 12385 */ 12386 ret = drm_atomic_normalize_zpos(dev, state); 12387 if (ret) { 12388 drm_dbg(dev, "drm_atomic_normalize_zpos() failed\n"); 12389 goto fail; 12390 } 12391 12392 /* 12393 * Determine whether cursors on each CRTC should be enabled in native or 12394 * overlay mode. 12395 */ 12396 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 12397 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 12398 12399 ret = dm_crtc_get_cursor_mode(adev, state, dm_new_crtc_state, 12400 &dm_new_crtc_state->cursor_mode); 12401 if (ret) { 12402 drm_dbg(dev, "Failed to determine cursor mode\n"); 12403 goto fail; 12404 } 12405 12406 /* 12407 * If overlay cursor is needed, DC cannot go through the 12408 * native cursor update path. All enabled planes on the CRTC 12409 * need to be added for DC to not disable a plane by mistake 12410 */ 12411 if (dm_new_crtc_state->cursor_mode == DM_CURSOR_OVERLAY_MODE) { 12412 ret = drm_atomic_add_affected_planes(state, crtc); 12413 if (ret) 12414 goto fail; 12415 } 12416 } 12417 12418 /* Remove exiting planes if they are modified */ 12419 for_each_oldnew_plane_in_descending_zpos(state, plane, old_plane_state, new_plane_state) { 12420 12421 ret = dm_update_plane_state(dc, state, plane, 12422 old_plane_state, 12423 new_plane_state, 12424 false, 12425 &lock_and_validation_needed, 12426 &is_top_most_overlay); 12427 if (ret) { 12428 drm_dbg_atomic(dev, "dm_update_plane_state() failed\n"); 12429 goto fail; 12430 } 12431 } 12432 12433 /* Disable all crtcs which require disable */ 12434 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 12435 ret = dm_update_crtc_state(&adev->dm, state, crtc, 12436 old_crtc_state, 12437 new_crtc_state, 12438 false, 12439 &lock_and_validation_needed); 12440 if (ret) { 12441 drm_dbg_atomic(dev, "DISABLE: dm_update_crtc_state() failed\n"); 12442 goto fail; 12443 } 12444 } 12445 12446 /* Enable all crtcs which require enable */ 12447 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 12448 ret = dm_update_crtc_state(&adev->dm, state, crtc, 12449 old_crtc_state, 12450 new_crtc_state, 12451 true, 12452 &lock_and_validation_needed); 12453 if (ret) { 12454 drm_dbg_atomic(dev, "ENABLE: dm_update_crtc_state() failed\n"); 12455 goto fail; 12456 } 12457 } 12458 12459 /* Add new/modified planes */ 12460 for_each_oldnew_plane_in_descending_zpos(state, plane, old_plane_state, new_plane_state) { 12461 ret = dm_update_plane_state(dc, state, plane, 12462 old_plane_state, 12463 new_plane_state, 12464 true, 12465 &lock_and_validation_needed, 12466 &is_top_most_overlay); 12467 if (ret) { 12468 drm_dbg_atomic(dev, "dm_update_plane_state() failed\n"); 12469 goto fail; 12470 } 12471 } 12472 12473 #if defined(CONFIG_DRM_AMD_DC_FP) 12474 if (dc_resource_is_dsc_encoding_supported(dc)) { 12475 ret = pre_validate_dsc(state, &dm_state, vars); 12476 if (ret != 0) 12477 goto fail; 12478 } 12479 #endif 12480 12481 /* Run this here since we want to validate the streams we created */ 12482 ret = drm_atomic_helper_check_planes(dev, state); 12483 if (ret) { 12484 drm_dbg_atomic(dev, "drm_atomic_helper_check_planes() failed\n"); 12485 goto fail; 12486 } 12487 12488 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 12489 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 12490 if (dm_new_crtc_state->mpo_requested) 12491 drm_dbg_atomic(dev, "MPO enablement requested on crtc:[%p]\n", crtc); 12492 } 12493 12494 /* Check cursor restrictions */ 12495 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 12496 enum amdgpu_dm_cursor_mode required_cursor_mode; 12497 int is_rotated, is_scaled; 12498 12499 /* Overlay cusor not subject to native cursor restrictions */ 12500 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state); 12501 if (dm_new_crtc_state->cursor_mode == DM_CURSOR_OVERLAY_MODE) 12502 continue; 12503 12504 /* Check if rotation or scaling is enabled on DCN401 */ 12505 if ((drm_plane_mask(crtc->cursor) & new_crtc_state->plane_mask) && 12506 amdgpu_ip_version(adev, DCE_HWIP, 0) == IP_VERSION(4, 0, 1)) { 12507 new_cursor_state = drm_atomic_get_new_plane_state(state, crtc->cursor); 12508 12509 is_rotated = new_cursor_state && 12510 ((new_cursor_state->rotation & DRM_MODE_ROTATE_MASK) != DRM_MODE_ROTATE_0); 12511 is_scaled = new_cursor_state && ((new_cursor_state->src_w >> 16 != new_cursor_state->crtc_w) || 12512 (new_cursor_state->src_h >> 16 != new_cursor_state->crtc_h)); 12513 12514 if (is_rotated || is_scaled) { 12515 drm_dbg_driver( 12516 crtc->dev, 12517 "[CRTC:%d:%s] cannot enable hardware cursor due to rotation/scaling\n", 12518 crtc->base.id, crtc->name); 12519 ret = -EINVAL; 12520 goto fail; 12521 } 12522 } 12523 12524 /* If HW can only do native cursor, check restrictions again */ 12525 ret = dm_crtc_get_cursor_mode(adev, state, dm_new_crtc_state, 12526 &required_cursor_mode); 12527 if (ret) { 12528 drm_dbg_driver(crtc->dev, 12529 "[CRTC:%d:%s] Checking cursor mode failed\n", 12530 crtc->base.id, crtc->name); 12531 goto fail; 12532 } else if (required_cursor_mode == DM_CURSOR_OVERLAY_MODE) { 12533 drm_dbg_driver(crtc->dev, 12534 "[CRTC:%d:%s] Cannot enable native cursor due to scaling or YUV restrictions\n", 12535 crtc->base.id, crtc->name); 12536 ret = -EINVAL; 12537 goto fail; 12538 } 12539 } 12540 12541 if (state->legacy_cursor_update) { 12542 /* 12543 * This is a fast cursor update coming from the plane update 12544 * helper, check if it can be done asynchronously for better 12545 * performance. 12546 */ 12547 state->async_update = 12548 !drm_atomic_helper_async_check(dev, state); 12549 12550 /* 12551 * Skip the remaining global validation if this is an async 12552 * update. Cursor updates can be done without affecting 12553 * state or bandwidth calcs and this avoids the performance 12554 * penalty of locking the private state object and 12555 * allocating a new dc_state. 12556 */ 12557 if (state->async_update) 12558 return 0; 12559 } 12560 12561 /* Check scaling and underscan changes*/ 12562 /* TODO Removed scaling changes validation due to inability to commit 12563 * new stream into context w\o causing full reset. Need to 12564 * decide how to handle. 12565 */ 12566 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) { 12567 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state); 12568 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state); 12569 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc); 12570 12571 /* Skip any modesets/resets */ 12572 if (!acrtc || drm_atomic_crtc_needs_modeset( 12573 drm_atomic_get_new_crtc_state(state, &acrtc->base))) 12574 continue; 12575 12576 /* Skip any thing not scale or underscan changes */ 12577 if (!is_scaling_state_different(dm_new_con_state, dm_old_con_state)) 12578 continue; 12579 12580 lock_and_validation_needed = true; 12581 } 12582 12583 /* set the slot info for each mst_state based on the link encoding format */ 12584 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) { 12585 struct amdgpu_dm_connector *aconnector; 12586 struct drm_connector *connector; 12587 struct drm_connector_list_iter iter; 12588 u8 link_coding_cap; 12589 12590 drm_connector_list_iter_begin(dev, &iter); 12591 drm_for_each_connector_iter(connector, &iter) { 12592 if (connector->index == mst_state->mgr->conn_base_id) { 12593 aconnector = to_amdgpu_dm_connector(connector); 12594 link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(aconnector->dc_link); 12595 drm_dp_mst_update_slots(mst_state, link_coding_cap); 12596 12597 break; 12598 } 12599 } 12600 drm_connector_list_iter_end(&iter); 12601 } 12602 12603 /** 12604 * Streams and planes are reset when there are changes that affect 12605 * bandwidth. Anything that affects bandwidth needs to go through 12606 * DC global validation to ensure that the configuration can be applied 12607 * to hardware. 12608 * 12609 * We have to currently stall out here in atomic_check for outstanding 12610 * commits to finish in this case because our IRQ handlers reference 12611 * DRM state directly - we can end up disabling interrupts too early 12612 * if we don't. 12613 * 12614 * TODO: Remove this stall and drop DM state private objects. 12615 */ 12616 if (lock_and_validation_needed) { 12617 ret = dm_atomic_get_state(state, &dm_state); 12618 if (ret) { 12619 drm_dbg_atomic(dev, "dm_atomic_get_state() failed\n"); 12620 goto fail; 12621 } 12622 12623 ret = do_aquire_global_lock(dev, state); 12624 if (ret) { 12625 drm_dbg_atomic(dev, "do_aquire_global_lock() failed\n"); 12626 goto fail; 12627 } 12628 12629 #if defined(CONFIG_DRM_AMD_DC_FP) 12630 if (dc_resource_is_dsc_encoding_supported(dc)) { 12631 ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars); 12632 if (ret) { 12633 drm_dbg_atomic(dev, "MST_DSC compute_mst_dsc_configs_for_state() failed\n"); 12634 ret = -EINVAL; 12635 goto fail; 12636 } 12637 } 12638 #endif 12639 12640 ret = dm_update_mst_vcpi_slots_for_dsc(state, dm_state->context, vars); 12641 if (ret) { 12642 drm_dbg_atomic(dev, "dm_update_mst_vcpi_slots_for_dsc() failed\n"); 12643 goto fail; 12644 } 12645 12646 /* 12647 * Perform validation of MST topology in the state: 12648 * We need to perform MST atomic check before calling 12649 * dc_validate_global_state(), or there is a chance 12650 * to get stuck in an infinite loop and hang eventually. 12651 */ 12652 ret = drm_dp_mst_atomic_check(state); 12653 if (ret) { 12654 drm_dbg_atomic(dev, "MST drm_dp_mst_atomic_check() failed\n"); 12655 goto fail; 12656 } 12657 status = dc_validate_global_state(dc, dm_state->context, DC_VALIDATE_MODE_ONLY); 12658 if (status != DC_OK) { 12659 drm_dbg_atomic(dev, "DC global validation failure: %s (%d)", 12660 dc_status_to_str(status), status); 12661 ret = -EINVAL; 12662 goto fail; 12663 } 12664 } else { 12665 /* 12666 * The commit is a fast update. Fast updates shouldn't change 12667 * the DC context, affect global validation, and can have their 12668 * commit work done in parallel with other commits not touching 12669 * the same resource. If we have a new DC context as part of 12670 * the DM atomic state from validation we need to free it and 12671 * retain the existing one instead. 12672 * 12673 * Furthermore, since the DM atomic state only contains the DC 12674 * context and can safely be annulled, we can free the state 12675 * and clear the associated private object now to free 12676 * some memory and avoid a possible use-after-free later. 12677 */ 12678 12679 for (i = 0; i < state->num_private_objs; i++) { 12680 struct drm_private_obj *obj = state->private_objs[i].ptr; 12681 12682 if (obj->funcs == adev->dm.atomic_obj.funcs) { 12683 int j = state->num_private_objs-1; 12684 12685 dm_atomic_destroy_state(obj, 12686 state->private_objs[i].state_to_destroy); 12687 12688 /* If i is not at the end of the array then the 12689 * last element needs to be moved to where i was 12690 * before the array can safely be truncated. 12691 */ 12692 if (i != j) 12693 state->private_objs[i] = 12694 state->private_objs[j]; 12695 12696 state->private_objs[j].ptr = NULL; 12697 state->private_objs[j].state_to_destroy = NULL; 12698 state->private_objs[j].old_state = NULL; 12699 state->private_objs[j].new_state = NULL; 12700 12701 state->num_private_objs = j; 12702 break; 12703 } 12704 } 12705 } 12706 12707 /* Store the overall update type for use later in atomic check. */ 12708 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 12709 struct dm_crtc_state *dm_new_crtc_state = 12710 to_dm_crtc_state(new_crtc_state); 12711 12712 /* 12713 * Only allow async flips for fast updates that don't change 12714 * the FB pitch, the DCC state, rotation, mem_type, etc. 12715 */ 12716 if (new_crtc_state->async_flip && 12717 (lock_and_validation_needed || 12718 amdgpu_dm_crtc_mem_type_changed(dev, state, new_crtc_state))) { 12719 drm_dbg_atomic(crtc->dev, 12720 "[CRTC:%d:%s] async flips are only supported for fast updates\n", 12721 crtc->base.id, crtc->name); 12722 ret = -EINVAL; 12723 goto fail; 12724 } 12725 12726 dm_new_crtc_state->update_type = lock_and_validation_needed ? 12727 UPDATE_TYPE_FULL : UPDATE_TYPE_FAST; 12728 } 12729 12730 /* Must be success */ 12731 WARN_ON(ret); 12732 12733 trace_amdgpu_dm_atomic_check_finish(state, ret); 12734 12735 return ret; 12736 12737 fail: 12738 if (ret == -EDEADLK) 12739 drm_dbg_atomic(dev, "Atomic check stopped to avoid deadlock.\n"); 12740 else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS) 12741 drm_dbg_atomic(dev, "Atomic check stopped due to signal.\n"); 12742 else 12743 drm_dbg_atomic(dev, "Atomic check failed with err: %d\n", ret); 12744 12745 trace_amdgpu_dm_atomic_check_finish(state, ret); 12746 12747 return ret; 12748 } 12749 12750 static bool dm_edid_parser_send_cea(struct amdgpu_display_manager *dm, 12751 unsigned int offset, 12752 unsigned int total_length, 12753 u8 *data, 12754 unsigned int length, 12755 struct amdgpu_hdmi_vsdb_info *vsdb) 12756 { 12757 bool res; 12758 union dmub_rb_cmd cmd; 12759 struct dmub_cmd_send_edid_cea *input; 12760 struct dmub_cmd_edid_cea_output *output; 12761 12762 if (length > DMUB_EDID_CEA_DATA_CHUNK_BYTES) 12763 return false; 12764 12765 memset(&cmd, 0, sizeof(cmd)); 12766 12767 input = &cmd.edid_cea.data.input; 12768 12769 cmd.edid_cea.header.type = DMUB_CMD__EDID_CEA; 12770 cmd.edid_cea.header.sub_type = 0; 12771 cmd.edid_cea.header.payload_bytes = 12772 sizeof(cmd.edid_cea) - sizeof(cmd.edid_cea.header); 12773 input->offset = offset; 12774 input->length = length; 12775 input->cea_total_length = total_length; 12776 memcpy(input->payload, data, length); 12777 12778 res = dc_wake_and_execute_dmub_cmd(dm->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY); 12779 if (!res) { 12780 drm_err(adev_to_drm(dm->adev), "EDID CEA parser failed\n"); 12781 return false; 12782 } 12783 12784 output = &cmd.edid_cea.data.output; 12785 12786 if (output->type == DMUB_CMD__EDID_CEA_ACK) { 12787 if (!output->ack.success) { 12788 drm_err(adev_to_drm(dm->adev), "EDID CEA ack failed at offset %d\n", 12789 output->ack.offset); 12790 } 12791 } else if (output->type == DMUB_CMD__EDID_CEA_AMD_VSDB) { 12792 if (!output->amd_vsdb.vsdb_found) 12793 return false; 12794 12795 vsdb->freesync_supported = output->amd_vsdb.freesync_supported; 12796 vsdb->amd_vsdb_version = output->amd_vsdb.amd_vsdb_version; 12797 vsdb->min_refresh_rate_hz = output->amd_vsdb.min_frame_rate; 12798 vsdb->max_refresh_rate_hz = output->amd_vsdb.max_frame_rate; 12799 } else { 12800 drm_warn(adev_to_drm(dm->adev), "Unknown EDID CEA parser results\n"); 12801 return false; 12802 } 12803 12804 return true; 12805 } 12806 12807 static bool parse_edid_cea_dmcu(struct amdgpu_display_manager *dm, 12808 u8 *edid_ext, int len, 12809 struct amdgpu_hdmi_vsdb_info *vsdb_info) 12810 { 12811 int i; 12812 12813 /* send extension block to DMCU for parsing */ 12814 for (i = 0; i < len; i += 8) { 12815 bool res; 12816 int offset; 12817 12818 /* send 8 bytes a time */ 12819 if (!dc_edid_parser_send_cea(dm->dc, i, len, &edid_ext[i], 8)) 12820 return false; 12821 12822 if (i+8 == len) { 12823 /* EDID block sent completed, expect result */ 12824 int version, min_rate, max_rate; 12825 12826 res = dc_edid_parser_recv_amd_vsdb(dm->dc, &version, &min_rate, &max_rate); 12827 if (res) { 12828 /* amd vsdb found */ 12829 vsdb_info->freesync_supported = 1; 12830 vsdb_info->amd_vsdb_version = version; 12831 vsdb_info->min_refresh_rate_hz = min_rate; 12832 vsdb_info->max_refresh_rate_hz = max_rate; 12833 return true; 12834 } 12835 /* not amd vsdb */ 12836 return false; 12837 } 12838 12839 /* check for ack*/ 12840 res = dc_edid_parser_recv_cea_ack(dm->dc, &offset); 12841 if (!res) 12842 return false; 12843 } 12844 12845 return false; 12846 } 12847 12848 static bool parse_edid_cea_dmub(struct amdgpu_display_manager *dm, 12849 u8 *edid_ext, int len, 12850 struct amdgpu_hdmi_vsdb_info *vsdb_info) 12851 { 12852 int i; 12853 12854 /* send extension block to DMCU for parsing */ 12855 for (i = 0; i < len; i += 8) { 12856 /* send 8 bytes a time */ 12857 if (!dm_edid_parser_send_cea(dm, i, len, &edid_ext[i], 8, vsdb_info)) 12858 return false; 12859 } 12860 12861 return vsdb_info->freesync_supported; 12862 } 12863 12864 static bool parse_edid_cea(struct amdgpu_dm_connector *aconnector, 12865 u8 *edid_ext, int len, 12866 struct amdgpu_hdmi_vsdb_info *vsdb_info) 12867 { 12868 struct amdgpu_device *adev = drm_to_adev(aconnector->base.dev); 12869 bool ret; 12870 12871 mutex_lock(&adev->dm.dc_lock); 12872 if (adev->dm.dmub_srv) 12873 ret = parse_edid_cea_dmub(&adev->dm, edid_ext, len, vsdb_info); 12874 else 12875 ret = parse_edid_cea_dmcu(&adev->dm, edid_ext, len, vsdb_info); 12876 mutex_unlock(&adev->dm.dc_lock); 12877 return ret; 12878 } 12879 12880 static void parse_edid_displayid_vrr(struct drm_connector *connector, 12881 const struct edid *edid) 12882 { 12883 u8 *edid_ext = NULL; 12884 int i; 12885 int j = 0; 12886 u16 min_vfreq; 12887 u16 max_vfreq; 12888 12889 if (edid == NULL || edid->extensions == 0) 12890 return; 12891 12892 /* Find DisplayID extension */ 12893 for (i = 0; i < edid->extensions; i++) { 12894 edid_ext = (void *)(edid + (i + 1)); 12895 if (edid_ext[0] == DISPLAYID_EXT) 12896 break; 12897 } 12898 12899 if (edid_ext == NULL) 12900 return; 12901 12902 while (j < EDID_LENGTH) { 12903 /* Get dynamic video timing range from DisplayID if available */ 12904 if (EDID_LENGTH - j > 13 && edid_ext[j] == 0x25 && 12905 (edid_ext[j+1] & 0xFE) == 0 && (edid_ext[j+2] == 9)) { 12906 min_vfreq = edid_ext[j+9]; 12907 if (edid_ext[j+1] & 7) 12908 max_vfreq = edid_ext[j+10] + ((edid_ext[j+11] & 3) << 8); 12909 else 12910 max_vfreq = edid_ext[j+10]; 12911 12912 if (max_vfreq && min_vfreq) { 12913 connector->display_info.monitor_range.max_vfreq = max_vfreq; 12914 connector->display_info.monitor_range.min_vfreq = min_vfreq; 12915 12916 return; 12917 } 12918 } 12919 j++; 12920 } 12921 } 12922 12923 static int parse_amd_vsdb(struct amdgpu_dm_connector *aconnector, 12924 const struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info) 12925 { 12926 u8 *edid_ext = NULL; 12927 int i; 12928 int j = 0; 12929 12930 if (edid == NULL || edid->extensions == 0) 12931 return -ENODEV; 12932 12933 /* Find DisplayID extension */ 12934 for (i = 0; i < edid->extensions; i++) { 12935 edid_ext = (void *)(edid + (i + 1)); 12936 if (edid_ext[0] == DISPLAYID_EXT) 12937 break; 12938 } 12939 12940 while (j < EDID_LENGTH - sizeof(struct amd_vsdb_block)) { 12941 struct amd_vsdb_block *amd_vsdb = (struct amd_vsdb_block *)&edid_ext[j]; 12942 unsigned int ieeeId = (amd_vsdb->ieee_id[2] << 16) | (amd_vsdb->ieee_id[1] << 8) | (amd_vsdb->ieee_id[0]); 12943 12944 if (ieeeId == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_IEEE_REGISTRATION_ID && 12945 amd_vsdb->version == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3) { 12946 vsdb_info->replay_mode = (amd_vsdb->feature_caps & AMD_VSDB_VERSION_3_FEATURECAP_REPLAYMODE) ? true : false; 12947 vsdb_info->amd_vsdb_version = HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3; 12948 DRM_DEBUG_KMS("Panel supports Replay Mode: %d\n", vsdb_info->replay_mode); 12949 12950 return true; 12951 } 12952 j++; 12953 } 12954 12955 return false; 12956 } 12957 12958 static int parse_hdmi_amd_vsdb(struct amdgpu_dm_connector *aconnector, 12959 const struct edid *edid, 12960 struct amdgpu_hdmi_vsdb_info *vsdb_info) 12961 { 12962 u8 *edid_ext = NULL; 12963 int i; 12964 bool valid_vsdb_found = false; 12965 12966 /*----- drm_find_cea_extension() -----*/ 12967 /* No EDID or EDID extensions */ 12968 if (edid == NULL || edid->extensions == 0) 12969 return -ENODEV; 12970 12971 /* Find CEA extension */ 12972 for (i = 0; i < edid->extensions; i++) { 12973 edid_ext = (uint8_t *)edid + EDID_LENGTH * (i + 1); 12974 if (edid_ext[0] == CEA_EXT) 12975 break; 12976 } 12977 12978 if (i == edid->extensions) 12979 return -ENODEV; 12980 12981 /*----- cea_db_offsets() -----*/ 12982 if (edid_ext[0] != CEA_EXT) 12983 return -ENODEV; 12984 12985 valid_vsdb_found = parse_edid_cea(aconnector, edid_ext, EDID_LENGTH, vsdb_info); 12986 12987 return valid_vsdb_found ? i : -ENODEV; 12988 } 12989 12990 /** 12991 * amdgpu_dm_update_freesync_caps - Update Freesync capabilities 12992 * 12993 * @connector: Connector to query. 12994 * @drm_edid: DRM EDID from monitor 12995 * 12996 * Amdgpu supports Freesync in DP and HDMI displays, and it is required to keep 12997 * track of some of the display information in the internal data struct used by 12998 * amdgpu_dm. This function checks which type of connector we need to set the 12999 * FreeSync parameters. 13000 */ 13001 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector, 13002 const struct drm_edid *drm_edid) 13003 { 13004 int i = 0; 13005 struct amdgpu_dm_connector *amdgpu_dm_connector = 13006 to_amdgpu_dm_connector(connector); 13007 struct dm_connector_state *dm_con_state = NULL; 13008 struct dc_sink *sink; 13009 struct amdgpu_device *adev = drm_to_adev(connector->dev); 13010 struct amdgpu_hdmi_vsdb_info vsdb_info = {0}; 13011 const struct edid *edid; 13012 bool freesync_capable = false; 13013 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE; 13014 13015 if (!connector->state) { 13016 drm_err(adev_to_drm(adev), "%s - Connector has no state", __func__); 13017 goto update; 13018 } 13019 13020 sink = amdgpu_dm_connector->dc_sink ? 13021 amdgpu_dm_connector->dc_sink : 13022 amdgpu_dm_connector->dc_em_sink; 13023 13024 drm_edid_connector_update(connector, drm_edid); 13025 13026 if (!drm_edid || !sink) { 13027 dm_con_state = to_dm_connector_state(connector->state); 13028 13029 amdgpu_dm_connector->min_vfreq = 0; 13030 amdgpu_dm_connector->max_vfreq = 0; 13031 freesync_capable = false; 13032 13033 goto update; 13034 } 13035 13036 dm_con_state = to_dm_connector_state(connector->state); 13037 13038 if (!adev->dm.freesync_module || !dc_supports_vrr(sink->ctx->dce_version)) 13039 goto update; 13040 13041 edid = drm_edid_raw(drm_edid); // FIXME: Get rid of drm_edid_raw() 13042 13043 /* Some eDP panels only have the refresh rate range info in DisplayID */ 13044 if ((connector->display_info.monitor_range.min_vfreq == 0 || 13045 connector->display_info.monitor_range.max_vfreq == 0)) 13046 parse_edid_displayid_vrr(connector, edid); 13047 13048 if (edid && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT || 13049 sink->sink_signal == SIGNAL_TYPE_EDP)) { 13050 if (amdgpu_dm_connector->dc_link && 13051 amdgpu_dm_connector->dc_link->dpcd_caps.allow_invalid_MSA_timing_param) { 13052 amdgpu_dm_connector->min_vfreq = connector->display_info.monitor_range.min_vfreq; 13053 amdgpu_dm_connector->max_vfreq = connector->display_info.monitor_range.max_vfreq; 13054 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 13055 freesync_capable = true; 13056 } 13057 13058 parse_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info); 13059 13060 if (vsdb_info.replay_mode) { 13061 amdgpu_dm_connector->vsdb_info.replay_mode = vsdb_info.replay_mode; 13062 amdgpu_dm_connector->vsdb_info.amd_vsdb_version = vsdb_info.amd_vsdb_version; 13063 amdgpu_dm_connector->as_type = ADAPTIVE_SYNC_TYPE_EDP; 13064 } 13065 13066 } else if (drm_edid && sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A) { 13067 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info); 13068 if (i >= 0 && vsdb_info.freesync_supported) { 13069 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz; 13070 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz; 13071 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 13072 freesync_capable = true; 13073 13074 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz; 13075 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz; 13076 } 13077 } 13078 13079 if (amdgpu_dm_connector->dc_link) 13080 as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link); 13081 13082 if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) { 13083 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info); 13084 if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) { 13085 13086 amdgpu_dm_connector->pack_sdp_v1_3 = true; 13087 amdgpu_dm_connector->as_type = as_type; 13088 amdgpu_dm_connector->vsdb_info = vsdb_info; 13089 13090 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz; 13091 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz; 13092 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10) 13093 freesync_capable = true; 13094 13095 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz; 13096 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz; 13097 } 13098 } 13099 13100 update: 13101 if (dm_con_state) 13102 dm_con_state->freesync_capable = freesync_capable; 13103 13104 if (connector->state && amdgpu_dm_connector->dc_link && !freesync_capable && 13105 amdgpu_dm_connector->dc_link->replay_settings.config.replay_supported) { 13106 amdgpu_dm_connector->dc_link->replay_settings.config.replay_supported = false; 13107 amdgpu_dm_connector->dc_link->replay_settings.replay_feature_enabled = false; 13108 } 13109 13110 if (connector->vrr_capable_property) 13111 drm_connector_set_vrr_capable_property(connector, 13112 freesync_capable); 13113 } 13114 13115 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev) 13116 { 13117 struct amdgpu_device *adev = drm_to_adev(dev); 13118 struct dc *dc = adev->dm.dc; 13119 int i; 13120 13121 mutex_lock(&adev->dm.dc_lock); 13122 if (dc->current_state) { 13123 for (i = 0; i < dc->current_state->stream_count; ++i) 13124 dc->current_state->streams[i] 13125 ->triggered_crtc_reset.enabled = 13126 adev->dm.force_timing_sync; 13127 13128 dm_enable_per_frame_crtc_master_sync(dc->current_state); 13129 dc_trigger_sync(dc, dc->current_state); 13130 } 13131 mutex_unlock(&adev->dm.dc_lock); 13132 } 13133 13134 static inline void amdgpu_dm_exit_ips_for_hw_access(struct dc *dc) 13135 { 13136 if (dc->ctx->dmub_srv && !dc->ctx->dmub_srv->idle_exit_counter) 13137 dc_exit_ips_for_hw_access(dc); 13138 } 13139 13140 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address, 13141 u32 value, const char *func_name) 13142 { 13143 #ifdef DM_CHECK_ADDR_0 13144 if (address == 0) { 13145 drm_err(adev_to_drm(ctx->driver_context), 13146 "invalid register write. address = 0"); 13147 return; 13148 } 13149 #endif 13150 13151 amdgpu_dm_exit_ips_for_hw_access(ctx->dc); 13152 cgs_write_register(ctx->cgs_device, address, value); 13153 trace_amdgpu_dc_wreg(&ctx->perf_trace->write_count, address, value); 13154 } 13155 13156 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address, 13157 const char *func_name) 13158 { 13159 u32 value; 13160 #ifdef DM_CHECK_ADDR_0 13161 if (address == 0) { 13162 drm_err(adev_to_drm(ctx->driver_context), 13163 "invalid register read; address = 0\n"); 13164 return 0; 13165 } 13166 #endif 13167 13168 if (ctx->dmub_srv && 13169 ctx->dmub_srv->reg_helper_offload.gather_in_progress && 13170 !ctx->dmub_srv->reg_helper_offload.should_burst_write) { 13171 ASSERT(false); 13172 return 0; 13173 } 13174 13175 amdgpu_dm_exit_ips_for_hw_access(ctx->dc); 13176 13177 value = cgs_read_register(ctx->cgs_device, address); 13178 13179 trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value); 13180 13181 return value; 13182 } 13183 13184 int amdgpu_dm_process_dmub_aux_transfer_sync( 13185 struct dc_context *ctx, 13186 unsigned int link_index, 13187 struct aux_payload *payload, 13188 enum aux_return_code_type *operation_result) 13189 { 13190 struct amdgpu_device *adev = ctx->driver_context; 13191 struct dmub_notification *p_notify = adev->dm.dmub_notify; 13192 int ret = -1; 13193 13194 mutex_lock(&adev->dm.dpia_aux_lock); 13195 if (!dc_process_dmub_aux_transfer_async(ctx->dc, link_index, payload)) { 13196 *operation_result = AUX_RET_ERROR_ENGINE_ACQUIRE; 13197 goto out; 13198 } 13199 13200 if (!wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) { 13201 drm_err(adev_to_drm(adev), "wait_for_completion_timeout timeout!"); 13202 *operation_result = AUX_RET_ERROR_TIMEOUT; 13203 goto out; 13204 } 13205 13206 if (p_notify->result != AUX_RET_SUCCESS) { 13207 /* 13208 * Transient states before tunneling is enabled could 13209 * lead to this error. We can ignore this for now. 13210 */ 13211 if (p_notify->result == AUX_RET_ERROR_PROTOCOL_ERROR) { 13212 drm_warn(adev_to_drm(adev), "DPIA AUX failed on 0x%x(%d), error %d\n", 13213 payload->address, payload->length, 13214 p_notify->result); 13215 } 13216 *operation_result = p_notify->result; 13217 goto out; 13218 } 13219 13220 payload->reply[0] = adev->dm.dmub_notify->aux_reply.command & 0xF; 13221 if (adev->dm.dmub_notify->aux_reply.command & 0xF0) 13222 /* The reply is stored in the top nibble of the command. */ 13223 payload->reply[0] = (adev->dm.dmub_notify->aux_reply.command >> 4) & 0xF; 13224 13225 /*write req may receive a byte indicating partially written number as well*/ 13226 if (p_notify->aux_reply.length) 13227 memcpy(payload->data, p_notify->aux_reply.data, 13228 p_notify->aux_reply.length); 13229 13230 /* success */ 13231 ret = p_notify->aux_reply.length; 13232 *operation_result = p_notify->result; 13233 out: 13234 reinit_completion(&adev->dm.dmub_aux_transfer_done); 13235 mutex_unlock(&adev->dm.dpia_aux_lock); 13236 return ret; 13237 } 13238 13239 static void abort_fused_io( 13240 struct dc_context *ctx, 13241 const struct dmub_cmd_fused_request *request 13242 ) 13243 { 13244 union dmub_rb_cmd command = { 0 }; 13245 struct dmub_rb_cmd_fused_io *io = &command.fused_io; 13246 13247 io->header.type = DMUB_CMD__FUSED_IO; 13248 io->header.sub_type = DMUB_CMD__FUSED_IO_ABORT; 13249 io->header.payload_bytes = sizeof(*io) - sizeof(io->header); 13250 io->request = *request; 13251 dm_execute_dmub_cmd(ctx, &command, DM_DMUB_WAIT_TYPE_NO_WAIT); 13252 } 13253 13254 static bool execute_fused_io( 13255 struct amdgpu_device *dev, 13256 struct dc_context *ctx, 13257 union dmub_rb_cmd *commands, 13258 uint8_t count, 13259 uint32_t timeout_us 13260 ) 13261 { 13262 const uint8_t ddc_line = commands[0].fused_io.request.u.aux.ddc_line; 13263 13264 if (ddc_line >= ARRAY_SIZE(dev->dm.fused_io)) 13265 return false; 13266 13267 struct fused_io_sync *sync = &dev->dm.fused_io[ddc_line]; 13268 struct dmub_rb_cmd_fused_io *first = &commands[0].fused_io; 13269 const bool result = dm_execute_dmub_cmd_list(ctx, count, commands, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY) 13270 && first->header.ret_status 13271 && first->request.status == FUSED_REQUEST_STATUS_SUCCESS; 13272 13273 if (!result) 13274 return false; 13275 13276 while (wait_for_completion_timeout(&sync->replied, usecs_to_jiffies(timeout_us))) { 13277 reinit_completion(&sync->replied); 13278 13279 struct dmub_cmd_fused_request *reply = (struct dmub_cmd_fused_request *) sync->reply_data; 13280 13281 static_assert(sizeof(*reply) <= sizeof(sync->reply_data), "Size mismatch"); 13282 13283 if (reply->identifier == first->request.identifier) { 13284 first->request = *reply; 13285 return true; 13286 } 13287 } 13288 13289 reinit_completion(&sync->replied); 13290 first->request.status = FUSED_REQUEST_STATUS_TIMEOUT; 13291 abort_fused_io(ctx, &first->request); 13292 return false; 13293 } 13294 13295 bool amdgpu_dm_execute_fused_io( 13296 struct amdgpu_device *dev, 13297 struct dc_link *link, 13298 union dmub_rb_cmd *commands, 13299 uint8_t count, 13300 uint32_t timeout_us) 13301 { 13302 struct amdgpu_display_manager *dm = &dev->dm; 13303 13304 mutex_lock(&dm->dpia_aux_lock); 13305 13306 const bool result = execute_fused_io(dev, link->ctx, commands, count, timeout_us); 13307 13308 mutex_unlock(&dm->dpia_aux_lock); 13309 return result; 13310 } 13311 13312 int amdgpu_dm_process_dmub_set_config_sync( 13313 struct dc_context *ctx, 13314 unsigned int link_index, 13315 struct set_config_cmd_payload *payload, 13316 enum set_config_status *operation_result) 13317 { 13318 struct amdgpu_device *adev = ctx->driver_context; 13319 bool is_cmd_complete; 13320 int ret; 13321 13322 mutex_lock(&adev->dm.dpia_aux_lock); 13323 is_cmd_complete = dc_process_dmub_set_config_async(ctx->dc, 13324 link_index, payload, adev->dm.dmub_notify); 13325 13326 if (is_cmd_complete || wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) { 13327 ret = 0; 13328 *operation_result = adev->dm.dmub_notify->sc_status; 13329 } else { 13330 drm_err(adev_to_drm(adev), "wait_for_completion_timeout timeout!"); 13331 ret = -1; 13332 *operation_result = SET_CONFIG_UNKNOWN_ERROR; 13333 } 13334 13335 if (!is_cmd_complete) 13336 reinit_completion(&adev->dm.dmub_aux_transfer_done); 13337 mutex_unlock(&adev->dm.dpia_aux_lock); 13338 return ret; 13339 } 13340 13341 bool dm_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type) 13342 { 13343 return dc_dmub_srv_cmd_run(ctx->dmub_srv, cmd, wait_type); 13344 } 13345 13346 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) 13347 { 13348 return dc_dmub_srv_cmd_run_list(ctx->dmub_srv, count, cmd, wait_type); 13349 } 13350 13351 void dm_acpi_process_phy_transition_interlock( 13352 const struct dc_context *ctx, 13353 struct dm_process_phy_transition_init_params process_phy_transition_init_params) 13354 { 13355 // Not yet implemented 13356 } 13357