1 /* 2 * Copyright © 2014 Intel Corporation 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 (including the next 12 * paragraph) shall be included in all copies or substantial portions of the 13 * 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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21 * IN THE SOFTWARE. 22 * 23 */ 24 25 #include <linux/debugfs.h> 26 #include <linux/firmware.h> 27 #include <drm/drm_vblank.h> 28 29 #include <drm/drm_file.h> 30 #include <drm/drm_print.h> 31 32 #include "intel_crtc.h" 33 #include "intel_de.h" 34 #include "intel_display_power_well.h" 35 #include "intel_display_regs.h" 36 #include "intel_display_rpm.h" 37 #include "intel_display_types.h" 38 #include "intel_display_utils.h" 39 #include "intel_dmc.h" 40 #include "intel_dmc_regs.h" 41 #include "intel_flipq.h" 42 43 /** 44 * DOC: DMC Firmware Support 45 * 46 * From gen9 onwards we have newly added DMC (Display microcontroller) in display 47 * engine to save and restore the state of display engine when it enter into 48 * low-power state and comes back to normal. 49 */ 50 51 #define INTEL_DMC_FIRMWARE_URL "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git" 52 53 enum intel_dmc_id { 54 DMC_FW_MAIN = 0, 55 DMC_FW_PIPEA, 56 DMC_FW_PIPEB, 57 DMC_FW_PIPEC, 58 DMC_FW_PIPED, 59 DMC_FW_MAX 60 }; 61 62 struct intel_dmc { 63 struct intel_display *display; 64 struct work_struct work; 65 const char *fw_path; 66 u32 max_fw_size; /* bytes */ 67 u32 version; 68 struct { 69 u32 dc5_start; 70 u32 count; 71 } dc6_allowed; 72 struct dmc_fw_info { 73 u32 mmio_count; 74 intel_reg_t mmioaddr[20]; 75 u32 mmiodata[20]; 76 u32 dmc_offset; 77 u32 start_mmioaddr; 78 u32 dmc_fw_size; /*dwords */ 79 u32 *payload; 80 bool present; 81 } dmc_info[DMC_FW_MAX]; 82 }; 83 84 /* Note: This may be NULL. */ 85 static struct intel_dmc *display_to_dmc(struct intel_display *display) 86 { 87 return display->dmc.dmc; 88 } 89 90 static const char *dmc_firmware_param(struct intel_display *display) 91 { 92 const char *p = display->params.dmc_firmware_path; 93 94 return p && *p ? p : NULL; 95 } 96 97 static bool dmc_firmware_param_disabled(struct intel_display *display) 98 { 99 const char *p = dmc_firmware_param(display); 100 101 /* Magic path to indicate disabled */ 102 return p && !strcmp(p, "/dev/null"); 103 } 104 105 #define DMC_VERSION(major, minor) ((major) << 16 | (minor)) 106 #define DMC_VERSION_MAJOR(version) ((version) >> 16) 107 #define DMC_VERSION_MINOR(version) ((version) & 0xffff) 108 109 #define DMC_PATH(platform) \ 110 "i915/" __stringify(platform) "_dmc.bin" 111 112 /* 113 * New DMC additions should not use this. This is used solely to remain 114 * compatible with systems that have not yet updated DMC blobs to use 115 * unversioned file names. 116 */ 117 #define DMC_LEGACY_PATH(platform, major, minor) \ 118 "i915/" \ 119 __stringify(platform) "_dmc_ver" \ 120 __stringify(major) "_" \ 121 __stringify(minor) ".bin" 122 123 #define XE2LPD_DMC_MAX_FW_SIZE 0x8000 124 #define XELPDP_DMC_MAX_FW_SIZE 0x7000 125 #define DISPLAY_VER13_DMC_MAX_FW_SIZE 0x20000 126 #define DISPLAY_VER12_DMC_MAX_FW_SIZE ICL_DMC_MAX_FW_SIZE 127 128 #define XE3P_LPD_DMC_PATH DMC_PATH(xe3p_lpd) 129 MODULE_FIRMWARE(XE3P_LPD_DMC_PATH); 130 131 #define XE3LPD_3002_DMC_PATH DMC_PATH(xe3lpd_3002) 132 MODULE_FIRMWARE(XE3LPD_3002_DMC_PATH); 133 134 #define XE3LPD_DMC_PATH DMC_PATH(xe3lpd) 135 MODULE_FIRMWARE(XE3LPD_DMC_PATH); 136 137 #define XE2LPD_DMC_PATH DMC_PATH(xe2lpd) 138 MODULE_FIRMWARE(XE2LPD_DMC_PATH); 139 140 #define BMG_DMC_PATH DMC_PATH(bmg) 141 MODULE_FIRMWARE(BMG_DMC_PATH); 142 143 #define MTL_DMC_PATH DMC_PATH(mtl) 144 MODULE_FIRMWARE(MTL_DMC_PATH); 145 146 #define DG2_DMC_PATH DMC_LEGACY_PATH(dg2, 2, 08) 147 MODULE_FIRMWARE(DG2_DMC_PATH); 148 149 #define ADLP_DMC_PATH DMC_PATH(adlp) 150 #define ADLP_DMC_FALLBACK_PATH DMC_LEGACY_PATH(adlp, 2, 16) 151 MODULE_FIRMWARE(ADLP_DMC_PATH); 152 MODULE_FIRMWARE(ADLP_DMC_FALLBACK_PATH); 153 154 #define ADLS_DMC_PATH DMC_LEGACY_PATH(adls, 2, 01) 155 MODULE_FIRMWARE(ADLS_DMC_PATH); 156 157 #define DG1_DMC_PATH DMC_LEGACY_PATH(dg1, 2, 02) 158 MODULE_FIRMWARE(DG1_DMC_PATH); 159 160 #define RKL_DMC_PATH DMC_LEGACY_PATH(rkl, 2, 03) 161 MODULE_FIRMWARE(RKL_DMC_PATH); 162 163 #define TGL_DMC_PATH DMC_LEGACY_PATH(tgl, 2, 12) 164 MODULE_FIRMWARE(TGL_DMC_PATH); 165 166 #define ICL_DMC_PATH DMC_LEGACY_PATH(icl, 1, 09) 167 #define ICL_DMC_MAX_FW_SIZE 0x6000 168 MODULE_FIRMWARE(ICL_DMC_PATH); 169 170 #define GLK_DMC_PATH DMC_LEGACY_PATH(glk, 1, 04) 171 #define GLK_DMC_MAX_FW_SIZE 0x4000 172 MODULE_FIRMWARE(GLK_DMC_PATH); 173 174 #define KBL_DMC_PATH DMC_LEGACY_PATH(kbl, 1, 04) 175 #define KBL_DMC_MAX_FW_SIZE BXT_DMC_MAX_FW_SIZE 176 MODULE_FIRMWARE(KBL_DMC_PATH); 177 178 #define SKL_DMC_PATH DMC_LEGACY_PATH(skl, 1, 27) 179 #define SKL_DMC_MAX_FW_SIZE BXT_DMC_MAX_FW_SIZE 180 MODULE_FIRMWARE(SKL_DMC_PATH); 181 182 #define BXT_DMC_PATH DMC_LEGACY_PATH(bxt, 1, 07) 183 #define BXT_DMC_MAX_FW_SIZE 0x3000 184 MODULE_FIRMWARE(BXT_DMC_PATH); 185 186 static const char *dmc_firmware_default(struct intel_display *display, u32 *size) 187 { 188 const char *fw_path = NULL; 189 u32 max_fw_size = 0; 190 191 if (DISPLAY_VERx100(display) == 3500) { 192 fw_path = XE3P_LPD_DMC_PATH; 193 max_fw_size = XE2LPD_DMC_MAX_FW_SIZE; 194 } else if (DISPLAY_VERx100(display) == 3002) { 195 fw_path = XE3LPD_3002_DMC_PATH; 196 max_fw_size = XE2LPD_DMC_MAX_FW_SIZE; 197 } else if (DISPLAY_VERx100(display) == 3000) { 198 fw_path = XE3LPD_DMC_PATH; 199 max_fw_size = XE2LPD_DMC_MAX_FW_SIZE; 200 } else if (DISPLAY_VERx100(display) == 2000) { 201 fw_path = XE2LPD_DMC_PATH; 202 max_fw_size = XE2LPD_DMC_MAX_FW_SIZE; 203 } else if (DISPLAY_VERx100(display) == 1401) { 204 fw_path = BMG_DMC_PATH; 205 max_fw_size = XELPDP_DMC_MAX_FW_SIZE; 206 } else if (DISPLAY_VERx100(display) == 1400) { 207 fw_path = MTL_DMC_PATH; 208 max_fw_size = XELPDP_DMC_MAX_FW_SIZE; 209 } else if (display->platform.dg2) { 210 fw_path = DG2_DMC_PATH; 211 max_fw_size = DISPLAY_VER13_DMC_MAX_FW_SIZE; 212 } else if (display->platform.alderlake_p) { 213 fw_path = ADLP_DMC_PATH; 214 max_fw_size = DISPLAY_VER13_DMC_MAX_FW_SIZE; 215 } else if (display->platform.alderlake_s) { 216 fw_path = ADLS_DMC_PATH; 217 max_fw_size = DISPLAY_VER12_DMC_MAX_FW_SIZE; 218 } else if (display->platform.dg1) { 219 fw_path = DG1_DMC_PATH; 220 max_fw_size = DISPLAY_VER12_DMC_MAX_FW_SIZE; 221 } else if (display->platform.rocketlake) { 222 fw_path = RKL_DMC_PATH; 223 max_fw_size = DISPLAY_VER12_DMC_MAX_FW_SIZE; 224 } else if (display->platform.tigerlake) { 225 fw_path = TGL_DMC_PATH; 226 max_fw_size = DISPLAY_VER12_DMC_MAX_FW_SIZE; 227 } else if (DISPLAY_VER(display) == 11) { 228 fw_path = ICL_DMC_PATH; 229 max_fw_size = ICL_DMC_MAX_FW_SIZE; 230 } else if (display->platform.geminilake) { 231 fw_path = GLK_DMC_PATH; 232 max_fw_size = GLK_DMC_MAX_FW_SIZE; 233 } else if (display->platform.kabylake || 234 display->platform.coffeelake || 235 display->platform.cometlake) { 236 fw_path = KBL_DMC_PATH; 237 max_fw_size = KBL_DMC_MAX_FW_SIZE; 238 } else if (display->platform.skylake) { 239 fw_path = SKL_DMC_PATH; 240 max_fw_size = SKL_DMC_MAX_FW_SIZE; 241 } else if (display->platform.broxton) { 242 fw_path = BXT_DMC_PATH; 243 max_fw_size = BXT_DMC_MAX_FW_SIZE; 244 } 245 246 *size = max_fw_size; 247 248 return fw_path; 249 } 250 251 #define DMC_DEFAULT_FW_OFFSET 0xFFFFFFFF 252 #define PACKAGE_MAX_FW_INFO_ENTRIES 20 253 #define PACKAGE_V2_MAX_FW_INFO_ENTRIES 32 254 #define DMC_V1_MAX_MMIO_COUNT 8 255 #define DMC_V3_MAX_MMIO_COUNT 20 256 #define DMC_V1_MMIO_START_RANGE 0x80000 257 258 #define PIPE_TO_DMC_ID(pipe) (DMC_FW_PIPEA + ((pipe) - PIPE_A)) 259 260 struct intel_css_header { 261 /* 0x09 for DMC */ 262 u32 module_type; 263 264 /* Includes the DMC specific header in dwords */ 265 u32 header_len; 266 267 /* always value would be 0x10000 */ 268 u32 header_ver; 269 270 /* Not used */ 271 u32 module_id; 272 273 /* Not used */ 274 u32 module_vendor; 275 276 /* in YYYYMMDD format */ 277 u32 date; 278 279 /* Size in dwords (CSS_Headerlen + PackageHeaderLen + dmc FWsLen)/4 */ 280 u32 size; 281 282 /* Not used */ 283 u32 key_size; 284 285 /* Not used */ 286 u32 modulus_size; 287 288 /* Not used */ 289 u32 exponent_size; 290 291 /* Not used */ 292 u32 reserved1[12]; 293 294 /* Major Minor */ 295 u32 version; 296 297 /* Not used */ 298 u32 reserved2[8]; 299 300 /* Not used */ 301 u32 kernel_header_info; 302 } __packed; 303 304 struct intel_fw_info { 305 u8 reserved1; 306 307 /* reserved on package_header version 1, must be 0 on version 2 */ 308 u8 dmc_id; 309 310 /* Stepping (A, B, C, ..., *). * is a wildcard */ 311 char stepping; 312 313 /* Sub-stepping (0, 1, ..., *). * is a wildcard */ 314 char substepping; 315 316 u32 offset; 317 u32 reserved2; 318 } __packed; 319 320 struct intel_package_header { 321 /* DMC container header length in dwords */ 322 u8 header_len; 323 324 /* 0x01, 0x02 */ 325 u8 header_ver; 326 327 u8 reserved[10]; 328 329 /* Number of valid entries in the FWInfo array below */ 330 u32 num_entries; 331 } __packed; 332 333 struct intel_dmc_header_base { 334 /* always value would be 0x40403E3E */ 335 u32 signature; 336 337 /* DMC binary header length */ 338 u8 header_len; 339 340 /* 0x01 */ 341 u8 header_ver; 342 343 /* Reserved */ 344 u16 dmcc_ver; 345 346 /* Major, Minor */ 347 u32 project; 348 349 /* Firmware program size (excluding header) in dwords */ 350 u32 fw_size; 351 352 /* Major Minor version */ 353 u32 fw_version; 354 } __packed; 355 356 struct intel_dmc_header_v1 { 357 struct intel_dmc_header_base base; 358 359 /* Number of valid MMIO cycles present. */ 360 u32 mmio_count; 361 362 /* MMIO address */ 363 u32 mmioaddr[DMC_V1_MAX_MMIO_COUNT]; 364 365 /* MMIO data */ 366 u32 mmiodata[DMC_V1_MAX_MMIO_COUNT]; 367 368 /* FW filename */ 369 char dfile[32]; 370 371 u32 reserved1[2]; 372 } __packed; 373 374 struct intel_dmc_header_v3 { 375 struct intel_dmc_header_base base; 376 377 /* DMC RAM start MMIO address */ 378 u32 start_mmioaddr; 379 380 u32 reserved[9]; 381 382 /* FW filename */ 383 char dfile[32]; 384 385 /* Number of valid MMIO cycles present. */ 386 u32 mmio_count; 387 388 /* MMIO address */ 389 u32 mmioaddr[DMC_V3_MAX_MMIO_COUNT]; 390 391 /* MMIO data */ 392 u32 mmiodata[DMC_V3_MAX_MMIO_COUNT]; 393 } __packed; 394 395 struct stepping_info { 396 char stepping; 397 char substepping; 398 }; 399 400 #define for_each_dmc_id(__dmc_id) \ 401 for ((__dmc_id) = DMC_FW_MAIN; (__dmc_id) < DMC_FW_MAX; (__dmc_id)++) 402 403 static bool is_valid_dmc_id(enum intel_dmc_id dmc_id) 404 { 405 return dmc_id >= DMC_FW_MAIN && dmc_id < DMC_FW_MAX; 406 } 407 408 static bool has_dmc_id_fw(struct intel_display *display, enum intel_dmc_id dmc_id) 409 { 410 struct intel_dmc *dmc = display_to_dmc(display); 411 412 return dmc && dmc->dmc_info[dmc_id].payload; 413 } 414 415 bool intel_dmc_has_payload(struct intel_display *display) 416 { 417 return has_dmc_id_fw(display, DMC_FW_MAIN); 418 } 419 420 static void initialize_stepping_info(struct intel_display *display, struct stepping_info *si) 421 { 422 const char *step_name = DISPLAY_RUNTIME_INFO(display)->step_name; 423 424 si->stepping = step_name[0] ?: '*'; 425 si->substepping = step_name[1] ?: '*'; 426 } 427 428 static void gen9_set_dc_state_debugmask(struct intel_display *display) 429 { 430 /* The below bit doesn't need to be cleared ever afterwards */ 431 intel_de_rmw(display, DC_STATE_DEBUG, 0, 432 DC_STATE_DEBUG_MASK_CORES | DC_STATE_DEBUG_MASK_MEMORY_UP); 433 intel_de_posting_read(display, DC_STATE_DEBUG); 434 } 435 436 static void disable_event_handler(struct intel_display *display, 437 intel_reg_t ctl_reg, intel_reg_t htp_reg) 438 { 439 intel_de_write(display, ctl_reg, 440 REG_FIELD_PREP(DMC_EVT_CTL_TYPE_MASK, 441 DMC_EVT_CTL_TYPE_EDGE_0_1) | 442 REG_FIELD_PREP(DMC_EVT_CTL_EVENT_ID_MASK, 443 DMC_EVENT_FALSE)); 444 intel_de_write(display, htp_reg, 0); 445 } 446 447 static void disable_all_event_handlers(struct intel_display *display, 448 enum intel_dmc_id dmc_id) 449 { 450 int handler; 451 452 /* TODO: disable the event handlers on pre-GEN12 platforms as well */ 453 if (DISPLAY_VER(display) < 12) 454 return; 455 456 if (!has_dmc_id_fw(display, dmc_id)) 457 return; 458 459 for (handler = 0; handler < DMC_EVENT_HANDLER_COUNT_GEN12; handler++) 460 disable_event_handler(display, 461 DMC_EVT_CTL(display, dmc_id, handler), 462 DMC_EVT_HTP(display, dmc_id, handler)); 463 } 464 465 static void adlp_pipedmc_clock_gating_wa(struct intel_display *display, bool enable) 466 { 467 enum pipe pipe; 468 469 /* 470 * Wa_16015201720:adl-p,dg2 471 * The WA requires clock gating to be disabled all the time 472 * for pipe A and B. 473 * For pipe C and D clock gating needs to be disabled only 474 * during initializing the firmware. 475 */ 476 if (enable) 477 for (pipe = PIPE_A; pipe <= PIPE_D; pipe++) 478 intel_de_rmw(display, CLKGATE_DIS_PSL_EXT(pipe), 479 0, PIPEDMC_GATING_DIS); 480 else 481 for (pipe = PIPE_C; pipe <= PIPE_D; pipe++) 482 intel_de_rmw(display, CLKGATE_DIS_PSL_EXT(pipe), 483 PIPEDMC_GATING_DIS, 0); 484 } 485 486 static void mtl_pipedmc_clock_gating_wa(struct intel_display *display) 487 { 488 /* 489 * Wa_16015201720 490 * The WA requires clock gating to be disabled all the time 491 * for pipe A and B. 492 */ 493 intel_de_rmw(display, GEN9_CLKGATE_DIS_0, 0, 494 MTL_PIPEDMC_GATING_DIS(PIPE_A) | 495 MTL_PIPEDMC_GATING_DIS(PIPE_B)); 496 } 497 498 static void pipedmc_clock_gating_wa(struct intel_display *display, bool enable) 499 { 500 if (display->platform.meteorlake && enable) 501 mtl_pipedmc_clock_gating_wa(display); 502 else if (DISPLAY_VER(display) == 13) 503 adlp_pipedmc_clock_gating_wa(display, enable); 504 } 505 506 static u32 pipedmc_interrupt_mask(struct intel_display *display) 507 { 508 /* 509 * TODO: Check if PIPEDMC_ERROR bit enabling causes errors 510 * on PTL, enable it if validation passes 511 */ 512 if (DISPLAY_VER(display) >= 35) 513 return PIPEDMC_FLIPQ_PROG_DONE | 514 PIPEDMC_ERROR; 515 516 /* 517 * FIXME PIPEDMC_ERROR not enabled for now due to LNL pipe B 518 * triggering it during the first DC state transition. Figure 519 * out what is going on... 520 */ 521 return PIPEDMC_FLIPQ_PROG_DONE | 522 PIPEDMC_GTT_FAULT | 523 PIPEDMC_ATS_FAULT; 524 } 525 526 static u32 dmc_evt_ctl_disable(u32 dmc_evt_ctl) 527 { 528 /* 529 * DMC_EVT_CTL_ENABLE cannot be cleared once set. Always 530 * configure it based on the original event definition to 531 * avoid mismatches in assert_dmc_loaded(). 532 */ 533 return (dmc_evt_ctl & DMC_EVT_CTL_ENABLE) | 534 REG_FIELD_PREP(DMC_EVT_CTL_TYPE_MASK, 535 DMC_EVT_CTL_TYPE_EDGE_0_1) | 536 REG_FIELD_PREP(DMC_EVT_CTL_EVENT_ID_MASK, 537 DMC_EVENT_FALSE); 538 } 539 540 static bool is_dmc_evt_ctl_reg(struct intel_display *display, 541 enum intel_dmc_id dmc_id, intel_reg_t reg) 542 { 543 u32 offset = intel_reg_offset(reg); 544 u32 start = intel_reg_offset(DMC_EVT_CTL(display, dmc_id, 0)); 545 u32 end = intel_reg_offset(DMC_EVT_CTL(display, dmc_id, DMC_EVENT_HANDLER_COUNT_GEN12)); 546 547 return offset >= start && offset < end; 548 } 549 550 static bool is_dmc_evt_htp_reg(struct intel_display *display, 551 enum intel_dmc_id dmc_id, intel_reg_t reg) 552 { 553 u32 offset = intel_reg_offset(reg); 554 u32 start = intel_reg_offset(DMC_EVT_HTP(display, dmc_id, 0)); 555 u32 end = intel_reg_offset(DMC_EVT_HTP(display, dmc_id, DMC_EVENT_HANDLER_COUNT_GEN12)); 556 557 return offset >= start && offset < end; 558 } 559 560 static bool is_event_handler(struct intel_display *display, 561 enum intel_dmc_id dmc_id, 562 unsigned int event_id, 563 intel_reg_t reg, u32 data) 564 { 565 return is_dmc_evt_ctl_reg(display, dmc_id, reg) && 566 REG_FIELD_GET(DMC_EVT_CTL_EVENT_ID_MASK, data) == event_id; 567 } 568 569 static bool fixup_dmc_evt(struct intel_display *display, 570 enum intel_dmc_id dmc_id, 571 intel_reg_t reg_ctl, u32 *data_ctl, 572 intel_reg_t reg_htp, u32 *data_htp) 573 { 574 if (!is_dmc_evt_ctl_reg(display, dmc_id, reg_ctl)) 575 return false; 576 577 if (!is_dmc_evt_htp_reg(display, dmc_id, reg_htp)) 578 return false; 579 580 /* make sure reg_ctl and reg_htp are for the same event */ 581 if (intel_reg_offset(reg_ctl) - intel_reg_offset(DMC_EVT_CTL(display, dmc_id, 0)) != 582 intel_reg_offset(reg_htp) - intel_reg_offset(DMC_EVT_HTP(display, dmc_id, 0))) 583 return false; 584 585 /* 586 * On ADL-S the HRR event handler is not restored after DC6. 587 * Clear it to zero from the beginning to avoid mismatches later. 588 */ 589 if (display->platform.alderlake_s && dmc_id == DMC_FW_MAIN && 590 is_event_handler(display, dmc_id, MAINDMC_EVENT_VBLANK_A, reg_ctl, *data_ctl)) { 591 *data_ctl = 0; 592 *data_htp = 0; 593 return true; 594 } 595 596 /* 597 * TGL/ADL-S DMC firmware incorrectly uses the undelayed vblank 598 * event for the HRR handler, when it should be using the delayed 599 * vblank event instead. Fixed firmware was never released 600 * so the Windows driver just hacks around it by overriding 601 * the event ID. Do the same. 602 */ 603 if ((display->platform.tigerlake || display->platform.alderlake_s) && 604 is_event_handler(display, dmc_id, MAINDMC_EVENT_VBLANK_A, reg_ctl, *data_ctl)) { 605 *data_ctl &= ~DMC_EVT_CTL_EVENT_ID_MASK; 606 *data_ctl |= REG_FIELD_PREP(DMC_EVT_CTL_EVENT_ID_MASK, 607 MAINDMC_EVENT_VBLANK_DELAYED_A); 608 return true; 609 } 610 611 return false; 612 } 613 614 static bool disable_dmc_evt(struct intel_display *display, 615 enum intel_dmc_id dmc_id, 616 intel_reg_t reg, u32 data) 617 { 618 if (!is_dmc_evt_ctl_reg(display, dmc_id, reg)) 619 return false; 620 621 /* keep all pipe DMC events disabled by default */ 622 if (dmc_id != DMC_FW_MAIN) 623 return true; 624 625 /* also disable the flip queue event on the main DMC on TGL */ 626 if (display->platform.tigerlake && 627 is_event_handler(display, dmc_id, MAINDMC_EVENT_CLK_MSEC, reg, data)) 628 return true; 629 630 /* also disable the HRR event on the main DMC on TGL/ADLS */ 631 if ((display->platform.tigerlake || display->platform.alderlake_s) && 632 is_event_handler(display, dmc_id, MAINDMC_EVENT_VBLANK_DELAYED_A, reg, data)) 633 return true; 634 635 return false; 636 } 637 638 static u32 dmc_mmiodata(struct intel_display *display, 639 struct intel_dmc *dmc, 640 enum intel_dmc_id dmc_id, int i) 641 { 642 if (disable_dmc_evt(display, dmc_id, 643 dmc->dmc_info[dmc_id].mmioaddr[i], 644 dmc->dmc_info[dmc_id].mmiodata[i])) 645 return dmc_evt_ctl_disable(dmc->dmc_info[dmc_id].mmiodata[i]); 646 else 647 return dmc->dmc_info[dmc_id].mmiodata[i]; 648 } 649 650 static void dmc_load_mmio(struct intel_display *display, enum intel_dmc_id dmc_id) 651 { 652 struct intel_dmc *dmc = display_to_dmc(display); 653 int i; 654 655 for (i = 0; i < dmc->dmc_info[dmc_id].mmio_count; i++) { 656 intel_de_write(display, dmc->dmc_info[dmc_id].mmioaddr[i], 657 dmc_mmiodata(display, dmc, dmc_id, i)); 658 } 659 } 660 661 static void dmc_load_program(struct intel_display *display, enum intel_dmc_id dmc_id) 662 { 663 struct intel_dmc *dmc = display_to_dmc(display); 664 int i; 665 666 disable_all_event_handlers(display, dmc_id); 667 668 preempt_disable(); 669 670 for (i = 0; i < dmc->dmc_info[dmc_id].dmc_fw_size; i++) { 671 intel_de_write_fw(display, 672 DMC_PROGRAM(dmc->dmc_info[dmc_id].start_mmioaddr, i), 673 dmc->dmc_info[dmc_id].payload[i]); 674 } 675 676 preempt_enable(); 677 678 dmc_load_mmio(display, dmc_id); 679 } 680 681 static void assert_dmc_loaded(struct intel_display *display, 682 enum intel_dmc_id dmc_id) 683 { 684 struct intel_dmc *dmc = display_to_dmc(display); 685 u32 expected, found; 686 int i; 687 688 if (!is_valid_dmc_id(dmc_id) || !has_dmc_id_fw(display, dmc_id)) 689 return; 690 691 found = intel_de_read(display, DMC_PROGRAM(dmc->dmc_info[dmc_id].start_mmioaddr, 0)); 692 expected = dmc->dmc_info[dmc_id].payload[0]; 693 694 drm_WARN(display->drm, found != expected, 695 "DMC %d program storage start incorrect (expected 0x%x, current 0x%x)\n", 696 dmc_id, expected, found); 697 698 for (i = 0; i < dmc->dmc_info[dmc_id].mmio_count; i++) { 699 intel_reg_t reg = dmc->dmc_info[dmc_id].mmioaddr[i]; 700 701 found = intel_de_read(display, reg); 702 expected = dmc_mmiodata(display, dmc, dmc_id, i); 703 704 drm_WARN(display->drm, found != expected, 705 "DMC %d mmio[%d]/0x%x incorrect (expected 0x%x, current 0x%x)\n", 706 dmc_id, i, intel_reg_offset(reg), expected, found); 707 } 708 } 709 710 void assert_main_dmc_loaded(struct intel_display *display) 711 { 712 assert_dmc_loaded(display, DMC_FW_MAIN); 713 } 714 715 static bool need_pipedmc_load_program(struct intel_display *display) 716 { 717 /* On TGL/derivatives pipe DMC state is lost when PG1 is disabled */ 718 return DISPLAY_VER(display) == 12; 719 } 720 721 static bool need_pipedmc_load_mmio(struct intel_display *display, enum pipe pipe) 722 { 723 /* 724 * Xe3_LPD/Xe3p_LPD: 725 * - pipe A/B DMC doesn't need save/restore 726 * - pipe C/D DMC is in PG0, needs manual save/restore 727 */ 728 if (IS_DISPLAY_VER(display, 30, 35)) 729 return pipe >= PIPE_C; 730 731 /* 732 * FIXME LNL unclear, main DMC firmware has the pipe DMC A/B PG0 733 * save/restore, but so far unable to see the loss of pipe DMC state 734 * in action. Are we just failing to turn off PG0 due to some other 735 * SoC level stuff? 736 */ 737 if (DISPLAY_VER(display) == 20) 738 return false; 739 740 /* 741 * FIXME BMG untested, main DMC firmware has the 742 * pipe DMC A/B PG0 save/restore... 743 */ 744 if (display->platform.battlemage) 745 return false; 746 747 /* 748 * DG2: 749 * - Pipe DMCs presumably in PG0? 750 * - No DC6, and even DC9 doesn't seem to result 751 * in loss of DMC state for whatever reason 752 */ 753 if (display->platform.dg2) 754 return false; 755 756 /* 757 * ADL/MTL: 758 * - pipe A/B DMC is in PG0, saved/restored by the main DMC 759 * - pipe C/D DMC is in PG0, needs manual save/restore 760 */ 761 if (IS_DISPLAY_VER(display, 13, 14)) 762 return pipe >= PIPE_C; 763 764 return false; 765 } 766 767 static bool can_enable_pipedmc(const struct intel_crtc_state *crtc_state) 768 { 769 struct intel_display *display = to_intel_display(crtc_state); 770 771 /* 772 * On TGL/derivatives pipe DMC state is lost when PG1 is disabled. 773 * Do not even enable the pipe DMC when that can happen outside 774 * of driver control (PSR+DC5/6). 775 */ 776 if (DISPLAY_VER(display) == 12 && crtc_state->has_psr) 777 return false; 778 779 return true; 780 } 781 782 void intel_dmc_enable_pipe(const struct intel_crtc_state *crtc_state) 783 { 784 struct intel_display *display = to_intel_display(crtc_state); 785 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); 786 enum pipe pipe = crtc->pipe; 787 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(pipe); 788 789 if (!is_valid_dmc_id(dmc_id) || !has_dmc_id_fw(display, dmc_id)) 790 return; 791 792 if (!can_enable_pipedmc(crtc_state)) { 793 intel_dmc_disable_pipe(crtc_state); 794 return; 795 } 796 797 if (need_pipedmc_load_program(display)) 798 dmc_load_program(display, dmc_id); 799 else if (need_pipedmc_load_mmio(display, pipe)) 800 dmc_load_mmio(display, dmc_id); 801 802 assert_dmc_loaded(display, dmc_id); 803 804 if (DISPLAY_VER(display) >= 20) { 805 intel_flipq_reset(display, pipe); 806 807 intel_de_write(display, PIPEDMC_INTERRUPT(pipe), pipedmc_interrupt_mask(display)); 808 intel_de_write(display, PIPEDMC_INTERRUPT_MASK(pipe), ~pipedmc_interrupt_mask(display)); 809 } 810 811 if (DISPLAY_VER(display) >= 14) 812 intel_de_rmw(display, MTL_PIPEDMC_CONTROL, 0, PIPEDMC_ENABLE_MTL(pipe)); 813 else 814 intel_de_rmw(display, PIPEDMC_CONTROL(pipe), 0, PIPEDMC_ENABLE); 815 } 816 817 void intel_dmc_disable_pipe(const struct intel_crtc_state *crtc_state) 818 { 819 struct intel_display *display = to_intel_display(crtc_state); 820 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); 821 enum pipe pipe = crtc->pipe; 822 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(pipe); 823 824 if (!is_valid_dmc_id(dmc_id) || !has_dmc_id_fw(display, dmc_id)) 825 return; 826 827 if (DISPLAY_VER(display) >= 14) 828 intel_de_rmw(display, MTL_PIPEDMC_CONTROL, PIPEDMC_ENABLE_MTL(pipe), 0); 829 else 830 intel_de_rmw(display, PIPEDMC_CONTROL(pipe), PIPEDMC_ENABLE, 0); 831 832 if (DISPLAY_VER(display) >= 20) { 833 intel_de_write(display, PIPEDMC_INTERRUPT_MASK(pipe), ~0); 834 intel_de_write(display, PIPEDMC_INTERRUPT(pipe), pipedmc_interrupt_mask(display)); 835 836 intel_flipq_reset(display, pipe); 837 } 838 } 839 840 static void dmc_configure_event(struct intel_display *display, 841 enum intel_dmc_id dmc_id, 842 unsigned int event_id, 843 bool enable) 844 { 845 struct intel_dmc *dmc = display_to_dmc(display); 846 int num_handlers = 0; 847 int i; 848 849 for (i = 0; i < dmc->dmc_info[dmc_id].mmio_count; i++) { 850 intel_reg_t reg = dmc->dmc_info[dmc_id].mmioaddr[i]; 851 u32 data = dmc->dmc_info[dmc_id].mmiodata[i]; 852 853 if (!is_event_handler(display, dmc_id, event_id, reg, data)) 854 continue; 855 856 intel_de_write(display, reg, enable ? data : dmc_evt_ctl_disable(data)); 857 num_handlers++; 858 } 859 860 drm_WARN_ONCE(display->drm, num_handlers != 1, 861 "DMC %d has %d handlers for event 0x%x\n", 862 dmc_id, num_handlers, event_id); 863 } 864 865 void intel_dmc_configure_dc_balance_event(struct intel_display *display, 866 enum pipe pipe, bool enable) 867 { 868 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(pipe); 869 870 dmc_configure_event(display, dmc_id, PIPEDMC_EVENT_ADAPTIVE_DCB_TRIGGER, enable); 871 } 872 873 /** 874 * intel_dmc_block_pkgc() - block PKG C-state 875 * @display: display instance 876 * @pipe: pipe which register use to block 877 * @block: block/unblock 878 * 879 * This interface is target for Wa_16025596647 usage. I.e. to set/clear 880 * PIPEDMC_BLOCK_PKGC_SW_BLOCK_PKGC_ALWAYS bit in PIPEDMC_BLOCK_PKGC_SW register. 881 */ 882 void intel_dmc_block_pkgc(struct intel_display *display, enum pipe pipe, 883 bool block) 884 { 885 intel_de_rmw(display, PIPEDMC_BLOCK_PKGC_SW(pipe), 886 PIPEDMC_BLOCK_PKGC_SW_BLOCK_PKGC_ALWAYS, block ? 887 PIPEDMC_BLOCK_PKGC_SW_BLOCK_PKGC_ALWAYS : 0); 888 } 889 890 /** 891 * intel_dmc_start_pkgc_exit_at_start_of_undelayed_vblank() - start of PKG 892 * C-state exit 893 * @display: display instance 894 * @pipe: pipe which register use to block 895 * @enable: enable/disable 896 * 897 * This interface is target for Wa_16025596647 usage. I.e. start the package C 898 * exit at the start of the undelayed vblank 899 */ 900 void intel_dmc_start_pkgc_exit_at_start_of_undelayed_vblank(struct intel_display *display, 901 enum pipe pipe, bool enable) 902 { 903 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(pipe); 904 905 dmc_configure_event(display, dmc_id, PIPEDMC_EVENT_VBLANK, enable); 906 } 907 908 /** 909 * intel_dmc_load_program() - write the firmware from memory to register. 910 * @display: display instance 911 * 912 * DMC firmware is read from a .bin file and kept in internal memory one time. 913 * Everytime display comes back from low power state this function is called to 914 * copy the firmware from internal memory to registers. 915 */ 916 void intel_dmc_load_program(struct intel_display *display) 917 { 918 struct i915_power_domains *power_domains = &display->power.domains; 919 enum intel_dmc_id dmc_id; 920 921 if (!intel_dmc_has_payload(display)) 922 return; 923 924 assert_display_rpm_held(display); 925 926 pipedmc_clock_gating_wa(display, true); 927 928 for_each_dmc_id(dmc_id) { 929 dmc_load_program(display, dmc_id); 930 assert_dmc_loaded(display, dmc_id); 931 } 932 933 if (DISPLAY_VER(display) >= 20) 934 intel_de_write(display, DMC_FQ_W2_PTS_CFG_SEL, 935 PIPE_D_DMC_W2_PTS_CONFIG_SELECT(PIPE_D) | 936 PIPE_C_DMC_W2_PTS_CONFIG_SELECT(PIPE_C) | 937 PIPE_B_DMC_W2_PTS_CONFIG_SELECT(PIPE_B) | 938 PIPE_A_DMC_W2_PTS_CONFIG_SELECT(PIPE_A)); 939 940 power_domains->dc_state = 0; 941 942 gen9_set_dc_state_debugmask(display); 943 944 xe3lpd_enable_dc_count(display); 945 946 pipedmc_clock_gating_wa(display, false); 947 } 948 949 /** 950 * intel_dmc_disable_program() - disable the firmware 951 * @display: display instance 952 * 953 * Disable all event handlers in the firmware, making sure the firmware is 954 * inactive after the display is uninitialized. 955 */ 956 void intel_dmc_disable_program(struct intel_display *display) 957 { 958 enum intel_dmc_id dmc_id; 959 960 if (!intel_dmc_has_payload(display)) 961 return; 962 963 pipedmc_clock_gating_wa(display, true); 964 965 for_each_dmc_id(dmc_id) 966 disable_all_event_handlers(display, dmc_id); 967 968 pipedmc_clock_gating_wa(display, false); 969 } 970 971 static bool fw_info_matches_stepping(const struct intel_fw_info *fw_info, 972 const struct stepping_info *si) 973 { 974 if ((fw_info->substepping == '*' && si->stepping == fw_info->stepping) || 975 (si->stepping == fw_info->stepping && si->substepping == fw_info->substepping) || 976 /* 977 * If we don't find a more specific one from above two checks, we 978 * then check for the generic one to be sure to work even with 979 * "broken firmware" 980 */ 981 (si->stepping == '*' && si->substepping == fw_info->substepping) || 982 (fw_info->stepping == '*' && fw_info->substepping == '*')) 983 return true; 984 985 return false; 986 } 987 988 /* 989 * Search fw_info table for dmc_offset to find firmware binary: num_entries is 990 * already sanitized. 991 */ 992 static void dmc_set_fw_offset(struct intel_dmc *dmc, 993 const struct intel_fw_info *fw_info, 994 unsigned int num_entries, 995 const struct stepping_info *si, 996 u8 package_ver) 997 { 998 struct intel_display *display = dmc->display; 999 enum intel_dmc_id dmc_id; 1000 unsigned int i; 1001 1002 for (i = 0; i < num_entries; i++) { 1003 dmc_id = package_ver <= 1 ? DMC_FW_MAIN : fw_info[i].dmc_id; 1004 1005 if (!is_valid_dmc_id(dmc_id)) { 1006 drm_dbg(display->drm, "Unsupported firmware id: %u\n", dmc_id); 1007 continue; 1008 } 1009 1010 /* More specific versions come first, so we don't even have to 1011 * check for the stepping since we already found a previous FW 1012 * for this id. 1013 */ 1014 if (dmc->dmc_info[dmc_id].present) 1015 continue; 1016 1017 if (fw_info_matches_stepping(&fw_info[i], si)) { 1018 dmc->dmc_info[dmc_id].present = true; 1019 dmc->dmc_info[dmc_id].dmc_offset = fw_info[i].offset; 1020 } 1021 } 1022 } 1023 1024 static bool dmc_mmio_addr_sanity_check(struct intel_dmc *dmc, 1025 const u32 *mmioaddr, u32 mmio_count, 1026 int header_ver, enum intel_dmc_id dmc_id) 1027 { 1028 struct intel_display *display = dmc->display; 1029 u32 start_range, end_range; 1030 int i; 1031 1032 if (header_ver == 1) { 1033 start_range = DMC_MMIO_START_RANGE; 1034 end_range = DMC_MMIO_END_RANGE; 1035 } else if (dmc_id == DMC_FW_MAIN) { 1036 start_range = TGL_MAIN_MMIO_START; 1037 end_range = TGL_MAIN_MMIO_END; 1038 } else if (DISPLAY_VER(display) >= 13) { 1039 start_range = ADLP_PIPE_MMIO_START; 1040 end_range = ADLP_PIPE_MMIO_END; 1041 } else if (DISPLAY_VER(display) >= 12) { 1042 start_range = TGL_PIPE_MMIO_START(dmc_id); 1043 end_range = TGL_PIPE_MMIO_END(dmc_id); 1044 } else { 1045 drm_warn(display->drm, "Unknown mmio range for sanity check"); 1046 return false; 1047 } 1048 1049 for (i = 0; i < mmio_count; i++) { 1050 if (mmioaddr[i] < start_range || mmioaddr[i] > end_range) 1051 return false; 1052 } 1053 1054 return true; 1055 } 1056 1057 static u32 parse_dmc_fw_header(struct intel_dmc *dmc, 1058 const struct intel_dmc_header_base *dmc_header, 1059 size_t rem_size, enum intel_dmc_id dmc_id) 1060 { 1061 struct intel_display *display = dmc->display; 1062 struct dmc_fw_info *dmc_info = &dmc->dmc_info[dmc_id]; 1063 unsigned int header_len_bytes, dmc_header_size, payload_size, i; 1064 const u32 *mmioaddr, *mmiodata; 1065 u32 mmio_count, mmio_count_max, start_mmioaddr; 1066 u8 *payload; 1067 1068 BUILD_BUG_ON(ARRAY_SIZE(dmc_info->mmioaddr) < DMC_V3_MAX_MMIO_COUNT || 1069 ARRAY_SIZE(dmc_info->mmioaddr) < DMC_V1_MAX_MMIO_COUNT); 1070 1071 /* 1072 * Check if we can access common fields, we will checkc again below 1073 * after we have read the version 1074 */ 1075 if (rem_size < sizeof(struct intel_dmc_header_base)) 1076 goto error_truncated; 1077 1078 /* Cope with small differences between v1 and v3 */ 1079 if (dmc_header->header_ver == 3) { 1080 const struct intel_dmc_header_v3 *v3 = 1081 (const struct intel_dmc_header_v3 *)dmc_header; 1082 1083 if (rem_size < sizeof(struct intel_dmc_header_v3)) 1084 goto error_truncated; 1085 1086 mmioaddr = v3->mmioaddr; 1087 mmiodata = v3->mmiodata; 1088 mmio_count = v3->mmio_count; 1089 mmio_count_max = DMC_V3_MAX_MMIO_COUNT; 1090 /* header_len is in dwords */ 1091 header_len_bytes = dmc_header->header_len * 4; 1092 start_mmioaddr = v3->start_mmioaddr; 1093 dmc_header_size = sizeof(*v3); 1094 } else if (dmc_header->header_ver == 1) { 1095 const struct intel_dmc_header_v1 *v1 = 1096 (const struct intel_dmc_header_v1 *)dmc_header; 1097 1098 if (rem_size < sizeof(struct intel_dmc_header_v1)) 1099 goto error_truncated; 1100 1101 mmioaddr = v1->mmioaddr; 1102 mmiodata = v1->mmiodata; 1103 mmio_count = v1->mmio_count; 1104 mmio_count_max = DMC_V1_MAX_MMIO_COUNT; 1105 header_len_bytes = dmc_header->header_len; 1106 start_mmioaddr = DMC_V1_MMIO_START_RANGE; 1107 dmc_header_size = sizeof(*v1); 1108 } else { 1109 drm_err(display->drm, "Unknown DMC fw header version: %u\n", 1110 dmc_header->header_ver); 1111 return 0; 1112 } 1113 1114 if (header_len_bytes != dmc_header_size) { 1115 drm_err(display->drm, "DMC firmware has wrong dmc header length " 1116 "(%u bytes)\n", header_len_bytes); 1117 return 0; 1118 } 1119 1120 /* Cache the dmc header info. */ 1121 if (mmio_count > mmio_count_max) { 1122 drm_err(display->drm, "DMC firmware has wrong mmio count %u\n", mmio_count); 1123 return 0; 1124 } 1125 1126 if (!dmc_mmio_addr_sanity_check(dmc, mmioaddr, mmio_count, 1127 dmc_header->header_ver, dmc_id)) { 1128 drm_err(display->drm, "DMC firmware has Wrong MMIO Addresses\n"); 1129 return 0; 1130 } 1131 1132 drm_dbg_kms(display->drm, "DMC %d:\n", dmc_id); 1133 for (i = 0; i < mmio_count; i++) { 1134 dmc_info->mmioaddr[i] = _MMIO(mmioaddr[i]); 1135 dmc_info->mmiodata[i] = mmiodata[i]; 1136 } 1137 1138 for (i = 0; i < mmio_count - 1; i++) { 1139 u32 orig_mmiodata[2] = { 1140 dmc_info->mmiodata[i], 1141 dmc_info->mmiodata[i+1], 1142 }; 1143 1144 if (!fixup_dmc_evt(display, dmc_id, 1145 dmc_info->mmioaddr[i], &dmc_info->mmiodata[i], 1146 dmc_info->mmioaddr[i+1], &dmc_info->mmiodata[i+1])) 1147 continue; 1148 1149 drm_dbg_kms(display->drm, 1150 " mmio[%d]: 0x%x = 0x%x->0x%x (EVT_CTL)\n", 1151 i, intel_reg_offset(dmc_info->mmioaddr[i]), 1152 orig_mmiodata[0], dmc_info->mmiodata[i]); 1153 drm_dbg_kms(display->drm, 1154 " mmio[%d]: 0x%x = 0x%x->0x%x (EVT_HTP)\n", 1155 i+1, intel_reg_offset(dmc_info->mmioaddr[i+1]), 1156 orig_mmiodata[1], dmc_info->mmiodata[i+1]); 1157 } 1158 1159 for (i = 0; i < mmio_count; i++) { 1160 drm_dbg_kms(display->drm, " mmio[%d]: 0x%x = 0x%x%s%s\n", 1161 i, intel_reg_offset(dmc_info->mmioaddr[i]), dmc_info->mmiodata[i], 1162 is_dmc_evt_ctl_reg(display, dmc_id, dmc_info->mmioaddr[i]) ? " (EVT_CTL)" : 1163 is_dmc_evt_htp_reg(display, dmc_id, dmc_info->mmioaddr[i]) ? " (EVT_HTP)" : "", 1164 disable_dmc_evt(display, dmc_id, dmc_info->mmioaddr[i], 1165 dmc_info->mmiodata[i]) ? " (disabling)" : ""); 1166 } 1167 dmc_info->mmio_count = mmio_count; 1168 dmc_info->start_mmioaddr = start_mmioaddr; 1169 1170 rem_size -= header_len_bytes; 1171 1172 /* fw_size is in dwords, so multiplied by 4 to convert into bytes. */ 1173 payload_size = dmc_header->fw_size * 4; 1174 if (rem_size < payload_size) 1175 goto error_truncated; 1176 1177 if (payload_size > dmc->max_fw_size) { 1178 drm_err(display->drm, "DMC FW too big (%u bytes)\n", payload_size); 1179 return 0; 1180 } 1181 dmc_info->dmc_fw_size = dmc_header->fw_size; 1182 1183 dmc_info->payload = kmalloc(payload_size, GFP_KERNEL); 1184 if (!dmc_info->payload) 1185 return 0; 1186 1187 payload = (u8 *)(dmc_header) + header_len_bytes; 1188 memcpy(dmc_info->payload, payload, payload_size); 1189 1190 return header_len_bytes + payload_size; 1191 1192 error_truncated: 1193 drm_err(display->drm, "Truncated DMC firmware, refusing.\n"); 1194 return 0; 1195 } 1196 1197 static u32 1198 parse_dmc_fw_package(struct intel_dmc *dmc, 1199 const struct intel_package_header *package_header, 1200 const struct stepping_info *si, 1201 size_t rem_size) 1202 { 1203 struct intel_display *display = dmc->display; 1204 u32 package_size = sizeof(struct intel_package_header); 1205 u32 num_entries, max_entries; 1206 const struct intel_fw_info *fw_info; 1207 1208 if (rem_size < package_size) 1209 goto error_truncated; 1210 1211 if (package_header->header_ver == 1) { 1212 max_entries = PACKAGE_MAX_FW_INFO_ENTRIES; 1213 } else if (package_header->header_ver == 2) { 1214 max_entries = PACKAGE_V2_MAX_FW_INFO_ENTRIES; 1215 } else { 1216 drm_err(display->drm, "DMC firmware has unknown header version %u\n", 1217 package_header->header_ver); 1218 return 0; 1219 } 1220 1221 /* 1222 * We should always have space for max_entries, 1223 * even if not all are used 1224 */ 1225 package_size += max_entries * sizeof(struct intel_fw_info); 1226 if (rem_size < package_size) 1227 goto error_truncated; 1228 1229 if (package_header->header_len * 4 != package_size) { 1230 drm_err(display->drm, "DMC firmware has wrong package header length " 1231 "(%u bytes)\n", package_size); 1232 return 0; 1233 } 1234 1235 num_entries = package_header->num_entries; 1236 if (WARN_ON(num_entries > max_entries)) 1237 num_entries = max_entries; 1238 1239 fw_info = (const struct intel_fw_info *) 1240 ((u8 *)package_header + sizeof(*package_header)); 1241 dmc_set_fw_offset(dmc, fw_info, num_entries, si, 1242 package_header->header_ver); 1243 1244 /* dmc_offset is in dwords */ 1245 return package_size; 1246 1247 error_truncated: 1248 drm_err(display->drm, "Truncated DMC firmware, refusing.\n"); 1249 return 0; 1250 } 1251 1252 /* Return number of bytes parsed or 0 on error */ 1253 static u32 parse_dmc_fw_css(struct intel_dmc *dmc, 1254 struct intel_css_header *css_header, 1255 size_t rem_size) 1256 { 1257 struct intel_display *display = dmc->display; 1258 1259 if (rem_size < sizeof(struct intel_css_header)) { 1260 drm_err(display->drm, "Truncated DMC firmware, refusing.\n"); 1261 return 0; 1262 } 1263 1264 if (sizeof(struct intel_css_header) != 1265 (css_header->header_len * 4)) { 1266 drm_err(display->drm, "DMC firmware has wrong CSS header length " 1267 "(%u bytes)\n", 1268 (css_header->header_len * 4)); 1269 return 0; 1270 } 1271 1272 dmc->version = css_header->version; 1273 1274 return sizeof(struct intel_css_header); 1275 } 1276 1277 static int parse_dmc_fw(struct intel_dmc *dmc, const struct firmware *fw) 1278 { 1279 struct intel_display *display = dmc->display; 1280 struct intel_css_header *css_header; 1281 struct intel_package_header *package_header; 1282 struct intel_dmc_header_base *dmc_header; 1283 struct stepping_info si = {}; 1284 enum intel_dmc_id dmc_id; 1285 u32 readcount = 0; 1286 u32 r, offset; 1287 1288 if (!fw) 1289 return -EINVAL; 1290 1291 initialize_stepping_info(display, &si); 1292 1293 /* Extract CSS Header information */ 1294 css_header = (struct intel_css_header *)fw->data; 1295 r = parse_dmc_fw_css(dmc, css_header, fw->size); 1296 if (!r) 1297 return -EINVAL; 1298 1299 readcount += r; 1300 1301 /* Extract Package Header information */ 1302 package_header = (struct intel_package_header *)&fw->data[readcount]; 1303 r = parse_dmc_fw_package(dmc, package_header, &si, fw->size - readcount); 1304 if (!r) 1305 return -EINVAL; 1306 1307 readcount += r; 1308 1309 for_each_dmc_id(dmc_id) { 1310 if (!dmc->dmc_info[dmc_id].present) 1311 continue; 1312 1313 offset = readcount + dmc->dmc_info[dmc_id].dmc_offset * 4; 1314 if (offset > fw->size) { 1315 drm_err(display->drm, "Reading beyond the fw_size\n"); 1316 continue; 1317 } 1318 1319 dmc_header = (struct intel_dmc_header_base *)&fw->data[offset]; 1320 parse_dmc_fw_header(dmc, dmc_header, fw->size - offset, dmc_id); 1321 } 1322 1323 if (!intel_dmc_has_payload(display)) { 1324 drm_err(display->drm, "DMC firmware main program not found\n"); 1325 return -ENOENT; 1326 } 1327 1328 return 0; 1329 } 1330 1331 static void intel_dmc_runtime_pm_get(struct intel_display *display) 1332 { 1333 drm_WARN_ON(display->drm, display->dmc.wakeref); 1334 display->dmc.wakeref = intel_display_power_get(display, POWER_DOMAIN_INIT); 1335 } 1336 1337 static void intel_dmc_runtime_pm_put(struct intel_display *display) 1338 { 1339 struct ref_tracker *wakeref __maybe_unused = 1340 fetch_and_zero(&display->dmc.wakeref); 1341 1342 intel_display_power_put(display, POWER_DOMAIN_INIT, wakeref); 1343 } 1344 1345 static const char *dmc_fallback_path(struct intel_display *display) 1346 { 1347 if (display->platform.alderlake_p) 1348 return ADLP_DMC_FALLBACK_PATH; 1349 1350 return NULL; 1351 } 1352 1353 static void dmc_load_work_fn(struct work_struct *work) 1354 { 1355 struct intel_dmc *dmc = container_of(work, typeof(*dmc), work); 1356 struct intel_display *display = dmc->display; 1357 const struct firmware *fw = NULL; 1358 const char *fallback_path; 1359 int err; 1360 1361 err = request_firmware(&fw, dmc->fw_path, display->drm->dev); 1362 1363 if (err == -ENOENT && !dmc_firmware_param(display)) { 1364 fallback_path = dmc_fallback_path(display); 1365 if (fallback_path) { 1366 drm_dbg_kms(display->drm, "%s not found, falling back to %s\n", 1367 dmc->fw_path, fallback_path); 1368 err = request_firmware(&fw, fallback_path, display->drm->dev); 1369 if (err == 0) 1370 dmc->fw_path = fallback_path; 1371 } 1372 } 1373 1374 if (err) { 1375 drm_notice(display->drm, 1376 "Failed to load DMC firmware %s (%pe). Disabling runtime power management.\n", 1377 dmc->fw_path, ERR_PTR(err)); 1378 drm_notice(display->drm, "DMC firmware homepage: %s", 1379 INTEL_DMC_FIRMWARE_URL); 1380 return; 1381 } 1382 1383 err = parse_dmc_fw(dmc, fw); 1384 if (err) { 1385 drm_notice(display->drm, 1386 "Failed to parse DMC firmware %s (%pe). Disabling runtime power management.\n", 1387 dmc->fw_path, ERR_PTR(err)); 1388 goto out; 1389 } 1390 1391 intel_dmc_load_program(display); 1392 intel_dmc_runtime_pm_put(display); 1393 1394 drm_info(display->drm, "Finished loading DMC firmware %s (v%u.%u)\n", 1395 dmc->fw_path, DMC_VERSION_MAJOR(dmc->version), 1396 DMC_VERSION_MINOR(dmc->version)); 1397 1398 out: 1399 release_firmware(fw); 1400 } 1401 1402 /** 1403 * intel_dmc_init() - initialize the firmware loading. 1404 * @display: display instance 1405 * 1406 * This function is called at the time of loading the display driver to read 1407 * firmware from a .bin file and copied into a internal memory. 1408 */ 1409 void intel_dmc_init(struct intel_display *display) 1410 { 1411 struct intel_dmc *dmc; 1412 1413 if (!HAS_DMC(display)) 1414 return; 1415 1416 /* 1417 * Obtain a runtime pm reference, until DMC is loaded, to avoid entering 1418 * runtime-suspend. 1419 * 1420 * On error, we return with the rpm wakeref held to prevent runtime 1421 * suspend as runtime suspend *requires* a working DMC for whatever 1422 * reason. 1423 */ 1424 intel_dmc_runtime_pm_get(display); 1425 1426 dmc = kzalloc_obj(*dmc); 1427 if (!dmc) 1428 return; 1429 1430 dmc->display = display; 1431 1432 INIT_WORK(&dmc->work, dmc_load_work_fn); 1433 1434 dmc->fw_path = dmc_firmware_default(display, &dmc->max_fw_size); 1435 1436 if (dmc_firmware_param_disabled(display)) { 1437 drm_info(display->drm, "Disabling DMC firmware and runtime PM\n"); 1438 goto out; 1439 } 1440 1441 if (dmc_firmware_param(display)) 1442 dmc->fw_path = dmc_firmware_param(display); 1443 1444 if (!dmc->fw_path) { 1445 drm_dbg_kms(display->drm, 1446 "No known DMC firmware for platform, disabling runtime PM\n"); 1447 goto out; 1448 } 1449 1450 display->dmc.dmc = dmc; 1451 1452 drm_dbg_kms(display->drm, "Loading %s\n", dmc->fw_path); 1453 queue_work(display->wq.unordered, &dmc->work); 1454 1455 return; 1456 1457 out: 1458 kfree(dmc); 1459 } 1460 1461 /** 1462 * intel_dmc_suspend() - prepare DMC firmware before system suspend 1463 * @display: display instance 1464 * 1465 * Prepare the DMC firmware before entering system suspend. This includes 1466 * flushing pending work items and releasing any resources acquired during 1467 * init. 1468 */ 1469 void intel_dmc_suspend(struct intel_display *display) 1470 { 1471 struct intel_dmc *dmc = display_to_dmc(display); 1472 1473 if (!HAS_DMC(display)) 1474 return; 1475 1476 if (dmc) 1477 flush_work(&dmc->work); 1478 1479 /* Drop the reference held in case DMC isn't loaded. */ 1480 if (!intel_dmc_has_payload(display)) 1481 intel_dmc_runtime_pm_put(display); 1482 } 1483 1484 void intel_dmc_wait_fw_load(struct intel_display *display) 1485 { 1486 struct intel_dmc *dmc = display_to_dmc(display); 1487 1488 if (!HAS_DMC(display)) 1489 return; 1490 1491 if (dmc) 1492 flush_work(&dmc->work); 1493 } 1494 1495 /** 1496 * intel_dmc_resume() - init DMC firmware during system resume 1497 * @display: display instance 1498 * 1499 * Reinitialize the DMC firmware during system resume, reacquiring any 1500 * resources released in intel_dmc_suspend(). 1501 */ 1502 void intel_dmc_resume(struct intel_display *display) 1503 { 1504 if (!HAS_DMC(display)) 1505 return; 1506 1507 /* 1508 * Reacquire the reference to keep RPM disabled in case DMC isn't 1509 * loaded. 1510 */ 1511 if (!intel_dmc_has_payload(display)) 1512 intel_dmc_runtime_pm_get(display); 1513 } 1514 1515 /** 1516 * intel_dmc_fini() - unload the DMC firmware. 1517 * @display: display instance 1518 * 1519 * Firmmware unloading includes freeing the internal memory and reset the 1520 * firmware loading status. 1521 */ 1522 void intel_dmc_fini(struct intel_display *display) 1523 { 1524 struct intel_dmc *dmc = display_to_dmc(display); 1525 enum intel_dmc_id dmc_id; 1526 1527 if (!HAS_DMC(display)) 1528 return; 1529 1530 intel_dmc_suspend(display); 1531 drm_WARN_ON(display->drm, display->dmc.wakeref); 1532 1533 if (dmc) { 1534 for_each_dmc_id(dmc_id) 1535 kfree(dmc->dmc_info[dmc_id].payload); 1536 1537 kfree(dmc); 1538 display->dmc.dmc = NULL; 1539 } 1540 } 1541 1542 struct intel_dmc_snapshot { 1543 bool initialized; 1544 bool loaded; 1545 u32 version; 1546 }; 1547 1548 struct intel_dmc_snapshot *intel_dmc_snapshot_capture(struct intel_display *display) 1549 { 1550 struct intel_dmc *dmc = display_to_dmc(display); 1551 struct intel_dmc_snapshot *snapshot; 1552 1553 if (!HAS_DMC(display)) 1554 return NULL; 1555 1556 snapshot = kzalloc_obj(*snapshot, GFP_ATOMIC); 1557 if (!snapshot) 1558 return NULL; 1559 1560 snapshot->initialized = dmc; 1561 snapshot->loaded = intel_dmc_has_payload(display); 1562 if (dmc) 1563 snapshot->version = dmc->version; 1564 1565 return snapshot; 1566 } 1567 1568 void intel_dmc_snapshot_print(const struct intel_dmc_snapshot *snapshot, struct drm_printer *p) 1569 { 1570 if (!snapshot) 1571 return; 1572 1573 drm_printf(p, "DMC initialized: %s\n", str_yes_no(snapshot->initialized)); 1574 drm_printf(p, "DMC loaded: %s\n", str_yes_no(snapshot->loaded)); 1575 if (snapshot->initialized) 1576 drm_printf(p, "DMC fw version: %d.%d\n", 1577 DMC_VERSION_MAJOR(snapshot->version), 1578 DMC_VERSION_MINOR(snapshot->version)); 1579 } 1580 1581 void intel_dmc_update_dc6_allowed_count(struct intel_display *display, 1582 bool start_tracking) 1583 { 1584 struct intel_dmc *dmc = display_to_dmc(display); 1585 u32 dc5_cur_count; 1586 1587 if (DISPLAY_VER(display) < 14) 1588 return; 1589 1590 dc5_cur_count = intel_de_read(display, DG1_DMC_DEBUG_DC5_COUNT); 1591 1592 if (!start_tracking) 1593 dmc->dc6_allowed.count += dc5_cur_count - dmc->dc6_allowed.dc5_start; 1594 1595 dmc->dc6_allowed.dc5_start = dc5_cur_count; 1596 } 1597 1598 static bool intel_dmc_get_dc6_allowed_count(struct intel_display *display, u32 *count) 1599 { 1600 struct i915_power_domains *power_domains = &display->power.domains; 1601 struct intel_dmc *dmc = display_to_dmc(display); 1602 bool dc6_enabled; 1603 1604 if (DISPLAY_VER(display) < 14) 1605 return false; 1606 1607 mutex_lock(&power_domains->lock); 1608 dc6_enabled = power_domains->dc_state & DC_STATE_EN_UPTO_DC6; 1609 if (dc6_enabled) 1610 intel_dmc_update_dc6_allowed_count(display, false); 1611 1612 *count = dmc->dc6_allowed.count; 1613 mutex_unlock(&power_domains->lock); 1614 1615 return true; 1616 } 1617 1618 static int intel_dmc_debugfs_status_show(struct seq_file *m, void *unused) 1619 { 1620 struct intel_display *display = m->private; 1621 struct intel_dmc *dmc = display_to_dmc(display); 1622 struct ref_tracker *wakeref; 1623 intel_reg_t dc5_reg, dc6_reg = INVALID_MMIO_REG; 1624 u32 dc6_allowed_count; 1625 1626 if (!HAS_DMC(display)) 1627 return -ENODEV; 1628 1629 wakeref = intel_display_rpm_get(display); 1630 1631 seq_printf(m, "DMC initialized: %s\n", str_yes_no(dmc)); 1632 seq_printf(m, "fw loaded: %s\n", 1633 str_yes_no(intel_dmc_has_payload(display))); 1634 seq_printf(m, "path: %s\n", dmc ? dmc->fw_path : "N/A"); 1635 seq_printf(m, "Pipe A fw needed: %s\n", 1636 str_yes_no(DISPLAY_VER(display) >= 12)); 1637 seq_printf(m, "Pipe A fw loaded: %s\n", 1638 str_yes_no(has_dmc_id_fw(display, DMC_FW_PIPEA))); 1639 seq_printf(m, "Pipe B fw needed: %s\n", 1640 str_yes_no(display->platform.alderlake_p || 1641 DISPLAY_VER(display) >= 14)); 1642 seq_printf(m, "Pipe B fw loaded: %s\n", 1643 str_yes_no(has_dmc_id_fw(display, DMC_FW_PIPEB))); 1644 1645 if (!intel_dmc_has_payload(display)) 1646 goto out; 1647 1648 seq_printf(m, "version: %d.%d\n", DMC_VERSION_MAJOR(dmc->version), 1649 DMC_VERSION_MINOR(dmc->version)); 1650 1651 if (DISPLAY_VER(display) >= 12) { 1652 if (DISPLAY_VER(display) >= 35) { 1653 dc5_reg = DG1_DMC_DEBUG_DC5_COUNT; 1654 seq_printf(m, "DC3CO count: %d\n", 1655 intel_de_read(display, XE3P_DMC_DC3CO_COUNT)); 1656 1657 seq_printf(m, "DC3CO residency: %d\n", 1658 intel_de_read(display, DC_STATE_DC3CO_RESIDENCY)); 1659 } else if (display->platform.dgfx || DISPLAY_VER(display) >= 14) { 1660 dc5_reg = DG1_DMC_DEBUG_DC5_COUNT; 1661 } else { 1662 dc5_reg = TGL_DMC_DEBUG_DC5_COUNT; 1663 dc6_reg = TGL_DMC_DEBUG_DC6_COUNT; 1664 } 1665 1666 } else { 1667 dc5_reg = display->platform.broxton ? BXT_DMC_DC3_DC5_COUNT : 1668 SKL_DMC_DC3_DC5_COUNT; 1669 if (!display->platform.geminilake && !display->platform.broxton) 1670 dc6_reg = SKL_DMC_DC5_DC6_COUNT; 1671 } 1672 1673 seq_printf(m, "DC3 -> DC5 count: %d\n", intel_de_read(display, dc5_reg)); 1674 1675 if (intel_dmc_get_dc6_allowed_count(display, &dc6_allowed_count)) 1676 seq_printf(m, "DC5 -> DC6 allowed count: %d\n", 1677 dc6_allowed_count); 1678 else if (intel_reg_valid(dc6_reg)) 1679 seq_printf(m, "DC5 -> DC6 count: %d\n", 1680 intel_de_read(display, dc6_reg)); 1681 1682 seq_printf(m, "program base: 0x%08x\n", 1683 intel_de_read(display, DMC_PROGRAM(dmc->dmc_info[DMC_FW_MAIN].start_mmioaddr, 0))); 1684 1685 out: 1686 seq_printf(m, "ssp base: 0x%08x\n", 1687 intel_de_read(display, DMC_SSP_BASE)); 1688 seq_printf(m, "htp: 0x%08x\n", intel_de_read(display, DMC_HTP_SKL)); 1689 1690 intel_display_rpm_put(display, wakeref); 1691 1692 return 0; 1693 } 1694 1695 DEFINE_SHOW_ATTRIBUTE(intel_dmc_debugfs_status); 1696 1697 void intel_dmc_debugfs_register(struct intel_display *display) 1698 { 1699 debugfs_create_file("i915_dmc_info", 0444, display->drm->debugfs_root, 1700 display, &intel_dmc_debugfs_status_fops); 1701 } 1702 1703 void intel_pipedmc_irq_handler(struct intel_display *display, enum pipe pipe) 1704 { 1705 struct intel_crtc *crtc = intel_crtc_for_pipe(display, pipe); 1706 u32 tmp = 0, int_vector; 1707 1708 if (DISPLAY_VER(display) >= 20) { 1709 tmp = intel_de_read(display, PIPEDMC_INTERRUPT(pipe)); 1710 intel_de_write(display, PIPEDMC_INTERRUPT(pipe), tmp); 1711 1712 if (tmp & PIPEDMC_FLIPQ_PROG_DONE) { 1713 spin_lock(&display->drm->event_lock); 1714 1715 if (crtc->flipq_event) { 1716 /* 1717 * Update vblank counter/timestamp in case it 1718 * hasn't been done yet for this frame. 1719 */ 1720 drm_crtc_accurate_vblank_count(&crtc->base); 1721 1722 drm_crtc_send_vblank_event(&crtc->base, crtc->flipq_event); 1723 crtc->flipq_event = NULL; 1724 } 1725 1726 spin_unlock(&display->drm->event_lock); 1727 } 1728 1729 if (tmp & PIPEDMC_ATS_FAULT) 1730 drm_err_ratelimited(display->drm, "[CRTC:%d:%s] PIPEDMC ATS fault\n", 1731 crtc->base.base.id, crtc->base.name); 1732 if (tmp & PIPEDMC_GTT_FAULT) 1733 drm_err_ratelimited(display->drm, "[CRTC:%d:%s] PIPEDMC GTT fault\n", 1734 crtc->base.base.id, crtc->base.name); 1735 if (tmp & PIPEDMC_ERROR) 1736 drm_err(display->drm, "[CRTC:%d:%s] PIPEDMC error\n", 1737 crtc->base.base.id, crtc->base.name); 1738 } 1739 1740 int_vector = intel_de_read(display, PIPEDMC_STATUS(pipe)) & PIPEDMC_INT_VECTOR_MASK; 1741 if (tmp == 0 && int_vector != 0) 1742 drm_err(display->drm, "[CRTC:%d:%s] PIPEDMC interrupt vector 0x%x\n", 1743 crtc->base.base.id, crtc->base.name, int_vector); 1744 } 1745 1746 void intel_pipedmc_enable_event(struct intel_crtc *crtc, 1747 enum pipedmc_event_id event) 1748 { 1749 struct intel_display *display = to_intel_display(crtc); 1750 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(crtc->pipe); 1751 1752 dmc_configure_event(display, dmc_id, event, true); 1753 } 1754 1755 void intel_pipedmc_disable_event(struct intel_crtc *crtc, 1756 enum pipedmc_event_id event) 1757 { 1758 struct intel_display *display = to_intel_display(crtc); 1759 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(crtc->pipe); 1760 1761 dmc_configure_event(display, dmc_id, event, false); 1762 } 1763 1764 u32 intel_pipedmc_start_mmioaddr(struct intel_crtc *crtc) 1765 { 1766 struct intel_display *display = to_intel_display(crtc); 1767 struct intel_dmc *dmc = display_to_dmc(display); 1768 enum intel_dmc_id dmc_id = PIPE_TO_DMC_ID(crtc->pipe); 1769 1770 return dmc ? dmc->dmc_info[dmc_id].start_mmioaddr : 0; 1771 } 1772 1773 void intel_pipedmc_dcb_enable(struct intel_dsb *dsb, struct intel_crtc *crtc) 1774 { 1775 struct intel_display *display = to_intel_display(crtc); 1776 enum pipe pipe = crtc->pipe; 1777 1778 intel_de_write_dsb(display, dsb, PIPEDMC_DCB_CTL(pipe), 1779 PIPEDMC_ADAPTIVE_DCB_ENABLE); 1780 } 1781 1782 void intel_pipedmc_dcb_disable(struct intel_dsb *dsb, struct intel_crtc *crtc) 1783 { 1784 struct intel_display *display = to_intel_display(crtc); 1785 enum pipe pipe = crtc->pipe; 1786 1787 intel_de_write_dsb(display, dsb, PIPEDMC_DCB_CTL(pipe), 0); 1788 } 1789