1 /* 2 * Copyright (c) 2016 Intel Corporation 3 * 4 * Permission to use, copy, modify, distribute, and sell this software and its 5 * documentation for any purpose is hereby granted without fee, provided that 6 * the above copyright notice appear in all copies and that both that copyright 7 * notice and this permission notice appear in supporting documentation, and 8 * that the name of the copyright holders not be used in advertising or 9 * publicity pertaining to distribution of the software without specific, 10 * written prior permission. The copyright holders make no representations 11 * about the suitability of this software for any purpose. It is provided "as 12 * is" without express or implied warranty. 13 * 14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 20 * OF THIS SOFTWARE. 21 */ 22 23 #ifndef __DRM_CONNECTOR_H__ 24 #define __DRM_CONNECTOR_H__ 25 26 #include <linux/list.h> 27 #include <linux/llist.h> 28 #include <linux/ctype.h> 29 #include <linux/hdmi.h> 30 #include <linux/notifier.h> 31 #include <drm/drm_mode_object.h> 32 #include <drm/drm_util.h> 33 34 #include <uapi/drm/drm_mode.h> 35 36 struct drm_connector_helper_funcs; 37 struct drm_modeset_acquire_ctx; 38 struct drm_device; 39 struct drm_crtc; 40 struct drm_encoder; 41 struct drm_panel; 42 struct drm_property; 43 struct drm_property_blob; 44 struct drm_printer; 45 struct drm_privacy_screen; 46 struct edid; 47 struct i2c_adapter; 48 49 enum drm_connector_force { 50 DRM_FORCE_UNSPECIFIED, 51 DRM_FORCE_OFF, 52 DRM_FORCE_ON, /* force on analog part normally */ 53 DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */ 54 }; 55 56 /** 57 * enum drm_connector_status - status for a &drm_connector 58 * 59 * This enum is used to track the connector status. There are no separate 60 * #defines for the uapi! 61 */ 62 enum drm_connector_status { 63 /** 64 * @connector_status_connected: The connector is definitely connected to 65 * a sink device, and can be enabled. 66 */ 67 connector_status_connected = 1, 68 /** 69 * @connector_status_disconnected: The connector isn't connected to a 70 * sink device which can be autodetect. For digital outputs like DP or 71 * HDMI (which can be realiable probed) this means there's really 72 * nothing there. It is driver-dependent whether a connector with this 73 * status can be lit up or not. 74 */ 75 connector_status_disconnected = 2, 76 /** 77 * @connector_status_unknown: The connector's status could not be 78 * reliably detected. This happens when probing would either cause 79 * flicker (like load-detection when the connector is in use), or when a 80 * hardware resource isn't available (like when load-detection needs a 81 * free CRTC). It should be possible to light up the connector with one 82 * of the listed fallback modes. For default configuration userspace 83 * should only try to light up connectors with unknown status when 84 * there's not connector with @connector_status_connected. 85 */ 86 connector_status_unknown = 3, 87 }; 88 89 /** 90 * enum drm_connector_registration_state - userspace registration status for 91 * a &drm_connector 92 * 93 * This enum is used to track the status of initializing a connector and 94 * registering it with userspace, so that DRM can prevent bogus modesets on 95 * connectors that no longer exist. 96 */ 97 enum drm_connector_registration_state { 98 /** 99 * @DRM_CONNECTOR_INITIALIZING: The connector has just been created, 100 * but has yet to be exposed to userspace. There should be no 101 * additional restrictions to how the state of this connector may be 102 * modified. 103 */ 104 DRM_CONNECTOR_INITIALIZING = 0, 105 106 /** 107 * @DRM_CONNECTOR_REGISTERED: The connector has been fully initialized 108 * and registered with sysfs, as such it has been exposed to 109 * userspace. There should be no additional restrictions to how the 110 * state of this connector may be modified. 111 */ 112 DRM_CONNECTOR_REGISTERED = 1, 113 114 /** 115 * @DRM_CONNECTOR_UNREGISTERED: The connector has either been exposed 116 * to userspace and has since been unregistered and removed from 117 * userspace, or the connector was unregistered before it had a chance 118 * to be exposed to userspace (e.g. still in the 119 * @DRM_CONNECTOR_INITIALIZING state). When a connector is 120 * unregistered, there are additional restrictions to how its state 121 * may be modified: 122 * 123 * - An unregistered connector may only have its DPMS changed from 124 * On->Off. Once DPMS is changed to Off, it may not be switched back 125 * to On. 126 * - Modesets are not allowed on unregistered connectors, unless they 127 * would result in disabling its assigned CRTCs. This means 128 * disabling a CRTC on an unregistered connector is OK, but enabling 129 * one is not. 130 * - Removing a CRTC from an unregistered connector is OK, but new 131 * CRTCs may never be assigned to an unregistered connector. 132 */ 133 DRM_CONNECTOR_UNREGISTERED = 2, 134 }; 135 136 enum subpixel_order { 137 SubPixelUnknown = 0, 138 SubPixelHorizontalRGB, 139 SubPixelHorizontalBGR, 140 SubPixelVerticalRGB, 141 SubPixelVerticalBGR, 142 SubPixelNone, 143 144 }; 145 146 /** 147 * enum drm_connector_tv_mode - Analog TV output mode 148 * 149 * This enum is used to indicate the TV output mode used on an analog TV 150 * connector. 151 * 152 * WARNING: The values of this enum is uABI since they're exposed in the 153 * "TV mode" connector property. 154 */ 155 enum drm_connector_tv_mode { 156 /** 157 * @DRM_MODE_TV_MODE_NTSC: CCIR System M (aka 525-lines) 158 * together with the NTSC Color Encoding. 159 */ 160 DRM_MODE_TV_MODE_NTSC, 161 162 /** 163 * @DRM_MODE_TV_MODE_NTSC_443: Variant of 164 * @DRM_MODE_TV_MODE_NTSC. Uses a color subcarrier frequency 165 * of 4.43 MHz. 166 */ 167 DRM_MODE_TV_MODE_NTSC_443, 168 169 /** 170 * @DRM_MODE_TV_MODE_NTSC_J: Variant of @DRM_MODE_TV_MODE_NTSC 171 * used in Japan. Uses a black level equals to the blanking 172 * level. 173 */ 174 DRM_MODE_TV_MODE_NTSC_J, 175 176 /** 177 * @DRM_MODE_TV_MODE_PAL: CCIR System B together with the PAL 178 * color system. 179 */ 180 DRM_MODE_TV_MODE_PAL, 181 182 /** 183 * @DRM_MODE_TV_MODE_PAL_M: CCIR System M (aka 525-lines) 184 * together with the PAL color encoding 185 */ 186 DRM_MODE_TV_MODE_PAL_M, 187 188 /** 189 * @DRM_MODE_TV_MODE_PAL_N: CCIR System N together with the PAL 190 * color encoding. It uses 625 lines, but has a color subcarrier 191 * frequency of 3.58MHz, the SECAM color space, and narrower 192 * channels compared to most of the other PAL variants. 193 */ 194 DRM_MODE_TV_MODE_PAL_N, 195 196 /** 197 * @DRM_MODE_TV_MODE_SECAM: CCIR System B together with the 198 * SECAM color system. 199 */ 200 DRM_MODE_TV_MODE_SECAM, 201 202 DRM_MODE_TV_MODE_MAX, 203 }; 204 205 /** 206 * struct drm_scrambling: sink's scrambling support. 207 */ 208 struct drm_scrambling { 209 /** 210 * @supported: scrambling supported for rates > 340 Mhz. 211 */ 212 bool supported; 213 /** 214 * @low_rates: scrambling supported for rates <= 340 Mhz. 215 */ 216 bool low_rates; 217 }; 218 219 /* 220 * struct drm_scdc - Information about scdc capabilities of a HDMI 2.0 sink 221 * 222 * Provides SCDC register support and capabilities related information on a 223 * HDMI 2.0 sink. In case of a HDMI 1.4 sink, all parameter must be 0. 224 */ 225 struct drm_scdc { 226 /** 227 * @supported: status control & data channel present. 228 */ 229 bool supported; 230 /** 231 * @read_request: sink is capable of generating scdc read request. 232 */ 233 bool read_request; 234 /** 235 * @scrambling: sink's scrambling capabilities 236 */ 237 struct drm_scrambling scrambling; 238 }; 239 240 /** 241 * struct drm_hdmi_dsc_cap - DSC capabilities of HDMI sink 242 * 243 * Describes the DSC support provided by HDMI 2.1 sink. 244 * The information is fetched fom additional HFVSDB blocks defined 245 * for HDMI 2.1. 246 */ 247 struct drm_hdmi_dsc_cap { 248 /** @v_1p2: flag for dsc1.2 version support by sink */ 249 bool v_1p2; 250 251 /** @native_420: Does sink support DSC with 4:2:0 compression */ 252 bool native_420; 253 254 /** 255 * @all_bpp: Does sink support all bpp with 4:4:4: or 4:2:2 256 * compressed formats 257 */ 258 bool all_bpp; 259 260 /** 261 * @bpc_supported: compressed bpc supported by sink : 10, 12 or 16 bpc 262 */ 263 u8 bpc_supported; 264 265 /** @max_slices: maximum number of Horizontal slices supported by */ 266 u8 max_slices; 267 268 /** @clk_per_slice : max pixel clock in MHz supported per slice */ 269 int clk_per_slice; 270 271 /** @max_lanes : dsc max lanes supported for Fixed rate Link training */ 272 u8 max_lanes; 273 274 /** @max_frl_rate_per_lane : maximum frl rate with DSC per lane */ 275 u8 max_frl_rate_per_lane; 276 277 /** @total_chunk_kbytes: max size of chunks in KBs supported per line*/ 278 u8 total_chunk_kbytes; 279 }; 280 281 /** 282 * struct drm_hdmi_info - runtime information about the connected HDMI sink 283 * 284 * Describes if a given display supports advanced HDMI 2.0 features. 285 * This information is available in CEA-861-F extension blocks (like HF-VSDB). 286 */ 287 struct drm_hdmi_info { 288 /** @scdc: sink's scdc support and capabilities */ 289 struct drm_scdc scdc; 290 291 /** 292 * @y420_vdb_modes: bitmap of modes which can support ycbcr420 293 * output only (not normal RGB/YCBCR444/422 outputs). The max VIC 294 * defined by the CEA-861-G spec is 219, so the size is 256 bits to map 295 * up to 256 VICs. 296 */ 297 unsigned long y420_vdb_modes[BITS_TO_LONGS(256)]; 298 299 /** 300 * @y420_cmdb_modes: bitmap of modes which can support ycbcr420 301 * output also, along with normal HDMI outputs. The max VIC defined by 302 * the CEA-861-G spec is 219, so the size is 256 bits to map up to 256 303 * VICs. 304 */ 305 unsigned long y420_cmdb_modes[BITS_TO_LONGS(256)]; 306 307 /** @y420_cmdb_map: bitmap of SVD index, to extraxt vcb modes */ 308 u64 y420_cmdb_map; 309 310 /** @y420_dc_modes: bitmap of deep color support index */ 311 u8 y420_dc_modes; 312 313 /** @max_frl_rate_per_lane: support fixed rate link */ 314 u8 max_frl_rate_per_lane; 315 316 /** @max_lanes: supported by sink */ 317 u8 max_lanes; 318 319 /** @dsc_cap: DSC capabilities of the sink */ 320 struct drm_hdmi_dsc_cap dsc_cap; 321 }; 322 323 /** 324 * enum drm_link_status - connector's link_status property value 325 * 326 * This enum is used as the connector's link status property value. 327 * It is set to the values defined in uapi. 328 * 329 * @DRM_LINK_STATUS_GOOD: DP Link is Good as a result of successful 330 * link training 331 * @DRM_LINK_STATUS_BAD: DP Link is BAD as a result of link training 332 * failure 333 */ 334 enum drm_link_status { 335 DRM_LINK_STATUS_GOOD = DRM_MODE_LINK_STATUS_GOOD, 336 DRM_LINK_STATUS_BAD = DRM_MODE_LINK_STATUS_BAD, 337 }; 338 339 /** 340 * enum drm_panel_orientation - panel_orientation info for &drm_display_info 341 * 342 * This enum is used to track the (LCD) panel orientation. There are no 343 * separate #defines for the uapi! 344 * 345 * @DRM_MODE_PANEL_ORIENTATION_UNKNOWN: The drm driver has not provided any 346 * panel orientation information (normal 347 * for non panels) in this case the "panel 348 * orientation" connector prop will not be 349 * attached. 350 * @DRM_MODE_PANEL_ORIENTATION_NORMAL: The top side of the panel matches the 351 * top side of the device's casing. 352 * @DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP: The top side of the panel matches the 353 * bottom side of the device's casing, iow 354 * the panel is mounted upside-down. 355 * @DRM_MODE_PANEL_ORIENTATION_LEFT_UP: The left side of the panel matches the 356 * top side of the device's casing. 357 * @DRM_MODE_PANEL_ORIENTATION_RIGHT_UP: The right side of the panel matches the 358 * top side of the device's casing. 359 */ 360 enum drm_panel_orientation { 361 DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1, 362 DRM_MODE_PANEL_ORIENTATION_NORMAL = 0, 363 DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, 364 DRM_MODE_PANEL_ORIENTATION_LEFT_UP, 365 DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, 366 }; 367 368 /** 369 * struct drm_monitor_range_info - Panel's Monitor range in EDID for 370 * &drm_display_info 371 * 372 * This struct is used to store a frequency range supported by panel 373 * as parsed from EDID's detailed monitor range descriptor block. 374 * 375 * @min_vfreq: This is the min supported refresh rate in Hz from 376 * EDID's detailed monitor range. 377 * @max_vfreq: This is the max supported refresh rate in Hz from 378 * EDID's detailed monitor range 379 */ 380 struct drm_monitor_range_info { 381 u16 min_vfreq; 382 u16 max_vfreq; 383 }; 384 385 /** 386 * struct drm_luminance_range_info - Panel's luminance range for 387 * &drm_display_info. Calculated using data in EDID 388 * 389 * This struct is used to store a luminance range supported by panel 390 * as calculated using data from EDID's static hdr metadata. 391 * 392 * @min_luminance: This is the min supported luminance value 393 * 394 * @max_luminance: This is the max supported luminance value 395 */ 396 struct drm_luminance_range_info { 397 u32 min_luminance; 398 u32 max_luminance; 399 }; 400 401 /** 402 * enum drm_privacy_screen_status - privacy screen status 403 * 404 * This enum is used to track and control the state of the integrated privacy 405 * screen present on some display panels, via the "privacy-screen sw-state" 406 * and "privacy-screen hw-state" properties. Note the _LOCKED enum values 407 * are only valid for the "privacy-screen hw-state" property. 408 * 409 * @PRIVACY_SCREEN_DISABLED: 410 * The privacy-screen on the panel is disabled 411 * @PRIVACY_SCREEN_ENABLED: 412 * The privacy-screen on the panel is enabled 413 * @PRIVACY_SCREEN_DISABLED_LOCKED: 414 * The privacy-screen on the panel is disabled and locked (cannot be changed) 415 * @PRIVACY_SCREEN_ENABLED_LOCKED: 416 * The privacy-screen on the panel is enabled and locked (cannot be changed) 417 */ 418 enum drm_privacy_screen_status { 419 PRIVACY_SCREEN_DISABLED = 0, 420 PRIVACY_SCREEN_ENABLED, 421 PRIVACY_SCREEN_DISABLED_LOCKED, 422 PRIVACY_SCREEN_ENABLED_LOCKED, 423 }; 424 425 /* 426 * This is a consolidated colorimetry list supported by HDMI and 427 * DP protocol standard. The respective connectors will register 428 * a property with the subset of this list (supported by that 429 * respective protocol). Userspace will set the colorspace through 430 * a colorspace property which will be created and exposed to 431 * userspace. 432 */ 433 434 /* For Default case, driver will set the colorspace */ 435 #define DRM_MODE_COLORIMETRY_DEFAULT 0 436 /* CEA 861 Normal Colorimetry options */ 437 #define DRM_MODE_COLORIMETRY_NO_DATA 0 438 #define DRM_MODE_COLORIMETRY_SMPTE_170M_YCC 1 439 #define DRM_MODE_COLORIMETRY_BT709_YCC 2 440 /* CEA 861 Extended Colorimetry Options */ 441 #define DRM_MODE_COLORIMETRY_XVYCC_601 3 442 #define DRM_MODE_COLORIMETRY_XVYCC_709 4 443 #define DRM_MODE_COLORIMETRY_SYCC_601 5 444 #define DRM_MODE_COLORIMETRY_OPYCC_601 6 445 #define DRM_MODE_COLORIMETRY_OPRGB 7 446 #define DRM_MODE_COLORIMETRY_BT2020_CYCC 8 447 #define DRM_MODE_COLORIMETRY_BT2020_RGB 9 448 #define DRM_MODE_COLORIMETRY_BT2020_YCC 10 449 /* Additional Colorimetry extension added as part of CTA 861.G */ 450 #define DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65 11 451 #define DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER 12 452 /* Additional Colorimetry Options added for DP 1.4a VSC Colorimetry Format */ 453 #define DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED 13 454 #define DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT 14 455 #define DRM_MODE_COLORIMETRY_BT601_YCC 15 456 457 /** 458 * enum drm_bus_flags - bus_flags info for &drm_display_info 459 * 460 * This enum defines signal polarities and clock edge information for signals on 461 * a bus as bitmask flags. 462 * 463 * The clock edge information is conveyed by two sets of symbols, 464 * DRM_BUS_FLAGS_*_DRIVE_\* and DRM_BUS_FLAGS_*_SAMPLE_\*. When this enum is 465 * used to describe a bus from the point of view of the transmitter, the 466 * \*_DRIVE_\* flags should be used. When used from the point of view of the 467 * receiver, the \*_SAMPLE_\* flags should be used. The \*_DRIVE_\* and 468 * \*_SAMPLE_\* flags alias each other, with the \*_SAMPLE_POSEDGE and 469 * \*_SAMPLE_NEGEDGE flags being equal to \*_DRIVE_NEGEDGE and \*_DRIVE_POSEDGE 470 * respectively. This simplifies code as signals are usually sampled on the 471 * opposite edge of the driving edge. Transmitters and receivers may however 472 * need to take other signal timings into account to convert between driving 473 * and sample edges. 474 */ 475 enum drm_bus_flags { 476 /** 477 * @DRM_BUS_FLAG_DE_LOW: 478 * 479 * The Data Enable signal is active low 480 */ 481 DRM_BUS_FLAG_DE_LOW = BIT(0), 482 483 /** 484 * @DRM_BUS_FLAG_DE_HIGH: 485 * 486 * The Data Enable signal is active high 487 */ 488 DRM_BUS_FLAG_DE_HIGH = BIT(1), 489 490 /** 491 * @DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE: 492 * 493 * Data is driven on the rising edge of the pixel clock 494 */ 495 DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE = BIT(2), 496 497 /** 498 * @DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE: 499 * 500 * Data is driven on the falling edge of the pixel clock 501 */ 502 DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE = BIT(3), 503 504 /** 505 * @DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE: 506 * 507 * Data is sampled on the rising edge of the pixel clock 508 */ 509 DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE = DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE, 510 511 /** 512 * @DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE: 513 * 514 * Data is sampled on the falling edge of the pixel clock 515 */ 516 DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE, 517 518 /** 519 * @DRM_BUS_FLAG_DATA_MSB_TO_LSB: 520 * 521 * Data is transmitted MSB to LSB on the bus 522 */ 523 DRM_BUS_FLAG_DATA_MSB_TO_LSB = BIT(4), 524 525 /** 526 * @DRM_BUS_FLAG_DATA_LSB_TO_MSB: 527 * 528 * Data is transmitted LSB to MSB on the bus 529 */ 530 DRM_BUS_FLAG_DATA_LSB_TO_MSB = BIT(5), 531 532 /** 533 * @DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE: 534 * 535 * Sync signals are driven on the rising edge of the pixel clock 536 */ 537 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE = BIT(6), 538 539 /** 540 * @DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE: 541 * 542 * Sync signals are driven on the falling edge of the pixel clock 543 */ 544 DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE = BIT(7), 545 546 /** 547 * @DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE: 548 * 549 * Sync signals are sampled on the rising edge of the pixel clock 550 */ 551 DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE = DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE, 552 553 /** 554 * @DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE: 555 * 556 * Sync signals are sampled on the falling edge of the pixel clock 557 */ 558 DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE = DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE, 559 560 /** 561 * @DRM_BUS_FLAG_SHARP_SIGNALS: 562 * 563 * Set if the Sharp-specific signals (SPL, CLS, PS, REV) must be used 564 */ 565 DRM_BUS_FLAG_SHARP_SIGNALS = BIT(8), 566 }; 567 568 /** 569 * struct drm_display_info - runtime data about the connected sink 570 * 571 * Describes a given display (e.g. CRT or flat panel) and its limitations. For 572 * fixed display sinks like built-in panels there's not much difference between 573 * this and &struct drm_connector. But for sinks with a real cable this 574 * structure is meant to describe all the things at the other end of the cable. 575 * 576 * For sinks which provide an EDID this can be filled out by calling 577 * drm_add_edid_modes(). 578 */ 579 struct drm_display_info { 580 /** 581 * @width_mm: Physical width in mm. 582 */ 583 unsigned int width_mm; 584 585 /** 586 * @height_mm: Physical height in mm. 587 */ 588 unsigned int height_mm; 589 590 /** 591 * @bpc: Maximum bits per color channel. Used by HDMI and DP outputs. 592 */ 593 unsigned int bpc; 594 595 /** 596 * @subpixel_order: Subpixel order of LCD panels. 597 */ 598 enum subpixel_order subpixel_order; 599 600 #define DRM_COLOR_FORMAT_RGB444 (1<<0) 601 #define DRM_COLOR_FORMAT_YCBCR444 (1<<1) 602 #define DRM_COLOR_FORMAT_YCBCR422 (1<<2) 603 #define DRM_COLOR_FORMAT_YCBCR420 (1<<3) 604 605 /** 606 * @panel_orientation: Read only connector property for built-in panels, 607 * indicating the orientation of the panel vs the device's casing. 608 * drm_connector_init() sets this to DRM_MODE_PANEL_ORIENTATION_UNKNOWN. 609 * When not UNKNOWN this gets used by the drm_fb_helpers to rotate the 610 * fb to compensate and gets exported as prop to userspace. 611 */ 612 int panel_orientation; 613 614 /** 615 * @color_formats: HDMI Color formats, selects between RGB and YCrCb 616 * modes. Used DRM_COLOR_FORMAT\_ defines, which are _not_ the same ones 617 * as used to describe the pixel format in framebuffers, and also don't 618 * match the formats in @bus_formats which are shared with v4l. 619 */ 620 u32 color_formats; 621 622 /** 623 * @bus_formats: Pixel data format on the wire, somewhat redundant with 624 * @color_formats. Array of size @num_bus_formats encoded using 625 * MEDIA_BUS_FMT\_ defines shared with v4l and media drivers. 626 */ 627 const u32 *bus_formats; 628 /** 629 * @num_bus_formats: Size of @bus_formats array. 630 */ 631 unsigned int num_bus_formats; 632 633 /** 634 * @bus_flags: Additional information (like pixel signal polarity) for 635 * the pixel data on the bus, using &enum drm_bus_flags values 636 * DRM_BUS_FLAGS\_. 637 */ 638 u32 bus_flags; 639 640 /** 641 * @max_tmds_clock: Maximum TMDS clock rate supported by the 642 * sink in kHz. 0 means undefined. 643 */ 644 int max_tmds_clock; 645 646 /** 647 * @dvi_dual: Dual-link DVI sink? 648 */ 649 bool dvi_dual; 650 651 /** 652 * @is_hdmi: True if the sink is an HDMI device. 653 * 654 * This field shall be used instead of calling 655 * drm_detect_hdmi_monitor() when possible. 656 */ 657 bool is_hdmi; 658 659 /** 660 * @has_hdmi_infoframe: Does the sink support the HDMI infoframe? 661 */ 662 bool has_hdmi_infoframe; 663 664 /** 665 * @rgb_quant_range_selectable: Does the sink support selecting 666 * the RGB quantization range? 667 */ 668 bool rgb_quant_range_selectable; 669 670 /** 671 * @edid_hdmi_rgb444_dc_modes: Mask of supported hdmi deep color modes 672 * in RGB 4:4:4. Even more stuff redundant with @bus_formats. 673 */ 674 u8 edid_hdmi_rgb444_dc_modes; 675 676 /** 677 * @edid_hdmi_ycbcr444_dc_modes: Mask of supported hdmi deep color 678 * modes in YCbCr 4:4:4. Even more stuff redundant with @bus_formats. 679 */ 680 u8 edid_hdmi_ycbcr444_dc_modes; 681 682 /** 683 * @cea_rev: CEA revision of the HDMI sink. 684 */ 685 u8 cea_rev; 686 687 /** 688 * @hdmi: advance features of a HDMI sink. 689 */ 690 struct drm_hdmi_info hdmi; 691 692 /** 693 * @non_desktop: Non desktop display (HMD). 694 */ 695 bool non_desktop; 696 697 /** 698 * @monitor_range: Frequency range supported by monitor range descriptor 699 */ 700 struct drm_monitor_range_info monitor_range; 701 702 /** 703 * @luminance_range: Luminance range supported by panel 704 */ 705 struct drm_luminance_range_info luminance_range; 706 707 /** 708 * @mso_stream_count: eDP Multi-SST Operation (MSO) stream count from 709 * the DisplayID VESA vendor block. 0 for conventional Single-Stream 710 * Transport (SST), or 2 or 4 MSO streams. 711 */ 712 u8 mso_stream_count; 713 714 /** 715 * @mso_pixel_overlap: eDP MSO segment pixel overlap, 0-8 pixels. 716 */ 717 u8 mso_pixel_overlap; 718 719 /** 720 * @max_dsc_bpp: Maximum DSC target bitrate, if it is set to 0 the 721 * monitor's default value is used instead. 722 */ 723 u32 max_dsc_bpp; 724 }; 725 726 int drm_display_info_set_bus_formats(struct drm_display_info *info, 727 const u32 *formats, 728 unsigned int num_formats); 729 730 /** 731 * struct drm_connector_tv_margins - TV connector related margins 732 * 733 * Describes the margins in pixels to put around the image on TV 734 * connectors to deal with overscan. 735 */ 736 struct drm_connector_tv_margins { 737 /** 738 * @bottom: Bottom margin in pixels. 739 */ 740 unsigned int bottom; 741 742 /** 743 * @left: Left margin in pixels. 744 */ 745 unsigned int left; 746 747 /** 748 * @right: Right margin in pixels. 749 */ 750 unsigned int right; 751 752 /** 753 * @top: Top margin in pixels. 754 */ 755 unsigned int top; 756 }; 757 758 /** 759 * struct drm_tv_connector_state - TV connector related states 760 * @select_subconnector: selected subconnector 761 * @subconnector: detected subconnector 762 * @margins: TV margins 763 * @legacy_mode: Legacy TV mode, driver specific value 764 * @mode: TV mode 765 * @brightness: brightness in percent 766 * @contrast: contrast in percent 767 * @flicker_reduction: flicker reduction in percent 768 * @overscan: overscan in percent 769 * @saturation: saturation in percent 770 * @hue: hue in percent 771 */ 772 struct drm_tv_connector_state { 773 enum drm_mode_subconnector select_subconnector; 774 enum drm_mode_subconnector subconnector; 775 struct drm_connector_tv_margins margins; 776 unsigned int legacy_mode; 777 unsigned int mode; 778 unsigned int brightness; 779 unsigned int contrast; 780 unsigned int flicker_reduction; 781 unsigned int overscan; 782 unsigned int saturation; 783 unsigned int hue; 784 }; 785 786 /** 787 * struct drm_connector_state - mutable connector state 788 */ 789 struct drm_connector_state { 790 /** @connector: backpointer to the connector */ 791 struct drm_connector *connector; 792 793 /** 794 * @crtc: CRTC to connect connector to, NULL if disabled. 795 * 796 * Do not change this directly, use drm_atomic_set_crtc_for_connector() 797 * instead. 798 */ 799 struct drm_crtc *crtc; 800 801 /** 802 * @best_encoder: 803 * 804 * Used by the atomic helpers to select the encoder, through the 805 * &drm_connector_helper_funcs.atomic_best_encoder or 806 * &drm_connector_helper_funcs.best_encoder callbacks. 807 * 808 * This is also used in the atomic helpers to map encoders to their 809 * current and previous connectors, see 810 * drm_atomic_get_old_connector_for_encoder() and 811 * drm_atomic_get_new_connector_for_encoder(). 812 * 813 * NOTE: Atomic drivers must fill this out (either themselves or through 814 * helpers), for otherwise the GETCONNECTOR and GETENCODER IOCTLs will 815 * not return correct data to userspace. 816 */ 817 struct drm_encoder *best_encoder; 818 819 /** 820 * @link_status: Connector link_status to keep track of whether link is 821 * GOOD or BAD to notify userspace if retraining is necessary. 822 */ 823 enum drm_link_status link_status; 824 825 /** @state: backpointer to global drm_atomic_state */ 826 struct drm_atomic_state *state; 827 828 /** 829 * @commit: Tracks the pending commit to prevent use-after-free conditions. 830 * 831 * Is only set when @crtc is NULL. 832 */ 833 struct drm_crtc_commit *commit; 834 835 /** @tv: TV connector state */ 836 struct drm_tv_connector_state tv; 837 838 /** 839 * @self_refresh_aware: 840 * 841 * This tracks whether a connector is aware of the self refresh state. 842 * It should be set to true for those connector implementations which 843 * understand the self refresh state. This is needed since the crtc 844 * registers the self refresh helpers and it doesn't know if the 845 * connectors downstream have implemented self refresh entry/exit. 846 * 847 * Drivers should set this to true in atomic_check if they know how to 848 * handle self_refresh requests. 849 */ 850 bool self_refresh_aware; 851 852 /** 853 * @picture_aspect_ratio: Connector property to control the 854 * HDMI infoframe aspect ratio setting. 855 * 856 * The %DRM_MODE_PICTURE_ASPECT_\* values much match the 857 * values for &enum hdmi_picture_aspect 858 */ 859 enum hdmi_picture_aspect picture_aspect_ratio; 860 861 /** 862 * @content_type: Connector property to control the 863 * HDMI infoframe content type setting. 864 * The %DRM_MODE_CONTENT_TYPE_\* values much 865 * match the values. 866 */ 867 unsigned int content_type; 868 869 /** 870 * @hdcp_content_type: Connector property to pass the type of 871 * protected content. This is most commonly used for HDCP. 872 */ 873 unsigned int hdcp_content_type; 874 875 /** 876 * @scaling_mode: Connector property to control the 877 * upscaling, mostly used for built-in panels. 878 */ 879 unsigned int scaling_mode; 880 881 /** 882 * @content_protection: Connector property to request content 883 * protection. This is most commonly used for HDCP. 884 */ 885 unsigned int content_protection; 886 887 /** 888 * @colorspace: State variable for Connector property to request 889 * colorspace change on Sink. This is most commonly used to switch 890 * to wider color gamuts like BT2020. 891 */ 892 u32 colorspace; 893 894 /** 895 * @writeback_job: Writeback job for writeback connectors 896 * 897 * Holds the framebuffer and out-fence for a writeback connector. As 898 * the writeback completion may be asynchronous to the normal commit 899 * cycle, the writeback job lifetime is managed separately from the 900 * normal atomic state by this object. 901 * 902 * See also: drm_writeback_queue_job() and 903 * drm_writeback_signal_completion() 904 */ 905 struct drm_writeback_job *writeback_job; 906 907 /** 908 * @max_requested_bpc: Connector property to limit the maximum bit 909 * depth of the pixels. 910 */ 911 u8 max_requested_bpc; 912 913 /** 914 * @max_bpc: Connector max_bpc based on the requested max_bpc property 915 * and the connector bpc limitations obtained from edid. 916 */ 917 u8 max_bpc; 918 919 /** 920 * @privacy_screen_sw_state: See :ref:`Standard Connector 921 * Properties<standard_connector_properties>` 922 */ 923 enum drm_privacy_screen_status privacy_screen_sw_state; 924 925 /** 926 * @hdr_output_metadata: 927 * DRM blob property for HDR output metadata 928 */ 929 struct drm_property_blob *hdr_output_metadata; 930 }; 931 932 /** 933 * struct drm_connector_funcs - control connectors on a given device 934 * 935 * Each CRTC may have one or more connectors attached to it. The functions 936 * below allow the core DRM code to control connectors, enumerate available modes, 937 * etc. 938 */ 939 struct drm_connector_funcs { 940 /** 941 * @dpms: 942 * 943 * Legacy entry point to set the per-connector DPMS state. Legacy DPMS 944 * is exposed as a standard property on the connector, but diverted to 945 * this callback in the drm core. Note that atomic drivers don't 946 * implement the 4 level DPMS support on the connector any more, but 947 * instead only have an on/off "ACTIVE" property on the CRTC object. 948 * 949 * This hook is not used by atomic drivers, remapping of the legacy DPMS 950 * property is entirely handled in the DRM core. 951 * 952 * RETURNS: 953 * 954 * 0 on success or a negative error code on failure. 955 */ 956 int (*dpms)(struct drm_connector *connector, int mode); 957 958 /** 959 * @reset: 960 * 961 * Reset connector hardware and software state to off. This function isn't 962 * called by the core directly, only through drm_mode_config_reset(). 963 * It's not a helper hook only for historical reasons. 964 * 965 * Atomic drivers can use drm_atomic_helper_connector_reset() to reset 966 * atomic state using this hook. 967 */ 968 void (*reset)(struct drm_connector *connector); 969 970 /** 971 * @detect: 972 * 973 * Check to see if anything is attached to the connector. The parameter 974 * force is set to false whilst polling, true when checking the 975 * connector due to a user request. force can be used by the driver to 976 * avoid expensive, destructive operations during automated probing. 977 * 978 * This callback is optional, if not implemented the connector will be 979 * considered as always being attached. 980 * 981 * FIXME: 982 * 983 * Note that this hook is only called by the probe helper. It's not in 984 * the helper library vtable purely for historical reasons. The only DRM 985 * core entry point to probe connector state is @fill_modes. 986 * 987 * Note that the helper library will already hold 988 * &drm_mode_config.connection_mutex. Drivers which need to grab additional 989 * locks to avoid races with concurrent modeset changes need to use 990 * &drm_connector_helper_funcs.detect_ctx instead. 991 * 992 * Also note that this callback can be called no matter the 993 * state the connector is in. Drivers that need the underlying 994 * device to be powered to perform the detection will first need 995 * to make sure it's been properly enabled. 996 * 997 * RETURNS: 998 * 999 * drm_connector_status indicating the connector's status. 1000 */ 1001 enum drm_connector_status (*detect)(struct drm_connector *connector, 1002 bool force); 1003 1004 /** 1005 * @force: 1006 * 1007 * This function is called to update internal encoder state when the 1008 * connector is forced to a certain state by userspace, either through 1009 * the sysfs interfaces or on the kernel cmdline. In that case the 1010 * @detect callback isn't called. 1011 * 1012 * FIXME: 1013 * 1014 * Note that this hook is only called by the probe helper. It's not in 1015 * the helper library vtable purely for historical reasons. The only DRM 1016 * core entry point to probe connector state is @fill_modes. 1017 */ 1018 void (*force)(struct drm_connector *connector); 1019 1020 /** 1021 * @fill_modes: 1022 * 1023 * Entry point for output detection and basic mode validation. The 1024 * driver should reprobe the output if needed (e.g. when hotplug 1025 * handling is unreliable), add all detected modes to &drm_connector.modes 1026 * and filter out any the device can't support in any configuration. It 1027 * also needs to filter out any modes wider or higher than the 1028 * parameters max_width and max_height indicate. 1029 * 1030 * The drivers must also prune any modes no longer valid from 1031 * &drm_connector.modes. Furthermore it must update 1032 * &drm_connector.status and &drm_connector.edid. If no EDID has been 1033 * received for this output connector->edid must be NULL. 1034 * 1035 * Drivers using the probe helpers should use 1036 * drm_helper_probe_single_connector_modes() to implement this 1037 * function. 1038 * 1039 * RETURNS: 1040 * 1041 * The number of modes detected and filled into &drm_connector.modes. 1042 */ 1043 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height); 1044 1045 /** 1046 * @set_property: 1047 * 1048 * This is the legacy entry point to update a property attached to the 1049 * connector. 1050 * 1051 * This callback is optional if the driver does not support any legacy 1052 * driver-private properties. For atomic drivers it is not used because 1053 * property handling is done entirely in the DRM core. 1054 * 1055 * RETURNS: 1056 * 1057 * 0 on success or a negative error code on failure. 1058 */ 1059 int (*set_property)(struct drm_connector *connector, struct drm_property *property, 1060 uint64_t val); 1061 1062 /** 1063 * @late_register: 1064 * 1065 * This optional hook can be used to register additional userspace 1066 * interfaces attached to the connector, light backlight control, i2c, 1067 * DP aux or similar interfaces. It is called late in the driver load 1068 * sequence from drm_connector_register() when registering all the 1069 * core drm connector interfaces. Everything added from this callback 1070 * should be unregistered in the early_unregister callback. 1071 * 1072 * This is called while holding &drm_connector.mutex. 1073 * 1074 * Returns: 1075 * 1076 * 0 on success, or a negative error code on failure. 1077 */ 1078 int (*late_register)(struct drm_connector *connector); 1079 1080 /** 1081 * @early_unregister: 1082 * 1083 * This optional hook should be used to unregister the additional 1084 * userspace interfaces attached to the connector from 1085 * late_register(). It is called from drm_connector_unregister(), 1086 * early in the driver unload sequence to disable userspace access 1087 * before data structures are torndown. 1088 * 1089 * This is called while holding &drm_connector.mutex. 1090 */ 1091 void (*early_unregister)(struct drm_connector *connector); 1092 1093 /** 1094 * @destroy: 1095 * 1096 * Clean up connector resources. This is called at driver unload time 1097 * through drm_mode_config_cleanup(). It can also be called at runtime 1098 * when a connector is being hot-unplugged for drivers that support 1099 * connector hotplugging (e.g. DisplayPort MST). 1100 */ 1101 void (*destroy)(struct drm_connector *connector); 1102 1103 /** 1104 * @atomic_duplicate_state: 1105 * 1106 * Duplicate the current atomic state for this connector and return it. 1107 * The core and helpers guarantee that any atomic state duplicated with 1108 * this hook and still owned by the caller (i.e. not transferred to the 1109 * driver by calling &drm_mode_config_funcs.atomic_commit) will be 1110 * cleaned up by calling the @atomic_destroy_state hook in this 1111 * structure. 1112 * 1113 * This callback is mandatory for atomic drivers. 1114 * 1115 * Atomic drivers which don't subclass &struct drm_connector_state should use 1116 * drm_atomic_helper_connector_duplicate_state(). Drivers that subclass the 1117 * state structure to extend it with driver-private state should use 1118 * __drm_atomic_helper_connector_duplicate_state() to make sure shared state is 1119 * duplicated in a consistent fashion across drivers. 1120 * 1121 * It is an error to call this hook before &drm_connector.state has been 1122 * initialized correctly. 1123 * 1124 * NOTE: 1125 * 1126 * If the duplicate state references refcounted resources this hook must 1127 * acquire a reference for each of them. The driver must release these 1128 * references again in @atomic_destroy_state. 1129 * 1130 * RETURNS: 1131 * 1132 * Duplicated atomic state or NULL when the allocation failed. 1133 */ 1134 struct drm_connector_state *(*atomic_duplicate_state)(struct drm_connector *connector); 1135 1136 /** 1137 * @atomic_destroy_state: 1138 * 1139 * Destroy a state duplicated with @atomic_duplicate_state and release 1140 * or unreference all resources it references 1141 * 1142 * This callback is mandatory for atomic drivers. 1143 */ 1144 void (*atomic_destroy_state)(struct drm_connector *connector, 1145 struct drm_connector_state *state); 1146 1147 /** 1148 * @atomic_set_property: 1149 * 1150 * Decode a driver-private property value and store the decoded value 1151 * into the passed-in state structure. Since the atomic core decodes all 1152 * standardized properties (even for extensions beyond the core set of 1153 * properties which might not be implemented by all drivers) this 1154 * requires drivers to subclass the state structure. 1155 * 1156 * Such driver-private properties should really only be implemented for 1157 * truly hardware/vendor specific state. Instead it is preferred to 1158 * standardize atomic extension and decode the properties used to expose 1159 * such an extension in the core. 1160 * 1161 * Do not call this function directly, use 1162 * drm_atomic_connector_set_property() instead. 1163 * 1164 * This callback is optional if the driver does not support any 1165 * driver-private atomic properties. 1166 * 1167 * NOTE: 1168 * 1169 * This function is called in the state assembly phase of atomic 1170 * modesets, which can be aborted for any reason (including on 1171 * userspace's request to just check whether a configuration would be 1172 * possible). Drivers MUST NOT touch any persistent state (hardware or 1173 * software) or data structures except the passed in @state parameter. 1174 * 1175 * Also since userspace controls in which order properties are set this 1176 * function must not do any input validation (since the state update is 1177 * incomplete and hence likely inconsistent). Instead any such input 1178 * validation must be done in the various atomic_check callbacks. 1179 * 1180 * RETURNS: 1181 * 1182 * 0 if the property has been found, -EINVAL if the property isn't 1183 * implemented by the driver (which shouldn't ever happen, the core only 1184 * asks for properties attached to this connector). No other validation 1185 * is allowed by the driver. The core already checks that the property 1186 * value is within the range (integer, valid enum value, ...) the driver 1187 * set when registering the property. 1188 */ 1189 int (*atomic_set_property)(struct drm_connector *connector, 1190 struct drm_connector_state *state, 1191 struct drm_property *property, 1192 uint64_t val); 1193 1194 /** 1195 * @atomic_get_property: 1196 * 1197 * Reads out the decoded driver-private property. This is used to 1198 * implement the GETCONNECTOR IOCTL. 1199 * 1200 * Do not call this function directly, use 1201 * drm_atomic_connector_get_property() instead. 1202 * 1203 * This callback is optional if the driver does not support any 1204 * driver-private atomic properties. 1205 * 1206 * RETURNS: 1207 * 1208 * 0 on success, -EINVAL if the property isn't implemented by the 1209 * driver (which shouldn't ever happen, the core only asks for 1210 * properties attached to this connector). 1211 */ 1212 int (*atomic_get_property)(struct drm_connector *connector, 1213 const struct drm_connector_state *state, 1214 struct drm_property *property, 1215 uint64_t *val); 1216 1217 /** 1218 * @atomic_print_state: 1219 * 1220 * If driver subclasses &struct drm_connector_state, it should implement 1221 * this optional hook for printing additional driver specific state. 1222 * 1223 * Do not call this directly, use drm_atomic_connector_print_state() 1224 * instead. 1225 */ 1226 void (*atomic_print_state)(struct drm_printer *p, 1227 const struct drm_connector_state *state); 1228 1229 /** 1230 * @oob_hotplug_event: 1231 * 1232 * This will get called when a hotplug-event for a drm-connector 1233 * has been received from a source outside the display driver / device. 1234 */ 1235 void (*oob_hotplug_event)(struct drm_connector *connector); 1236 1237 /** 1238 * @debugfs_init: 1239 * 1240 * Allows connectors to create connector-specific debugfs files. 1241 */ 1242 void (*debugfs_init)(struct drm_connector *connector, struct dentry *root); 1243 }; 1244 1245 /** 1246 * struct drm_cmdline_mode - DRM Mode passed through the kernel command-line 1247 * 1248 * Each connector can have an initial mode with additional options 1249 * passed through the kernel command line. This structure allows to 1250 * express those parameters and will be filled by the command-line 1251 * parser. 1252 */ 1253 struct drm_cmdline_mode { 1254 /** 1255 * @name: 1256 * 1257 * Name of the mode. 1258 */ 1259 char name[DRM_DISPLAY_MODE_LEN]; 1260 1261 /** 1262 * @specified: 1263 * 1264 * Has a mode been read from the command-line? 1265 */ 1266 bool specified; 1267 1268 /** 1269 * @refresh_specified: 1270 * 1271 * Did the mode have a preferred refresh rate? 1272 */ 1273 bool refresh_specified; 1274 1275 /** 1276 * @bpp_specified: 1277 * 1278 * Did the mode have a preferred BPP? 1279 */ 1280 bool bpp_specified; 1281 1282 /** 1283 * @pixel_clock: 1284 * 1285 * Pixel Clock in kHz. Optional. 1286 */ 1287 unsigned int pixel_clock; 1288 1289 /** 1290 * @xres: 1291 * 1292 * Active resolution on the X axis, in pixels. 1293 */ 1294 int xres; 1295 1296 /** 1297 * @yres: 1298 * 1299 * Active resolution on the Y axis, in pixels. 1300 */ 1301 int yres; 1302 1303 /** 1304 * @bpp: 1305 * 1306 * Bits per pixels for the mode. 1307 */ 1308 int bpp; 1309 1310 /** 1311 * @refresh: 1312 * 1313 * Refresh rate, in Hertz. 1314 */ 1315 int refresh; 1316 1317 /** 1318 * @rb: 1319 * 1320 * Do we need to use reduced blanking? 1321 */ 1322 bool rb; 1323 1324 /** 1325 * @interlace: 1326 * 1327 * The mode is interlaced. 1328 */ 1329 bool interlace; 1330 1331 /** 1332 * @cvt: 1333 * 1334 * The timings will be calculated using the VESA Coordinated 1335 * Video Timings instead of looking up the mode from a table. 1336 */ 1337 bool cvt; 1338 1339 /** 1340 * @margins: 1341 * 1342 * Add margins to the mode calculation (1.8% of xres rounded 1343 * down to 8 pixels and 1.8% of yres). 1344 */ 1345 bool margins; 1346 1347 /** 1348 * @force: 1349 * 1350 * Ignore the hotplug state of the connector, and force its 1351 * state to one of the DRM_FORCE_* values. 1352 */ 1353 enum drm_connector_force force; 1354 1355 /** 1356 * @rotation_reflection: 1357 * 1358 * Initial rotation and reflection of the mode setup from the 1359 * command line. See DRM_MODE_ROTATE_* and 1360 * DRM_MODE_REFLECT_*. The only rotations supported are 1361 * DRM_MODE_ROTATE_0 and DRM_MODE_ROTATE_180. 1362 */ 1363 unsigned int rotation_reflection; 1364 1365 /** 1366 * @panel_orientation: 1367 * 1368 * drm-connector "panel orientation" property override value, 1369 * DRM_MODE_PANEL_ORIENTATION_UNKNOWN if not set. 1370 */ 1371 enum drm_panel_orientation panel_orientation; 1372 1373 /** 1374 * @tv_margins: TV margins to apply to the mode. 1375 */ 1376 struct drm_connector_tv_margins tv_margins; 1377 1378 /** 1379 * @tv_mode: TV mode standard. See DRM_MODE_TV_MODE_*. 1380 */ 1381 enum drm_connector_tv_mode tv_mode; 1382 1383 /** 1384 * @tv_mode_specified: 1385 * 1386 * Did the mode have a preferred TV mode? 1387 */ 1388 bool tv_mode_specified; 1389 }; 1390 1391 /** 1392 * struct drm_connector - central DRM connector control structure 1393 * 1394 * Each connector may be connected to one or more CRTCs, or may be clonable by 1395 * another connector if they can share a CRTC. Each connector also has a specific 1396 * position in the broader display (referred to as a 'screen' though it could 1397 * span multiple monitors). 1398 */ 1399 struct drm_connector { 1400 /** @dev: parent DRM device */ 1401 struct drm_device *dev; 1402 /** @kdev: kernel device for sysfs attributes */ 1403 struct device *kdev; 1404 /** @attr: sysfs attributes */ 1405 struct device_attribute *attr; 1406 /** 1407 * @fwnode: associated fwnode supplied by platform firmware 1408 * 1409 * Drivers can set this to associate a fwnode with a connector, drivers 1410 * are expected to get a reference on the fwnode when setting this. 1411 * drm_connector_cleanup() will call fwnode_handle_put() on this. 1412 */ 1413 struct fwnode_handle *fwnode; 1414 1415 /** 1416 * @head: 1417 * 1418 * List of all connectors on a @dev, linked from 1419 * &drm_mode_config.connector_list. Protected by 1420 * &drm_mode_config.connector_list_lock, but please only use 1421 * &drm_connector_list_iter to walk this list. 1422 */ 1423 struct list_head head; 1424 1425 /** 1426 * @global_connector_list_entry: 1427 * 1428 * Connector entry in the global connector-list, used by 1429 * drm_connector_find_by_fwnode(). 1430 */ 1431 struct list_head global_connector_list_entry; 1432 1433 /** @base: base KMS object */ 1434 struct drm_mode_object base; 1435 1436 /** @name: human readable name, can be overwritten by the driver */ 1437 char *name; 1438 1439 /** 1440 * @mutex: Lock for general connector state, but currently only protects 1441 * @registered. Most of the connector state is still protected by 1442 * &drm_mode_config.mutex. 1443 */ 1444 struct mutex mutex; 1445 1446 /** 1447 * @index: Compacted connector index, which matches the position inside 1448 * the mode_config.list for drivers not supporting hot-add/removing. Can 1449 * be used as an array index. It is invariant over the lifetime of the 1450 * connector. 1451 */ 1452 unsigned index; 1453 1454 /** 1455 * @connector_type: 1456 * one of the DRM_MODE_CONNECTOR_<foo> types from drm_mode.h 1457 */ 1458 int connector_type; 1459 /** @connector_type_id: index into connector type enum */ 1460 int connector_type_id; 1461 /** 1462 * @interlace_allowed: 1463 * Can this connector handle interlaced modes? Only used by 1464 * drm_helper_probe_single_connector_modes() for mode filtering. 1465 */ 1466 bool interlace_allowed; 1467 /** 1468 * @doublescan_allowed: 1469 * Can this connector handle doublescan? Only used by 1470 * drm_helper_probe_single_connector_modes() for mode filtering. 1471 */ 1472 bool doublescan_allowed; 1473 /** 1474 * @stereo_allowed: 1475 * Can this connector handle stereo modes? Only used by 1476 * drm_helper_probe_single_connector_modes() for mode filtering. 1477 */ 1478 bool stereo_allowed; 1479 1480 /** 1481 * @ycbcr_420_allowed : This bool indicates if this connector is 1482 * capable of handling YCBCR 420 output. While parsing the EDID 1483 * blocks it's very helpful to know if the source is capable of 1484 * handling YCBCR 420 outputs. 1485 */ 1486 bool ycbcr_420_allowed; 1487 1488 /** 1489 * @registration_state: Is this connector initializing, exposed 1490 * (registered) with userspace, or unregistered? 1491 * 1492 * Protected by @mutex. 1493 */ 1494 enum drm_connector_registration_state registration_state; 1495 1496 /** 1497 * @modes: 1498 * Modes available on this connector (from fill_modes() + user). 1499 * Protected by &drm_mode_config.mutex. 1500 */ 1501 struct list_head modes; 1502 1503 /** 1504 * @status: 1505 * One of the drm_connector_status enums (connected, not, or unknown). 1506 * Protected by &drm_mode_config.mutex. 1507 */ 1508 enum drm_connector_status status; 1509 1510 /** 1511 * @probed_modes: 1512 * These are modes added by probing with DDC or the BIOS, before 1513 * filtering is applied. Used by the probe helpers. Protected by 1514 * &drm_mode_config.mutex. 1515 */ 1516 struct list_head probed_modes; 1517 1518 /** 1519 * @display_info: Display information is filled from EDID information 1520 * when a display is detected. For non hot-pluggable displays such as 1521 * flat panels in embedded systems, the driver should initialize the 1522 * &drm_display_info.width_mm and &drm_display_info.height_mm fields 1523 * with the physical size of the display. 1524 * 1525 * Protected by &drm_mode_config.mutex. 1526 */ 1527 struct drm_display_info display_info; 1528 1529 /** @funcs: connector control functions */ 1530 const struct drm_connector_funcs *funcs; 1531 1532 /** 1533 * @edid_blob_ptr: DRM property containing EDID if present. Protected by 1534 * &drm_mode_config.mutex. This should be updated only by calling 1535 * drm_connector_update_edid_property(). 1536 */ 1537 struct drm_property_blob *edid_blob_ptr; 1538 1539 /** @properties: property tracking for this connector */ 1540 struct drm_object_properties properties; 1541 1542 /** 1543 * @scaling_mode_property: Optional atomic property to control the 1544 * upscaling. See drm_connector_attach_content_protection_property(). 1545 */ 1546 struct drm_property *scaling_mode_property; 1547 1548 /** 1549 * @vrr_capable_property: Optional property to help userspace 1550 * query hardware support for variable refresh rate on a connector. 1551 * connector. Drivers can add the property to a connector by 1552 * calling drm_connector_attach_vrr_capable_property(). 1553 * 1554 * This should be updated only by calling 1555 * drm_connector_set_vrr_capable_property(). 1556 */ 1557 struct drm_property *vrr_capable_property; 1558 1559 /** 1560 * @colorspace_property: Connector property to set the suitable 1561 * colorspace supported by the sink. 1562 */ 1563 struct drm_property *colorspace_property; 1564 1565 /** 1566 * @path_blob_ptr: 1567 * 1568 * DRM blob property data for the DP MST path property. This should only 1569 * be updated by calling drm_connector_set_path_property(). 1570 */ 1571 struct drm_property_blob *path_blob_ptr; 1572 1573 /** 1574 * @max_bpc_property: Default connector property for the max bpc to be 1575 * driven out of the connector. 1576 */ 1577 struct drm_property *max_bpc_property; 1578 1579 /** @privacy_screen: drm_privacy_screen for this connector, or NULL. */ 1580 struct drm_privacy_screen *privacy_screen; 1581 1582 /** @privacy_screen_notifier: privacy-screen notifier_block */ 1583 struct notifier_block privacy_screen_notifier; 1584 1585 /** 1586 * @privacy_screen_sw_state_property: Optional atomic property for the 1587 * connector to control the integrated privacy screen. 1588 */ 1589 struct drm_property *privacy_screen_sw_state_property; 1590 1591 /** 1592 * @privacy_screen_hw_state_property: Optional atomic property for the 1593 * connector to report the actual integrated privacy screen state. 1594 */ 1595 struct drm_property *privacy_screen_hw_state_property; 1596 1597 #define DRM_CONNECTOR_POLL_HPD (1 << 0) 1598 #define DRM_CONNECTOR_POLL_CONNECT (1 << 1) 1599 #define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2) 1600 1601 /** 1602 * @polled: 1603 * 1604 * Connector polling mode, a combination of 1605 * 1606 * DRM_CONNECTOR_POLL_HPD 1607 * The connector generates hotplug events and doesn't need to be 1608 * periodically polled. The CONNECT and DISCONNECT flags must not 1609 * be set together with the HPD flag. 1610 * 1611 * DRM_CONNECTOR_POLL_CONNECT 1612 * Periodically poll the connector for connection. 1613 * 1614 * DRM_CONNECTOR_POLL_DISCONNECT 1615 * Periodically poll the connector for disconnection, without 1616 * causing flickering even when the connector is in use. DACs should 1617 * rarely do this without a lot of testing. 1618 * 1619 * Set to 0 for connectors that don't support connection status 1620 * discovery. 1621 */ 1622 uint8_t polled; 1623 1624 /** 1625 * @dpms: Current dpms state. For legacy drivers the 1626 * &drm_connector_funcs.dpms callback must update this. For atomic 1627 * drivers, this is handled by the core atomic code, and drivers must 1628 * only take &drm_crtc_state.active into account. 1629 */ 1630 int dpms; 1631 1632 /** @helper_private: mid-layer private data */ 1633 const struct drm_connector_helper_funcs *helper_private; 1634 1635 /** @cmdline_mode: mode line parsed from the kernel cmdline for this connector */ 1636 struct drm_cmdline_mode cmdline_mode; 1637 /** @force: a DRM_FORCE_<foo> state for forced mode sets */ 1638 enum drm_connector_force force; 1639 1640 /** 1641 * @edid_override: Override EDID set via debugfs. 1642 * 1643 * Do not modify or access outside of the drm_edid_override_* family of 1644 * functions. 1645 */ 1646 const struct drm_edid *edid_override; 1647 1648 /** 1649 * @edid_override_mutex: Protect access to edid_override. 1650 */ 1651 struct mutex edid_override_mutex; 1652 1653 /** @epoch_counter: used to detect any other changes in connector, besides status */ 1654 u64 epoch_counter; 1655 1656 /** 1657 * @possible_encoders: Bit mask of encoders that can drive this 1658 * connector, drm_encoder_index() determines the index into the bitfield 1659 * and the bits are set with drm_connector_attach_encoder(). 1660 */ 1661 u32 possible_encoders; 1662 1663 /** 1664 * @encoder: Currently bound encoder driving this connector, if any. 1665 * Only really meaningful for non-atomic drivers. Atomic drivers should 1666 * instead look at &drm_connector_state.best_encoder, and in case they 1667 * need the CRTC driving this output, &drm_connector_state.crtc. 1668 */ 1669 struct drm_encoder *encoder; 1670 1671 #define MAX_ELD_BYTES 128 1672 /** @eld: EDID-like data, if present */ 1673 uint8_t eld[MAX_ELD_BYTES]; 1674 /** @latency_present: AV delay info from ELD, if found */ 1675 bool latency_present[2]; 1676 /** 1677 * @video_latency: Video latency info from ELD, if found. 1678 * [0]: progressive, [1]: interlaced 1679 */ 1680 int video_latency[2]; 1681 /** 1682 * @audio_latency: audio latency info from ELD, if found 1683 * [0]: progressive, [1]: interlaced 1684 */ 1685 int audio_latency[2]; 1686 1687 /** 1688 * @ddc: associated ddc adapter. 1689 * A connector usually has its associated ddc adapter. If a driver uses 1690 * this field, then an appropriate symbolic link is created in connector 1691 * sysfs directory to make it easy for the user to tell which i2c 1692 * adapter is for a particular display. 1693 * 1694 * The field should be set by calling drm_connector_init_with_ddc(). 1695 */ 1696 struct i2c_adapter *ddc; 1697 1698 /** 1699 * @null_edid_counter: track sinks that give us all zeros for the EDID. 1700 * Needed to workaround some HW bugs where we get all 0s 1701 */ 1702 int null_edid_counter; 1703 1704 /** @bad_edid_counter: track sinks that give us an EDID with invalid checksum */ 1705 unsigned bad_edid_counter; 1706 1707 /** 1708 * @edid_corrupt: Indicates whether the last read EDID was corrupt. Used 1709 * in Displayport compliance testing - Displayport Link CTS Core 1.2 1710 * rev1.1 4.2.2.6 1711 */ 1712 bool edid_corrupt; 1713 /** 1714 * @real_edid_checksum: real edid checksum for corrupted edid block. 1715 * Required in Displayport 1.4 compliance testing 1716 * rev1.1 4.2.2.6 1717 */ 1718 u8 real_edid_checksum; 1719 1720 /** @debugfs_entry: debugfs directory for this connector */ 1721 struct dentry *debugfs_entry; 1722 1723 /** 1724 * @state: 1725 * 1726 * Current atomic state for this connector. 1727 * 1728 * This is protected by &drm_mode_config.connection_mutex. Note that 1729 * nonblocking atomic commits access the current connector state without 1730 * taking locks. Either by going through the &struct drm_atomic_state 1731 * pointers, see for_each_oldnew_connector_in_state(), 1732 * for_each_old_connector_in_state() and 1733 * for_each_new_connector_in_state(). Or through careful ordering of 1734 * atomic commit operations as implemented in the atomic helpers, see 1735 * &struct drm_crtc_commit. 1736 */ 1737 struct drm_connector_state *state; 1738 1739 /* DisplayID bits. FIXME: Extract into a substruct? */ 1740 1741 /** 1742 * @tile_blob_ptr: 1743 * 1744 * DRM blob property data for the tile property (used mostly by DP MST). 1745 * This is meant for screens which are driven through separate display 1746 * pipelines represented by &drm_crtc, which might not be running with 1747 * genlocked clocks. For tiled panels which are genlocked, like 1748 * dual-link LVDS or dual-link DSI, the driver should try to not expose 1749 * the tiling and virtualize both &drm_crtc and &drm_plane if needed. 1750 * 1751 * This should only be updated by calling 1752 * drm_connector_set_tile_property(). 1753 */ 1754 struct drm_property_blob *tile_blob_ptr; 1755 1756 /** @has_tile: is this connector connected to a tiled monitor */ 1757 bool has_tile; 1758 /** @tile_group: tile group for the connected monitor */ 1759 struct drm_tile_group *tile_group; 1760 /** @tile_is_single_monitor: whether the tile is one monitor housing */ 1761 bool tile_is_single_monitor; 1762 1763 /** @num_h_tile: number of horizontal tiles in the tile group */ 1764 /** @num_v_tile: number of vertical tiles in the tile group */ 1765 uint8_t num_h_tile, num_v_tile; 1766 /** @tile_h_loc: horizontal location of this tile */ 1767 /** @tile_v_loc: vertical location of this tile */ 1768 uint8_t tile_h_loc, tile_v_loc; 1769 /** @tile_h_size: horizontal size of this tile. */ 1770 /** @tile_v_size: vertical size of this tile. */ 1771 uint16_t tile_h_size, tile_v_size; 1772 1773 /** 1774 * @free_node: 1775 * 1776 * List used only by &drm_connector_list_iter to be able to clean up a 1777 * connector from any context, in conjunction with 1778 * &drm_mode_config.connector_free_work. 1779 */ 1780 struct llist_node free_node; 1781 1782 /** @hdr_sink_metadata: HDR Metadata Information read from sink */ 1783 struct hdr_sink_metadata hdr_sink_metadata; 1784 }; 1785 1786 #define obj_to_connector(x) container_of(x, struct drm_connector, base) 1787 1788 int drm_connector_init(struct drm_device *dev, 1789 struct drm_connector *connector, 1790 const struct drm_connector_funcs *funcs, 1791 int connector_type); 1792 int drm_connector_init_with_ddc(struct drm_device *dev, 1793 struct drm_connector *connector, 1794 const struct drm_connector_funcs *funcs, 1795 int connector_type, 1796 struct i2c_adapter *ddc); 1797 int drmm_connector_init(struct drm_device *dev, 1798 struct drm_connector *connector, 1799 const struct drm_connector_funcs *funcs, 1800 int connector_type, 1801 struct i2c_adapter *ddc); 1802 void drm_connector_attach_edid_property(struct drm_connector *connector); 1803 int drm_connector_register(struct drm_connector *connector); 1804 void drm_connector_unregister(struct drm_connector *connector); 1805 int drm_connector_attach_encoder(struct drm_connector *connector, 1806 struct drm_encoder *encoder); 1807 1808 void drm_connector_cleanup(struct drm_connector *connector); 1809 1810 static inline unsigned int drm_connector_index(const struct drm_connector *connector) 1811 { 1812 return connector->index; 1813 } 1814 1815 static inline u32 drm_connector_mask(const struct drm_connector *connector) 1816 { 1817 return 1 << connector->index; 1818 } 1819 1820 /** 1821 * drm_connector_lookup - lookup connector object 1822 * @dev: DRM device 1823 * @file_priv: drm file to check for lease against. 1824 * @id: connector object id 1825 * 1826 * This function looks up the connector object specified by id 1827 * add takes a reference to it. 1828 */ 1829 static inline struct drm_connector *drm_connector_lookup(struct drm_device *dev, 1830 struct drm_file *file_priv, 1831 uint32_t id) 1832 { 1833 struct drm_mode_object *mo; 1834 mo = drm_mode_object_find(dev, file_priv, id, DRM_MODE_OBJECT_CONNECTOR); 1835 return mo ? obj_to_connector(mo) : NULL; 1836 } 1837 1838 /** 1839 * drm_connector_get - acquire a connector reference 1840 * @connector: DRM connector 1841 * 1842 * This function increments the connector's refcount. 1843 */ 1844 static inline void drm_connector_get(struct drm_connector *connector) 1845 { 1846 drm_mode_object_get(&connector->base); 1847 } 1848 1849 /** 1850 * drm_connector_put - release a connector reference 1851 * @connector: DRM connector 1852 * 1853 * This function decrements the connector's reference count and frees the 1854 * object if the reference count drops to zero. 1855 */ 1856 static inline void drm_connector_put(struct drm_connector *connector) 1857 { 1858 drm_mode_object_put(&connector->base); 1859 } 1860 1861 /** 1862 * drm_connector_is_unregistered - has the connector been unregistered from 1863 * userspace? 1864 * @connector: DRM connector 1865 * 1866 * Checks whether or not @connector has been unregistered from userspace. 1867 * 1868 * Returns: 1869 * True if the connector was unregistered, false if the connector is 1870 * registered or has not yet been registered with userspace. 1871 */ 1872 static inline bool 1873 drm_connector_is_unregistered(struct drm_connector *connector) 1874 { 1875 return READ_ONCE(connector->registration_state) == 1876 DRM_CONNECTOR_UNREGISTERED; 1877 } 1878 1879 void drm_connector_oob_hotplug_event(struct fwnode_handle *connector_fwnode); 1880 const char *drm_get_connector_type_name(unsigned int connector_type); 1881 const char *drm_get_connector_status_name(enum drm_connector_status status); 1882 const char *drm_get_subpixel_order_name(enum subpixel_order order); 1883 const char *drm_get_dpms_name(int val); 1884 const char *drm_get_dvi_i_subconnector_name(int val); 1885 const char *drm_get_dvi_i_select_name(int val); 1886 const char *drm_get_tv_mode_name(int val); 1887 const char *drm_get_tv_subconnector_name(int val); 1888 const char *drm_get_tv_select_name(int val); 1889 const char *drm_get_dp_subconnector_name(int val); 1890 const char *drm_get_content_protection_name(int val); 1891 const char *drm_get_hdcp_content_type_name(int val); 1892 1893 int drm_get_tv_mode_from_name(const char *name, size_t len); 1894 1895 int drm_mode_create_dvi_i_properties(struct drm_device *dev); 1896 void drm_connector_attach_dp_subconnector_property(struct drm_connector *connector); 1897 1898 int drm_mode_create_tv_margin_properties(struct drm_device *dev); 1899 int drm_mode_create_tv_properties_legacy(struct drm_device *dev, 1900 unsigned int num_modes, 1901 const char * const modes[]); 1902 int drm_mode_create_tv_properties(struct drm_device *dev, 1903 unsigned int supported_tv_modes); 1904 void drm_connector_attach_tv_margin_properties(struct drm_connector *conn); 1905 int drm_mode_create_scaling_mode_property(struct drm_device *dev); 1906 int drm_connector_attach_content_type_property(struct drm_connector *dev); 1907 int drm_connector_attach_scaling_mode_property(struct drm_connector *connector, 1908 u32 scaling_mode_mask); 1909 int drm_connector_attach_vrr_capable_property( 1910 struct drm_connector *connector); 1911 int drm_connector_attach_colorspace_property(struct drm_connector *connector); 1912 int drm_connector_attach_hdr_output_metadata_property(struct drm_connector *connector); 1913 bool drm_connector_atomic_hdr_metadata_equal(struct drm_connector_state *old_state, 1914 struct drm_connector_state *new_state); 1915 int drm_mode_create_aspect_ratio_property(struct drm_device *dev); 1916 int drm_mode_create_hdmi_colorspace_property(struct drm_connector *connector); 1917 int drm_mode_create_dp_colorspace_property(struct drm_connector *connector); 1918 int drm_mode_create_content_type_property(struct drm_device *dev); 1919 int drm_mode_create_suggested_offset_properties(struct drm_device *dev); 1920 1921 int drm_connector_set_path_property(struct drm_connector *connector, 1922 const char *path); 1923 int drm_connector_set_tile_property(struct drm_connector *connector); 1924 int drm_connector_update_edid_property(struct drm_connector *connector, 1925 const struct edid *edid); 1926 void drm_connector_set_link_status_property(struct drm_connector *connector, 1927 uint64_t link_status); 1928 void drm_connector_set_vrr_capable_property( 1929 struct drm_connector *connector, bool capable); 1930 int drm_connector_set_panel_orientation( 1931 struct drm_connector *connector, 1932 enum drm_panel_orientation panel_orientation); 1933 int drm_connector_set_panel_orientation_with_quirk( 1934 struct drm_connector *connector, 1935 enum drm_panel_orientation panel_orientation, 1936 int width, int height); 1937 int drm_connector_set_orientation_from_panel( 1938 struct drm_connector *connector, 1939 struct drm_panel *panel); 1940 int drm_connector_attach_max_bpc_property(struct drm_connector *connector, 1941 int min, int max); 1942 void drm_connector_create_privacy_screen_properties(struct drm_connector *conn); 1943 void drm_connector_attach_privacy_screen_properties(struct drm_connector *conn); 1944 void drm_connector_attach_privacy_screen_provider( 1945 struct drm_connector *connector, struct drm_privacy_screen *priv); 1946 void drm_connector_update_privacy_screen(const struct drm_connector_state *connector_state); 1947 1948 /** 1949 * struct drm_tile_group - Tile group metadata 1950 * @refcount: reference count 1951 * @dev: DRM device 1952 * @id: tile group id exposed to userspace 1953 * @group_data: Sink-private data identifying this group 1954 * 1955 * @group_data corresponds to displayid vend/prod/serial for external screens 1956 * with an EDID. 1957 */ 1958 struct drm_tile_group { 1959 struct kref refcount; 1960 struct drm_device *dev; 1961 int id; 1962 u8 group_data[8]; 1963 }; 1964 1965 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, 1966 const char topology[8]); 1967 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, 1968 const char topology[8]); 1969 void drm_mode_put_tile_group(struct drm_device *dev, 1970 struct drm_tile_group *tg); 1971 1972 /** 1973 * struct drm_connector_list_iter - connector_list iterator 1974 * 1975 * This iterator tracks state needed to be able to walk the connector_list 1976 * within struct drm_mode_config. Only use together with 1977 * drm_connector_list_iter_begin(), drm_connector_list_iter_end() and 1978 * drm_connector_list_iter_next() respectively the convenience macro 1979 * drm_for_each_connector_iter(). 1980 * 1981 * Note that the return value of drm_connector_list_iter_next() is only valid 1982 * up to the next drm_connector_list_iter_next() or 1983 * drm_connector_list_iter_end() call. If you want to use the connector later, 1984 * then you need to grab your own reference first using drm_connector_get(). 1985 */ 1986 struct drm_connector_list_iter { 1987 /* private: */ 1988 struct drm_device *dev; 1989 struct drm_connector *conn; 1990 }; 1991 1992 void drm_connector_list_iter_begin(struct drm_device *dev, 1993 struct drm_connector_list_iter *iter); 1994 struct drm_connector * 1995 drm_connector_list_iter_next(struct drm_connector_list_iter *iter); 1996 void drm_connector_list_iter_end(struct drm_connector_list_iter *iter); 1997 1998 bool drm_connector_has_possible_encoder(struct drm_connector *connector, 1999 struct drm_encoder *encoder); 2000 2001 /** 2002 * drm_for_each_connector_iter - connector_list iterator macro 2003 * @connector: &struct drm_connector pointer used as cursor 2004 * @iter: &struct drm_connector_list_iter 2005 * 2006 * Note that @connector is only valid within the list body, if you want to use 2007 * @connector after calling drm_connector_list_iter_end() then you need to grab 2008 * your own reference first using drm_connector_get(). 2009 */ 2010 #define drm_for_each_connector_iter(connector, iter) \ 2011 while ((connector = drm_connector_list_iter_next(iter))) 2012 2013 /** 2014 * drm_connector_for_each_possible_encoder - iterate connector's possible encoders 2015 * @connector: &struct drm_connector pointer 2016 * @encoder: &struct drm_encoder pointer used as cursor 2017 */ 2018 #define drm_connector_for_each_possible_encoder(connector, encoder) \ 2019 drm_for_each_encoder_mask(encoder, (connector)->dev, \ 2020 (connector)->possible_encoders) 2021 2022 #endif 2023