1 /* 2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> 3 * Copyright (c) 2007-2008 Intel Corporation 4 * Jesse Barnes <jesse.barnes@intel.com> 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice (including the next 14 * paragraph) shall be included in all copies or substantial portions of the 15 * Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 23 * IN THE SOFTWARE. 24 */ 25 26 #ifndef __INTEL_DISPLAY_TYPES_H__ 27 #define __INTEL_DISPLAY_TYPES_H__ 28 29 #include <linux/i2c.h> 30 #include <linux/pm_qos.h> 31 #include <linux/pwm.h> 32 #include <linux/sched/clock.h> 33 34 #include <drm/display/drm_dp_dual_mode_helper.h> 35 #include <drm/display/drm_dp_mst_helper.h> 36 #include <drm/display/drm_dsc.h> 37 #include <drm/drm_atomic.h> 38 #include <drm/drm_crtc.h> 39 #include <drm/drm_encoder.h> 40 #include <drm/drm_fourcc.h> 41 #include <drm/drm_framebuffer.h> 42 #include <drm/drm_probe_helper.h> 43 #include <drm/drm_rect.h> 44 #include <drm/drm_vblank.h> 45 #include <drm/drm_vblank_work.h> 46 #include <drm/i915_hdcp_interface.h> 47 #include <media/cec-notifier.h> 48 49 #include "i915_vma.h" 50 #include "i915_vma_types.h" 51 #include "intel_bios.h" 52 #include "intel_display.h" 53 #include "intel_display_limits.h" 54 #include "intel_display_power.h" 55 #include "intel_dpll_mgr.h" 56 #include "intel_wm_types.h" 57 58 struct drm_printer; 59 struct __intel_global_objs_state; 60 struct intel_ddi_buf_trans; 61 struct intel_fbc; 62 struct intel_connector; 63 struct intel_tc_port; 64 65 /* 66 * Display related stuff 67 */ 68 69 /* these are outputs from the chip - integrated only 70 external chips are via DVO or SDVO output */ 71 enum intel_output_type { 72 INTEL_OUTPUT_UNUSED = 0, 73 INTEL_OUTPUT_ANALOG = 1, 74 INTEL_OUTPUT_DVO = 2, 75 INTEL_OUTPUT_SDVO = 3, 76 INTEL_OUTPUT_LVDS = 4, 77 INTEL_OUTPUT_TVOUT = 5, 78 INTEL_OUTPUT_HDMI = 6, 79 INTEL_OUTPUT_DP = 7, 80 INTEL_OUTPUT_EDP = 8, 81 INTEL_OUTPUT_DSI = 9, 82 INTEL_OUTPUT_DDI = 10, 83 INTEL_OUTPUT_DP_MST = 11, 84 }; 85 86 enum hdmi_force_audio { 87 HDMI_AUDIO_OFF_DVI = -2, /* no aux data for HDMI-DVI converter */ 88 HDMI_AUDIO_OFF, /* force turn off HDMI audio */ 89 HDMI_AUDIO_AUTO, /* trust EDID */ 90 HDMI_AUDIO_ON, /* force turn on HDMI audio */ 91 }; 92 93 /* "Broadcast RGB" property */ 94 enum intel_broadcast_rgb { 95 INTEL_BROADCAST_RGB_AUTO, 96 INTEL_BROADCAST_RGB_FULL, 97 INTEL_BROADCAST_RGB_LIMITED, 98 }; 99 100 struct intel_fb_view { 101 /* 102 * The remap information used in the remapped and rotated views to 103 * create the DMA scatter-gather list for each FB color plane. This sg 104 * list is created along with the view type (gtt.type) specific 105 * i915_vma object and contains the list of FB object pages (reordered 106 * in the rotated view) that are visible in the view. 107 * In the normal view the FB object's backing store sg list is used 108 * directly and hence the remap information here is not used. 109 */ 110 struct i915_gtt_view gtt; 111 112 /* 113 * The GTT view (gtt.type) specific information for each FB color 114 * plane. In the normal GTT view all formats (up to 4 color planes), 115 * in the rotated and remapped GTT view all no-CCS formats (up to 2 116 * color planes) are supported. 117 * 118 * The view information shared by all FB color planes in the FB, 119 * like dst x/y and src/dst width, is stored separately in 120 * intel_plane_state. 121 */ 122 struct i915_color_plane_view { 123 u32 offset; 124 unsigned int x, y; 125 /* 126 * Plane stride in: 127 * bytes for 0/180 degree rotation 128 * pixels for 90/270 degree rotation 129 */ 130 unsigned int mapping_stride; 131 unsigned int scanout_stride; 132 } color_plane[4]; 133 }; 134 135 struct intel_framebuffer { 136 struct drm_framebuffer base; 137 struct intel_frontbuffer *frontbuffer; 138 139 /* Params to remap the FB pages and program the plane registers in each view. */ 140 struct intel_fb_view normal_view; 141 union { 142 struct intel_fb_view rotated_view; 143 struct intel_fb_view remapped_view; 144 }; 145 146 struct i915_address_space *dpt_vm; 147 }; 148 149 enum intel_hotplug_state { 150 INTEL_HOTPLUG_UNCHANGED, 151 INTEL_HOTPLUG_CHANGED, 152 INTEL_HOTPLUG_RETRY, 153 }; 154 155 struct intel_encoder { 156 struct drm_encoder base; 157 158 enum intel_output_type type; 159 enum port port; 160 u16 cloneable; 161 u8 pipe_mask; 162 enum intel_hotplug_state (*hotplug)(struct intel_encoder *encoder, 163 struct intel_connector *connector); 164 enum intel_output_type (*compute_output_type)(struct intel_encoder *, 165 struct intel_crtc_state *, 166 struct drm_connector_state *); 167 int (*compute_config)(struct intel_encoder *, 168 struct intel_crtc_state *, 169 struct drm_connector_state *); 170 int (*compute_config_late)(struct intel_encoder *, 171 struct intel_crtc_state *, 172 struct drm_connector_state *); 173 void (*pre_pll_enable)(struct intel_atomic_state *, 174 struct intel_encoder *, 175 const struct intel_crtc_state *, 176 const struct drm_connector_state *); 177 void (*pre_enable)(struct intel_atomic_state *, 178 struct intel_encoder *, 179 const struct intel_crtc_state *, 180 const struct drm_connector_state *); 181 void (*enable)(struct intel_atomic_state *, 182 struct intel_encoder *, 183 const struct intel_crtc_state *, 184 const struct drm_connector_state *); 185 void (*disable)(struct intel_atomic_state *, 186 struct intel_encoder *, 187 const struct intel_crtc_state *, 188 const struct drm_connector_state *); 189 void (*post_disable)(struct intel_atomic_state *, 190 struct intel_encoder *, 191 const struct intel_crtc_state *, 192 const struct drm_connector_state *); 193 void (*post_pll_disable)(struct intel_atomic_state *, 194 struct intel_encoder *, 195 const struct intel_crtc_state *, 196 const struct drm_connector_state *); 197 void (*update_pipe)(struct intel_atomic_state *, 198 struct intel_encoder *, 199 const struct intel_crtc_state *, 200 const struct drm_connector_state *); 201 /* Read out the current hw state of this connector, returning true if 202 * the encoder is active. If the encoder is enabled it also set the pipe 203 * it is connected to in the pipe parameter. */ 204 bool (*get_hw_state)(struct intel_encoder *, enum pipe *pipe); 205 /* Reconstructs the equivalent mode flags for the current hardware 206 * state. This must be called _after_ display->get_pipe_config has 207 * pre-filled the pipe config. Note that intel_encoder->base.crtc must 208 * be set correctly before calling this function. */ 209 void (*get_config)(struct intel_encoder *, 210 struct intel_crtc_state *pipe_config); 211 212 /* 213 * Optional hook called during init/resume to sync any state 214 * stored in the encoder (eg. DP link parameters) wrt. the HW state. 215 */ 216 void (*sync_state)(struct intel_encoder *encoder, 217 const struct intel_crtc_state *crtc_state); 218 219 /* 220 * Optional hook, returning true if this encoder allows a fastset 221 * during the initial commit, false otherwise. 222 */ 223 bool (*initial_fastset_check)(struct intel_encoder *encoder, 224 struct intel_crtc_state *crtc_state); 225 226 /* 227 * Acquires the power domains needed for an active encoder during 228 * hardware state readout. 229 */ 230 void (*get_power_domains)(struct intel_encoder *encoder, 231 struct intel_crtc_state *crtc_state); 232 /* 233 * Called during system suspend after all pending requests for the 234 * encoder are flushed (for example for DP AUX transactions) and 235 * device interrupts are disabled. 236 * All modeset locks are held while the hook is called. 237 */ 238 void (*suspend)(struct intel_encoder *); 239 /* 240 * Called without the modeset locks held after the suspend() hook for 241 * all encoders have been called. 242 */ 243 void (*suspend_complete)(struct intel_encoder *encoder); 244 /* 245 * Called during system reboot/shutdown after all the 246 * encoders have been disabled and suspended. 247 * All modeset locks are held while the hook is called. 248 */ 249 void (*shutdown)(struct intel_encoder *encoder); 250 /* 251 * Called without the modeset locks held after the shutdown() hook for 252 * all encoders have been called. 253 */ 254 void (*shutdown_complete)(struct intel_encoder *encoder); 255 /* 256 * Enable/disable the clock to the port. 257 */ 258 void (*enable_clock)(struct intel_encoder *encoder, 259 const struct intel_crtc_state *crtc_state); 260 void (*disable_clock)(struct intel_encoder *encoder); 261 /* 262 * Returns whether the port clock is enabled or not. 263 */ 264 bool (*is_clock_enabled)(struct intel_encoder *encoder); 265 /* 266 * Returns the PLL type the port uses. 267 */ 268 enum icl_port_dpll_id (*port_pll_type)(struct intel_encoder *encoder, 269 const struct intel_crtc_state *crtc_state); 270 const struct intel_ddi_buf_trans *(*get_buf_trans)(struct intel_encoder *encoder, 271 const struct intel_crtc_state *crtc_state, 272 int *n_entries); 273 void (*set_signal_levels)(struct intel_encoder *encoder, 274 const struct intel_crtc_state *crtc_state); 275 276 enum hpd_pin hpd_pin; 277 enum intel_display_power_domain power_domain; 278 279 /* VBT information for this encoder (may be NULL for older platforms) */ 280 const struct intel_bios_encoder_data *devdata; 281 }; 282 283 struct intel_panel_bl_funcs { 284 /* Connector and platform specific backlight functions */ 285 int (*setup)(struct intel_connector *connector, enum pipe pipe); 286 u32 (*get)(struct intel_connector *connector, enum pipe pipe); 287 void (*set)(const struct drm_connector_state *conn_state, u32 level); 288 void (*disable)(const struct drm_connector_state *conn_state, u32 level); 289 void (*enable)(const struct intel_crtc_state *crtc_state, 290 const struct drm_connector_state *conn_state, u32 level); 291 u32 (*hz_to_pwm)(struct intel_connector *connector, u32 hz); 292 }; 293 294 enum drrs_type { 295 DRRS_TYPE_NONE, 296 DRRS_TYPE_STATIC, 297 DRRS_TYPE_SEAMLESS, 298 }; 299 300 struct intel_vbt_panel_data { 301 struct drm_display_mode *lfp_lvds_vbt_mode; /* if any */ 302 struct drm_display_mode *sdvo_lvds_vbt_mode; /* if any */ 303 304 /* Feature bits */ 305 int panel_type; 306 unsigned int lvds_dither:1; 307 unsigned int bios_lvds_val; /* initial [PCH_]LVDS reg val in VBIOS */ 308 309 bool vrr; 310 311 u8 seamless_drrs_min_refresh_rate; 312 enum drrs_type drrs_type; 313 314 struct { 315 int max_link_rate; 316 int rate; 317 int lanes; 318 int preemphasis; 319 int vswing; 320 int bpp; 321 struct edp_power_seq pps; 322 u8 drrs_msa_timing_delay; 323 bool low_vswing; 324 bool initialized; 325 bool hobl; 326 } edp; 327 328 struct { 329 bool enable; 330 bool full_link; 331 bool require_aux_wakeup; 332 int idle_frames; 333 int tp1_wakeup_time_us; 334 int tp2_tp3_wakeup_time_us; 335 int psr2_tp2_tp3_wakeup_time_us; 336 } psr; 337 338 struct { 339 u16 pwm_freq_hz; 340 u16 brightness_precision_bits; 341 u16 hdr_dpcd_refresh_timeout; 342 bool present; 343 bool active_low_pwm; 344 u8 min_brightness; /* min_brightness/255 of max */ 345 s8 controller; /* brightness controller number */ 346 enum intel_backlight_type type; 347 } backlight; 348 349 /* MIPI DSI */ 350 struct { 351 u16 panel_id; 352 struct mipi_config *config; 353 struct mipi_pps_data *pps; 354 u16 bl_ports; 355 u16 cabc_ports; 356 u8 seq_version; 357 u32 size; 358 u8 *data; 359 const u8 *sequence[MIPI_SEQ_MAX]; 360 u8 *deassert_seq; /* Used by fixup_mipi_sequences() */ 361 enum drm_panel_orientation orientation; 362 } dsi; 363 }; 364 365 struct intel_panel { 366 /* Fixed EDID for eDP and LVDS. May hold ERR_PTR for invalid EDID. */ 367 const struct drm_edid *fixed_edid; 368 369 struct list_head fixed_modes; 370 371 /* backlight */ 372 struct { 373 bool present; 374 u32 level; 375 u32 min; 376 u32 max; 377 bool enabled; 378 bool combination_mode; /* gen 2/4 only */ 379 bool active_low_pwm; 380 bool alternate_pwm_increment; /* lpt+ */ 381 382 /* PWM chip */ 383 u32 pwm_level_min; 384 u32 pwm_level_max; 385 bool pwm_enabled; 386 bool util_pin_active_low; /* bxt+ */ 387 u8 controller; /* bxt+ only */ 388 struct pwm_device *pwm; 389 struct pwm_state pwm_state; 390 391 /* DPCD backlight */ 392 union { 393 struct { 394 struct drm_edp_backlight_info info; 395 } vesa; 396 struct { 397 bool sdr_uses_aux; 398 } intel; 399 } edp; 400 401 struct backlight_device *device; 402 403 const struct intel_panel_bl_funcs *funcs; 404 const struct intel_panel_bl_funcs *pwm_funcs; 405 void (*power)(struct intel_connector *, bool enable); 406 } backlight; 407 408 struct intel_vbt_panel_data vbt; 409 }; 410 411 struct intel_digital_port; 412 413 enum check_link_response { 414 HDCP_LINK_PROTECTED = 0, 415 HDCP_TOPOLOGY_CHANGE, 416 HDCP_LINK_INTEGRITY_FAILURE, 417 HDCP_REAUTH_REQUEST 418 }; 419 420 /* 421 * This structure serves as a translation layer between the generic HDCP code 422 * and the bus-specific code. What that means is that HDCP over HDMI differs 423 * from HDCP over DP, so to account for these differences, we need to 424 * communicate with the receiver through this shim. 425 * 426 * For completeness, the 2 buses differ in the following ways: 427 * - DP AUX vs. DDC 428 * HDCP registers on the receiver are set via DP AUX for DP, and 429 * they are set via DDC for HDMI. 430 * - Receiver register offsets 431 * The offsets of the registers are different for DP vs. HDMI 432 * - Receiver register masks/offsets 433 * For instance, the ready bit for the KSV fifo is in a different 434 * place on DP vs HDMI 435 * - Receiver register names 436 * Seriously. In the DP spec, the 16-bit register containing 437 * downstream information is called BINFO, on HDMI it's called 438 * BSTATUS. To confuse matters further, DP has a BSTATUS register 439 * with a completely different definition. 440 * - KSV FIFO 441 * On HDMI, the ksv fifo is read all at once, whereas on DP it must 442 * be read 3 keys at a time 443 * - Aksv output 444 * Since Aksv is hidden in hardware, there's different procedures 445 * to send it over DP AUX vs DDC 446 */ 447 struct intel_hdcp_shim { 448 /* Outputs the transmitter's An and Aksv values to the receiver. */ 449 int (*write_an_aksv)(struct intel_digital_port *dig_port, u8 *an); 450 451 /* Reads the receiver's key selection vector */ 452 int (*read_bksv)(struct intel_digital_port *dig_port, u8 *bksv); 453 454 /* 455 * Reads BINFO from DP receivers and BSTATUS from HDMI receivers. The 456 * definitions are the same in the respective specs, but the names are 457 * different. Call it BSTATUS since that's the name the HDMI spec 458 * uses and it was there first. 459 */ 460 int (*read_bstatus)(struct intel_digital_port *dig_port, 461 u8 *bstatus); 462 463 /* Determines whether a repeater is present downstream */ 464 int (*repeater_present)(struct intel_digital_port *dig_port, 465 bool *repeater_present); 466 467 /* Reads the receiver's Ri' value */ 468 int (*read_ri_prime)(struct intel_digital_port *dig_port, u8 *ri); 469 470 /* Determines if the receiver's KSV FIFO is ready for consumption */ 471 int (*read_ksv_ready)(struct intel_digital_port *dig_port, 472 bool *ksv_ready); 473 474 /* Reads the ksv fifo for num_downstream devices */ 475 int (*read_ksv_fifo)(struct intel_digital_port *dig_port, 476 int num_downstream, u8 *ksv_fifo); 477 478 /* Reads a 32-bit part of V' from the receiver */ 479 int (*read_v_prime_part)(struct intel_digital_port *dig_port, 480 int i, u32 *part); 481 482 /* Enables HDCP signalling on the port */ 483 int (*toggle_signalling)(struct intel_digital_port *dig_port, 484 enum transcoder cpu_transcoder, 485 bool enable); 486 487 /* Enable/Disable stream encryption on DP MST Transport Link */ 488 int (*stream_encryption)(struct intel_connector *connector, 489 bool enable); 490 491 /* Ensures the link is still protected */ 492 bool (*check_link)(struct intel_digital_port *dig_port, 493 struct intel_connector *connector); 494 495 /* Detects panel's hdcp capability. This is optional for HDMI. */ 496 int (*hdcp_capable)(struct intel_digital_port *dig_port, 497 bool *hdcp_capable); 498 499 /* HDCP adaptation(DP/HDMI) required on the port */ 500 enum hdcp_wired_protocol protocol; 501 502 /* Detects whether sink is HDCP2.2 capable */ 503 int (*hdcp_2_2_capable)(struct intel_digital_port *dig_port, 504 bool *capable); 505 506 /* Write HDCP2.2 messages */ 507 int (*write_2_2_msg)(struct intel_digital_port *dig_port, 508 void *buf, size_t size); 509 510 /* Read HDCP2.2 messages */ 511 int (*read_2_2_msg)(struct intel_digital_port *dig_port, 512 u8 msg_id, void *buf, size_t size); 513 514 /* 515 * Implementation of DP HDCP2.2 Errata for the communication of stream 516 * type to Receivers. In DP HDCP2.2 Stream type is one of the input to 517 * the HDCP2.2 Cipher for En/De-Cryption. Not applicable for HDMI. 518 */ 519 int (*config_stream_type)(struct intel_digital_port *dig_port, 520 bool is_repeater, u8 type); 521 522 /* Enable/Disable HDCP 2.2 stream encryption on DP MST Transport Link */ 523 int (*stream_2_2_encryption)(struct intel_connector *connector, 524 bool enable); 525 526 /* HDCP2.2 Link Integrity Check */ 527 int (*check_2_2_link)(struct intel_digital_port *dig_port, 528 struct intel_connector *connector); 529 }; 530 531 struct intel_hdcp { 532 const struct intel_hdcp_shim *shim; 533 /* Mutex for hdcp state of the connector */ 534 struct rwlock mutex; 535 u64 value; 536 struct delayed_work check_work; 537 struct work_struct prop_work; 538 539 /* HDCP1.4 Encryption status */ 540 bool hdcp_encrypted; 541 542 /* HDCP2.2 related definitions */ 543 /* Flag indicates whether this connector supports HDCP2.2 or not. */ 544 bool hdcp2_supported; 545 546 /* HDCP2.2 Encryption status */ 547 bool hdcp2_encrypted; 548 549 /* 550 * Content Stream Type defined by content owner. TYPE0(0x0) content can 551 * flow in the link protected by HDCP2.2 or HDCP1.4, where as TYPE1(0x1) 552 * content can flow only through a link protected by HDCP2.2. 553 */ 554 u8 content_type; 555 556 bool is_paired; 557 bool is_repeater; 558 559 /* 560 * Count of ReceiverID_List received. Initialized to 0 at AKE_INIT. 561 * Incremented after processing the RepeaterAuth_Send_ReceiverID_List. 562 * When it rolls over re-auth has to be triggered. 563 */ 564 u32 seq_num_v; 565 566 /* 567 * Count of RepeaterAuth_Stream_Manage msg propagated. 568 * Initialized to 0 on AKE_INIT. Incremented after every successful 569 * transmission of RepeaterAuth_Stream_Manage message. When it rolls 570 * over re-Auth has to be triggered. 571 */ 572 u32 seq_num_m; 573 574 /* 575 * Work queue to signal the CP_IRQ. Used for the waiters to read the 576 * available information from HDCP DP sink. 577 */ 578 wait_queue_head_t cp_irq_queue; 579 atomic_t cp_irq_count; 580 int cp_irq_count_cached; 581 582 /* 583 * HDCP register access for gen12+ need the transcoder associated. 584 * Transcoder attached to the connector could be changed at modeset. 585 * Hence caching the transcoder here. 586 */ 587 enum transcoder cpu_transcoder; 588 /* Only used for DP MST stream encryption */ 589 enum transcoder stream_transcoder; 590 }; 591 592 struct intel_connector { 593 struct drm_connector base; 594 /* 595 * The fixed encoder this connector is connected to. 596 */ 597 struct intel_encoder *encoder; 598 599 /* ACPI device id for ACPI and driver cooperation */ 600 u32 acpi_device_id; 601 602 /* Reads out the current hw, returning true if the connector is enabled 603 * and active (i.e. dpms ON state). */ 604 bool (*get_hw_state)(struct intel_connector *); 605 606 /* Panel info for eDP and LVDS */ 607 struct intel_panel panel; 608 609 /* Cached EDID for detect. */ 610 const struct drm_edid *detect_edid; 611 612 /* Number of times hotplug detection was tried after an HPD interrupt */ 613 int hotplug_retries; 614 615 /* since POLL and HPD connectors may use the same HPD line keep the native 616 state of connector->polled in case hotplug storm detection changes it */ 617 u8 polled; 618 619 struct drm_dp_mst_port *port; 620 621 struct intel_dp *mst_port; 622 623 /* Work struct to schedule a uevent on link train failure */ 624 struct work_struct modeset_retry_work; 625 626 struct intel_hdcp hdcp; 627 }; 628 629 struct intel_digital_connector_state { 630 struct drm_connector_state base; 631 632 enum hdmi_force_audio force_audio; 633 int broadcast_rgb; 634 }; 635 636 #define to_intel_digital_connector_state(x) container_of(x, struct intel_digital_connector_state, base) 637 638 struct dpll { 639 /* given values */ 640 int n; 641 int m1, m2; 642 int p1, p2; 643 /* derived values */ 644 int dot; 645 int vco; 646 int m; 647 int p; 648 }; 649 650 struct intel_atomic_state { 651 struct drm_atomic_state base; 652 653 intel_wakeref_t wakeref; 654 655 struct __intel_global_objs_state *global_objs; 656 int num_global_objs; 657 658 /* Internal commit, as opposed to userspace/client initiated one */ 659 bool internal; 660 661 bool dpll_set, modeset; 662 663 struct intel_shared_dpll_state shared_dpll[I915_NUM_PLLS]; 664 665 /* 666 * Current watermarks can't be trusted during hardware readout, so 667 * don't bother calculating intermediate watermarks. 668 */ 669 bool skip_intermediate_wm; 670 671 bool rps_interactive; 672 673 struct i915_sw_fence commit_ready; 674 675 struct llist_node freed; 676 }; 677 678 struct intel_plane_state { 679 struct drm_plane_state uapi; 680 681 /* 682 * actual hardware state, the state we program to the hardware. 683 * The following members are used to verify the hardware state: 684 * During initial hw readout, they need to be copied from uapi. 685 */ 686 struct { 687 struct drm_crtc *crtc; 688 struct drm_framebuffer *fb; 689 690 u16 alpha; 691 u16 pixel_blend_mode; 692 unsigned int rotation; 693 enum drm_color_encoding color_encoding; 694 enum drm_color_range color_range; 695 enum drm_scaling_filter scaling_filter; 696 } hw; 697 698 struct i915_vma *ggtt_vma; 699 struct i915_vma *dpt_vma; 700 unsigned long flags; 701 #define PLANE_HAS_FENCE BIT(0) 702 703 struct intel_fb_view view; 704 u32 phys_dma_addr; /* for cursor_needs_physical */ 705 706 /* Plane pxp decryption state */ 707 bool decrypt; 708 709 /* Plane state to display black pixels when pxp is borked */ 710 bool force_black; 711 712 /* plane control register */ 713 u32 ctl; 714 715 /* plane color control register */ 716 u32 color_ctl; 717 718 /* chroma upsampler control register */ 719 u32 cus_ctl; 720 721 /* 722 * scaler_id 723 * = -1 : not using a scaler 724 * >= 0 : using a scalers 725 * 726 * plane requiring a scaler: 727 * - During check_plane, its bit is set in 728 * crtc_state->scaler_state.scaler_users by calling helper function 729 * update_scaler_plane. 730 * - scaler_id indicates the scaler it got assigned. 731 * 732 * plane doesn't require a scaler: 733 * - this can happen when scaling is no more required or plane simply 734 * got disabled. 735 * - During check_plane, corresponding bit is reset in 736 * crtc_state->scaler_state.scaler_users by calling helper function 737 * update_scaler_plane. 738 */ 739 int scaler_id; 740 741 /* 742 * planar_linked_plane: 743 * 744 * ICL planar formats require 2 planes that are updated as pairs. 745 * This member is used to make sure the other plane is also updated 746 * when required, and for update_slave() to find the correct 747 * plane_state to pass as argument. 748 */ 749 struct intel_plane *planar_linked_plane; 750 751 /* 752 * planar_slave: 753 * If set don't update use the linked plane's state for updating 754 * this plane during atomic commit with the update_slave() callback. 755 * 756 * It's also used by the watermark code to ignore wm calculations on 757 * this plane. They're calculated by the linked plane's wm code. 758 */ 759 u32 planar_slave; 760 761 struct drm_intel_sprite_colorkey ckey; 762 763 struct drm_rect psr2_sel_fetch_area; 764 765 /* Clear Color Value */ 766 u64 ccval; 767 768 const char *no_fbc_reason; 769 }; 770 771 struct intel_initial_plane_config { 772 struct intel_framebuffer *fb; 773 struct intel_memory_region *mem; 774 resource_size_t phys_base; 775 struct i915_vma *vma; 776 unsigned int tiling; 777 int size; 778 u32 base; 779 u8 rotation; 780 }; 781 782 struct intel_scaler { 783 int in_use; 784 u32 mode; 785 }; 786 787 struct intel_crtc_scaler_state { 788 #define SKL_NUM_SCALERS 2 789 struct intel_scaler scalers[SKL_NUM_SCALERS]; 790 791 /* 792 * scaler_users: keeps track of users requesting scalers on this crtc. 793 * 794 * If a bit is set, a user is using a scaler. 795 * Here user can be a plane or crtc as defined below: 796 * bits 0-30 - plane (bit position is index from drm_plane_index) 797 * bit 31 - crtc 798 * 799 * Instead of creating a new index to cover planes and crtc, using 800 * existing drm_plane_index for planes which is well less than 31 801 * planes and bit 31 for crtc. This should be fine to cover all 802 * our platforms. 803 * 804 * intel_atomic_setup_scalers will setup available scalers to users 805 * requesting scalers. It will gracefully fail if request exceeds 806 * avilability. 807 */ 808 #define SKL_CRTC_INDEX 31 809 unsigned scaler_users; 810 811 /* scaler used by crtc for panel fitting purpose */ 812 int scaler_id; 813 }; 814 815 /* {crtc,crtc_state}->mode_flags */ 816 /* Flag to get scanline using frame time stamps */ 817 #define I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP (1<<1) 818 /* Flag to use the scanline counter instead of the pixel counter */ 819 #define I915_MODE_FLAG_USE_SCANLINE_COUNTER (1<<2) 820 /* 821 * TE0 or TE1 flag is set if the crtc has a DSI encoder which 822 * is operating in command mode. 823 * Flag to use TE from DSI0 instead of VBI in command mode 824 */ 825 #define I915_MODE_FLAG_DSI_USE_TE0 (1<<3) 826 /* Flag to use TE from DSI1 instead of VBI in command mode */ 827 #define I915_MODE_FLAG_DSI_USE_TE1 (1<<4) 828 /* Flag to indicate mipi dsi periodic command mode where we do not get TE */ 829 #define I915_MODE_FLAG_DSI_PERIODIC_CMD_MODE (1<<5) 830 /* Do tricks to make vblank timestamps sane with VRR? */ 831 #define I915_MODE_FLAG_VRR (1<<6) 832 833 struct intel_wm_level { 834 bool enable; 835 u32 pri_val; 836 u32 spr_val; 837 u32 cur_val; 838 u32 fbc_val; 839 }; 840 841 struct intel_pipe_wm { 842 struct intel_wm_level wm[5]; 843 bool fbc_wm_enabled; 844 bool pipe_enabled; 845 bool sprites_enabled; 846 bool sprites_scaled; 847 }; 848 849 struct skl_wm_level { 850 u16 min_ddb_alloc; 851 u16 blocks; 852 u8 lines; 853 bool enable; 854 bool ignore_lines; 855 bool can_sagv; 856 }; 857 858 struct skl_plane_wm { 859 struct skl_wm_level wm[8]; 860 struct skl_wm_level uv_wm[8]; 861 struct skl_wm_level trans_wm; 862 struct { 863 struct skl_wm_level wm0; 864 struct skl_wm_level trans_wm; 865 } sagv; 866 bool is_planar; 867 }; 868 869 struct skl_pipe_wm { 870 struct skl_plane_wm planes[I915_MAX_PLANES]; 871 bool use_sagv_wm; 872 }; 873 874 enum vlv_wm_level { 875 VLV_WM_LEVEL_PM2, 876 VLV_WM_LEVEL_PM5, 877 VLV_WM_LEVEL_DDR_DVFS, 878 NUM_VLV_WM_LEVELS, 879 }; 880 881 struct vlv_wm_state { 882 struct g4x_pipe_wm wm[NUM_VLV_WM_LEVELS]; 883 struct g4x_sr_wm sr[NUM_VLV_WM_LEVELS]; 884 u8 num_levels; 885 bool cxsr; 886 }; 887 888 struct vlv_fifo_state { 889 u16 plane[I915_MAX_PLANES]; 890 }; 891 892 enum g4x_wm_level { 893 G4X_WM_LEVEL_NORMAL, 894 G4X_WM_LEVEL_SR, 895 G4X_WM_LEVEL_HPLL, 896 NUM_G4X_WM_LEVELS, 897 }; 898 899 struct g4x_wm_state { 900 struct g4x_pipe_wm wm; 901 struct g4x_sr_wm sr; 902 struct g4x_sr_wm hpll; 903 bool cxsr; 904 bool hpll_en; 905 bool fbc_en; 906 }; 907 908 struct intel_crtc_wm_state { 909 union { 910 /* 911 * raw: 912 * The "raw" watermark values produced by the formula 913 * given the plane's current state. They do not consider 914 * how much FIFO is actually allocated for each plane. 915 * 916 * optimal: 917 * The "optimal" watermark values given the current 918 * state of the planes and the amount of FIFO 919 * allocated to each, ignoring any previous state 920 * of the planes. 921 * 922 * intermediate: 923 * The "intermediate" watermark values when transitioning 924 * between the old and new "optimal" values. Used when 925 * the watermark registers are single buffered and hence 926 * their state changes asynchronously with regards to the 927 * actual plane registers. These are essentially the 928 * worst case combination of the old and new "optimal" 929 * watermarks, which are therefore safe to use when the 930 * plane is in either its old or new state. 931 */ 932 struct { 933 struct intel_pipe_wm intermediate; 934 struct intel_pipe_wm optimal; 935 } ilk; 936 937 struct { 938 struct skl_pipe_wm raw; 939 /* gen9+ only needs 1-step wm programming */ 940 struct skl_pipe_wm optimal; 941 struct skl_ddb_entry ddb; 942 /* 943 * pre-icl: for packed/planar CbCr 944 * icl+: for everything 945 */ 946 struct skl_ddb_entry plane_ddb[I915_MAX_PLANES]; 947 /* pre-icl: for planar Y */ 948 struct skl_ddb_entry plane_ddb_y[I915_MAX_PLANES]; 949 } skl; 950 951 struct { 952 struct g4x_pipe_wm raw[NUM_VLV_WM_LEVELS]; /* not inverted */ 953 struct vlv_wm_state intermediate; /* inverted */ 954 struct vlv_wm_state optimal; /* inverted */ 955 struct vlv_fifo_state fifo_state; 956 } vlv; 957 958 struct { 959 struct g4x_pipe_wm raw[NUM_G4X_WM_LEVELS]; 960 struct g4x_wm_state intermediate; 961 struct g4x_wm_state optimal; 962 } g4x; 963 }; 964 965 /* 966 * Platforms with two-step watermark programming will need to 967 * update watermark programming post-vblank to switch from the 968 * safe intermediate watermarks to the optimal final 969 * watermarks. 970 */ 971 bool need_postvbl_update; 972 }; 973 974 enum intel_output_format { 975 INTEL_OUTPUT_FORMAT_RGB, 976 INTEL_OUTPUT_FORMAT_YCBCR420, 977 INTEL_OUTPUT_FORMAT_YCBCR444, 978 }; 979 980 struct intel_mpllb_state { 981 u32 clock; /* in KHz */ 982 u32 ref_control; 983 u32 mpllb_cp; 984 u32 mpllb_div; 985 u32 mpllb_div2; 986 u32 mpllb_fracn1; 987 u32 mpllb_fracn2; 988 u32 mpllb_sscen; 989 u32 mpllb_sscstep; 990 }; 991 992 /* Used by dp and fdi links */ 993 struct intel_link_m_n { 994 u32 tu; 995 u32 data_m; 996 u32 data_n; 997 u32 link_m; 998 u32 link_n; 999 }; 1000 1001 struct intel_csc_matrix { 1002 u16 coeff[9]; 1003 u16 preoff[3]; 1004 u16 postoff[3]; 1005 }; 1006 1007 struct intel_c10pll_state { 1008 u32 clock; /* in KHz */ 1009 u8 tx; 1010 u8 cmn; 1011 u8 pll[20]; 1012 }; 1013 1014 struct intel_c20pll_state { 1015 u32 link_bit_rate; 1016 u32 clock; /* in kHz */ 1017 u16 tx[3]; 1018 u16 cmn[4]; 1019 union { 1020 u16 mplla[10]; 1021 u16 mpllb[11]; 1022 }; 1023 }; 1024 1025 struct intel_cx0pll_state { 1026 union { 1027 struct intel_c10pll_state c10; 1028 struct intel_c20pll_state c20; 1029 }; 1030 bool ssc_enabled; 1031 }; 1032 1033 struct intel_crtc_state { 1034 /* 1035 * uapi (drm) state. This is the software state shown to userspace. 1036 * In particular, the following members are used for bookkeeping: 1037 * - crtc 1038 * - state 1039 * - *_changed 1040 * - event 1041 * - commit 1042 * - mode_blob 1043 */ 1044 struct drm_crtc_state uapi; 1045 1046 /* 1047 * actual hardware state, the state we program to the hardware. 1048 * The following members are used to verify the hardware state: 1049 * - enable 1050 * - active 1051 * - mode / pipe_mode / adjusted_mode 1052 * - color property blobs. 1053 * 1054 * During initial hw readout, they need to be copied to uapi. 1055 * 1056 * Bigjoiner will allow a transcoder mode that spans 2 pipes; 1057 * Use the pipe_mode for calculations like watermarks, pipe 1058 * scaler, and bandwidth. 1059 * 1060 * Use adjusted_mode for things that need to know the full 1061 * mode on the transcoder, which spans all pipes. 1062 */ 1063 struct { 1064 bool active, enable; 1065 /* logical state of LUTs */ 1066 struct drm_property_blob *degamma_lut, *gamma_lut, *ctm; 1067 struct drm_display_mode mode, pipe_mode, adjusted_mode; 1068 enum drm_scaling_filter scaling_filter; 1069 } hw; 1070 1071 /* actual state of LUTs */ 1072 struct drm_property_blob *pre_csc_lut, *post_csc_lut; 1073 1074 struct intel_csc_matrix csc, output_csc; 1075 1076 /** 1077 * quirks - bitfield with hw state readout quirks 1078 * 1079 * For various reasons the hw state readout code might not be able to 1080 * completely faithfully read out the current state. These cases are 1081 * tracked with quirk flags so that fastboot and state checker can act 1082 * accordingly. 1083 */ 1084 #define PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS (1<<0) /* unreliable sync mode.flags */ 1085 unsigned long quirks; 1086 1087 unsigned fb_bits; /* framebuffers to flip */ 1088 bool update_pipe; /* can a fast modeset be performed? */ 1089 bool update_m_n; /* update M/N seamlessly during fastset? */ 1090 bool disable_cxsr; 1091 bool update_wm_pre, update_wm_post; /* watermarks are updated */ 1092 bool fifo_changed; /* FIFO split is changed */ 1093 bool preload_luts; 1094 bool inherited; /* state inherited from BIOS? */ 1095 1096 /* Ask the hardware to actually async flip? */ 1097 bool do_async_flip; 1098 1099 /* Pipe source size (ie. panel fitter input size) 1100 * All planes will be positioned inside this space, 1101 * and get clipped at the edges. */ 1102 struct drm_rect pipe_src; 1103 1104 /* 1105 * Pipe pixel rate, adjusted for 1106 * panel fitter/pipe scaler downscaling. 1107 */ 1108 unsigned int pixel_rate; 1109 1110 /* Whether to set up the PCH/FDI. Note that we never allow sharing 1111 * between pch encoders and cpu encoders. */ 1112 bool has_pch_encoder; 1113 1114 /* Are we sending infoframes on the attached port */ 1115 bool has_infoframe; 1116 1117 /* CPU Transcoder for the pipe. Currently this can only differ from the 1118 * pipe on Haswell and later (where we have a special eDP transcoder) 1119 * and Broxton (where we have special DSI transcoders). */ 1120 enum transcoder cpu_transcoder; 1121 1122 /* 1123 * Use reduced/limited/broadcast rbg range, compressing from the full 1124 * range fed into the crtcs. 1125 */ 1126 bool limited_color_range; 1127 1128 /* Bitmask of encoder types (enum intel_output_type) 1129 * driven by the pipe. 1130 */ 1131 unsigned int output_types; 1132 1133 /* Whether we should send NULL infoframes. Required for audio. */ 1134 bool has_hdmi_sink; 1135 1136 /* Audio enabled on this pipe. Only valid if either has_hdmi_sink or 1137 * has_dp_encoder is set. */ 1138 bool has_audio; 1139 1140 /* 1141 * Enable dithering, used when the selected pipe bpp doesn't match the 1142 * plane bpp. 1143 */ 1144 bool dither; 1145 1146 /* 1147 * Dither gets enabled for 18bpp which causes CRC mismatch errors for 1148 * compliance video pattern tests. 1149 * Disable dither only if it is a compliance test request for 1150 * 18bpp. 1151 */ 1152 bool dither_force_disable; 1153 1154 /* Controls for the clock computation, to override various stages. */ 1155 bool clock_set; 1156 1157 /* SDVO TV has a bunch of special case. To make multifunction encoders 1158 * work correctly, we need to track this at runtime.*/ 1159 bool sdvo_tv_clock; 1160 1161 /* 1162 * crtc bandwidth limit, don't increase pipe bpp or clock if not really 1163 * required. This is set in the 2nd loop of calling encoder's 1164 * ->compute_config if the first pick doesn't work out. 1165 */ 1166 bool bw_constrained; 1167 1168 /* Settings for the intel dpll used on pretty much everything but 1169 * haswell. */ 1170 struct dpll dpll; 1171 1172 /* Selected dpll when shared or NULL. */ 1173 struct intel_shared_dpll *shared_dpll; 1174 1175 /* Actual register state of the dpll, for shared dpll cross-checking. */ 1176 union { 1177 struct intel_dpll_hw_state dpll_hw_state; 1178 struct intel_mpllb_state mpllb_state; 1179 struct intel_cx0pll_state cx0pll_state; 1180 }; 1181 1182 /* 1183 * ICL reserved DPLLs for the CRTC/port. The active PLL is selected by 1184 * setting shared_dpll and dpll_hw_state to one of these reserved ones. 1185 */ 1186 struct icl_port_dpll { 1187 struct intel_shared_dpll *pll; 1188 struct intel_dpll_hw_state hw_state; 1189 } icl_port_dplls[ICL_PORT_DPLL_COUNT]; 1190 1191 /* DSI PLL registers */ 1192 struct { 1193 u32 ctrl, div; 1194 } dsi_pll; 1195 1196 int pipe_bpp; 1197 struct intel_link_m_n dp_m_n; 1198 1199 /* m2_n2 for eDP downclock */ 1200 struct intel_link_m_n dp_m2_n2; 1201 bool has_drrs; 1202 1203 /* PSR is supported but might not be enabled due the lack of enabled planes */ 1204 bool has_psr; 1205 bool has_psr2; 1206 bool enable_psr2_sel_fetch; 1207 bool req_psr2_sdp_prior_scanline; 1208 bool wm_level_disabled; 1209 u32 dc3co_exitline; 1210 u16 su_y_granularity; 1211 struct drm_dp_vsc_sdp psr_vsc; 1212 1213 /* 1214 * Frequence the dpll for the port should run at. Differs from the 1215 * adjusted dotclock e.g. for DP or 10/12bpc hdmi mode. This is also 1216 * already multiplied by pixel_multiplier. 1217 */ 1218 int port_clock; 1219 1220 /* Used by SDVO (and if we ever fix it, HDMI). */ 1221 unsigned pixel_multiplier; 1222 1223 /* I915_MODE_FLAG_* */ 1224 u8 mode_flags; 1225 1226 u8 lane_count; 1227 1228 /* 1229 * Used by platforms having DP/HDMI PHY with programmable lane 1230 * latency optimization. 1231 */ 1232 u8 lane_lat_optim_mask; 1233 1234 /* minimum acceptable voltage level */ 1235 u8 min_voltage_level; 1236 1237 /* Panel fitter controls for gen2-gen4 + VLV */ 1238 struct { 1239 u32 control; 1240 u32 pgm_ratios; 1241 u32 lvds_border_bits; 1242 } gmch_pfit; 1243 1244 /* Panel fitter placement and size for Ironlake+ */ 1245 struct { 1246 struct drm_rect dst; 1247 bool enabled; 1248 bool force_thru; 1249 } pch_pfit; 1250 1251 /* FDI configuration, only valid if has_pch_encoder is set. */ 1252 int fdi_lanes; 1253 struct intel_link_m_n fdi_m_n; 1254 1255 bool ips_enabled; 1256 1257 bool crc_enabled; 1258 1259 bool double_wide; 1260 1261 int pbn; 1262 1263 struct intel_crtc_scaler_state scaler_state; 1264 1265 /* w/a for waiting 2 vblanks during crtc enable */ 1266 enum pipe hsw_workaround_pipe; 1267 1268 /* IVB sprite scaling w/a (WaCxSRDisabledForSpriteScaling:ivb) */ 1269 bool disable_lp_wm; 1270 1271 struct intel_crtc_wm_state wm; 1272 1273 int min_cdclk[I915_MAX_PLANES]; 1274 1275 /* for packed/planar CbCr */ 1276 u32 data_rate[I915_MAX_PLANES]; 1277 /* for planar Y */ 1278 u32 data_rate_y[I915_MAX_PLANES]; 1279 1280 /* FIXME unify with data_rate[]? */ 1281 u64 rel_data_rate[I915_MAX_PLANES]; 1282 u64 rel_data_rate_y[I915_MAX_PLANES]; 1283 1284 /* Gamma mode programmed on the pipe */ 1285 u32 gamma_mode; 1286 1287 union { 1288 /* CSC mode programmed on the pipe */ 1289 u32 csc_mode; 1290 1291 /* CHV CGM mode */ 1292 u32 cgm_mode; 1293 }; 1294 1295 /* bitmask of logically enabled planes (enum plane_id) */ 1296 u8 enabled_planes; 1297 1298 /* bitmask of actually visible planes (enum plane_id) */ 1299 u8 active_planes; 1300 u8 scaled_planes; 1301 u8 nv12_planes; 1302 u8 c8_planes; 1303 1304 /* bitmask of planes that will be updated during the commit */ 1305 u8 update_planes; 1306 1307 /* bitmask of planes with async flip active */ 1308 u8 async_flip_planes; 1309 1310 u8 framestart_delay; /* 1-4 */ 1311 u8 msa_timing_delay; /* 0-3 */ 1312 1313 struct { 1314 u32 enable; 1315 u32 gcp; 1316 union hdmi_infoframe avi; 1317 union hdmi_infoframe spd; 1318 union hdmi_infoframe hdmi; 1319 union hdmi_infoframe drm; 1320 struct drm_dp_vsc_sdp vsc; 1321 } infoframes; 1322 1323 u8 eld[MAX_ELD_BYTES]; 1324 1325 /* HDMI scrambling status */ 1326 bool hdmi_scrambling; 1327 1328 /* HDMI High TMDS char rate ratio */ 1329 bool hdmi_high_tmds_clock_ratio; 1330 1331 /* 1332 * Output format RGB/YCBCR etc., that is coming out 1333 * at the end of the pipe. 1334 */ 1335 enum intel_output_format output_format; 1336 1337 /* 1338 * Sink output format RGB/YCBCR etc., that is going 1339 * into the sink. 1340 */ 1341 enum intel_output_format sink_format; 1342 1343 /* enable pipe gamma? */ 1344 bool gamma_enable; 1345 1346 /* enable pipe csc? */ 1347 bool csc_enable; 1348 1349 /* enable vlv/chv wgc csc? */ 1350 bool wgc_enable; 1351 1352 /* big joiner pipe bitmask */ 1353 u8 bigjoiner_pipes; 1354 1355 /* Display Stream compression state */ 1356 struct { 1357 bool compression_enable; 1358 bool dsc_split; 1359 u16 compressed_bpp; 1360 u8 slice_count; 1361 struct drm_dsc_config config; 1362 } dsc; 1363 1364 /* HSW+ linetime watermarks */ 1365 u16 linetime; 1366 u16 ips_linetime; 1367 1368 bool enhanced_framing; 1369 1370 /* Forward Error correction State */ 1371 bool fec_enable; 1372 1373 bool sdp_split_enable; 1374 1375 /* Pointer to master transcoder in case of tiled displays */ 1376 enum transcoder master_transcoder; 1377 1378 /* Bitmask to indicate slaves attached */ 1379 u8 sync_mode_slaves_mask; 1380 1381 /* Only valid on TGL+ */ 1382 enum transcoder mst_master_transcoder; 1383 1384 /* For DSB related info */ 1385 struct intel_dsb *dsb; 1386 1387 u32 psr2_man_track_ctl; 1388 1389 /* Variable Refresh Rate state */ 1390 struct { 1391 bool enable; 1392 u8 pipeline_full; 1393 u16 flipline, vmin, vmax, guardband; 1394 } vrr; 1395 1396 /* Stream Splitter for eDP MSO */ 1397 struct { 1398 bool enable; 1399 u8 link_count; 1400 u8 pixel_overlap; 1401 } splitter; 1402 1403 /* for loading single buffered registers during vblank */ 1404 struct drm_vblank_work vblank_work; 1405 }; 1406 1407 enum intel_pipe_crc_source { 1408 INTEL_PIPE_CRC_SOURCE_NONE, 1409 INTEL_PIPE_CRC_SOURCE_PLANE1, 1410 INTEL_PIPE_CRC_SOURCE_PLANE2, 1411 INTEL_PIPE_CRC_SOURCE_PLANE3, 1412 INTEL_PIPE_CRC_SOURCE_PLANE4, 1413 INTEL_PIPE_CRC_SOURCE_PLANE5, 1414 INTEL_PIPE_CRC_SOURCE_PLANE6, 1415 INTEL_PIPE_CRC_SOURCE_PLANE7, 1416 INTEL_PIPE_CRC_SOURCE_PIPE, 1417 /* TV/DP on pre-gen5/vlv can't use the pipe source. */ 1418 INTEL_PIPE_CRC_SOURCE_TV, 1419 INTEL_PIPE_CRC_SOURCE_DP_B, 1420 INTEL_PIPE_CRC_SOURCE_DP_C, 1421 INTEL_PIPE_CRC_SOURCE_DP_D, 1422 INTEL_PIPE_CRC_SOURCE_AUTO, 1423 INTEL_PIPE_CRC_SOURCE_MAX, 1424 }; 1425 1426 enum drrs_refresh_rate { 1427 DRRS_REFRESH_RATE_HIGH, 1428 DRRS_REFRESH_RATE_LOW, 1429 }; 1430 1431 #define INTEL_PIPE_CRC_ENTRIES_NR 128 1432 struct intel_pipe_crc { 1433 spinlock_t lock; 1434 int skipped; 1435 enum intel_pipe_crc_source source; 1436 }; 1437 1438 struct intel_crtc { 1439 struct drm_crtc base; 1440 enum pipe pipe; 1441 /* 1442 * Whether the crtc and the connected output pipeline is active. Implies 1443 * that crtc->enabled is set, i.e. the current mode configuration has 1444 * some outputs connected to this crtc. 1445 */ 1446 bool active; 1447 u8 plane_ids_mask; 1448 1449 /* I915_MODE_FLAG_* */ 1450 u8 mode_flags; 1451 1452 u16 vmax_vblank_start; 1453 1454 struct intel_display_power_domain_set enabled_power_domains; 1455 struct intel_display_power_domain_set hw_readout_power_domains; 1456 struct intel_overlay *overlay; 1457 1458 struct intel_crtc_state *config; 1459 1460 /* Access to these should be protected by dev_priv->irq_lock. */ 1461 bool cpu_fifo_underrun_disabled; 1462 bool pch_fifo_underrun_disabled; 1463 1464 /* per-pipe watermark state */ 1465 struct { 1466 /* watermarks currently being used */ 1467 union { 1468 struct intel_pipe_wm ilk; 1469 struct vlv_wm_state vlv; 1470 struct g4x_wm_state g4x; 1471 } active; 1472 } wm; 1473 1474 struct { 1475 struct rwlock mutex; 1476 struct delayed_work work; 1477 enum drrs_refresh_rate refresh_rate; 1478 unsigned int frontbuffer_bits; 1479 unsigned int busy_frontbuffer_bits; 1480 enum transcoder cpu_transcoder; 1481 struct intel_link_m_n m_n, m2_n2; 1482 } drrs; 1483 1484 int scanline_offset; 1485 1486 struct { 1487 unsigned start_vbl_count; 1488 ktime_t start_vbl_time; 1489 int min_vbl, max_vbl; 1490 int scanline_start; 1491 #ifdef CONFIG_DRM_I915_DEBUG_VBLANK_EVADE 1492 struct { 1493 u64 min; 1494 u64 max; 1495 u64 sum; 1496 unsigned int over; 1497 unsigned int times[17]; /* [1us, 16ms] */ 1498 } vbl; 1499 #endif 1500 } debug; 1501 1502 /* scalers available on this crtc */ 1503 int num_scalers; 1504 1505 /* for loading single buffered registers during vblank */ 1506 struct pm_qos_request vblank_pm_qos; 1507 1508 #ifdef CONFIG_DEBUG_FS 1509 struct intel_pipe_crc pipe_crc; 1510 #endif 1511 }; 1512 1513 struct intel_plane { 1514 struct drm_plane base; 1515 enum i9xx_plane_id i9xx_plane; 1516 enum plane_id id; 1517 enum pipe pipe; 1518 bool need_async_flip_disable_wa; 1519 u32 frontbuffer_bit; 1520 1521 struct { 1522 u32 base, cntl, size; 1523 } cursor; 1524 1525 struct intel_fbc *fbc; 1526 1527 /* 1528 * NOTE: Do not place new plane state fields here (e.g., when adding 1529 * new plane properties). New runtime state should now be placed in 1530 * the intel_plane_state structure and accessed via plane_state. 1531 */ 1532 1533 int (*min_width)(const struct drm_framebuffer *fb, 1534 int color_plane, 1535 unsigned int rotation); 1536 int (*max_width)(const struct drm_framebuffer *fb, 1537 int color_plane, 1538 unsigned int rotation); 1539 int (*max_height)(const struct drm_framebuffer *fb, 1540 int color_plane, 1541 unsigned int rotation); 1542 unsigned int (*max_stride)(struct intel_plane *plane, 1543 u32 pixel_format, u64 modifier, 1544 unsigned int rotation); 1545 /* Write all non-self arming plane registers */ 1546 void (*update_noarm)(struct intel_plane *plane, 1547 const struct intel_crtc_state *crtc_state, 1548 const struct intel_plane_state *plane_state); 1549 /* Write all self-arming plane registers */ 1550 void (*update_arm)(struct intel_plane *plane, 1551 const struct intel_crtc_state *crtc_state, 1552 const struct intel_plane_state *plane_state); 1553 /* Disable the plane, must arm */ 1554 void (*disable_arm)(struct intel_plane *plane, 1555 const struct intel_crtc_state *crtc_state); 1556 bool (*get_hw_state)(struct intel_plane *plane, enum pipe *pipe); 1557 int (*check_plane)(struct intel_crtc_state *crtc_state, 1558 struct intel_plane_state *plane_state); 1559 int (*min_cdclk)(const struct intel_crtc_state *crtc_state, 1560 const struct intel_plane_state *plane_state); 1561 void (*async_flip)(struct intel_plane *plane, 1562 const struct intel_crtc_state *crtc_state, 1563 const struct intel_plane_state *plane_state, 1564 bool async_flip); 1565 void (*enable_flip_done)(struct intel_plane *plane); 1566 void (*disable_flip_done)(struct intel_plane *plane); 1567 }; 1568 1569 struct intel_watermark_params { 1570 u16 fifo_size; 1571 u16 max_wm; 1572 u8 default_wm; 1573 u8 guard_size; 1574 u8 cacheline_size; 1575 }; 1576 1577 #define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base) 1578 #define to_intel_crtc(x) container_of(x, struct intel_crtc, base) 1579 #define to_intel_crtc_state(x) container_of(x, struct intel_crtc_state, uapi) 1580 #define to_intel_connector(x) container_of(x, struct intel_connector, base) 1581 #define to_intel_encoder(x) container_of(x, struct intel_encoder, base) 1582 #define to_intel_framebuffer(x) container_of(x, struct intel_framebuffer, base) 1583 #define to_intel_plane(x) container_of(x, struct intel_plane, base) 1584 #define to_intel_plane_state(x) container_of(x, struct intel_plane_state, uapi) 1585 #define intel_fb_obj(x) ((x) ? to_intel_bo((x)->obj[0]) : NULL) 1586 1587 struct intel_hdmi { 1588 i915_reg_t hdmi_reg; 1589 int ddc_bus; 1590 struct { 1591 enum drm_dp_dual_mode_type type; 1592 int max_tmds_clock; 1593 } dp_dual_mode; 1594 struct intel_connector *attached_connector; 1595 struct cec_notifier *cec_notifier; 1596 }; 1597 1598 struct intel_dp_mst_encoder; 1599 1600 struct intel_dp_compliance_data { 1601 unsigned long edid; 1602 u8 video_pattern; 1603 u16 hdisplay, vdisplay; 1604 u8 bpc; 1605 struct drm_dp_phy_test_params phytest; 1606 }; 1607 1608 struct intel_dp_compliance { 1609 unsigned long test_type; 1610 struct intel_dp_compliance_data test_data; 1611 bool test_active; 1612 int test_link_rate; 1613 u8 test_lane_count; 1614 }; 1615 1616 struct intel_dp_pcon_frl { 1617 bool is_trained; 1618 int trained_rate_gbps; 1619 }; 1620 1621 struct intel_pps { 1622 int panel_power_up_delay; 1623 int panel_power_down_delay; 1624 int panel_power_cycle_delay; 1625 int backlight_on_delay; 1626 int backlight_off_delay; 1627 struct delayed_work panel_vdd_work; 1628 bool want_panel_vdd; 1629 bool initializing; 1630 unsigned long last_power_on; 1631 unsigned long last_backlight_off; 1632 ktime_t panel_power_off_time; 1633 intel_wakeref_t vdd_wakeref; 1634 1635 union { 1636 /* 1637 * Pipe whose power sequencer is currently locked into 1638 * this port. Only relevant on VLV/CHV. 1639 */ 1640 enum pipe pps_pipe; 1641 1642 /* 1643 * Power sequencer index. Only relevant on BXT+. 1644 */ 1645 int pps_idx; 1646 }; 1647 1648 /* 1649 * Pipe currently driving the port. Used for preventing 1650 * the use of the PPS for any pipe currentrly driving 1651 * external DP as that will mess things up on VLV. 1652 */ 1653 enum pipe active_pipe; 1654 /* 1655 * Set if the sequencer may be reset due to a power transition, 1656 * requiring a reinitialization. Only relevant on BXT+. 1657 */ 1658 bool pps_reset; 1659 struct edp_power_seq pps_delays; 1660 struct edp_power_seq bios_pps_delays; 1661 }; 1662 1663 struct intel_psr { 1664 /* Mutex for PSR state of the transcoder */ 1665 struct rwlock lock; 1666 1667 #define I915_PSR_DEBUG_MODE_MASK 0x0f 1668 #define I915_PSR_DEBUG_DEFAULT 0x00 1669 #define I915_PSR_DEBUG_DISABLE 0x01 1670 #define I915_PSR_DEBUG_ENABLE 0x02 1671 #define I915_PSR_DEBUG_FORCE_PSR1 0x03 1672 #define I915_PSR_DEBUG_ENABLE_SEL_FETCH 0x4 1673 #define I915_PSR_DEBUG_IRQ 0x10 1674 1675 u32 debug; 1676 bool sink_support; 1677 bool source_support; 1678 bool enabled; 1679 bool paused; 1680 enum pipe pipe; 1681 enum transcoder transcoder; 1682 bool active; 1683 struct work_struct work; 1684 unsigned int busy_frontbuffer_bits; 1685 bool sink_psr2_support; 1686 bool link_standby; 1687 bool colorimetry_support; 1688 bool psr2_enabled; 1689 bool psr2_sel_fetch_enabled; 1690 bool psr2_sel_fetch_cff_enabled; 1691 bool req_psr2_sdp_prior_scanline; 1692 u8 sink_sync_latency; 1693 u8 io_wake_lines; 1694 u8 fast_wake_lines; 1695 ktime_t last_entry_attempt; 1696 ktime_t last_exit; 1697 bool sink_not_reliable; 1698 bool irq_aux_error; 1699 u16 su_w_granularity; 1700 u16 su_y_granularity; 1701 u32 dc3co_exitline; 1702 u32 dc3co_exit_delay; 1703 struct delayed_work dc3co_work; 1704 }; 1705 1706 struct intel_dp { 1707 i915_reg_t output_reg; 1708 u32 DP; 1709 int link_rate; 1710 u8 lane_count; 1711 u8 sink_count; 1712 bool link_trained; 1713 bool reset_link_params; 1714 bool use_max_params; 1715 u8 dpcd[DP_RECEIVER_CAP_SIZE]; 1716 u8 psr_dpcd[EDP_PSR_RECEIVER_CAP_SIZE]; 1717 u8 downstream_ports[DP_MAX_DOWNSTREAM_PORTS]; 1718 u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE]; 1719 u8 dsc_dpcd[DP_DSC_RECEIVER_CAP_SIZE]; 1720 u8 lttpr_common_caps[DP_LTTPR_COMMON_CAP_SIZE]; 1721 u8 lttpr_phy_caps[DP_MAX_LTTPR_COUNT][DP_LTTPR_PHY_CAP_SIZE]; 1722 u8 fec_capable; 1723 u8 pcon_dsc_dpcd[DP_PCON_DSC_ENCODER_CAP_SIZE]; 1724 /* source rates */ 1725 int num_source_rates; 1726 const int *source_rates; 1727 /* sink rates as reported by DP_MAX_LINK_RATE/DP_SUPPORTED_LINK_RATES */ 1728 int num_sink_rates; 1729 int sink_rates[DP_MAX_SUPPORTED_RATES]; 1730 bool use_rate_select; 1731 /* Max sink lane count as reported by DP_MAX_LANE_COUNT */ 1732 int max_sink_lane_count; 1733 /* intersection of source and sink rates */ 1734 int num_common_rates; 1735 int common_rates[DP_MAX_SUPPORTED_RATES]; 1736 /* Max lane count for the current link */ 1737 int max_link_lane_count; 1738 /* Max rate for the current link */ 1739 int max_link_rate; 1740 int mso_link_count; 1741 int mso_pixel_overlap; 1742 /* sink or branch descriptor */ 1743 struct drm_dp_desc desc; 1744 struct drm_dp_aux aux; 1745 u32 aux_busy_last_status; 1746 u8 train_set[4]; 1747 1748 struct intel_pps pps; 1749 1750 bool is_mst; 1751 int active_mst_links; 1752 1753 /* connector directly attached - won't be use for modeset in mst world */ 1754 struct intel_connector *attached_connector; 1755 1756 /* mst connector list */ 1757 struct intel_dp_mst_encoder *mst_encoders[I915_MAX_PIPES]; 1758 struct drm_dp_mst_topology_mgr mst_mgr; 1759 1760 u32 (*get_aux_clock_divider)(struct intel_dp *dp, int index); 1761 /* 1762 * This function returns the value we have to program the AUX_CTL 1763 * register with to kick off an AUX transaction. 1764 */ 1765 u32 (*get_aux_send_ctl)(struct intel_dp *dp, int send_bytes, 1766 u32 aux_clock_divider); 1767 1768 i915_reg_t (*aux_ch_ctl_reg)(struct intel_dp *dp); 1769 i915_reg_t (*aux_ch_data_reg)(struct intel_dp *dp, int index); 1770 1771 /* This is called before a link training is starterd */ 1772 void (*prepare_link_retrain)(struct intel_dp *intel_dp, 1773 const struct intel_crtc_state *crtc_state); 1774 void (*set_link_train)(struct intel_dp *intel_dp, 1775 const struct intel_crtc_state *crtc_state, 1776 u8 dp_train_pat); 1777 void (*set_idle_link_train)(struct intel_dp *intel_dp, 1778 const struct intel_crtc_state *crtc_state); 1779 1780 u8 (*preemph_max)(struct intel_dp *intel_dp); 1781 u8 (*voltage_max)(struct intel_dp *intel_dp, 1782 const struct intel_crtc_state *crtc_state); 1783 1784 /* Displayport compliance testing */ 1785 struct intel_dp_compliance compliance; 1786 1787 /* Downstream facing port caps */ 1788 struct { 1789 int min_tmds_clock, max_tmds_clock; 1790 int max_dotclock; 1791 int pcon_max_frl_bw; 1792 u8 max_bpc; 1793 bool ycbcr_444_to_420; 1794 bool ycbcr420_passthrough; 1795 bool rgb_to_ycbcr; 1796 } dfp; 1797 1798 /* To control wakeup latency, e.g. for irq-driven dp aux transfers. */ 1799 struct pm_qos_request pm_qos; 1800 1801 /* Display stream compression testing */ 1802 bool force_dsc_en; 1803 int force_dsc_output_format; 1804 int force_dsc_bpc; 1805 1806 bool hobl_failed; 1807 bool hobl_active; 1808 1809 struct intel_dp_pcon_frl frl; 1810 1811 struct intel_psr psr; 1812 1813 /* When we last wrote the OUI for eDP */ 1814 unsigned long last_oui_write; 1815 }; 1816 1817 enum lspcon_vendor { 1818 LSPCON_VENDOR_MCA, 1819 LSPCON_VENDOR_PARADE 1820 }; 1821 1822 struct intel_lspcon { 1823 bool active; 1824 bool hdr_supported; 1825 enum drm_lspcon_mode mode; 1826 enum lspcon_vendor vendor; 1827 }; 1828 1829 struct intel_digital_port { 1830 struct intel_encoder base; 1831 u32 saved_port_bits; 1832 struct intel_dp dp; 1833 struct intel_hdmi hdmi; 1834 struct intel_lspcon lspcon; 1835 enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool); 1836 bool release_cl2_override; 1837 u8 max_lanes; 1838 /* Used for DP and ICL+ TypeC/DP and TypeC/HDMI ports. */ 1839 enum aux_ch aux_ch; 1840 enum intel_display_power_domain ddi_io_power_domain; 1841 intel_wakeref_t ddi_io_wakeref; 1842 intel_wakeref_t aux_wakeref; 1843 1844 struct intel_tc_port *tc; 1845 1846 /* protects num_hdcp_streams reference count, hdcp_port_data and hdcp_auth_status */ 1847 struct rwlock hdcp_mutex; 1848 /* the number of pipes using HDCP signalling out of this port */ 1849 unsigned int num_hdcp_streams; 1850 /* port HDCP auth status */ 1851 bool hdcp_auth_status; 1852 /* HDCP port data need to pass to security f/w */ 1853 struct hdcp_port_data hdcp_port_data; 1854 /* Whether the MST topology supports HDCP Type 1 Content */ 1855 bool hdcp_mst_type1_capable; 1856 1857 void (*write_infoframe)(struct intel_encoder *encoder, 1858 const struct intel_crtc_state *crtc_state, 1859 unsigned int type, 1860 const void *frame, ssize_t len); 1861 void (*read_infoframe)(struct intel_encoder *encoder, 1862 const struct intel_crtc_state *crtc_state, 1863 unsigned int type, 1864 void *frame, ssize_t len); 1865 void (*set_infoframes)(struct intel_encoder *encoder, 1866 bool enable, 1867 const struct intel_crtc_state *crtc_state, 1868 const struct drm_connector_state *conn_state); 1869 u32 (*infoframes_enabled)(struct intel_encoder *encoder, 1870 const struct intel_crtc_state *pipe_config); 1871 bool (*connected)(struct intel_encoder *encoder); 1872 }; 1873 1874 struct intel_dp_mst_encoder { 1875 struct intel_encoder base; 1876 enum pipe pipe; 1877 struct intel_digital_port *primary; 1878 struct intel_connector *connector; 1879 }; 1880 1881 static inline struct intel_encoder * 1882 intel_attached_encoder(struct intel_connector *connector) 1883 { 1884 return connector->encoder; 1885 } 1886 1887 static inline bool intel_encoder_is_dig_port(struct intel_encoder *encoder) 1888 { 1889 switch (encoder->type) { 1890 case INTEL_OUTPUT_DDI: 1891 case INTEL_OUTPUT_DP: 1892 case INTEL_OUTPUT_EDP: 1893 case INTEL_OUTPUT_HDMI: 1894 return true; 1895 default: 1896 return false; 1897 } 1898 } 1899 1900 static inline bool intel_encoder_is_mst(struct intel_encoder *encoder) 1901 { 1902 return encoder->type == INTEL_OUTPUT_DP_MST; 1903 } 1904 1905 static inline struct intel_dp_mst_encoder * 1906 enc_to_mst(struct intel_encoder *encoder) 1907 { 1908 return container_of(&encoder->base, struct intel_dp_mst_encoder, 1909 base.base); 1910 } 1911 1912 static inline struct intel_digital_port * 1913 enc_to_dig_port(struct intel_encoder *encoder) 1914 { 1915 struct intel_encoder *intel_encoder = encoder; 1916 1917 if (intel_encoder_is_dig_port(intel_encoder)) 1918 return container_of(&encoder->base, struct intel_digital_port, 1919 base.base); 1920 else if (intel_encoder_is_mst(intel_encoder)) 1921 return enc_to_mst(encoder)->primary; 1922 else 1923 return NULL; 1924 } 1925 1926 static inline struct intel_digital_port * 1927 intel_attached_dig_port(struct intel_connector *connector) 1928 { 1929 return enc_to_dig_port(intel_attached_encoder(connector)); 1930 } 1931 1932 static inline struct intel_hdmi * 1933 enc_to_intel_hdmi(struct intel_encoder *encoder) 1934 { 1935 return &enc_to_dig_port(encoder)->hdmi; 1936 } 1937 1938 static inline struct intel_hdmi * 1939 intel_attached_hdmi(struct intel_connector *connector) 1940 { 1941 return enc_to_intel_hdmi(intel_attached_encoder(connector)); 1942 } 1943 1944 static inline struct intel_dp *enc_to_intel_dp(struct intel_encoder *encoder) 1945 { 1946 return &enc_to_dig_port(encoder)->dp; 1947 } 1948 1949 static inline struct intel_dp *intel_attached_dp(struct intel_connector *connector) 1950 { 1951 return enc_to_intel_dp(intel_attached_encoder(connector)); 1952 } 1953 1954 static inline bool intel_encoder_is_dp(struct intel_encoder *encoder) 1955 { 1956 switch (encoder->type) { 1957 case INTEL_OUTPUT_DP: 1958 case INTEL_OUTPUT_EDP: 1959 return true; 1960 case INTEL_OUTPUT_DDI: 1961 /* Skip pure HDMI/DVI DDI encoders */ 1962 return i915_mmio_reg_valid(enc_to_intel_dp(encoder)->output_reg); 1963 default: 1964 return false; 1965 } 1966 } 1967 1968 static inline struct intel_lspcon * 1969 enc_to_intel_lspcon(struct intel_encoder *encoder) 1970 { 1971 return &enc_to_dig_port(encoder)->lspcon; 1972 } 1973 1974 static inline struct intel_digital_port * 1975 dp_to_dig_port(struct intel_dp *intel_dp) 1976 { 1977 return container_of(intel_dp, struct intel_digital_port, dp); 1978 } 1979 1980 static inline struct intel_lspcon * 1981 dp_to_lspcon(struct intel_dp *intel_dp) 1982 { 1983 return &dp_to_dig_port(intel_dp)->lspcon; 1984 } 1985 1986 #define dp_to_i915(__intel_dp) to_i915(dp_to_dig_port(__intel_dp)->base.base.dev) 1987 1988 #define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \ 1989 (intel_dp)->psr.source_support) 1990 1991 static inline bool intel_encoder_can_psr(struct intel_encoder *encoder) 1992 { 1993 if (!intel_encoder_is_dp(encoder)) 1994 return false; 1995 1996 return CAN_PSR(enc_to_intel_dp(encoder)); 1997 } 1998 1999 static inline struct intel_digital_port * 2000 hdmi_to_dig_port(struct intel_hdmi *intel_hdmi) 2001 { 2002 return container_of(intel_hdmi, struct intel_digital_port, hdmi); 2003 } 2004 2005 static inline struct intel_plane_state * 2006 intel_atomic_get_plane_state(struct intel_atomic_state *state, 2007 struct intel_plane *plane) 2008 { 2009 struct drm_plane_state *ret = 2010 drm_atomic_get_plane_state(&state->base, &plane->base); 2011 2012 if (IS_ERR(ret)) 2013 return ERR_CAST(ret); 2014 2015 return to_intel_plane_state(ret); 2016 } 2017 2018 static inline struct intel_plane_state * 2019 intel_atomic_get_old_plane_state(struct intel_atomic_state *state, 2020 struct intel_plane *plane) 2021 { 2022 return to_intel_plane_state(drm_atomic_get_old_plane_state(&state->base, 2023 &plane->base)); 2024 } 2025 2026 static inline struct intel_plane_state * 2027 intel_atomic_get_new_plane_state(struct intel_atomic_state *state, 2028 struct intel_plane *plane) 2029 { 2030 return to_intel_plane_state(drm_atomic_get_new_plane_state(&state->base, 2031 &plane->base)); 2032 } 2033 2034 static inline struct intel_crtc_state * 2035 intel_atomic_get_old_crtc_state(struct intel_atomic_state *state, 2036 struct intel_crtc *crtc) 2037 { 2038 return to_intel_crtc_state(drm_atomic_get_old_crtc_state(&state->base, 2039 &crtc->base)); 2040 } 2041 2042 static inline struct intel_crtc_state * 2043 intel_atomic_get_new_crtc_state(struct intel_atomic_state *state, 2044 struct intel_crtc *crtc) 2045 { 2046 return to_intel_crtc_state(drm_atomic_get_new_crtc_state(&state->base, 2047 &crtc->base)); 2048 } 2049 2050 static inline struct intel_digital_connector_state * 2051 intel_atomic_get_new_connector_state(struct intel_atomic_state *state, 2052 struct intel_connector *connector) 2053 { 2054 return to_intel_digital_connector_state( 2055 drm_atomic_get_new_connector_state(&state->base, 2056 &connector->base)); 2057 } 2058 2059 static inline struct intel_digital_connector_state * 2060 intel_atomic_get_old_connector_state(struct intel_atomic_state *state, 2061 struct intel_connector *connector) 2062 { 2063 return to_intel_digital_connector_state( 2064 drm_atomic_get_old_connector_state(&state->base, 2065 &connector->base)); 2066 } 2067 2068 /* intel_display.c */ 2069 static inline bool 2070 intel_crtc_has_type(const struct intel_crtc_state *crtc_state, 2071 enum intel_output_type type) 2072 { 2073 return crtc_state->output_types & BIT(type); 2074 } 2075 2076 static inline bool 2077 intel_crtc_has_dp_encoder(const struct intel_crtc_state *crtc_state) 2078 { 2079 return crtc_state->output_types & 2080 (BIT(INTEL_OUTPUT_DP) | 2081 BIT(INTEL_OUTPUT_DP_MST) | 2082 BIT(INTEL_OUTPUT_EDP)); 2083 } 2084 2085 static inline bool 2086 intel_crtc_needs_modeset(const struct intel_crtc_state *crtc_state) 2087 { 2088 return drm_atomic_crtc_needs_modeset(&crtc_state->uapi); 2089 } 2090 2091 static inline bool 2092 intel_crtc_needs_fastset(const struct intel_crtc_state *crtc_state) 2093 { 2094 return crtc_state->update_pipe; 2095 } 2096 2097 static inline bool 2098 intel_crtc_needs_color_update(const struct intel_crtc_state *crtc_state) 2099 { 2100 return crtc_state->uapi.color_mgmt_changed || 2101 intel_crtc_needs_fastset(crtc_state) || 2102 intel_crtc_needs_modeset(crtc_state); 2103 } 2104 2105 static inline u32 intel_plane_ggtt_offset(const struct intel_plane_state *plane_state) 2106 { 2107 return i915_ggtt_offset(plane_state->ggtt_vma); 2108 } 2109 2110 static inline struct intel_frontbuffer * 2111 to_intel_frontbuffer(struct drm_framebuffer *fb) 2112 { 2113 return fb ? to_intel_framebuffer(fb)->frontbuffer : NULL; 2114 } 2115 2116 #endif /* __INTEL_DISPLAY_TYPES_H__ */ 2117