blob: fd543d1db9b2c5042dba43b8d6d6676098210d09 [file] [log] [blame]
Daniel Vetter52217192016-08-12 22:48:50 +02001/*
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>
Daniel Vetterea497bb2017-12-13 13:49:36 +010027#include <linux/llist.h>
Daniel Vetter52217192016-08-12 22:48:50 +020028#include <linux/ctype.h>
Maarten Lankhorst0e9f25d2017-05-01 15:37:53 +020029#include <linux/hdmi.h>
Daniel Vetter949619f2016-08-29 10:27:51 +020030#include <drm/drm_mode_object.h>
Daniel Vetterd78aa652018-09-05 15:57:05 +020031#include <drm/drm_util.h>
Daniel Vetter52217192016-08-12 22:48:50 +020032
Daniel Vetter199e4e92016-08-31 18:09:05 +020033#include <uapi/drm/drm_mode.h>
34
Daniel Vetter52217192016-08-12 22:48:50 +020035struct drm_connector_helper_funcs;
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +020036struct drm_modeset_acquire_ctx;
Daniel Vetter52217192016-08-12 22:48:50 +020037struct drm_device;
38struct drm_crtc;
39struct drm_encoder;
40struct drm_property;
41struct drm_property_blob;
Rob Clarkfceffb322016-11-05 11:08:09 -040042struct drm_printer;
Daniel Vetter52217192016-08-12 22:48:50 +020043struct edid;
Andrzej Pietrasiewicze1a29c62019-07-26 19:22:55 +020044struct i2c_adapter;
Daniel Vetter52217192016-08-12 22:48:50 +020045
46enum drm_connector_force {
47 DRM_FORCE_UNSPECIFIED,
48 DRM_FORCE_OFF,
49 DRM_FORCE_ON, /* force on analog part normally */
50 DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */
51};
52
Daniel Vetterae2a6da2016-08-12 22:48:53 +020053/**
54 * enum drm_connector_status - status for a &drm_connector
55 *
56 * This enum is used to track the connector status. There are no separate
57 * #defines for the uapi!
58 */
Daniel Vetter52217192016-08-12 22:48:50 +020059enum drm_connector_status {
Daniel Vetterae2a6da2016-08-12 22:48:53 +020060 /**
61 * @connector_status_connected: The connector is definitely connected to
62 * a sink device, and can be enabled.
63 */
Daniel Vetter52217192016-08-12 22:48:50 +020064 connector_status_connected = 1,
Daniel Vetterae2a6da2016-08-12 22:48:53 +020065 /**
66 * @connector_status_disconnected: The connector isn't connected to a
67 * sink device which can be autodetect. For digital outputs like DP or
68 * HDMI (which can be realiable probed) this means there's really
69 * nothing there. It is driver-dependent whether a connector with this
70 * status can be lit up or not.
71 */
Daniel Vetter52217192016-08-12 22:48:50 +020072 connector_status_disconnected = 2,
Daniel Vetterae2a6da2016-08-12 22:48:53 +020073 /**
74 * @connector_status_unknown: The connector's status could not be
75 * reliably detected. This happens when probing would either cause
76 * flicker (like load-detection when the connector is in use), or when a
77 * hardware resource isn't available (like when load-detection needs a
78 * free CRTC). It should be possible to light up the connector with one
79 * of the listed fallback modes. For default configuration userspace
80 * should only try to light up connectors with unknown status when
81 * there's not connector with @connector_status_connected.
82 */
Daniel Vetter52217192016-08-12 22:48:50 +020083 connector_status_unknown = 3,
84};
85
Lyude Paul39b50c62018-10-16 16:39:46 -040086/**
87 * enum drm_connector_registration_status - userspace registration status for
88 * a &drm_connector
89 *
90 * This enum is used to track the status of initializing a connector and
91 * registering it with userspace, so that DRM can prevent bogus modesets on
92 * connectors that no longer exist.
93 */
94enum drm_connector_registration_state {
95 /**
96 * @DRM_CONNECTOR_INITIALIZING: The connector has just been created,
97 * but has yet to be exposed to userspace. There should be no
98 * additional restrictions to how the state of this connector may be
99 * modified.
100 */
101 DRM_CONNECTOR_INITIALIZING = 0,
102
103 /**
104 * @DRM_CONNECTOR_REGISTERED: The connector has been fully initialized
105 * and registered with sysfs, as such it has been exposed to
106 * userspace. There should be no additional restrictions to how the
107 * state of this connector may be modified.
108 */
109 DRM_CONNECTOR_REGISTERED = 1,
110
111 /**
112 * @DRM_CONNECTOR_UNREGISTERED: The connector has either been exposed
113 * to userspace and has since been unregistered and removed from
114 * userspace, or the connector was unregistered before it had a chance
115 * to be exposed to userspace (e.g. still in the
116 * @DRM_CONNECTOR_INITIALIZING state). When a connector is
117 * unregistered, there are additional restrictions to how its state
118 * may be modified:
119 *
120 * - An unregistered connector may only have its DPMS changed from
121 * On->Off. Once DPMS is changed to Off, it may not be switched back
122 * to On.
123 * - Modesets are not allowed on unregistered connectors, unless they
124 * would result in disabling its assigned CRTCs. This means
125 * disabling a CRTC on an unregistered connector is OK, but enabling
126 * one is not.
127 * - Removing a CRTC from an unregistered connector is OK, but new
128 * CRTCs may never be assigned to an unregistered connector.
129 */
130 DRM_CONNECTOR_UNREGISTERED = 2,
131};
132
Daniel Vetter52217192016-08-12 22:48:50 +0200133enum subpixel_order {
134 SubPixelUnknown = 0,
135 SubPixelHorizontalRGB,
136 SubPixelHorizontalBGR,
137 SubPixelVerticalRGB,
138 SubPixelVerticalBGR,
139 SubPixelNone,
Shashank Sharmaafa1c762017-03-13 16:54:01 +0530140
141};
142
Shashank Sharma62c58af2017-03-13 16:54:02 +0530143/**
144 * struct drm_scrambling: sink's scrambling support.
145 */
146struct drm_scrambling {
147 /**
148 * @supported: scrambling supported for rates > 340 Mhz.
149 */
150 bool supported;
151 /**
152 * @low_rates: scrambling supported for rates <= 340 Mhz.
153 */
154 bool low_rates;
155};
156
Shashank Sharmaafa1c762017-03-13 16:54:01 +0530157/*
158 * struct drm_scdc - Information about scdc capabilities of a HDMI 2.0 sink
159 *
160 * Provides SCDC register support and capabilities related information on a
161 * HDMI 2.0 sink. In case of a HDMI 1.4 sink, all parameter must be 0.
162 */
163struct drm_scdc {
164 /**
165 * @supported: status control & data channel present.
166 */
167 bool supported;
168 /**
169 * @read_request: sink is capable of generating scdc read request.
170 */
171 bool read_request;
Shashank Sharma62c58af2017-03-13 16:54:02 +0530172 /**
173 * @scrambling: sink's scrambling capabilities
174 */
175 struct drm_scrambling scrambling;
Shashank Sharmaafa1c762017-03-13 16:54:01 +0530176};
177
Shashank Sharma62c58af2017-03-13 16:54:02 +0530178
Shashank Sharmaafa1c762017-03-13 16:54:01 +0530179/**
180 * struct drm_hdmi_info - runtime information about the connected HDMI sink
181 *
182 * Describes if a given display supports advanced HDMI 2.0 features.
183 * This information is available in CEA-861-F extension blocks (like HF-VSDB).
184 */
185struct drm_hdmi_info {
Shashank Sharma86cc9212017-03-28 10:06:19 +0300186 /** @scdc: sink's scdc support and capabilities */
Shashank Sharmaafa1c762017-03-13 16:54:01 +0530187 struct drm_scdc scdc;
Shashank Sharmad8523152017-07-13 21:03:11 +0530188
189 /**
190 * @y420_vdb_modes: bitmap of modes which can support ycbcr420
Thomas Anderson919dfb782019-12-10 14:10:48 -0800191 * output only (not normal RGB/YCBCR444/422 outputs). The max VIC
192 * defined by the CEA-861-G spec is 219, so the size is 256 bits to map
193 * up to 256 VICs.
Shashank Sharmad8523152017-07-13 21:03:11 +0530194 */
Thomas Anderson919dfb782019-12-10 14:10:48 -0800195 unsigned long y420_vdb_modes[BITS_TO_LONGS(256)];
Shashank Sharma832d4f22017-07-14 16:03:46 +0530196
197 /**
198 * @y420_cmdb_modes: bitmap of modes which can support ycbcr420
Thomas Anderson919dfb782019-12-10 14:10:48 -0800199 * output also, along with normal HDMI outputs. The max VIC defined by
200 * the CEA-861-G spec is 219, so the size is 256 bits to map up to 256
201 * VICs.
Shashank Sharma832d4f22017-07-14 16:03:46 +0530202 */
Thomas Anderson919dfb782019-12-10 14:10:48 -0800203 unsigned long y420_cmdb_modes[BITS_TO_LONGS(256)];
Shashank Sharma832d4f22017-07-14 16:03:46 +0530204
205 /** @y420_cmdb_map: bitmap of SVD index, to extraxt vcb modes */
206 u64 y420_cmdb_map;
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +0530207
208 /** @y420_dc_modes: bitmap of deep color support index */
209 u8 y420_dc_modes;
Daniel Vetter52217192016-08-12 22:48:50 +0200210};
211
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200212/**
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200213 * enum drm_link_status - connector's link_status property value
214 *
215 * This enum is used as the connector's link status property value.
216 * It is set to the values defined in uapi.
Manasi Navare41232c12017-03-01 06:45:10 -0800217 *
218 * @DRM_LINK_STATUS_GOOD: DP Link is Good as a result of successful
219 * link training
220 * @DRM_LINK_STATUS_BAD: DP Link is BAD as a result of link training
221 * failure
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200222 */
223enum drm_link_status {
224 DRM_LINK_STATUS_GOOD = DRM_MODE_LINK_STATUS_GOOD,
225 DRM_LINK_STATUS_BAD = DRM_MODE_LINK_STATUS_BAD,
226};
227
228/**
Hans de Goede8d70f392017-11-25 20:35:49 +0100229 * enum drm_panel_orientation - panel_orientation info for &drm_display_info
230 *
231 * This enum is used to track the (LCD) panel orientation. There are no
232 * separate #defines for the uapi!
233 *
234 * @DRM_MODE_PANEL_ORIENTATION_UNKNOWN: The drm driver has not provided any
235 * panel orientation information (normal
236 * for non panels) in this case the "panel
237 * orientation" connector prop will not be
238 * attached.
239 * @DRM_MODE_PANEL_ORIENTATION_NORMAL: The top side of the panel matches the
240 * top side of the device's casing.
241 * @DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP: The top side of the panel matches the
242 * bottom side of the device's casing, iow
243 * the panel is mounted upside-down.
244 * @DRM_MODE_PANEL_ORIENTATION_LEFT_UP: The left side of the panel matches the
245 * top side of the device's casing.
246 * @DRM_MODE_PANEL_ORIENTATION_RIGHT_UP: The right side of the panel matches the
247 * top side of the device's casing.
248 */
249enum drm_panel_orientation {
250 DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1,
251 DRM_MODE_PANEL_ORIENTATION_NORMAL = 0,
252 DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP,
253 DRM_MODE_PANEL_ORIENTATION_LEFT_UP,
254 DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
255};
256
Manasi Navarea1d11d12020-03-10 16:16:51 -0700257/**
258 * struct drm_monitor_range_info - Panel's Monitor range in EDID for
259 * &drm_display_info
260 *
261 * This struct is used to store a frequency range supported by panel
262 * as parsed from EDID's detailed monitor range descriptor block.
263 *
264 * @min_vfreq: This is the min supported refresh rate in Hz from
265 * EDID's detailed monitor range.
266 * @max_vfreq: This is the max supported refresh rate in Hz from
267 * EDID's detailed monitor range
268 */
269struct drm_monitor_range_info {
270 u8 min_vfreq;
271 u8 max_vfreq;
272};
273
Uma Shankard2c6a402019-02-19 22:42:59 +0530274/*
275 * This is a consolidated colorimetry list supported by HDMI and
276 * DP protocol standard. The respective connectors will register
277 * a property with the subset of this list (supported by that
278 * respective protocol). Userspace will set the colorspace through
279 * a colorspace property which will be created and exposed to
280 * userspace.
281 */
282
283/* For Default case, driver will set the colorspace */
284#define DRM_MODE_COLORIMETRY_DEFAULT 0
285/* CEA 861 Normal Colorimetry options */
286#define DRM_MODE_COLORIMETRY_NO_DATA 0
287#define DRM_MODE_COLORIMETRY_SMPTE_170M_YCC 1
288#define DRM_MODE_COLORIMETRY_BT709_YCC 2
289/* CEA 861 Extended Colorimetry Options */
290#define DRM_MODE_COLORIMETRY_XVYCC_601 3
291#define DRM_MODE_COLORIMETRY_XVYCC_709 4
292#define DRM_MODE_COLORIMETRY_SYCC_601 5
293#define DRM_MODE_COLORIMETRY_OPYCC_601 6
294#define DRM_MODE_COLORIMETRY_OPRGB 7
295#define DRM_MODE_COLORIMETRY_BT2020_CYCC 8
296#define DRM_MODE_COLORIMETRY_BT2020_RGB 9
297#define DRM_MODE_COLORIMETRY_BT2020_YCC 10
298/* Additional Colorimetry extension added as part of CTA 861.G */
299#define DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65 11
300#define DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER 12
Gwan-gyeong Mun45cf0e92019-09-19 22:53:07 +0300301/* Additional Colorimetry Options added for DP 1.4a VSC Colorimetry Format */
302#define DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED 13
303#define DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT 14
304#define DRM_MODE_COLORIMETRY_BT601_YCC 15
Uma Shankard2c6a402019-02-19 22:42:59 +0530305
Hans de Goede8d70f392017-11-25 20:35:49 +0100306/**
Laurent Pincharta0970e82019-01-12 02:42:39 +0200307 * enum drm_bus_flags - bus_flags info for &drm_display_info
308 *
309 * This enum defines signal polarities and clock edge information for signals on
310 * a bus as bitmask flags.
311 *
312 * The clock edge information is conveyed by two sets of symbols,
313 * DRM_BUS_FLAGS_*_DRIVE_\* and DRM_BUS_FLAGS_*_SAMPLE_\*. When this enum is
314 * used to describe a bus from the point of view of the transmitter, the
315 * \*_DRIVE_\* flags should be used. When used from the point of view of the
316 * receiver, the \*_SAMPLE_\* flags should be used. The \*_DRIVE_\* and
317 * \*_SAMPLE_\* flags alias each other, with the \*_SAMPLE_POSEDGE and
318 * \*_SAMPLE_NEGEDGE flags being equal to \*_DRIVE_NEGEDGE and \*_DRIVE_POSEDGE
319 * respectively. This simplifies code as signals are usually sampled on the
320 * opposite edge of the driving edge. Transmitters and receivers may however
321 * need to take other signal timings into account to convert between driving
322 * and sample edges.
323 *
324 * @DRM_BUS_FLAG_DE_LOW: The Data Enable signal is active low
325 * @DRM_BUS_FLAG_DE_HIGH: The Data Enable signal is active high
326 * @DRM_BUS_FLAG_PIXDATA_POSEDGE: Legacy value, do not use
327 * @DRM_BUS_FLAG_PIXDATA_NEGEDGE: Legacy value, do not use
328 * @DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE: Data is driven on the rising edge of
329 * the pixel clock
330 * @DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE: Data is driven on the falling edge of
331 * the pixel clock
332 * @DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE: Data is sampled on the rising edge of
333 * the pixel clock
334 * @DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE: Data is sampled on the falling edge of
335 * the pixel clock
336 * @DRM_BUS_FLAG_DATA_MSB_TO_LSB: Data is transmitted MSB to LSB on the bus
337 * @DRM_BUS_FLAG_DATA_LSB_TO_MSB: Data is transmitted LSB to MSB on the bus
338 * @DRM_BUS_FLAG_SYNC_POSEDGE: Legacy value, do not use
339 * @DRM_BUS_FLAG_SYNC_NEGEDGE: Legacy value, do not use
340 * @DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE: Sync signals are driven on the rising
341 * edge of the pixel clock
342 * @DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE: Sync signals are driven on the falling
343 * edge of the pixel clock
344 * @DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE: Sync signals are sampled on the rising
345 * edge of the pixel clock
346 * @DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE: Sync signals are sampled on the falling
347 * edge of the pixel clock
Paul Cercueilf9a763d2019-06-03 17:31:19 +0200348 * @DRM_BUS_FLAG_SHARP_SIGNALS: Set if the Sharp-specific signals
349 * (SPL, CLS, PS, REV) must be used
Laurent Pincharta0970e82019-01-12 02:42:39 +0200350 */
351enum drm_bus_flags {
352 DRM_BUS_FLAG_DE_LOW = BIT(0),
353 DRM_BUS_FLAG_DE_HIGH = BIT(1),
354 DRM_BUS_FLAG_PIXDATA_POSEDGE = BIT(2),
355 DRM_BUS_FLAG_PIXDATA_NEGEDGE = BIT(3),
356 DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE = DRM_BUS_FLAG_PIXDATA_POSEDGE,
357 DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE = DRM_BUS_FLAG_PIXDATA_NEGEDGE,
358 DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE = DRM_BUS_FLAG_PIXDATA_NEGEDGE,
359 DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE = DRM_BUS_FLAG_PIXDATA_POSEDGE,
360 DRM_BUS_FLAG_DATA_MSB_TO_LSB = BIT(4),
361 DRM_BUS_FLAG_DATA_LSB_TO_MSB = BIT(5),
362 DRM_BUS_FLAG_SYNC_POSEDGE = BIT(6),
363 DRM_BUS_FLAG_SYNC_NEGEDGE = BIT(7),
364 DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE = DRM_BUS_FLAG_SYNC_POSEDGE,
365 DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE = DRM_BUS_FLAG_SYNC_NEGEDGE,
366 DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE = DRM_BUS_FLAG_SYNC_NEGEDGE,
367 DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE = DRM_BUS_FLAG_SYNC_POSEDGE,
Paul Cercueilf9a763d2019-06-03 17:31:19 +0200368 DRM_BUS_FLAG_SHARP_SIGNALS = BIT(8),
Laurent Pincharta0970e82019-01-12 02:42:39 +0200369};
370
371/**
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200372 * struct drm_display_info - runtime data about the connected sink
373 *
374 * Describes a given display (e.g. CRT or flat panel) and its limitations. For
375 * fixed display sinks like built-in panels there's not much difference between
Daniel Vetterea0dd852016-12-29 21:48:26 +0100376 * this and &struct drm_connector. But for sinks with a real cable this
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200377 * structure is meant to describe all the things at the other end of the cable.
378 *
379 * For sinks which provide an EDID this can be filled out by calling
380 * drm_add_edid_modes().
Daniel Vetter52217192016-08-12 22:48:50 +0200381 */
382struct drm_display_info {
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200383 /**
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200384 * @width_mm: Physical width in mm.
385 */
Ville Syrjäläa9ab81d2019-03-26 19:33:59 +0200386 unsigned int width_mm;
387
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200388 /**
389 * @height_mm: Physical height in mm.
390 */
Daniel Vetter52217192016-08-12 22:48:50 +0200391 unsigned int height_mm;
392
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200393 /**
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200394 * @bpc: Maximum bits per color channel. Used by HDMI and DP outputs.
395 */
Daniel Vetter52217192016-08-12 22:48:50 +0200396 unsigned int bpc;
397
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200398 /**
399 * @subpixel_order: Subpixel order of LCD panels.
400 */
Daniel Vetter52217192016-08-12 22:48:50 +0200401 enum subpixel_order subpixel_order;
402
403#define DRM_COLOR_FORMAT_RGB444 (1<<0)
404#define DRM_COLOR_FORMAT_YCRCB444 (1<<1)
405#define DRM_COLOR_FORMAT_YCRCB422 (1<<2)
Shashank Sharma832d4f22017-07-14 16:03:46 +0530406#define DRM_COLOR_FORMAT_YCRCB420 (1<<3)
Daniel Vetter52217192016-08-12 22:48:50 +0200407
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200408 /**
Hans de Goede8d70f392017-11-25 20:35:49 +0100409 * @panel_orientation: Read only connector property for built-in panels,
410 * indicating the orientation of the panel vs the device's casing.
411 * drm_connector_init() sets this to DRM_MODE_PANEL_ORIENTATION_UNKNOWN.
412 * When not UNKNOWN this gets used by the drm_fb_helpers to rotate the
413 * fb to compensate and gets exported as prop to userspace.
414 */
415 int panel_orientation;
416
417 /**
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200418 * @color_formats: HDMI Color formats, selects between RGB and YCrCb
419 * modes. Used DRM_COLOR_FORMAT\_ defines, which are _not_ the same ones
420 * as used to describe the pixel format in framebuffers, and also don't
421 * match the formats in @bus_formats which are shared with v4l.
422 */
Daniel Vetter52217192016-08-12 22:48:50 +0200423 u32 color_formats;
424
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200425 /**
426 * @bus_formats: Pixel data format on the wire, somewhat redundant with
427 * @color_formats. Array of size @num_bus_formats encoded using
428 * MEDIA_BUS_FMT\_ defines shared with v4l and media drivers.
429 */
Daniel Vetter52217192016-08-12 22:48:50 +0200430 const u32 *bus_formats;
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200431 /**
432 * @num_bus_formats: Size of @bus_formats array.
433 */
Daniel Vetter52217192016-08-12 22:48:50 +0200434 unsigned int num_bus_formats;
435
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200436 /**
437 * @bus_flags: Additional information (like pixel signal polarity) for
Laurent Pincharta0970e82019-01-12 02:42:39 +0200438 * the pixel data on the bus, using &enum drm_bus_flags values
439 * DRM_BUS_FLAGS\_.
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200440 */
Daniel Vetter52217192016-08-12 22:48:50 +0200441 u32 bus_flags;
442
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200443 /**
Ville Syrjälä2a272ca2016-09-28 16:51:37 +0300444 * @max_tmds_clock: Maximum TMDS clock rate supported by the
445 * sink in kHz. 0 means undefined.
446 */
447 int max_tmds_clock;
448
449 /**
450 * @dvi_dual: Dual-link DVI sink?
451 */
452 bool dvi_dual;
453
454 /**
Laurent Pincharta92d0832020-02-26 13:24:23 +0200455 * @is_hdmi: True if the sink is an HDMI device.
456 *
457 * This field shall be used instead of calling
458 * drm_detect_hdmi_monitor() when possible.
459 */
460 bool is_hdmi;
461
462 /**
Ville Syrjäläf1781e92017-11-13 19:04:19 +0200463 * @has_hdmi_infoframe: Does the sink support the HDMI infoframe?
464 */
465 bool has_hdmi_infoframe;
466
467 /**
Ville Syrjälä1581b2d2019-01-08 19:28:28 +0200468 * @rgb_quant_range_selectable: Does the sink support selecting
469 * the RGB quantization range?
470 */
471 bool rgb_quant_range_selectable;
472
473 /**
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200474 * @edid_hdmi_dc_modes: Mask of supported hdmi deep color modes. Even
475 * more stuff redundant with @bus_formats.
476 */
Daniel Vetter52217192016-08-12 22:48:50 +0200477 u8 edid_hdmi_dc_modes;
478
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200479 /**
480 * @cea_rev: CEA revision of the HDMI sink.
481 */
Daniel Vetter52217192016-08-12 22:48:50 +0200482 u8 cea_rev;
Shashank Sharmaafa1c762017-03-13 16:54:01 +0530483
484 /**
485 * @hdmi: advance features of a HDMI sink.
486 */
487 struct drm_hdmi_info hdmi;
Dave Airlie66660d42017-10-16 05:08:09 +0100488
489 /**
490 * @non_desktop: Non desktop display (HMD).
491 */
492 bool non_desktop;
Manasi Navarea1d11d12020-03-10 16:16:51 -0700493
494 /**
495 * @monitor_range: Frequency range supported by monitor range descriptor
496 */
497 struct drm_monitor_range_info monitor_range;
Daniel Vetter52217192016-08-12 22:48:50 +0200498};
499
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200500int drm_display_info_set_bus_formats(struct drm_display_info *info,
501 const u32 *formats,
502 unsigned int num_formats);
503
Daniel Vetter52217192016-08-12 22:48:50 +0200504/**
Maxime Ripard22045e82019-06-19 12:17:51 +0200505 * struct drm_connector_tv_margins - TV connector related margins
506 *
507 * Describes the margins in pixels to put around the image on TV
508 * connectors to deal with overscan.
509 */
510struct drm_connector_tv_margins {
511 /**
512 * @bottom: Bottom margin in pixels.
513 */
514 unsigned int bottom;
515
516 /**
517 * @left: Left margin in pixels.
518 */
519 unsigned int left;
520
521 /**
522 * @right: Right margin in pixels.
523 */
524 unsigned int right;
525
526 /**
527 * @top: Top margin in pixels.
528 */
529 unsigned int top;
530};
531
532/**
Boris Brezillon299a16b2016-12-02 14:48:09 +0100533 * struct drm_tv_connector_state - TV connector related states
534 * @subconnector: selected subconnector
Maxime Ripard22045e82019-06-19 12:17:51 +0200535 * @margins: TV margins
Boris Brezillon299a16b2016-12-02 14:48:09 +0100536 * @mode: TV mode
537 * @brightness: brightness in percent
538 * @contrast: contrast in percent
539 * @flicker_reduction: flicker reduction in percent
540 * @overscan: overscan in percent
541 * @saturation: saturation in percent
542 * @hue: hue in percent
543 */
544struct drm_tv_connector_state {
545 enum drm_mode_subconnector subconnector;
Maxime Ripard22045e82019-06-19 12:17:51 +0200546 struct drm_connector_tv_margins margins;
Boris Brezillon299a16b2016-12-02 14:48:09 +0100547 unsigned int mode;
548 unsigned int brightness;
549 unsigned int contrast;
550 unsigned int flicker_reduction;
551 unsigned int overscan;
552 unsigned int saturation;
553 unsigned int hue;
554};
555
556/**
Daniel Vetter52217192016-08-12 22:48:50 +0200557 * struct drm_connector_state - mutable connector state
Daniel Vetter52217192016-08-12 22:48:50 +0200558 */
559struct drm_connector_state {
Daniel Vetteraab999a2018-07-09 10:40:04 +0200560 /** @connector: backpointer to the connector */
Daniel Vetter52217192016-08-12 22:48:50 +0200561 struct drm_connector *connector;
562
Daniel Vetterafb21ea62016-08-31 18:09:04 +0200563 /**
564 * @crtc: CRTC to connect connector to, NULL if disabled.
565 *
566 * Do not change this directly, use drm_atomic_set_crtc_for_connector()
567 * instead.
568 */
569 struct drm_crtc *crtc;
Daniel Vetter52217192016-08-12 22:48:50 +0200570
Daniel Vetteraab999a2018-07-09 10:40:04 +0200571 /**
572 * @best_encoder:
573 *
574 * Used by the atomic helpers to select the encoder, through the
575 * &drm_connector_helper_funcs.atomic_best_encoder or
576 * &drm_connector_helper_funcs.best_encoder callbacks.
Daniel Vetter27edadf2019-05-06 16:46:29 +0200577 *
Laurent Pinchart1b27fbd2019-06-11 16:51:43 -0400578 * This is also used in the atomic helpers to map encoders to their
579 * current and previous connectors, see
Sean Paul12db36b2019-08-12 10:01:03 -0400580 * drm_atomic_get_old_connector_for_encoder() and
581 * drm_atomic_get_new_connector_for_encoder().
Laurent Pinchart1b27fbd2019-06-11 16:51:43 -0400582 *
Daniel Vetter27edadf2019-05-06 16:46:29 +0200583 * NOTE: Atomic drivers must fill this out (either themselves or through
584 * helpers), for otherwise the GETCONNECTOR and GETENCODER IOCTLs will
585 * not return correct data to userspace.
Daniel Vetteraab999a2018-07-09 10:40:04 +0200586 */
Daniel Vetter52217192016-08-12 22:48:50 +0200587 struct drm_encoder *best_encoder;
588
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200589 /**
590 * @link_status: Connector link_status to keep track of whether link is
591 * GOOD or BAD to notify userspace if retraining is necessary.
592 */
593 enum drm_link_status link_status;
594
Daniel Vetteraab999a2018-07-09 10:40:04 +0200595 /** @state: backpointer to global drm_atomic_state */
Daniel Vetter52217192016-08-12 22:48:50 +0200596 struct drm_atomic_state *state;
Boris Brezillon299a16b2016-12-02 14:48:09 +0100597
Maarten Lankhorst21a01ab2017-09-04 12:48:37 +0200598 /**
599 * @commit: Tracks the pending commit to prevent use-after-free conditions.
600 *
601 * Is only set when @crtc is NULL.
602 */
603 struct drm_crtc_commit *commit;
604
Daniel Vetteraab999a2018-07-09 10:40:04 +0200605 /** @tv: TV connector state */
Boris Brezillon299a16b2016-12-02 14:48:09 +0100606 struct drm_tv_connector_state tv;
Maarten Lankhorst0e9f25d2017-05-01 15:37:53 +0200607
608 /**
Sean Paul1452c252019-06-12 10:50:19 -0400609 * @self_refresh_aware:
610 *
611 * This tracks whether a connector is aware of the self refresh state.
612 * It should be set to true for those connector implementations which
613 * understand the self refresh state. This is needed since the crtc
614 * registers the self refresh helpers and it doesn't know if the
615 * connectors downstream have implemented self refresh entry/exit.
616 *
617 * Drivers should set this to true in atomic_check if they know how to
618 * handle self_refresh requests.
619 */
620 bool self_refresh_aware;
621
622 /**
Maarten Lankhorst0e9f25d2017-05-01 15:37:53 +0200623 * @picture_aspect_ratio: Connector property to control the
624 * HDMI infoframe aspect ratio setting.
625 *
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +0200626 * The %DRM_MODE_PICTURE_ASPECT_\* values much match the
Maarten Lankhorst0e9f25d2017-05-01 15:37:53 +0200627 * values for &enum hdmi_picture_aspect
628 */
629 enum hdmi_picture_aspect picture_aspect_ratio;
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +0200630
631 /**
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +0300632 * @content_type: Connector property to control the
633 * HDMI infoframe content type setting.
634 * The %DRM_MODE_CONTENT_TYPE_\* values much
635 * match the values.
636 */
637 unsigned int content_type;
638
639 /**
Ramalingam C7672dbb2019-08-01 17:11:14 +0530640 * @hdcp_content_type: Connector property to pass the type of
641 * protected content. This is most commonly used for HDCP.
642 */
643 unsigned int hdcp_content_type;
644
645 /**
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +0200646 * @scaling_mode: Connector property to control the
647 * upscaling, mostly used for built-in panels.
648 */
649 unsigned int scaling_mode;
Sean Paul24557862018-01-08 14:55:37 -0500650
651 /**
652 * @content_protection: Connector property to request content
653 * protection. This is most commonly used for HDCP.
654 */
655 unsigned int content_protection;
Brian Starkey935774c2017-03-29 17:42:32 +0100656
657 /**
Uma Shankard2c6a402019-02-19 22:42:59 +0530658 * @colorspace: State variable for Connector property to request
659 * colorspace change on Sink. This is most commonly used to switch
660 * to wider color gamuts like BT2020.
661 */
662 u32 colorspace;
663
664 /**
Brian Starkey935774c2017-03-29 17:42:32 +0100665 * @writeback_job: Writeback job for writeback connectors
666 *
Brian Starkeyb13cc8d2017-03-29 17:42:33 +0100667 * Holds the framebuffer and out-fence for a writeback connector. As
668 * the writeback completion may be asynchronous to the normal commit
669 * cycle, the writeback job lifetime is managed separately from the
670 * normal atomic state by this object.
Brian Starkey935774c2017-03-29 17:42:32 +0100671 *
672 * See also: drm_writeback_queue_job() and
673 * drm_writeback_signal_completion()
674 */
675 struct drm_writeback_job *writeback_job;
Radhakrishna Sripada47e22ff2018-10-12 11:42:32 -0700676
677 /**
678 * @max_requested_bpc: Connector property to limit the maximum bit
679 * depth of the pixels.
680 */
681 u8 max_requested_bpc;
682
683 /**
684 * @max_bpc: Connector max_bpc based on the requested max_bpc property
685 * and the connector bpc limitations obtained from edid.
686 */
687 u8 max_bpc;
Uma Shankarfbb5d032019-05-16 19:40:06 +0530688
689 /**
690 * @hdr_output_metadata:
691 * DRM blob property for HDR output metadata
692 */
693 struct drm_property_blob *hdr_output_metadata;
Daniel Vetter52217192016-08-12 22:48:50 +0200694};
695
696/**
697 * struct drm_connector_funcs - control connectors on a given device
698 *
699 * Each CRTC may have one or more connectors attached to it. The functions
700 * below allow the core DRM code to control connectors, enumerate available modes,
701 * etc.
702 */
703struct drm_connector_funcs {
704 /**
705 * @dpms:
706 *
707 * Legacy entry point to set the per-connector DPMS state. Legacy DPMS
708 * is exposed as a standard property on the connector, but diverted to
709 * this callback in the drm core. Note that atomic drivers don't
710 * implement the 4 level DPMS support on the connector any more, but
711 * instead only have an on/off "ACTIVE" property on the CRTC object.
712 *
Daniel Vetter144a7992017-07-25 14:02:04 +0200713 * This hook is not used by atomic drivers, remapping of the legacy DPMS
714 * property is entirely handled in the DRM core.
Daniel Vetter52217192016-08-12 22:48:50 +0200715 *
716 * RETURNS:
717 *
718 * 0 on success or a negative error code on failure.
719 */
720 int (*dpms)(struct drm_connector *connector, int mode);
721
722 /**
723 * @reset:
724 *
725 * Reset connector hardware and software state to off. This function isn't
726 * called by the core directly, only through drm_mode_config_reset().
727 * It's not a helper hook only for historical reasons.
728 *
729 * Atomic drivers can use drm_atomic_helper_connector_reset() to reset
730 * atomic state using this hook.
731 */
732 void (*reset)(struct drm_connector *connector);
733
734 /**
735 * @detect:
736 *
737 * Check to see if anything is attached to the connector. The parameter
738 * force is set to false whilst polling, true when checking the
739 * connector due to a user request. force can be used by the driver to
740 * avoid expensive, destructive operations during automated probing.
741 *
Laurent Pinchart949f0882016-11-29 22:56:30 +0200742 * This callback is optional, if not implemented the connector will be
743 * considered as always being attached.
744 *
Daniel Vetter52217192016-08-12 22:48:50 +0200745 * FIXME:
746 *
747 * Note that this hook is only called by the probe helper. It's not in
748 * the helper library vtable purely for historical reasons. The only DRM
749 * core entry point to probe connector state is @fill_modes.
750 *
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200751 * Note that the helper library will already hold
752 * &drm_mode_config.connection_mutex. Drivers which need to grab additional
753 * locks to avoid races with concurrent modeset changes need to use
754 * &drm_connector_helper_funcs.detect_ctx instead.
755 *
Daniel Vetter52217192016-08-12 22:48:50 +0200756 * RETURNS:
757 *
758 * drm_connector_status indicating the connector's status.
759 */
760 enum drm_connector_status (*detect)(struct drm_connector *connector,
761 bool force);
762
763 /**
764 * @force:
765 *
766 * This function is called to update internal encoder state when the
767 * connector is forced to a certain state by userspace, either through
768 * the sysfs interfaces or on the kernel cmdline. In that case the
769 * @detect callback isn't called.
770 *
771 * FIXME:
772 *
773 * Note that this hook is only called by the probe helper. It's not in
774 * the helper library vtable purely for historical reasons. The only DRM
775 * core entry point to probe connector state is @fill_modes.
776 */
777 void (*force)(struct drm_connector *connector);
778
779 /**
780 * @fill_modes:
781 *
782 * Entry point for output detection and basic mode validation. The
783 * driver should reprobe the output if needed (e.g. when hotplug
Daniel Vetterd5745282017-01-25 07:26:45 +0100784 * handling is unreliable), add all detected modes to &drm_connector.modes
Daniel Vetter52217192016-08-12 22:48:50 +0200785 * and filter out any the device can't support in any configuration. It
786 * also needs to filter out any modes wider or higher than the
787 * parameters max_width and max_height indicate.
788 *
789 * The drivers must also prune any modes no longer valid from
Daniel Vetterd5745282017-01-25 07:26:45 +0100790 * &drm_connector.modes. Furthermore it must update
791 * &drm_connector.status and &drm_connector.edid. If no EDID has been
792 * received for this output connector->edid must be NULL.
Daniel Vetter52217192016-08-12 22:48:50 +0200793 *
794 * Drivers using the probe helpers should use
Daniel Vetter92e1d262018-07-09 10:40:05 +0200795 * drm_helper_probe_single_connector_modes() to implement this
Daniel Vetter52217192016-08-12 22:48:50 +0200796 * function.
797 *
798 * RETURNS:
799 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100800 * The number of modes detected and filled into &drm_connector.modes.
Daniel Vetter52217192016-08-12 22:48:50 +0200801 */
802 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height);
803
804 /**
805 * @set_property:
806 *
807 * This is the legacy entry point to update a property attached to the
808 * connector.
809 *
Daniel Vetter52217192016-08-12 22:48:50 +0200810 * This callback is optional if the driver does not support any legacy
Daniel Vetter144a7992017-07-25 14:02:04 +0200811 * driver-private properties. For atomic drivers it is not used because
812 * property handling is done entirely in the DRM core.
Daniel Vetter52217192016-08-12 22:48:50 +0200813 *
814 * RETURNS:
815 *
816 * 0 on success or a negative error code on failure.
817 */
818 int (*set_property)(struct drm_connector *connector, struct drm_property *property,
819 uint64_t val);
820
821 /**
822 * @late_register:
823 *
824 * This optional hook can be used to register additional userspace
825 * interfaces attached to the connector, light backlight control, i2c,
826 * DP aux or similar interfaces. It is called late in the driver load
827 * sequence from drm_connector_register() when registering all the
828 * core drm connector interfaces. Everything added from this callback
829 * should be unregistered in the early_unregister callback.
830 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100831 * This is called while holding &drm_connector.mutex.
Daniel Vettere73ab002016-12-18 14:35:45 +0100832 *
Daniel Vetter52217192016-08-12 22:48:50 +0200833 * Returns:
834 *
835 * 0 on success, or a negative error code on failure.
836 */
837 int (*late_register)(struct drm_connector *connector);
838
839 /**
840 * @early_unregister:
841 *
842 * This optional hook should be used to unregister the additional
843 * userspace interfaces attached to the connector from
Grazvydas Ignotas621a9992016-10-09 20:07:00 +0300844 * late_register(). It is called from drm_connector_unregister(),
Daniel Vetter52217192016-08-12 22:48:50 +0200845 * early in the driver unload sequence to disable userspace access
846 * before data structures are torndown.
Daniel Vettere73ab002016-12-18 14:35:45 +0100847 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100848 * This is called while holding &drm_connector.mutex.
Daniel Vetter52217192016-08-12 22:48:50 +0200849 */
850 void (*early_unregister)(struct drm_connector *connector);
851
852 /**
853 * @destroy:
854 *
855 * Clean up connector resources. This is called at driver unload time
856 * through drm_mode_config_cleanup(). It can also be called at runtime
857 * when a connector is being hot-unplugged for drivers that support
858 * connector hotplugging (e.g. DisplayPort MST).
859 */
860 void (*destroy)(struct drm_connector *connector);
861
862 /**
863 * @atomic_duplicate_state:
864 *
865 * Duplicate the current atomic state for this connector and return it.
Grazvydas Ignotas621a9992016-10-09 20:07:00 +0300866 * The core and helpers guarantee that any atomic state duplicated with
Daniel Vetter52217192016-08-12 22:48:50 +0200867 * this hook and still owned by the caller (i.e. not transferred to the
Daniel Vetterd5745282017-01-25 07:26:45 +0100868 * driver by calling &drm_mode_config_funcs.atomic_commit) will be
869 * cleaned up by calling the @atomic_destroy_state hook in this
870 * structure.
Daniel Vetter52217192016-08-12 22:48:50 +0200871 *
Haneen Mohammedba1f6652018-05-25 04:25:55 +0300872 * This callback is mandatory for atomic drivers.
873 *
Daniel Vetterea0dd852016-12-29 21:48:26 +0100874 * Atomic drivers which don't subclass &struct drm_connector_state should use
Daniel Vetter52217192016-08-12 22:48:50 +0200875 * drm_atomic_helper_connector_duplicate_state(). Drivers that subclass the
876 * state structure to extend it with driver-private state should use
877 * __drm_atomic_helper_connector_duplicate_state() to make sure shared state is
878 * duplicated in a consistent fashion across drivers.
879 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100880 * It is an error to call this hook before &drm_connector.state has been
Daniel Vetter52217192016-08-12 22:48:50 +0200881 * initialized correctly.
882 *
883 * NOTE:
884 *
885 * If the duplicate state references refcounted resources this hook must
886 * acquire a reference for each of them. The driver must release these
887 * references again in @atomic_destroy_state.
888 *
889 * RETURNS:
890 *
891 * Duplicated atomic state or NULL when the allocation failed.
892 */
893 struct drm_connector_state *(*atomic_duplicate_state)(struct drm_connector *connector);
894
895 /**
896 * @atomic_destroy_state:
897 *
898 * Destroy a state duplicated with @atomic_duplicate_state and release
899 * or unreference all resources it references
Haneen Mohammedba1f6652018-05-25 04:25:55 +0300900 *
901 * This callback is mandatory for atomic drivers.
Daniel Vetter52217192016-08-12 22:48:50 +0200902 */
903 void (*atomic_destroy_state)(struct drm_connector *connector,
904 struct drm_connector_state *state);
905
906 /**
907 * @atomic_set_property:
908 *
909 * Decode a driver-private property value and store the decoded value
910 * into the passed-in state structure. Since the atomic core decodes all
911 * standardized properties (even for extensions beyond the core set of
912 * properties which might not be implemented by all drivers) this
913 * requires drivers to subclass the state structure.
914 *
915 * Such driver-private properties should really only be implemented for
916 * truly hardware/vendor specific state. Instead it is preferred to
917 * standardize atomic extension and decode the properties used to expose
918 * such an extension in the core.
919 *
920 * Do not call this function directly, use
921 * drm_atomic_connector_set_property() instead.
922 *
923 * This callback is optional if the driver does not support any
924 * driver-private atomic properties.
925 *
926 * NOTE:
927 *
928 * This function is called in the state assembly phase of atomic
929 * modesets, which can be aborted for any reason (including on
930 * userspace's request to just check whether a configuration would be
931 * possible). Drivers MUST NOT touch any persistent state (hardware or
932 * software) or data structures except the passed in @state parameter.
933 *
934 * Also since userspace controls in which order properties are set this
935 * function must not do any input validation (since the state update is
936 * incomplete and hence likely inconsistent). Instead any such input
937 * validation must be done in the various atomic_check callbacks.
938 *
939 * RETURNS:
940 *
941 * 0 if the property has been found, -EINVAL if the property isn't
942 * implemented by the driver (which shouldn't ever happen, the core only
943 * asks for properties attached to this connector). No other validation
944 * is allowed by the driver. The core already checks that the property
945 * value is within the range (integer, valid enum value, ...) the driver
946 * set when registering the property.
947 */
948 int (*atomic_set_property)(struct drm_connector *connector,
949 struct drm_connector_state *state,
950 struct drm_property *property,
951 uint64_t val);
952
953 /**
954 * @atomic_get_property:
955 *
956 * Reads out the decoded driver-private property. This is used to
957 * implement the GETCONNECTOR IOCTL.
958 *
959 * Do not call this function directly, use
960 * drm_atomic_connector_get_property() instead.
961 *
962 * This callback is optional if the driver does not support any
963 * driver-private atomic properties.
964 *
965 * RETURNS:
966 *
967 * 0 on success, -EINVAL if the property isn't implemented by the
968 * driver (which shouldn't ever happen, the core only asks for
969 * properties attached to this connector).
970 */
971 int (*atomic_get_property)(struct drm_connector *connector,
972 const struct drm_connector_state *state,
973 struct drm_property *property,
974 uint64_t *val);
Rob Clarkfceffb322016-11-05 11:08:09 -0400975
976 /**
977 * @atomic_print_state:
978 *
Daniel Vetterea0dd852016-12-29 21:48:26 +0100979 * If driver subclasses &struct drm_connector_state, it should implement
Rob Clarkfceffb322016-11-05 11:08:09 -0400980 * this optional hook for printing additional driver specific state.
981 *
982 * Do not call this directly, use drm_atomic_connector_print_state()
983 * instead.
984 */
985 void (*atomic_print_state)(struct drm_printer *p,
986 const struct drm_connector_state *state);
Daniel Vetter52217192016-08-12 22:48:50 +0200987};
988
Maxime Ripard772cd522019-06-19 12:17:48 +0200989/**
990 * struct drm_cmdline_mode - DRM Mode passed through the kernel command-line
991 *
992 * Each connector can have an initial mode with additional options
993 * passed through the kernel command line. This structure allows to
994 * express those parameters and will be filled by the command-line
995 * parser.
996 */
Daniel Vetter52217192016-08-12 22:48:50 +0200997struct drm_cmdline_mode {
Maxime Ripard772cd522019-06-19 12:17:48 +0200998 /**
Maxime Ripard3aeeb132019-06-19 12:17:50 +0200999 * @name:
1000 *
1001 * Name of the mode.
1002 */
1003 char name[DRM_DISPLAY_MODE_LEN];
1004
1005 /**
Maxime Ripard772cd522019-06-19 12:17:48 +02001006 * @specified:
1007 *
1008 * Has a mode been read from the command-line?
1009 */
Daniel Vetter52217192016-08-12 22:48:50 +02001010 bool specified;
Maxime Ripard772cd522019-06-19 12:17:48 +02001011
1012 /**
1013 * @refresh_specified:
1014 *
1015 * Did the mode have a preferred refresh rate?
1016 */
Daniel Vetter52217192016-08-12 22:48:50 +02001017 bool refresh_specified;
Maxime Ripard772cd522019-06-19 12:17:48 +02001018
1019 /**
1020 * @bpp_specified:
1021 *
1022 * Did the mode have a preferred BPP?
1023 */
Daniel Vetter52217192016-08-12 22:48:50 +02001024 bool bpp_specified;
Maxime Ripard772cd522019-06-19 12:17:48 +02001025
1026 /**
1027 * @xres:
1028 *
1029 * Active resolution on the X axis, in pixels.
1030 */
1031 int xres;
1032
1033 /**
1034 * @yres:
1035 *
1036 * Active resolution on the Y axis, in pixels.
1037 */
1038 int yres;
1039
1040 /**
1041 * @bpp:
1042 *
1043 * Bits per pixels for the mode.
1044 */
Daniel Vetter52217192016-08-12 22:48:50 +02001045 int bpp;
Maxime Ripard772cd522019-06-19 12:17:48 +02001046
1047 /**
1048 * @refresh:
1049 *
1050 * Refresh rate, in Hertz.
1051 */
Daniel Vetter52217192016-08-12 22:48:50 +02001052 int refresh;
Maxime Ripard772cd522019-06-19 12:17:48 +02001053
1054 /**
1055 * @rb:
1056 *
1057 * Do we need to use reduced blanking?
1058 */
Daniel Vetter52217192016-08-12 22:48:50 +02001059 bool rb;
Maxime Ripard772cd522019-06-19 12:17:48 +02001060
1061 /**
1062 * @interlace:
1063 *
1064 * The mode is interlaced.
1065 */
Daniel Vetter52217192016-08-12 22:48:50 +02001066 bool interlace;
Maxime Ripard772cd522019-06-19 12:17:48 +02001067
1068 /**
1069 * @cvt:
1070 *
1071 * The timings will be calculated using the VESA Coordinated
1072 * Video Timings instead of looking up the mode from a table.
1073 */
Daniel Vetter52217192016-08-12 22:48:50 +02001074 bool cvt;
Maxime Ripard772cd522019-06-19 12:17:48 +02001075
1076 /**
1077 * @margins:
1078 *
1079 * Add margins to the mode calculation (1.8% of xres rounded
1080 * down to 8 pixels and 1.8% of yres).
1081 */
Daniel Vetter52217192016-08-12 22:48:50 +02001082 bool margins;
Maxime Ripard772cd522019-06-19 12:17:48 +02001083
1084 /**
1085 * @force:
1086 *
1087 * Ignore the hotplug state of the connector, and force its
1088 * state to one of the DRM_FORCE_* values.
1089 */
Daniel Vetter52217192016-08-12 22:48:50 +02001090 enum drm_connector_force force;
Maxime Ripard1bf4e092019-06-19 12:17:51 +02001091
1092 /**
1093 * @rotation_reflection:
1094 *
1095 * Initial rotation and reflection of the mode setup from the
1096 * command line. See DRM_MODE_ROTATE_* and
1097 * DRM_MODE_REFLECT_*. The only rotations supported are
1098 * DRM_MODE_ROTATE_0 and DRM_MODE_ROTATE_180.
1099 */
1100 unsigned int rotation_reflection;
Maxime Ripard3d46a302019-06-19 12:17:51 +02001101
1102 /**
Hans de Goede4e7a4a62019-11-18 16:51:30 +01001103 * @panel_orientation:
1104 *
1105 * drm-connector "panel orientation" property override value,
1106 * DRM_MODE_PANEL_ORIENTATION_UNKNOWN if not set.
1107 */
1108 enum drm_panel_orientation panel_orientation;
1109
1110 /**
Maxime Ripard3d46a302019-06-19 12:17:51 +02001111 * @tv_margins: TV margins to apply to the mode.
1112 */
1113 struct drm_connector_tv_margins tv_margins;
Daniel Vetter52217192016-08-12 22:48:50 +02001114};
1115
1116/**
1117 * struct drm_connector - central DRM connector control structure
Daniel Vetter52217192016-08-12 22:48:50 +02001118 *
1119 * Each connector may be connected to one or more CRTCs, or may be clonable by
1120 * another connector if they can share a CRTC. Each connector also has a specific
1121 * position in the broader display (referred to as a 'screen' though it could
1122 * span multiple monitors).
1123 */
1124struct drm_connector {
Daniel Vetter92e1d262018-07-09 10:40:05 +02001125 /** @dev: parent DRM device */
Daniel Vetter52217192016-08-12 22:48:50 +02001126 struct drm_device *dev;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001127 /** @kdev: kernel device for sysfs attributes */
Daniel Vetter52217192016-08-12 22:48:50 +02001128 struct device *kdev;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001129 /** @attr: sysfs attributes */
Daniel Vetter52217192016-08-12 22:48:50 +02001130 struct device_attribute *attr;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001131
1132 /**
1133 * @head:
1134 *
1135 * List of all connectors on a @dev, linked from
1136 * &drm_mode_config.connector_list. Protected by
1137 * &drm_mode_config.connector_list_lock, but please only use
1138 * &drm_connector_list_iter to walk this list.
1139 */
Daniel Vetter52217192016-08-12 22:48:50 +02001140 struct list_head head;
1141
Daniel Vetter92e1d262018-07-09 10:40:05 +02001142 /** @base: base KMS object */
Daniel Vetter52217192016-08-12 22:48:50 +02001143 struct drm_mode_object base;
1144
Daniel Vetter92e1d262018-07-09 10:40:05 +02001145 /** @name: human readable name, can be overwritten by the driver */
Daniel Vetter52217192016-08-12 22:48:50 +02001146 char *name;
1147
1148 /**
Daniel Vettere73ab002016-12-18 14:35:45 +01001149 * @mutex: Lock for general connector state, but currently only protects
Daniel Vetterd5745282017-01-25 07:26:45 +01001150 * @registered. Most of the connector state is still protected by
1151 * &drm_mode_config.mutex.
Daniel Vettere73ab002016-12-18 14:35:45 +01001152 */
1153 struct mutex mutex;
1154
1155 /**
Daniel Vetter52217192016-08-12 22:48:50 +02001156 * @index: Compacted connector index, which matches the position inside
1157 * the mode_config.list for drivers not supporting hot-add/removing. Can
1158 * be used as an array index. It is invariant over the lifetime of the
1159 * connector.
1160 */
1161 unsigned index;
1162
Daniel Vetter92e1d262018-07-09 10:40:05 +02001163 /**
1164 * @connector_type:
1165 * one of the DRM_MODE_CONNECTOR_<foo> types from drm_mode.h
1166 */
Daniel Vetter52217192016-08-12 22:48:50 +02001167 int connector_type;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001168 /** @connector_type_id: index into connector type enum */
Daniel Vetter52217192016-08-12 22:48:50 +02001169 int connector_type_id;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001170 /**
1171 * @interlace_allowed:
1172 * Can this connector handle interlaced modes? Only used by
1173 * drm_helper_probe_single_connector_modes() for mode filtering.
1174 */
Daniel Vetter52217192016-08-12 22:48:50 +02001175 bool interlace_allowed;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001176 /**
1177 * @doublescan_allowed:
1178 * Can this connector handle doublescan? Only used by
1179 * drm_helper_probe_single_connector_modes() for mode filtering.
1180 */
Daniel Vetter52217192016-08-12 22:48:50 +02001181 bool doublescan_allowed;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001182 /**
1183 * @stereo_allowed:
1184 * Can this connector handle stereo modes? Only used by
1185 * drm_helper_probe_single_connector_modes() for mode filtering.
1186 */
Daniel Vetter52217192016-08-12 22:48:50 +02001187 bool stereo_allowed;
Shashank Sharmad8523152017-07-13 21:03:11 +05301188
1189 /**
1190 * @ycbcr_420_allowed : This bool indicates if this connector is
1191 * capable of handling YCBCR 420 output. While parsing the EDID
Matt Roper1e55a532019-02-01 17:23:26 -08001192 * blocks it's very helpful to know if the source is capable of
Shashank Sharmad8523152017-07-13 21:03:11 +05301193 * handling YCBCR 420 outputs.
1194 */
1195 bool ycbcr_420_allowed;
1196
Daniel Vettere73ab002016-12-18 14:35:45 +01001197 /**
Lyude Paul39b50c62018-10-16 16:39:46 -04001198 * @registration_state: Is this connector initializing, exposed
1199 * (registered) with userspace, or unregistered?
1200 *
Daniel Vettere73ab002016-12-18 14:35:45 +01001201 * Protected by @mutex.
1202 */
Lyude Paul39b50c62018-10-16 16:39:46 -04001203 enum drm_connector_registration_state registration_state;
Daniel Vetter91eefc02016-12-14 00:08:10 +01001204
1205 /**
1206 * @modes:
1207 * Modes available on this connector (from fill_modes() + user).
Daniel Vetterd5745282017-01-25 07:26:45 +01001208 * Protected by &drm_mode_config.mutex.
Daniel Vetter91eefc02016-12-14 00:08:10 +01001209 */
Daniel Vetterd5745282017-01-25 07:26:45 +01001210 struct list_head modes;
Daniel Vetter52217192016-08-12 22:48:50 +02001211
Daniel Vetter91eefc02016-12-14 00:08:10 +01001212 /**
1213 * @status:
1214 * One of the drm_connector_status enums (connected, not, or unknown).
Daniel Vetterd5745282017-01-25 07:26:45 +01001215 * Protected by &drm_mode_config.mutex.
Daniel Vetter91eefc02016-12-14 00:08:10 +01001216 */
Daniel Vetter52217192016-08-12 22:48:50 +02001217 enum drm_connector_status status;
1218
Daniel Vetter91eefc02016-12-14 00:08:10 +01001219 /**
1220 * @probed_modes:
1221 * These are modes added by probing with DDC or the BIOS, before
Daniel Vetterd5745282017-01-25 07:26:45 +01001222 * filtering is applied. Used by the probe helpers. Protected by
1223 * &drm_mode_config.mutex.
Daniel Vetter91eefc02016-12-14 00:08:10 +01001224 */
Daniel Vetter52217192016-08-12 22:48:50 +02001225 struct list_head probed_modes;
1226
Daniel Vetterae2a6da2016-08-12 22:48:53 +02001227 /**
1228 * @display_info: Display information is filled from EDID information
1229 * when a display is detected. For non hot-pluggable displays such as
1230 * flat panels in embedded systems, the driver should initialize the
Daniel Vetterd5745282017-01-25 07:26:45 +01001231 * &drm_display_info.width_mm and &drm_display_info.height_mm fields
1232 * with the physical size of the display.
Daniel Vetter91eefc02016-12-14 00:08:10 +01001233 *
Daniel Vetterd5745282017-01-25 07:26:45 +01001234 * Protected by &drm_mode_config.mutex.
Daniel Vetterae2a6da2016-08-12 22:48:53 +02001235 */
Daniel Vetter52217192016-08-12 22:48:50 +02001236 struct drm_display_info display_info;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001237
1238 /** @funcs: connector control functions */
Daniel Vetter52217192016-08-12 22:48:50 +02001239 const struct drm_connector_funcs *funcs;
1240
Daniel Vetter92e1d262018-07-09 10:40:05 +02001241 /**
1242 * @edid_blob_ptr: DRM property containing EDID if present. Protected by
1243 * &drm_mode_config.mutex. This should be updated only by calling
Daniel Vetterc555f022018-07-09 10:40:06 +02001244 * drm_connector_update_edid_property().
Daniel Vetter92e1d262018-07-09 10:40:05 +02001245 */
Daniel Vetter52217192016-08-12 22:48:50 +02001246 struct drm_property_blob *edid_blob_ptr;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001247
1248 /** @properties: property tracking for this connector */
Daniel Vetter52217192016-08-12 22:48:50 +02001249 struct drm_object_properties properties;
1250
Daniel Vetter92e1d262018-07-09 10:40:05 +02001251 /**
1252 * @scaling_mode_property: Optional atomic property to control the
1253 * upscaling. See drm_connector_attach_content_protection_property().
1254 */
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001255 struct drm_property *scaling_mode_property;
1256
Daniel Vetter52217192016-08-12 22:48:50 +02001257 /**
Nicholas Kazlauskasba1b0f62018-09-18 09:55:20 -04001258 * @vrr_capable_property: Optional property to help userspace
1259 * query hardware support for variable refresh rate on a connector.
1260 * connector. Drivers can add the property to a connector by
1261 * calling drm_connector_attach_vrr_capable_property().
1262 *
1263 * This should be updated only by calling
1264 * drm_connector_set_vrr_capable_property().
1265 */
1266 struct drm_property *vrr_capable_property;
1267
1268 /**
Uma Shankard2c6a402019-02-19 22:42:59 +05301269 * @colorspace_property: Connector property to set the suitable
1270 * colorspace supported by the sink.
1271 */
1272 struct drm_property *colorspace_property;
1273
1274 /**
Daniel Vetter52217192016-08-12 22:48:50 +02001275 * @path_blob_ptr:
1276 *
Daniel Vetter92e1d262018-07-09 10:40:05 +02001277 * DRM blob property data for the DP MST path property. This should only
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001278 * be updated by calling drm_connector_set_path_property().
Daniel Vetter52217192016-08-12 22:48:50 +02001279 */
1280 struct drm_property_blob *path_blob_ptr;
1281
Radhakrishna Sripada47e22ff2018-10-12 11:42:32 -07001282 /**
1283 * @max_bpc_property: Default connector property for the max bpc to be
1284 * driven out of the connector.
1285 */
1286 struct drm_property *max_bpc_property;
1287
Daniel Vetter52217192016-08-12 22:48:50 +02001288#define DRM_CONNECTOR_POLL_HPD (1 << 0)
Daniel Vetter52217192016-08-12 22:48:50 +02001289#define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
Daniel Vetter52217192016-08-12 22:48:50 +02001290#define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
1291
Daniel Vetterae2a6da2016-08-12 22:48:53 +02001292 /**
1293 * @polled:
1294 *
1295 * Connector polling mode, a combination of
1296 *
1297 * DRM_CONNECTOR_POLL_HPD
1298 * The connector generates hotplug events and doesn't need to be
1299 * periodically polled. The CONNECT and DISCONNECT flags must not
1300 * be set together with the HPD flag.
1301 *
1302 * DRM_CONNECTOR_POLL_CONNECT
1303 * Periodically poll the connector for connection.
1304 *
1305 * DRM_CONNECTOR_POLL_DISCONNECT
Daniel Vetter92e1d262018-07-09 10:40:05 +02001306 * Periodically poll the connector for disconnection, without
1307 * causing flickering even when the connector is in use. DACs should
1308 * rarely do this without a lot of testing.
Daniel Vetterae2a6da2016-08-12 22:48:53 +02001309 *
1310 * Set to 0 for connectors that don't support connection status
1311 * discovery.
1312 */
1313 uint8_t polled;
Daniel Vetter52217192016-08-12 22:48:50 +02001314
Daniel Vetter92e1d262018-07-09 10:40:05 +02001315 /**
1316 * @dpms: Current dpms state. For legacy drivers the
1317 * &drm_connector_funcs.dpms callback must update this. For atomic
1318 * drivers, this is handled by the core atomic code, and drivers must
1319 * only take &drm_crtc_state.active into account.
1320 */
Daniel Vetter52217192016-08-12 22:48:50 +02001321 int dpms;
1322
Daniel Vetter92e1d262018-07-09 10:40:05 +02001323 /** @helper_private: mid-layer private data */
Daniel Vetter52217192016-08-12 22:48:50 +02001324 const struct drm_connector_helper_funcs *helper_private;
1325
Daniel Vetter92e1d262018-07-09 10:40:05 +02001326 /** @cmdline_mode: mode line parsed from the kernel cmdline for this connector */
Daniel Vetter52217192016-08-12 22:48:50 +02001327 struct drm_cmdline_mode cmdline_mode;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001328 /** @force: a DRM_FORCE_<foo> state for forced mode sets */
Daniel Vetter52217192016-08-12 22:48:50 +02001329 enum drm_connector_force force;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001330 /** @override_edid: has the EDID been overwritten through debugfs for testing? */
Daniel Vetter52217192016-08-12 22:48:50 +02001331 bool override_edid;
1332
Daniel Vetter92e1d262018-07-09 10:40:05 +02001333 /**
José Roberto de Souza62afb4a2019-09-13 16:28:57 -07001334 * @possible_encoders: Bit mask of encoders that can drive this
1335 * connector, drm_encoder_index() determines the index into the bitfield
1336 * and the bits are set with drm_connector_attach_encoder().
Daniel Vetter92e1d262018-07-09 10:40:05 +02001337 */
José Roberto de Souza62afb4a2019-09-13 16:28:57 -07001338 u32 possible_encoders;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001339
Daniel Vetter2e2b96e2017-11-08 21:30:07 +01001340 /**
1341 * @encoder: Currently bound encoder driving this connector, if any.
1342 * Only really meaningful for non-atomic drivers. Atomic drivers should
1343 * instead look at &drm_connector_state.best_encoder, and in case they
1344 * need the CRTC driving this output, &drm_connector_state.crtc.
1345 */
1346 struct drm_encoder *encoder;
Daniel Vetter52217192016-08-12 22:48:50 +02001347
1348#define MAX_ELD_BYTES 128
Daniel Vetter92e1d262018-07-09 10:40:05 +02001349 /** @eld: EDID-like data, if present */
Daniel Vetter52217192016-08-12 22:48:50 +02001350 uint8_t eld[MAX_ELD_BYTES];
Daniel Vetter92e1d262018-07-09 10:40:05 +02001351 /** @latency_present: AV delay info from ELD, if found */
Daniel Vetter52217192016-08-12 22:48:50 +02001352 bool latency_present[2];
Daniel Vetter92e1d262018-07-09 10:40:05 +02001353 /**
1354 * @video_latency: Video latency info from ELD, if found.
1355 * [0]: progressive, [1]: interlaced
1356 */
1357 int video_latency[2];
1358 /**
1359 * @audio_latency: audio latency info from ELD, if found
1360 * [0]: progressive, [1]: interlaced
1361 */
Daniel Vetter52217192016-08-12 22:48:50 +02001362 int audio_latency[2];
Andrzej Pietrasiewicze1a29c62019-07-26 19:22:55 +02001363
1364 /**
1365 * @ddc: associated ddc adapter.
1366 * A connector usually has its associated ddc adapter. If a driver uses
1367 * this field, then an appropriate symbolic link is created in connector
1368 * sysfs directory to make it easy for the user to tell which i2c
1369 * adapter is for a particular display.
Andrzej Pietrasiewicz100163d2019-07-26 19:22:56 +02001370 *
1371 * The field should be set by calling drm_connector_init_with_ddc().
Andrzej Pietrasiewicze1a29c62019-07-26 19:22:55 +02001372 */
1373 struct i2c_adapter *ddc;
1374
Daniel Vetter92e1d262018-07-09 10:40:05 +02001375 /**
1376 * @null_edid_counter: track sinks that give us all zeros for the EDID.
1377 * Needed to workaround some HW bugs where we get all 0s
1378 */
1379 int null_edid_counter;
1380
1381 /** @bad_edid_counter: track sinks that give us an EDID with invalid checksum */
Daniel Vetter52217192016-08-12 22:48:50 +02001382 unsigned bad_edid_counter;
1383
Daniel Vetter92e1d262018-07-09 10:40:05 +02001384 /**
1385 * @edid_corrupt: Indicates whether the last read EDID was corrupt. Used
1386 * in Displayport compliance testing - Displayport Link CTS Core 1.2
1387 * rev1.1 4.2.2.6
Daniel Vetter52217192016-08-12 22:48:50 +02001388 */
1389 bool edid_corrupt;
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001390 /**
1391 * @real_edid_checksum: real edid checksum for corrupted edid block.
1392 * Required in Displayport 1.4 compliance testing
1393 * rev1.1 4.2.2.6
1394 */
1395 u8 real_edid_checksum;
Daniel Vetter52217192016-08-12 22:48:50 +02001396
Daniel Vetter92e1d262018-07-09 10:40:05 +02001397 /** @debugfs_entry: debugfs directory for this connector */
Daniel Vetter52217192016-08-12 22:48:50 +02001398 struct dentry *debugfs_entry;
1399
Daniel Vetterc9e42b72017-03-28 17:53:48 +02001400 /**
1401 * @state:
1402 *
1403 * Current atomic state for this connector.
1404 *
Daniel Vetter92e1d262018-07-09 10:40:05 +02001405 * This is protected by &drm_mode_config.connection_mutex. Note that
Daniel Vetterc9e42b72017-03-28 17:53:48 +02001406 * nonblocking atomic commits access the current connector state without
1407 * taking locks. Either by going through the &struct drm_atomic_state
Maarten Lankhorst77ac3b02017-07-19 16:39:20 +02001408 * pointers, see for_each_oldnew_connector_in_state(),
Daniel Vetterc9e42b72017-03-28 17:53:48 +02001409 * for_each_old_connector_in_state() and
1410 * for_each_new_connector_in_state(). Or through careful ordering of
1411 * atomic commit operations as implemented in the atomic helpers, see
1412 * &struct drm_crtc_commit.
1413 */
Daniel Vetter52217192016-08-12 22:48:50 +02001414 struct drm_connector_state *state;
1415
Daniel Vetter92e1d262018-07-09 10:40:05 +02001416 /* DisplayID bits. FIXME: Extract into a substruct? */
1417
1418 /**
1419 * @tile_blob_ptr:
1420 *
1421 * DRM blob property data for the tile property (used mostly by DP MST).
1422 * This is meant for screens which are driven through separate display
1423 * pipelines represented by &drm_crtc, which might not be running with
1424 * genlocked clocks. For tiled panels which are genlocked, like
1425 * dual-link LVDS or dual-link DSI, the driver should try to not expose
1426 * the tiling and virtualize both &drm_crtc and &drm_plane if needed.
1427 *
1428 * This should only be updated by calling
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001429 * drm_connector_set_tile_property().
Daniel Vetter92e1d262018-07-09 10:40:05 +02001430 */
1431 struct drm_property_blob *tile_blob_ptr;
1432
1433 /** @has_tile: is this connector connected to a tiled monitor */
Daniel Vetter52217192016-08-12 22:48:50 +02001434 bool has_tile;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001435 /** @tile_group: tile group for the connected monitor */
Daniel Vetter52217192016-08-12 22:48:50 +02001436 struct drm_tile_group *tile_group;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001437 /** @tile_is_single_monitor: whether the tile is one monitor housing */
Daniel Vetter52217192016-08-12 22:48:50 +02001438 bool tile_is_single_monitor;
1439
Daniel Vetter92e1d262018-07-09 10:40:05 +02001440 /** @num_h_tile: number of horizontal tiles in the tile group */
1441 /** @num_v_tile: number of vertical tiles in the tile group */
Daniel Vetter52217192016-08-12 22:48:50 +02001442 uint8_t num_h_tile, num_v_tile;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001443 /** @tile_h_loc: horizontal location of this tile */
1444 /** @tile_v_loc: vertical location of this tile */
Daniel Vetter52217192016-08-12 22:48:50 +02001445 uint8_t tile_h_loc, tile_v_loc;
Daniel Vetter92e1d262018-07-09 10:40:05 +02001446 /** @tile_h_size: horizontal size of this tile. */
1447 /** @tile_v_size: vertical size of this tile. */
Daniel Vetter52217192016-08-12 22:48:50 +02001448 uint16_t tile_h_size, tile_v_size;
Daniel Vettera703c552017-12-04 21:48:18 +01001449
1450 /**
Daniel Vetterea497bb2017-12-13 13:49:36 +01001451 * @free_node:
Daniel Vettera703c552017-12-04 21:48:18 +01001452 *
Daniel Vetter92e1d262018-07-09 10:40:05 +02001453 * List used only by &drm_connector_list_iter to be able to clean up a
Daniel Vetterea497bb2017-12-13 13:49:36 +01001454 * connector from any context, in conjunction with
1455 * &drm_mode_config.connector_free_work.
Daniel Vettera703c552017-12-04 21:48:18 +01001456 */
Daniel Vetterea497bb2017-12-13 13:49:36 +01001457 struct llist_node free_node;
Uma Shankarfbb5d032019-05-16 19:40:06 +05301458
Uma Shankara09db882019-06-04 16:47:02 +05301459 /** @hdr_sink_metadata: HDR Metadata Information read from sink */
Uma Shankarfbb5d032019-05-16 19:40:06 +05301460 struct hdr_sink_metadata hdr_sink_metadata;
Daniel Vetter52217192016-08-12 22:48:50 +02001461};
1462
1463#define obj_to_connector(x) container_of(x, struct drm_connector, base)
1464
1465int drm_connector_init(struct drm_device *dev,
1466 struct drm_connector *connector,
1467 const struct drm_connector_funcs *funcs,
1468 int connector_type);
Andrzej Pietrasiewicz100163d2019-07-26 19:22:56 +02001469int drm_connector_init_with_ddc(struct drm_device *dev,
1470 struct drm_connector *connector,
1471 const struct drm_connector_funcs *funcs,
1472 int connector_type,
1473 struct i2c_adapter *ddc);
Gerd Hoffmann6b7e2d52018-10-02 13:10:40 +02001474void drm_connector_attach_edid_property(struct drm_connector *connector);
Daniel Vetter52217192016-08-12 22:48:50 +02001475int drm_connector_register(struct drm_connector *connector);
1476void drm_connector_unregister(struct drm_connector *connector);
Daniel Vettercde4c442018-07-09 10:40:07 +02001477int drm_connector_attach_encoder(struct drm_connector *connector,
Daniel Vetter52217192016-08-12 22:48:50 +02001478 struct drm_encoder *encoder);
1479
1480void drm_connector_cleanup(struct drm_connector *connector);
Ville Syrjälä73705732018-06-26 22:47:10 +03001481
1482static inline unsigned int drm_connector_index(const struct drm_connector *connector)
Daniel Vetter52217192016-08-12 22:48:50 +02001483{
1484 return connector->index;
1485}
1486
Ville Syrjälä73705732018-06-26 22:47:10 +03001487static inline u32 drm_connector_mask(const struct drm_connector *connector)
1488{
1489 return 1 << connector->index;
1490}
1491
Daniel Vetter52217192016-08-12 22:48:50 +02001492/**
1493 * drm_connector_lookup - lookup connector object
1494 * @dev: DRM device
Dave Airliee7e62c72017-11-09 09:35:04 +10001495 * @file_priv: drm file to check for lease against.
Daniel Vetter52217192016-08-12 22:48:50 +02001496 * @id: connector object id
1497 *
1498 * This function looks up the connector object specified by id
1499 * add takes a reference to it.
1500 */
1501static inline struct drm_connector *drm_connector_lookup(struct drm_device *dev,
Keith Packard418da172017-03-14 23:25:07 -07001502 struct drm_file *file_priv,
Daniel Vetter52217192016-08-12 22:48:50 +02001503 uint32_t id)
1504{
1505 struct drm_mode_object *mo;
Keith Packard418da172017-03-14 23:25:07 -07001506 mo = drm_mode_object_find(dev, file_priv, id, DRM_MODE_OBJECT_CONNECTOR);
Daniel Vetter52217192016-08-12 22:48:50 +02001507 return mo ? obj_to_connector(mo) : NULL;
1508}
1509
1510/**
Thierry Redingad093602017-02-28 15:46:39 +01001511 * drm_connector_get - acquire a connector reference
1512 * @connector: DRM connector
Daniel Vetter52217192016-08-12 22:48:50 +02001513 *
1514 * This function increments the connector's refcount.
1515 */
Thierry Redingad093602017-02-28 15:46:39 +01001516static inline void drm_connector_get(struct drm_connector *connector)
Daniel Vetter52217192016-08-12 22:48:50 +02001517{
Thierry Redingad093602017-02-28 15:46:39 +01001518 drm_mode_object_get(&connector->base);
Daniel Vetter52217192016-08-12 22:48:50 +02001519}
1520
1521/**
Thierry Redingad093602017-02-28 15:46:39 +01001522 * drm_connector_put - release a connector reference
1523 * @connector: DRM connector
Daniel Vetter52217192016-08-12 22:48:50 +02001524 *
Thierry Redingad093602017-02-28 15:46:39 +01001525 * This function decrements the connector's reference count and frees the
1526 * object if the reference count drops to zero.
1527 */
1528static inline void drm_connector_put(struct drm_connector *connector)
1529{
1530 drm_mode_object_put(&connector->base);
1531}
1532
1533/**
Lyude Paul39b50c62018-10-16 16:39:46 -04001534 * drm_connector_is_unregistered - has the connector been unregistered from
1535 * userspace?
1536 * @connector: DRM connector
1537 *
1538 * Checks whether or not @connector has been unregistered from userspace.
1539 *
1540 * Returns:
1541 * True if the connector was unregistered, false if the connector is
1542 * registered or has not yet been registered with userspace.
1543 */
1544static inline bool
1545drm_connector_is_unregistered(struct drm_connector *connector)
1546{
1547 return READ_ONCE(connector->registration_state) ==
1548 DRM_CONNECTOR_UNREGISTERED;
1549}
1550
Laurent Pinchartb35f90f2020-02-26 13:24:22 +02001551const char *drm_get_connector_type_name(unsigned int connector_type);
Daniel Vetter52217192016-08-12 22:48:50 +02001552const char *drm_get_connector_status_name(enum drm_connector_status status);
1553const char *drm_get_subpixel_order_name(enum subpixel_order order);
1554const char *drm_get_dpms_name(int val);
1555const char *drm_get_dvi_i_subconnector_name(int val);
1556const char *drm_get_dvi_i_select_name(int val);
1557const char *drm_get_tv_subconnector_name(int val);
1558const char *drm_get_tv_select_name(int val);
Sean Paul24557862018-01-08 14:55:37 -05001559const char *drm_get_content_protection_name(int val);
Ramalingam C7672dbb2019-08-01 17:11:14 +05301560const char *drm_get_hdcp_content_type_name(int val);
Daniel Vetter52217192016-08-12 22:48:50 +02001561
1562int drm_mode_create_dvi_i_properties(struct drm_device *dev);
Boris Brezillon6c4f52d2018-12-06 15:24:37 +01001563int drm_mode_create_tv_margin_properties(struct drm_device *dev);
Daniel Vetter52217192016-08-12 22:48:50 +02001564int drm_mode_create_tv_properties(struct drm_device *dev,
1565 unsigned int num_modes,
1566 const char * const modes[]);
Boris Brezillon6c4f52d2018-12-06 15:24:37 +01001567void drm_connector_attach_tv_margin_properties(struct drm_connector *conn);
Daniel Vetter52217192016-08-12 22:48:50 +02001568int drm_mode_create_scaling_mode_property(struct drm_device *dev);
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001569int drm_connector_attach_content_type_property(struct drm_connector *dev);
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001570int drm_connector_attach_scaling_mode_property(struct drm_connector *connector,
1571 u32 scaling_mode_mask);
Nicholas Kazlauskasba1b0f62018-09-18 09:55:20 -04001572int drm_connector_attach_vrr_capable_property(
1573 struct drm_connector *connector);
Daniel Vetter52217192016-08-12 22:48:50 +02001574int drm_mode_create_aspect_ratio_property(struct drm_device *dev);
Gwan-gyeong Mun8806cd32019-09-19 22:53:06 +03001575int drm_mode_create_hdmi_colorspace_property(struct drm_connector *connector);
Gwan-gyeong Mun45cf0e92019-09-19 22:53:07 +03001576int drm_mode_create_dp_colorspace_property(struct drm_connector *connector);
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001577int drm_mode_create_content_type_property(struct drm_device *dev);
1578void drm_hdmi_avi_infoframe_content_type(struct hdmi_avi_infoframe *frame,
1579 const struct drm_connector_state *conn_state);
1580
Daniel Vetter52217192016-08-12 22:48:50 +02001581int drm_mode_create_suggested_offset_properties(struct drm_device *dev);
1582
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001583int drm_connector_set_path_property(struct drm_connector *connector,
1584 const char *path);
1585int drm_connector_set_tile_property(struct drm_connector *connector);
Daniel Vetterc555f022018-07-09 10:40:06 +02001586int drm_connector_update_edid_property(struct drm_connector *connector,
1587 const struct edid *edid);
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001588void drm_connector_set_link_status_property(struct drm_connector *connector,
1589 uint64_t link_status);
Nicholas Kazlauskasba1b0f62018-09-18 09:55:20 -04001590void drm_connector_set_vrr_capable_property(
1591 struct drm_connector *connector, bool capable);
Derek Basehore69654c62020-01-05 16:51:19 +01001592int drm_connector_set_panel_orientation(
1593 struct drm_connector *connector,
1594 enum drm_panel_orientation panel_orientation);
1595int drm_connector_set_panel_orientation_with_quirk(
1596 struct drm_connector *connector,
1597 enum drm_panel_orientation panel_orientation,
1598 int width, int height);
Radhakrishna Sripada47e22ff2018-10-12 11:42:32 -07001599int drm_connector_attach_max_bpc_property(struct drm_connector *connector,
1600 int min, int max);
Daniel Vetterafb21ea62016-08-31 18:09:04 +02001601
1602/**
Daniel Vetter9498c192016-11-14 12:58:24 +01001603 * struct drm_tile_group - Tile group metadata
1604 * @refcount: reference count
1605 * @dev: DRM device
1606 * @id: tile group id exposed to userspace
1607 * @group_data: Sink-private data identifying this group
1608 *
1609 * @group_data corresponds to displayid vend/prod/serial for external screens
1610 * with an EDID.
1611 */
1612struct drm_tile_group {
1613 struct kref refcount;
1614 struct drm_device *dev;
1615 int id;
1616 u8 group_data[8];
1617};
1618
1619struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
Ville Syrjälä267ea752020-03-13 18:20:46 +02001620 const char topology[8]);
Daniel Vetter9498c192016-11-14 12:58:24 +01001621struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
Ville Syrjälä267ea752020-03-13 18:20:46 +02001622 const char topology[8]);
Daniel Vetter9498c192016-11-14 12:58:24 +01001623void drm_mode_put_tile_group(struct drm_device *dev,
1624 struct drm_tile_group *tg);
1625
1626/**
Daniel Vetter613051d2016-12-14 00:08:06 +01001627 * struct drm_connector_list_iter - connector_list iterator
1628 *
1629 * This iterator tracks state needed to be able to walk the connector_list
1630 * within struct drm_mode_config. Only use together with
Thierry Redingb982dab2017-02-28 15:46:43 +01001631 * drm_connector_list_iter_begin(), drm_connector_list_iter_end() and
Daniel Vetter613051d2016-12-14 00:08:06 +01001632 * drm_connector_list_iter_next() respectively the convenience macro
1633 * drm_for_each_connector_iter().
1634 */
1635struct drm_connector_list_iter {
1636/* private: */
1637 struct drm_device *dev;
1638 struct drm_connector *conn;
1639};
1640
Thierry Redingb982dab2017-02-28 15:46:43 +01001641void drm_connector_list_iter_begin(struct drm_device *dev,
1642 struct drm_connector_list_iter *iter);
Daniel Vetter613051d2016-12-14 00:08:06 +01001643struct drm_connector *
1644drm_connector_list_iter_next(struct drm_connector_list_iter *iter);
Thierry Redingb982dab2017-02-28 15:46:43 +01001645void drm_connector_list_iter_end(struct drm_connector_list_iter *iter);
Daniel Vetter613051d2016-12-14 00:08:06 +01001646
Ville Syrjälä38cb8d92018-06-28 16:13:13 +03001647bool drm_connector_has_possible_encoder(struct drm_connector *connector,
1648 struct drm_encoder *encoder);
1649
Daniel Vetter613051d2016-12-14 00:08:06 +01001650/**
1651 * drm_for_each_connector_iter - connector_list iterator macro
Daniel Vetterea0dd852016-12-29 21:48:26 +01001652 * @connector: &struct drm_connector pointer used as cursor
1653 * @iter: &struct drm_connector_list_iter
Daniel Vetter613051d2016-12-14 00:08:06 +01001654 *
1655 * Note that @connector is only valid within the list body, if you want to use
Thierry Redingb982dab2017-02-28 15:46:43 +01001656 * @connector after calling drm_connector_list_iter_end() then you need to grab
Gabriel Krisman Bertazi5e851c92017-04-20 21:38:19 -03001657 * your own reference first using drm_connector_get().
Daniel Vetter613051d2016-12-14 00:08:06 +01001658 */
1659#define drm_for_each_connector_iter(connector, iter) \
1660 while ((connector = drm_connector_list_iter_next(iter)))
1661
Ville Syrjälä83aefbb2018-06-28 16:13:09 +03001662/**
1663 * drm_connector_for_each_possible_encoder - iterate connector's possible encoders
1664 * @connector: &struct drm_connector pointer
1665 * @encoder: &struct drm_encoder pointer used as cursor
Ville Syrjälä83aefbb2018-06-28 16:13:09 +03001666 */
José Roberto de Souza62afb4a2019-09-13 16:28:57 -07001667#define drm_connector_for_each_possible_encoder(connector, encoder) \
1668 drm_for_each_encoder_mask(encoder, (connector)->dev, \
1669 (connector)->possible_encoders)
Ville Syrjälä83aefbb2018-06-28 16:13:09 +03001670
Daniel Vetter52217192016-08-12 22:48:50 +02001671#endif