1 /* 2 * Copyright 2019 Advanced Micro Devices, Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 * 22 * Authors: AMD 23 * 24 */ 25 26 #include "dc.h" 27 #include "dc_dmub_srv.h" 28 #include "../dmub/dmub_srv.h" 29 #include "dm_helpers.h" 30 #include "dc_hw_types.h" 31 #include "core_types.h" 32 #include "../basics/conversion.h" 33 #include "cursor_reg_cache.h" 34 35 #define CTX dc_dmub_srv->ctx 36 #define DC_LOGGER CTX->logger 37 38 static void dc_dmub_srv_construct(struct dc_dmub_srv *dc_srv, struct dc *dc, 39 struct dmub_srv *dmub) 40 { 41 dc_srv->dmub = dmub; 42 dc_srv->ctx = dc->ctx; 43 } 44 45 struct dc_dmub_srv *dc_dmub_srv_create(struct dc *dc, struct dmub_srv *dmub) 46 { 47 struct dc_dmub_srv *dc_srv = 48 kzalloc(sizeof(struct dc_dmub_srv), GFP_KERNEL); 49 50 if (dc_srv == NULL) { 51 BREAK_TO_DEBUGGER(); 52 return NULL; 53 } 54 55 dc_dmub_srv_construct(dc_srv, dc, dmub); 56 57 return dc_srv; 58 } 59 60 void dc_dmub_srv_destroy(struct dc_dmub_srv **dmub_srv) 61 { 62 if (*dmub_srv) { 63 kfree(*dmub_srv); 64 *dmub_srv = NULL; 65 } 66 } 67 68 void dc_dmub_srv_cmd_queue(struct dc_dmub_srv *dc_dmub_srv, 69 union dmub_rb_cmd *cmd) 70 { 71 struct dmub_srv *dmub = dc_dmub_srv->dmub; 72 struct dc_context *dc_ctx = dc_dmub_srv->ctx; 73 enum dmub_status status; 74 75 status = dmub_srv_cmd_queue(dmub, cmd); 76 if (status == DMUB_STATUS_OK) 77 return; 78 79 if (status != DMUB_STATUS_QUEUE_FULL) 80 goto error; 81 82 /* Execute and wait for queue to become empty again. */ 83 dc_dmub_srv_cmd_execute(dc_dmub_srv); 84 dc_dmub_srv_wait_idle(dc_dmub_srv); 85 86 /* Requeue the command. */ 87 status = dmub_srv_cmd_queue(dmub, cmd); 88 if (status == DMUB_STATUS_OK) 89 return; 90 91 error: 92 DC_ERROR("Error queuing DMUB command: status=%d\n", status); 93 dc_dmub_srv_log_diagnostic_data(dc_dmub_srv); 94 } 95 96 void dc_dmub_srv_cmd_execute(struct dc_dmub_srv *dc_dmub_srv) 97 { 98 struct dmub_srv *dmub = dc_dmub_srv->dmub; 99 struct dc_context *dc_ctx = dc_dmub_srv->ctx; 100 enum dmub_status status; 101 102 status = dmub_srv_cmd_execute(dmub); 103 if (status != DMUB_STATUS_OK) { 104 DC_ERROR("Error starting DMUB execution: status=%d\n", status); 105 dc_dmub_srv_log_diagnostic_data(dc_dmub_srv); 106 } 107 } 108 109 void dc_dmub_srv_wait_idle(struct dc_dmub_srv *dc_dmub_srv) 110 { 111 struct dmub_srv *dmub = dc_dmub_srv->dmub; 112 struct dc_context *dc_ctx = dc_dmub_srv->ctx; 113 enum dmub_status status; 114 115 status = dmub_srv_wait_for_idle(dmub, 100000); 116 if (status != DMUB_STATUS_OK) { 117 DC_ERROR("Error waiting for DMUB idle: status=%d\n", status); 118 dc_dmub_srv_log_diagnostic_data(dc_dmub_srv); 119 } 120 } 121 122 void dc_dmub_srv_clear_inbox0_ack(struct dc_dmub_srv *dmub_srv) 123 { 124 struct dmub_srv *dmub = dmub_srv->dmub; 125 struct dc_context *dc_ctx = dmub_srv->ctx; 126 enum dmub_status status = DMUB_STATUS_OK; 127 128 status = dmub_srv_clear_inbox0_ack(dmub); 129 if (status != DMUB_STATUS_OK) { 130 DC_ERROR("Error clearing INBOX0 ack: status=%d\n", status); 131 dc_dmub_srv_log_diagnostic_data(dmub_srv); 132 } 133 } 134 135 void dc_dmub_srv_wait_for_inbox0_ack(struct dc_dmub_srv *dmub_srv) 136 { 137 struct dmub_srv *dmub = dmub_srv->dmub; 138 struct dc_context *dc_ctx = dmub_srv->ctx; 139 enum dmub_status status = DMUB_STATUS_OK; 140 141 status = dmub_srv_wait_for_inbox0_ack(dmub, 100000); 142 if (status != DMUB_STATUS_OK) { 143 DC_ERROR("Error waiting for INBOX0 HW Lock Ack\n"); 144 dc_dmub_srv_log_diagnostic_data(dmub_srv); 145 } 146 } 147 148 void dc_dmub_srv_send_inbox0_cmd(struct dc_dmub_srv *dmub_srv, 149 union dmub_inbox0_data_register data) 150 { 151 struct dmub_srv *dmub = dmub_srv->dmub; 152 struct dc_context *dc_ctx = dmub_srv->ctx; 153 enum dmub_status status = DMUB_STATUS_OK; 154 155 status = dmub_srv_send_inbox0_cmd(dmub, data); 156 if (status != DMUB_STATUS_OK) { 157 DC_ERROR("Error sending INBOX0 cmd\n"); 158 dc_dmub_srv_log_diagnostic_data(dmub_srv); 159 } 160 } 161 162 bool dc_dmub_srv_cmd_with_reply_data(struct dc_dmub_srv *dc_dmub_srv, union dmub_rb_cmd *cmd) 163 { 164 struct dmub_srv *dmub; 165 enum dmub_status status; 166 167 if (!dc_dmub_srv || !dc_dmub_srv->dmub) 168 return false; 169 170 dmub = dc_dmub_srv->dmub; 171 172 status = dmub_srv_cmd_with_reply_data(dmub, cmd); 173 if (status != DMUB_STATUS_OK) { 174 DC_LOG_DEBUG("No reply for DMUB command: status=%d\n", status); 175 return false; 176 } 177 178 return true; 179 } 180 181 void dc_dmub_srv_wait_phy_init(struct dc_dmub_srv *dc_dmub_srv) 182 { 183 struct dmub_srv *dmub = dc_dmub_srv->dmub; 184 struct dc_context *dc_ctx = dc_dmub_srv->ctx; 185 enum dmub_status status; 186 187 for (;;) { 188 /* Wait up to a second for PHY init. */ 189 status = dmub_srv_wait_for_phy_init(dmub, 1000000); 190 if (status == DMUB_STATUS_OK) 191 /* Initialization OK */ 192 break; 193 194 DC_ERROR("DMCUB PHY init failed: status=%d\n", status); 195 ASSERT(0); 196 197 if (status != DMUB_STATUS_TIMEOUT) 198 /* 199 * Server likely initialized or we don't have 200 * DMCUB HW support - this won't end. 201 */ 202 break; 203 204 /* Continue spinning so we don't hang the ASIC. */ 205 } 206 } 207 208 bool dc_dmub_srv_notify_stream_mask(struct dc_dmub_srv *dc_dmub_srv, 209 unsigned int stream_mask) 210 { 211 struct dmub_srv *dmub; 212 const uint32_t timeout = 30; 213 214 if (!dc_dmub_srv || !dc_dmub_srv->dmub) 215 return false; 216 217 dmub = dc_dmub_srv->dmub; 218 219 return dmub_srv_send_gpint_command( 220 dmub, DMUB_GPINT__IDLE_OPT_NOTIFY_STREAM_MASK, 221 stream_mask, timeout) == DMUB_STATUS_OK; 222 } 223 224 bool dc_dmub_srv_is_restore_required(struct dc_dmub_srv *dc_dmub_srv) 225 { 226 struct dmub_srv *dmub; 227 struct dc_context *dc_ctx; 228 union dmub_fw_boot_status boot_status; 229 enum dmub_status status; 230 231 if (!dc_dmub_srv || !dc_dmub_srv->dmub) 232 return false; 233 234 dmub = dc_dmub_srv->dmub; 235 dc_ctx = dc_dmub_srv->ctx; 236 237 status = dmub_srv_get_fw_boot_status(dmub, &boot_status); 238 if (status != DMUB_STATUS_OK) { 239 DC_ERROR("Error querying DMUB boot status: error=%d\n", status); 240 return false; 241 } 242 243 return boot_status.bits.restore_required; 244 } 245 246 bool dc_dmub_srv_get_dmub_outbox0_msg(const struct dc *dc, struct dmcub_trace_buf_entry *entry) 247 { 248 struct dmub_srv *dmub = dc->ctx->dmub_srv->dmub; 249 return dmub_srv_get_outbox0_msg(dmub, entry); 250 } 251 252 void dc_dmub_trace_event_control(struct dc *dc, bool enable) 253 { 254 dm_helpers_dmub_outbox_interrupt_control(dc->ctx, enable); 255 } 256 257 void dc_dmub_srv_drr_update_cmd(struct dc *dc, uint32_t tg_inst, uint32_t vtotal_min, uint32_t vtotal_max) 258 { 259 union dmub_rb_cmd cmd = { 0 }; 260 261 cmd.drr_update.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH; 262 cmd.drr_update.header.sub_type = DMUB_CMD__FAMS_DRR_UPDATE; 263 cmd.drr_update.dmub_optc_state_req.v_total_max = vtotal_max; 264 cmd.drr_update.dmub_optc_state_req.v_total_min = vtotal_min; 265 cmd.drr_update.dmub_optc_state_req.tg_inst = tg_inst; 266 267 cmd.drr_update.header.payload_bytes = sizeof(cmd.drr_update) - sizeof(cmd.drr_update.header); 268 269 // Send the command to the DMCUB. 270 dc_dmub_srv_cmd_queue(dc->ctx->dmub_srv, &cmd); 271 dc_dmub_srv_cmd_execute(dc->ctx->dmub_srv); 272 dc_dmub_srv_wait_idle(dc->ctx->dmub_srv); 273 } 274 275 void dc_dmub_srv_set_drr_manual_trigger_cmd(struct dc *dc, uint32_t tg_inst) 276 { 277 union dmub_rb_cmd cmd = { 0 }; 278 279 cmd.drr_update.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH; 280 cmd.drr_update.header.sub_type = DMUB_CMD__FAMS_SET_MANUAL_TRIGGER; 281 cmd.drr_update.dmub_optc_state_req.tg_inst = tg_inst; 282 283 cmd.drr_update.header.payload_bytes = sizeof(cmd.drr_update) - sizeof(cmd.drr_update.header); 284 285 // Send the command to the DMCUB. 286 dc_dmub_srv_cmd_queue(dc->ctx->dmub_srv, &cmd); 287 dc_dmub_srv_cmd_execute(dc->ctx->dmub_srv); 288 dc_dmub_srv_wait_idle(dc->ctx->dmub_srv); 289 } 290 291 static uint8_t dc_dmub_srv_get_pipes_for_stream(struct dc *dc, struct dc_stream_state *stream) 292 { 293 uint8_t pipes = 0; 294 int i = 0; 295 296 for (i = 0; i < MAX_PIPES; i++) { 297 struct pipe_ctx *pipe = &dc->current_state->res_ctx.pipe_ctx[i]; 298 299 if (pipe->stream == stream && pipe->stream_res.tg) 300 pipes = i; 301 } 302 return pipes; 303 } 304 305 static int dc_dmub_srv_get_timing_generator_offset(struct dc *dc, struct dc_stream_state *stream) 306 { 307 int tg_inst = 0; 308 int i = 0; 309 310 for (i = 0; i < MAX_PIPES; i++) { 311 struct pipe_ctx *pipe = &dc->current_state->res_ctx.pipe_ctx[i]; 312 313 if (pipe->stream == stream && pipe->stream_res.tg) { 314 tg_inst = pipe->stream_res.tg->inst; 315 break; 316 } 317 } 318 return tg_inst; 319 } 320 321 bool dc_dmub_srv_p_state_delegate(struct dc *dc, bool should_manage_pstate, struct dc_state *context) 322 { 323 union dmub_rb_cmd cmd = { 0 }; 324 struct dmub_cmd_fw_assisted_mclk_switch_config *config_data = &cmd.fw_assisted_mclk_switch.config_data; 325 int i = 0; 326 int ramp_up_num_steps = 1; // TODO: Ramp is currently disabled. Reenable it. 327 uint8_t visual_confirm_enabled; 328 329 if (dc == NULL) 330 return false; 331 332 visual_confirm_enabled = dc->debug.visual_confirm == VISUAL_CONFIRM_FAMS; 333 334 // Format command. 335 cmd.fw_assisted_mclk_switch.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH; 336 cmd.fw_assisted_mclk_switch.header.sub_type = DMUB_CMD__FAMS_SETUP_FW_CTRL; 337 cmd.fw_assisted_mclk_switch.config_data.fams_enabled = should_manage_pstate; 338 cmd.fw_assisted_mclk_switch.config_data.visual_confirm_enabled = visual_confirm_enabled; 339 340 for (i = 0; context && i < context->stream_count; i++) { 341 struct dc_stream_state *stream = context->streams[i]; 342 uint8_t min_refresh_in_hz = (stream->timing.min_refresh_in_uhz + 999999) / 1000000; 343 int tg_inst = dc_dmub_srv_get_timing_generator_offset(dc, stream); 344 345 config_data->pipe_data[tg_inst].pix_clk_100hz = stream->timing.pix_clk_100hz; 346 config_data->pipe_data[tg_inst].min_refresh_in_hz = min_refresh_in_hz; 347 config_data->pipe_data[tg_inst].max_ramp_step = ramp_up_num_steps; 348 config_data->pipe_data[tg_inst].pipes = dc_dmub_srv_get_pipes_for_stream(dc, stream); 349 } 350 351 cmd.fw_assisted_mclk_switch.header.payload_bytes = 352 sizeof(cmd.fw_assisted_mclk_switch) - sizeof(cmd.fw_assisted_mclk_switch.header); 353 354 // Send the command to the DMCUB. 355 dc_dmub_srv_cmd_queue(dc->ctx->dmub_srv, &cmd); 356 dc_dmub_srv_cmd_execute(dc->ctx->dmub_srv); 357 dc_dmub_srv_wait_idle(dc->ctx->dmub_srv); 358 359 return true; 360 } 361 362 void dc_dmub_srv_query_caps_cmd(struct dmub_srv *dmub) 363 { 364 union dmub_rb_cmd cmd = { 0 }; 365 enum dmub_status status; 366 367 if (!dmub) { 368 return; 369 } 370 371 memset(&cmd, 0, sizeof(cmd)); 372 373 /* Prepare fw command */ 374 cmd.query_feature_caps.header.type = DMUB_CMD__QUERY_FEATURE_CAPS; 375 cmd.query_feature_caps.header.sub_type = 0; 376 cmd.query_feature_caps.header.ret_status = 1; 377 cmd.query_feature_caps.header.payload_bytes = sizeof(struct dmub_cmd_query_feature_caps_data); 378 379 /* Send command to fw */ 380 status = dmub_srv_cmd_with_reply_data(dmub, &cmd); 381 382 ASSERT(status == DMUB_STATUS_OK); 383 384 /* If command was processed, copy feature caps to dmub srv */ 385 if (status == DMUB_STATUS_OK && 386 cmd.query_feature_caps.header.ret_status == 0) { 387 memcpy(&dmub->feature_caps, 388 &cmd.query_feature_caps.query_feature_caps_data, 389 sizeof(struct dmub_feature_caps)); 390 } 391 } 392 393 void dc_dmub_srv_get_visual_confirm_color_cmd(struct dc *dc, struct pipe_ctx *pipe_ctx) 394 { 395 union dmub_rb_cmd cmd = { 0 }; 396 enum dmub_status status; 397 unsigned int panel_inst = 0; 398 399 dc_get_edp_link_panel_inst(dc, pipe_ctx->stream->link, &panel_inst); 400 401 memset(&cmd, 0, sizeof(cmd)); 402 403 // Prepare fw command 404 cmd.visual_confirm_color.header.type = DMUB_CMD__GET_VISUAL_CONFIRM_COLOR; 405 cmd.visual_confirm_color.header.sub_type = 0; 406 cmd.visual_confirm_color.header.ret_status = 1; 407 cmd.visual_confirm_color.header.payload_bytes = sizeof(struct dmub_cmd_visual_confirm_color_data); 408 cmd.visual_confirm_color.visual_confirm_color_data.visual_confirm_color.panel_inst = panel_inst; 409 410 // Send command to fw 411 status = dmub_srv_cmd_with_reply_data(dc->ctx->dmub_srv->dmub, &cmd); 412 413 ASSERT(status == DMUB_STATUS_OK); 414 415 // If command was processed, copy feature caps to dmub srv 416 if (status == DMUB_STATUS_OK && 417 cmd.visual_confirm_color.header.ret_status == 0) { 418 memcpy(&dc->ctx->dmub_srv->dmub->visual_confirm_color, 419 &cmd.visual_confirm_color.visual_confirm_color_data, 420 sizeof(struct dmub_visual_confirm_color)); 421 } 422 } 423 424 /** 425 * populate_subvp_cmd_drr_info - Helper to populate DRR pipe info for the DMCUB subvp command 426 * 427 * @dc: [in] current dc state 428 * @subvp_pipe: [in] pipe_ctx for the SubVP pipe 429 * @vblank_pipe: [in] pipe_ctx for the DRR pipe 430 * @pipe_data: [in] Pipe data which stores the VBLANK/DRR info 431 * 432 * Populate the DMCUB SubVP command with DRR pipe info. All the information 433 * required for calculating the SubVP + DRR microschedule is populated here. 434 * 435 * High level algorithm: 436 * 1. Get timing for SubVP pipe, phantom pipe, and DRR pipe 437 * 2. Calculate the min and max vtotal which supports SubVP + DRR microschedule 438 * 3. Populate the drr_info with the min and max supported vtotal values 439 */ 440 static void populate_subvp_cmd_drr_info(struct dc *dc, 441 struct pipe_ctx *subvp_pipe, 442 struct pipe_ctx *vblank_pipe, 443 struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data) 444 { 445 struct dc_crtc_timing *main_timing = &subvp_pipe->stream->timing; 446 struct dc_crtc_timing *phantom_timing = &subvp_pipe->stream->mall_stream_config.paired_stream->timing; 447 struct dc_crtc_timing *drr_timing = &vblank_pipe->stream->timing; 448 uint16_t drr_frame_us = 0; 449 uint16_t min_drr_supported_us = 0; 450 uint16_t max_drr_supported_us = 0; 451 uint16_t max_drr_vblank_us = 0; 452 uint16_t max_drr_mallregion_us = 0; 453 uint16_t mall_region_us = 0; 454 uint16_t prefetch_us = 0; 455 uint16_t subvp_active_us = 0; 456 uint16_t drr_active_us = 0; 457 uint16_t min_vtotal_supported = 0; 458 uint16_t max_vtotal_supported = 0; 459 460 pipe_data->pipe_config.vblank_data.drr_info.drr_in_use = true; 461 pipe_data->pipe_config.vblank_data.drr_info.use_ramping = false; // for now don't use ramping 462 pipe_data->pipe_config.vblank_data.drr_info.drr_window_size_ms = 4; // hardcode 4ms DRR window for now 463 464 drr_frame_us = div64_u64(((uint64_t)drr_timing->v_total * drr_timing->h_total * 1000000), 465 (((uint64_t)drr_timing->pix_clk_100hz * 100))); 466 // P-State allow width and FW delays already included phantom_timing->v_addressable 467 mall_region_us = div64_u64(((uint64_t)phantom_timing->v_addressable * phantom_timing->h_total * 1000000), 468 (((uint64_t)phantom_timing->pix_clk_100hz * 100))); 469 min_drr_supported_us = drr_frame_us + mall_region_us + SUBVP_DRR_MARGIN_US; 470 min_vtotal_supported = div64_u64(((uint64_t)drr_timing->pix_clk_100hz * 100 * min_drr_supported_us), 471 (((uint64_t)drr_timing->h_total * 1000000))); 472 473 prefetch_us = div64_u64(((uint64_t)(phantom_timing->v_total - phantom_timing->v_front_porch) * phantom_timing->h_total * 1000000), 474 (((uint64_t)phantom_timing->pix_clk_100hz * 100) + dc->caps.subvp_prefetch_end_to_mall_start_us)); 475 subvp_active_us = div64_u64(((uint64_t)main_timing->v_addressable * main_timing->h_total * 1000000), 476 (((uint64_t)main_timing->pix_clk_100hz * 100))); 477 drr_active_us = div64_u64(((uint64_t)drr_timing->v_addressable * drr_timing->h_total * 1000000), 478 (((uint64_t)drr_timing->pix_clk_100hz * 100))); 479 max_drr_vblank_us = div64_u64((subvp_active_us - prefetch_us - 480 dc->caps.subvp_fw_processing_delay_us - drr_active_us), 2) + drr_active_us; 481 max_drr_mallregion_us = subvp_active_us - prefetch_us - mall_region_us - dc->caps.subvp_fw_processing_delay_us; 482 max_drr_supported_us = max_drr_vblank_us > max_drr_mallregion_us ? max_drr_vblank_us : max_drr_mallregion_us; 483 max_vtotal_supported = div64_u64(((uint64_t)drr_timing->pix_clk_100hz * 100 * max_drr_supported_us), 484 (((uint64_t)drr_timing->h_total * 1000000))); 485 486 /* When calculating the max vtotal supported for SubVP + DRR cases, add 487 * margin due to possible rounding errors (being off by 1 line in the 488 * FW calculation can incorrectly push the P-State switch to wait 1 frame 489 * longer). 490 */ 491 max_vtotal_supported = max_vtotal_supported - dc->caps.subvp_drr_max_vblank_margin_us; 492 493 pipe_data->pipe_config.vblank_data.drr_info.min_vtotal_supported = min_vtotal_supported; 494 pipe_data->pipe_config.vblank_data.drr_info.max_vtotal_supported = max_vtotal_supported; 495 pipe_data->pipe_config.vblank_data.drr_info.drr_vblank_start_margin = dc->caps.subvp_drr_vblank_start_margin_us; 496 } 497 498 /** 499 * populate_subvp_cmd_vblank_pipe_info - Helper to populate VBLANK pipe info for the DMUB subvp command 500 * 501 * @dc: [in] current dc state 502 * @context: [in] new dc state 503 * @cmd: [in] DMUB cmd to be populated with SubVP info 504 * @vblank_pipe: [in] pipe_ctx for the VBLANK pipe 505 * @cmd_pipe_index: [in] index for the pipe array in DMCUB SubVP cmd 506 * 507 * Populate the DMCUB SubVP command with VBLANK pipe info. All the information 508 * required to calculate the microschedule for SubVP + VBLANK case is stored in 509 * the pipe_data (subvp_data and vblank_data). Also check if the VBLANK pipe 510 * is a DRR display -- if it is make a call to populate drr_info. 511 */ 512 static void populate_subvp_cmd_vblank_pipe_info(struct dc *dc, 513 struct dc_state *context, 514 union dmub_rb_cmd *cmd, 515 struct pipe_ctx *vblank_pipe, 516 uint8_t cmd_pipe_index) 517 { 518 uint32_t i; 519 struct pipe_ctx *pipe = NULL; 520 struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data = 521 &cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[cmd_pipe_index]; 522 523 // Find the SubVP pipe 524 for (i = 0; i < dc->res_pool->pipe_count; i++) { 525 pipe = &context->res_ctx.pipe_ctx[i]; 526 527 // We check for master pipe, but it shouldn't matter since we only need 528 // the pipe for timing info (stream should be same for any pipe splits) 529 if (!pipe->stream || !pipe->plane_state || pipe->top_pipe || pipe->prev_odm_pipe) 530 continue; 531 532 // Find the SubVP pipe 533 if (pipe->stream->mall_stream_config.type == SUBVP_MAIN) 534 break; 535 } 536 537 pipe_data->mode = VBLANK; 538 pipe_data->pipe_config.vblank_data.pix_clk_100hz = vblank_pipe->stream->timing.pix_clk_100hz; 539 pipe_data->pipe_config.vblank_data.vblank_start = vblank_pipe->stream->timing.v_total - 540 vblank_pipe->stream->timing.v_front_porch; 541 pipe_data->pipe_config.vblank_data.vtotal = vblank_pipe->stream->timing.v_total; 542 pipe_data->pipe_config.vblank_data.htotal = vblank_pipe->stream->timing.h_total; 543 pipe_data->pipe_config.vblank_data.vblank_pipe_index = vblank_pipe->pipe_idx; 544 pipe_data->pipe_config.vblank_data.vstartup_start = vblank_pipe->pipe_dlg_param.vstartup_start; 545 pipe_data->pipe_config.vblank_data.vblank_end = 546 vblank_pipe->stream->timing.v_total - vblank_pipe->stream->timing.v_front_porch - vblank_pipe->stream->timing.v_addressable; 547 548 if (vblank_pipe->stream->ignore_msa_timing_param) 549 populate_subvp_cmd_drr_info(dc, pipe, vblank_pipe, pipe_data); 550 } 551 552 /** 553 * update_subvp_prefetch_end_to_mall_start - Helper for SubVP + SubVP case 554 * 555 * @dc: [in] current dc state 556 * @context: [in] new dc state 557 * @cmd: [in] DMUB cmd to be populated with SubVP info 558 * @subvp_pipes: [in] Array of SubVP pipes (should always be length 2) 559 * 560 * For SubVP + SubVP, we use a single vertical interrupt to start the 561 * microschedule for both SubVP pipes. In order for this to work correctly, the 562 * MALL REGION of both SubVP pipes must start at the same time. This function 563 * lengthens the prefetch end to mall start delay of the SubVP pipe that has 564 * the shorter prefetch so that both MALL REGION's will start at the same time. 565 */ 566 static void update_subvp_prefetch_end_to_mall_start(struct dc *dc, 567 struct dc_state *context, 568 union dmub_rb_cmd *cmd, 569 struct pipe_ctx *subvp_pipes[]) 570 { 571 uint32_t subvp0_prefetch_us = 0; 572 uint32_t subvp1_prefetch_us = 0; 573 uint32_t prefetch_delta_us = 0; 574 struct dc_crtc_timing *phantom_timing0 = &subvp_pipes[0]->stream->mall_stream_config.paired_stream->timing; 575 struct dc_crtc_timing *phantom_timing1 = &subvp_pipes[1]->stream->mall_stream_config.paired_stream->timing; 576 struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data = NULL; 577 578 subvp0_prefetch_us = div64_u64(((uint64_t)(phantom_timing0->v_total - phantom_timing0->v_front_porch) * 579 (uint64_t)phantom_timing0->h_total * 1000000), 580 (((uint64_t)phantom_timing0->pix_clk_100hz * 100) + dc->caps.subvp_prefetch_end_to_mall_start_us)); 581 subvp1_prefetch_us = div64_u64(((uint64_t)(phantom_timing1->v_total - phantom_timing1->v_front_porch) * 582 (uint64_t)phantom_timing1->h_total * 1000000), 583 (((uint64_t)phantom_timing1->pix_clk_100hz * 100) + dc->caps.subvp_prefetch_end_to_mall_start_us)); 584 585 // Whichever SubVP PIPE has the smaller prefetch (including the prefetch end to mall start time) 586 // should increase it's prefetch time to match the other 587 if (subvp0_prefetch_us > subvp1_prefetch_us) { 588 pipe_data = &cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[1]; 589 prefetch_delta_us = subvp0_prefetch_us - subvp1_prefetch_us; 590 pipe_data->pipe_config.subvp_data.prefetch_to_mall_start_lines = 591 div64_u64(((uint64_t)(dc->caps.subvp_prefetch_end_to_mall_start_us + prefetch_delta_us) * 592 ((uint64_t)phantom_timing1->pix_clk_100hz * 100) + ((uint64_t)phantom_timing1->h_total * 1000000 - 1)), 593 ((uint64_t)phantom_timing1->h_total * 1000000)); 594 595 } else if (subvp1_prefetch_us > subvp0_prefetch_us) { 596 pipe_data = &cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[0]; 597 prefetch_delta_us = subvp1_prefetch_us - subvp0_prefetch_us; 598 pipe_data->pipe_config.subvp_data.prefetch_to_mall_start_lines = 599 div64_u64(((uint64_t)(dc->caps.subvp_prefetch_end_to_mall_start_us + prefetch_delta_us) * 600 ((uint64_t)phantom_timing0->pix_clk_100hz * 100) + ((uint64_t)phantom_timing0->h_total * 1000000 - 1)), 601 ((uint64_t)phantom_timing0->h_total * 1000000)); 602 } 603 } 604 605 /** 606 * populate_subvp_cmd_pipe_info - Helper to populate the SubVP pipe info for the DMUB subvp command 607 * 608 * @dc: [in] current dc state 609 * @context: [in] new dc state 610 * @cmd: [in] DMUB cmd to be populated with SubVP info 611 * @subvp_pipe: [in] pipe_ctx for the SubVP pipe 612 * @cmd_pipe_index: [in] index for the pipe array in DMCUB SubVP cmd 613 * 614 * Populate the DMCUB SubVP command with SubVP pipe info. All the information 615 * required to calculate the microschedule for the SubVP pipe is stored in the 616 * pipe_data of the DMCUB SubVP command. 617 */ 618 static void populate_subvp_cmd_pipe_info(struct dc *dc, 619 struct dc_state *context, 620 union dmub_rb_cmd *cmd, 621 struct pipe_ctx *subvp_pipe, 622 uint8_t cmd_pipe_index) 623 { 624 uint32_t j; 625 struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data = 626 &cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[cmd_pipe_index]; 627 struct dc_crtc_timing *main_timing = &subvp_pipe->stream->timing; 628 struct dc_crtc_timing *phantom_timing = &subvp_pipe->stream->mall_stream_config.paired_stream->timing; 629 uint32_t out_num_stream, out_den_stream, out_num_plane, out_den_plane, out_num, out_den; 630 631 pipe_data->mode = SUBVP; 632 pipe_data->pipe_config.subvp_data.pix_clk_100hz = subvp_pipe->stream->timing.pix_clk_100hz; 633 pipe_data->pipe_config.subvp_data.htotal = subvp_pipe->stream->timing.h_total; 634 pipe_data->pipe_config.subvp_data.vtotal = subvp_pipe->stream->timing.v_total; 635 pipe_data->pipe_config.subvp_data.main_vblank_start = 636 main_timing->v_total - main_timing->v_front_porch; 637 pipe_data->pipe_config.subvp_data.main_vblank_end = 638 main_timing->v_total - main_timing->v_front_porch - main_timing->v_addressable; 639 pipe_data->pipe_config.subvp_data.mall_region_lines = phantom_timing->v_addressable; 640 pipe_data->pipe_config.subvp_data.main_pipe_index = subvp_pipe->stream_res.tg->inst; 641 pipe_data->pipe_config.subvp_data.is_drr = subvp_pipe->stream->ignore_msa_timing_param; 642 643 /* Calculate the scaling factor from the src and dst height. 644 * e.g. If 3840x2160 being downscaled to 1920x1080, the scaling factor is 1/2. 645 * Reduce the fraction 1080/2160 = 1/2 for the "scaling factor" 646 * 647 * Make sure to combine stream and plane scaling together. 648 */ 649 reduce_fraction(subvp_pipe->stream->src.height, subvp_pipe->stream->dst.height, 650 &out_num_stream, &out_den_stream); 651 reduce_fraction(subvp_pipe->plane_state->src_rect.height, subvp_pipe->plane_state->dst_rect.height, 652 &out_num_plane, &out_den_plane); 653 reduce_fraction(out_num_stream * out_num_plane, out_den_stream * out_den_plane, &out_num, &out_den); 654 pipe_data->pipe_config.subvp_data.scale_factor_numerator = out_num; 655 pipe_data->pipe_config.subvp_data.scale_factor_denominator = out_den; 656 657 // Prefetch lines is equal to VACTIVE + BP + VSYNC 658 pipe_data->pipe_config.subvp_data.prefetch_lines = 659 phantom_timing->v_total - phantom_timing->v_front_porch; 660 661 // Round up 662 pipe_data->pipe_config.subvp_data.prefetch_to_mall_start_lines = 663 div64_u64(((uint64_t)dc->caps.subvp_prefetch_end_to_mall_start_us * ((uint64_t)phantom_timing->pix_clk_100hz * 100) + 664 ((uint64_t)phantom_timing->h_total * 1000000 - 1)), ((uint64_t)phantom_timing->h_total * 1000000)); 665 pipe_data->pipe_config.subvp_data.processing_delay_lines = 666 div64_u64(((uint64_t)(dc->caps.subvp_fw_processing_delay_us) * ((uint64_t)phantom_timing->pix_clk_100hz * 100) + 667 ((uint64_t)phantom_timing->h_total * 1000000 - 1)), ((uint64_t)phantom_timing->h_total * 1000000)); 668 669 if (subvp_pipe->bottom_pipe) { 670 pipe_data->pipe_config.subvp_data.main_split_pipe_index = subvp_pipe->bottom_pipe->pipe_idx; 671 } else if (subvp_pipe->next_odm_pipe) { 672 pipe_data->pipe_config.subvp_data.main_split_pipe_index = subvp_pipe->next_odm_pipe->pipe_idx; 673 } else { 674 pipe_data->pipe_config.subvp_data.main_split_pipe_index = 0; 675 } 676 677 // Find phantom pipe index based on phantom stream 678 for (j = 0; j < dc->res_pool->pipe_count; j++) { 679 struct pipe_ctx *phantom_pipe = &context->res_ctx.pipe_ctx[j]; 680 681 if (phantom_pipe->stream == subvp_pipe->stream->mall_stream_config.paired_stream) { 682 pipe_data->pipe_config.subvp_data.phantom_pipe_index = phantom_pipe->stream_res.tg->inst; 683 if (phantom_pipe->bottom_pipe) { 684 pipe_data->pipe_config.subvp_data.phantom_split_pipe_index = phantom_pipe->bottom_pipe->plane_res.hubp->inst; 685 } else if (phantom_pipe->next_odm_pipe) { 686 pipe_data->pipe_config.subvp_data.phantom_split_pipe_index = phantom_pipe->next_odm_pipe->plane_res.hubp->inst; 687 } else { 688 pipe_data->pipe_config.subvp_data.phantom_split_pipe_index = 0; 689 } 690 break; 691 } 692 } 693 } 694 695 /** 696 * dc_dmub_setup_subvp_dmub_command - Populate the DMCUB SubVP command 697 * 698 * @dc: [in] current dc state 699 * @context: [in] new dc state 700 * @enable: [in] if true enables the pipes population 701 * 702 * This function loops through each pipe and populates the DMUB SubVP CMD info 703 * based on the pipe (e.g. SubVP, VBLANK). 704 */ 705 void dc_dmub_setup_subvp_dmub_command(struct dc *dc, 706 struct dc_state *context, 707 bool enable) 708 { 709 uint8_t cmd_pipe_index = 0; 710 uint32_t i, pipe_idx; 711 uint8_t subvp_count = 0; 712 union dmub_rb_cmd cmd; 713 struct pipe_ctx *subvp_pipes[2]; 714 uint32_t wm_val_refclk = 0; 715 716 memset(&cmd, 0, sizeof(cmd)); 717 // FW command for SUBVP 718 cmd.fw_assisted_mclk_switch_v2.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH; 719 cmd.fw_assisted_mclk_switch_v2.header.sub_type = DMUB_CMD__HANDLE_SUBVP_CMD; 720 cmd.fw_assisted_mclk_switch_v2.header.payload_bytes = 721 sizeof(cmd.fw_assisted_mclk_switch_v2) - sizeof(cmd.fw_assisted_mclk_switch_v2.header); 722 723 for (i = 0; i < dc->res_pool->pipe_count; i++) { 724 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; 725 726 if (!pipe->stream) 727 continue; 728 729 /* For SubVP pipe count, only count the top most (ODM / MPC) pipe 730 */ 731 if (pipe->plane_state && !pipe->top_pipe && !pipe->prev_odm_pipe && 732 pipe->stream->mall_stream_config.type == SUBVP_MAIN) 733 subvp_pipes[subvp_count++] = pipe; 734 } 735 736 if (enable) { 737 // For each pipe that is a "main" SUBVP pipe, fill in pipe data for DMUB SUBVP cmd 738 for (i = 0, pipe_idx = 0; i < dc->res_pool->pipe_count; i++) { 739 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; 740 741 if (!pipe->stream) 742 continue; 743 744 /* When populating subvp cmd info, only pass in the top most (ODM / MPC) pipe. 745 * Any ODM or MPC splits being used in SubVP will be handled internally in 746 * populate_subvp_cmd_pipe_info 747 */ 748 if (pipe->plane_state && pipe->stream->mall_stream_config.paired_stream && 749 !pipe->top_pipe && !pipe->prev_odm_pipe && 750 pipe->stream->mall_stream_config.type == SUBVP_MAIN) { 751 populate_subvp_cmd_pipe_info(dc, context, &cmd, pipe, cmd_pipe_index++); 752 } else if (pipe->plane_state && pipe->stream->mall_stream_config.type == SUBVP_NONE && 753 !pipe->top_pipe && !pipe->prev_odm_pipe) { 754 // Don't need to check for ActiveDRAMClockChangeMargin < 0, not valid in cases where 755 // we run through DML without calculating "natural" P-state support 756 populate_subvp_cmd_vblank_pipe_info(dc, context, &cmd, pipe, cmd_pipe_index++); 757 758 } 759 pipe_idx++; 760 } 761 if (subvp_count == 2) { 762 update_subvp_prefetch_end_to_mall_start(dc, context, &cmd, subvp_pipes); 763 } 764 cmd.fw_assisted_mclk_switch_v2.config_data.pstate_allow_width_us = dc->caps.subvp_pstate_allow_width_us; 765 cmd.fw_assisted_mclk_switch_v2.config_data.vertical_int_margin_us = dc->caps.subvp_vertical_int_margin_us; 766 767 // Store the original watermark value for this SubVP config so we can lower it when the 768 // MCLK switch starts 769 wm_val_refclk = context->bw_ctx.bw.dcn.watermarks.a.cstate_pstate.pstate_change_ns * 770 (dc->res_pool->ref_clocks.dchub_ref_clock_inKhz / 1000) / 1000; 771 772 cmd.fw_assisted_mclk_switch_v2.config_data.watermark_a_cache = wm_val_refclk < 0xFFFF ? wm_val_refclk : 0xFFFF; 773 } 774 dc_dmub_srv_cmd_queue(dc->ctx->dmub_srv, &cmd); 775 dc_dmub_srv_cmd_execute(dc->ctx->dmub_srv); 776 dc_dmub_srv_wait_idle(dc->ctx->dmub_srv); 777 } 778 779 bool dc_dmub_srv_get_diagnostic_data(struct dc_dmub_srv *dc_dmub_srv, struct dmub_diagnostic_data *diag_data) 780 { 781 if (!dc_dmub_srv || !dc_dmub_srv->dmub || !diag_data) 782 return false; 783 return dmub_srv_get_diagnostic_data(dc_dmub_srv->dmub, diag_data); 784 } 785 786 void dc_dmub_srv_log_diagnostic_data(struct dc_dmub_srv *dc_dmub_srv) 787 { 788 struct dmub_diagnostic_data diag_data = {0}; 789 790 if (!dc_dmub_srv || !dc_dmub_srv->dmub) { 791 DC_LOG_ERROR("%s: invalid parameters.", __func__); 792 return; 793 } 794 795 if (!dc_dmub_srv_get_diagnostic_data(dc_dmub_srv, &diag_data)) { 796 DC_LOG_ERROR("%s: dc_dmub_srv_get_diagnostic_data failed.", __func__); 797 return; 798 } 799 800 DC_LOG_DEBUG( 801 "DMCUB STATE\n" 802 " dmcub_version : %08x\n" 803 " scratch [0] : %08x\n" 804 " scratch [1] : %08x\n" 805 " scratch [2] : %08x\n" 806 " scratch [3] : %08x\n" 807 " scratch [4] : %08x\n" 808 " scratch [5] : %08x\n" 809 " scratch [6] : %08x\n" 810 " scratch [7] : %08x\n" 811 " scratch [8] : %08x\n" 812 " scratch [9] : %08x\n" 813 " scratch [10] : %08x\n" 814 " scratch [11] : %08x\n" 815 " scratch [12] : %08x\n" 816 " scratch [13] : %08x\n" 817 " scratch [14] : %08x\n" 818 " scratch [15] : %08x\n" 819 " pc : %08x\n" 820 " unk_fault_addr : %08x\n" 821 " inst_fault_addr : %08x\n" 822 " data_fault_addr : %08x\n" 823 " inbox1_rptr : %08x\n" 824 " inbox1_wptr : %08x\n" 825 " inbox1_size : %08x\n" 826 " inbox0_rptr : %08x\n" 827 " inbox0_wptr : %08x\n" 828 " inbox0_size : %08x\n" 829 " is_enabled : %d\n" 830 " is_soft_reset : %d\n" 831 " is_secure_reset : %d\n" 832 " is_traceport_en : %d\n" 833 " is_cw0_en : %d\n" 834 " is_cw6_en : %d\n", 835 diag_data.dmcub_version, 836 diag_data.scratch[0], 837 diag_data.scratch[1], 838 diag_data.scratch[2], 839 diag_data.scratch[3], 840 diag_data.scratch[4], 841 diag_data.scratch[5], 842 diag_data.scratch[6], 843 diag_data.scratch[7], 844 diag_data.scratch[8], 845 diag_data.scratch[9], 846 diag_data.scratch[10], 847 diag_data.scratch[11], 848 diag_data.scratch[12], 849 diag_data.scratch[13], 850 diag_data.scratch[14], 851 diag_data.scratch[15], 852 diag_data.pc, 853 diag_data.undefined_address_fault_addr, 854 diag_data.inst_fetch_fault_addr, 855 diag_data.data_write_fault_addr, 856 diag_data.inbox1_rptr, 857 diag_data.inbox1_wptr, 858 diag_data.inbox1_size, 859 diag_data.inbox0_rptr, 860 diag_data.inbox0_wptr, 861 diag_data.inbox0_size, 862 diag_data.is_dmcub_enabled, 863 diag_data.is_dmcub_soft_reset, 864 diag_data.is_dmcub_secure_reset, 865 diag_data.is_traceport_en, 866 diag_data.is_cw0_enabled, 867 diag_data.is_cw6_enabled); 868 } 869 870 static bool dc_can_pipe_disable_cursor(struct pipe_ctx *pipe_ctx) 871 { 872 struct pipe_ctx *test_pipe, *split_pipe; 873 const struct scaler_data *scl_data = &pipe_ctx->plane_res.scl_data; 874 struct rect r1 = scl_data->recout, r2, r2_half; 875 int r1_r = r1.x + r1.width, r1_b = r1.y + r1.height, r2_r, r2_b; 876 int cur_layer = pipe_ctx->plane_state->layer_index; 877 878 /** 879 * Disable the cursor if there's another pipe above this with a 880 * plane that contains this pipe's viewport to prevent double cursor 881 * and incorrect scaling artifacts. 882 */ 883 for (test_pipe = pipe_ctx->top_pipe; test_pipe; 884 test_pipe = test_pipe->top_pipe) { 885 // Skip invisible layer and pipe-split plane on same layer 886 if (!test_pipe->plane_state->visible || test_pipe->plane_state->layer_index == cur_layer) 887 continue; 888 889 r2 = test_pipe->plane_res.scl_data.recout; 890 r2_r = r2.x + r2.width; 891 r2_b = r2.y + r2.height; 892 split_pipe = test_pipe; 893 894 /** 895 * There is another half plane on same layer because of 896 * pipe-split, merge together per same height. 897 */ 898 for (split_pipe = pipe_ctx->top_pipe; split_pipe; 899 split_pipe = split_pipe->top_pipe) 900 if (split_pipe->plane_state->layer_index == test_pipe->plane_state->layer_index) { 901 r2_half = split_pipe->plane_res.scl_data.recout; 902 r2.x = (r2_half.x < r2.x) ? r2_half.x : r2.x; 903 r2.width = r2.width + r2_half.width; 904 r2_r = r2.x + r2.width; 905 break; 906 } 907 908 if (r1.x >= r2.x && r1.y >= r2.y && r1_r <= r2_r && r1_b <= r2_b) 909 return true; 910 } 911 912 return false; 913 } 914 915 static bool dc_dmub_should_update_cursor_data(struct pipe_ctx *pipe_ctx) 916 { 917 if (pipe_ctx->plane_state != NULL) { 918 if (pipe_ctx->plane_state->address.type == PLN_ADDR_TYPE_VIDEO_PROGRESSIVE) 919 return false; 920 921 if (dc_can_pipe_disable_cursor(pipe_ctx)) 922 return false; 923 } 924 925 if ((pipe_ctx->stream->link->psr_settings.psr_version == DC_PSR_VERSION_SU_1 || 926 pipe_ctx->stream->link->psr_settings.psr_version == DC_PSR_VERSION_1) && 927 pipe_ctx->stream->ctx->dce_version >= DCN_VERSION_3_1) 928 return true; 929 930 return false; 931 } 932 933 static void dc_build_cursor_update_payload0( 934 struct pipe_ctx *pipe_ctx, uint8_t p_idx, 935 struct dmub_cmd_update_cursor_payload0 *payload) 936 { 937 struct hubp *hubp = pipe_ctx->plane_res.hubp; 938 unsigned int panel_inst = 0; 939 940 if (!dc_get_edp_link_panel_inst(hubp->ctx->dc, 941 pipe_ctx->stream->link, &panel_inst)) 942 return; 943 944 /* Payload: Cursor Rect is built from position & attribute 945 * x & y are obtained from postion 946 */ 947 payload->cursor_rect.x = hubp->cur_rect.x; 948 payload->cursor_rect.y = hubp->cur_rect.y; 949 /* w & h are obtained from attribute */ 950 payload->cursor_rect.width = hubp->cur_rect.w; 951 payload->cursor_rect.height = hubp->cur_rect.h; 952 953 payload->enable = hubp->pos.cur_ctl.bits.cur_enable; 954 payload->pipe_idx = p_idx; 955 payload->cmd_version = DMUB_CMD_PSR_CONTROL_VERSION_1; 956 payload->panel_inst = panel_inst; 957 } 958 959 static void dc_send_cmd_to_dmu(struct dc_dmub_srv *dmub_srv, 960 union dmub_rb_cmd *cmd) 961 { 962 dc_dmub_srv_cmd_queue(dmub_srv, cmd); 963 dc_dmub_srv_cmd_execute(dmub_srv); 964 dc_dmub_srv_wait_idle(dmub_srv); 965 } 966 967 static void dc_build_cursor_position_update_payload0( 968 struct dmub_cmd_update_cursor_payload0 *pl, const uint8_t p_idx, 969 const struct hubp *hubp, const struct dpp *dpp) 970 { 971 /* Hubp */ 972 pl->position_cfg.pHubp.cur_ctl.raw = hubp->pos.cur_ctl.raw; 973 pl->position_cfg.pHubp.position.raw = hubp->pos.position.raw; 974 pl->position_cfg.pHubp.hot_spot.raw = hubp->pos.hot_spot.raw; 975 pl->position_cfg.pHubp.dst_offset.raw = hubp->pos.dst_offset.raw; 976 977 /* dpp */ 978 pl->position_cfg.pDpp.cur0_ctl.raw = dpp->pos.cur0_ctl.raw; 979 pl->position_cfg.pipe_idx = p_idx; 980 } 981 982 static void dc_build_cursor_attribute_update_payload1( 983 struct dmub_cursor_attributes_cfg *pl_A, const uint8_t p_idx, 984 const struct hubp *hubp, const struct dpp *dpp) 985 { 986 /* Hubp */ 987 pl_A->aHubp.SURFACE_ADDR_HIGH = hubp->att.SURFACE_ADDR_HIGH; 988 pl_A->aHubp.SURFACE_ADDR = hubp->att.SURFACE_ADDR; 989 pl_A->aHubp.cur_ctl.raw = hubp->att.cur_ctl.raw; 990 pl_A->aHubp.size.raw = hubp->att.size.raw; 991 pl_A->aHubp.settings.raw = hubp->att.settings.raw; 992 993 /* dpp */ 994 pl_A->aDpp.cur0_ctl.raw = dpp->att.cur0_ctl.raw; 995 } 996 997 /** 998 * dc_send_update_cursor_info_to_dmu - Populate the DMCUB Cursor update info command 999 * 1000 * @pCtx: [in] pipe context 1001 * @pipe_idx: [in] pipe index 1002 * 1003 * This function would store the cursor related information and pass it into 1004 * dmub 1005 */ 1006 void dc_send_update_cursor_info_to_dmu( 1007 struct pipe_ctx *pCtx, uint8_t pipe_idx) 1008 { 1009 union dmub_rb_cmd cmd = { 0 }; 1010 union dmub_cmd_update_cursor_info_data *update_cursor_info = 1011 &cmd.update_cursor_info.update_cursor_info_data; 1012 1013 if (!dc_dmub_should_update_cursor_data(pCtx)) 1014 return; 1015 /* 1016 * Since we use multi_cmd_pending for dmub command, the 2nd command is 1017 * only assigned to store cursor attributes info. 1018 * 1st command can view as 2 parts, 1st is for PSR/Replay data, the other 1019 * is to store cursor position info. 1020 * 1021 * Command heaer type must be the same type if using multi_cmd_pending. 1022 * Besides, while process 2nd command in DMU, the sub type is useless. 1023 * So it's meanless to pass the sub type header with different type. 1024 */ 1025 1026 { 1027 /* Build Payload#0 Header */ 1028 cmd.update_cursor_info.header.type = DMUB_CMD__UPDATE_CURSOR_INFO; 1029 cmd.update_cursor_info.header.payload_bytes = 1030 sizeof(cmd.update_cursor_info.update_cursor_info_data); 1031 cmd.update_cursor_info.header.multi_cmd_pending = 1; /* To combine multi dmu cmd, 1st cmd */ 1032 1033 /* Prepare Payload */ 1034 dc_build_cursor_update_payload0(pCtx, pipe_idx, &update_cursor_info->payload0); 1035 1036 dc_build_cursor_position_update_payload0(&update_cursor_info->payload0, pipe_idx, 1037 pCtx->plane_res.hubp, pCtx->plane_res.dpp); 1038 /* Send update_curosr_info to queue */ 1039 dc_dmub_srv_cmd_queue(pCtx->stream->ctx->dmub_srv, &cmd); 1040 } 1041 { 1042 /* Build Payload#1 Header */ 1043 memset(update_cursor_info, 0, sizeof(union dmub_cmd_update_cursor_info_data)); 1044 cmd.update_cursor_info.header.type = DMUB_CMD__UPDATE_CURSOR_INFO; 1045 cmd.update_cursor_info.header.payload_bytes = sizeof(struct cursor_attributes_cfg); 1046 cmd.update_cursor_info.header.multi_cmd_pending = 0; /* Indicate it's the last command. */ 1047 1048 dc_build_cursor_attribute_update_payload1( 1049 &cmd.update_cursor_info.update_cursor_info_data.payload1.attribute_cfg, 1050 pipe_idx, pCtx->plane_res.hubp, pCtx->plane_res.dpp); 1051 1052 /* Combine 2nd cmds update_curosr_info to DMU */ 1053 dc_send_cmd_to_dmu(pCtx->stream->ctx->dmub_srv, &cmd); 1054 } 1055 } 1056