]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - include/drm/drm_crtc.h
drm: Carry over the stereo flags when adding the alternate mode
[mirror_ubuntu-hirsute-kernel.git] / include / drm / drm_crtc.h
CommitLineData
f453ba04
DA
1/*
2 * Copyright © 2006 Keith Packard
3 * Copyright © 2007-2008 Dave Airlie
4 * Copyright © 2007-2008 Intel Corporation
5 * Jesse Barnes <jesse.barnes@intel.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25#ifndef __DRM_CRTC_H__
26#define __DRM_CRTC_H__
27
28#include <linux/i2c.h>
29#include <linux/spinlock.h>
30#include <linux/types.h>
31#include <linux/idr.h>
f453ba04 32#include <linux/fb.h>
19218e48 33#include <drm/drm_mode.h>
f453ba04 34
308e5bcb
JB
35#include <drm/drm_fourcc.h>
36
f453ba04
DA
37struct drm_device;
38struct drm_mode_set;
39struct drm_framebuffer;
7e3bdf4a 40struct drm_object_properties;
595887eb
TR
41struct drm_file;
42struct drm_clip_rect;
f453ba04
DA
43
44#define DRM_MODE_OBJECT_CRTC 0xcccccccc
45#define DRM_MODE_OBJECT_CONNECTOR 0xc0c0c0c0
46#define DRM_MODE_OBJECT_ENCODER 0xe0e0e0e0
47#define DRM_MODE_OBJECT_MODE 0xdededede
48#define DRM_MODE_OBJECT_PROPERTY 0xb0b0b0b0
49#define DRM_MODE_OBJECT_FB 0xfbfbfbfb
50#define DRM_MODE_OBJECT_BLOB 0xbbbbbbbb
8cf5c917 51#define DRM_MODE_OBJECT_PLANE 0xeeeeeeee
3b336ec4 52#define DRM_MODE_OBJECT_BRIDGE 0xbdbdbdbd
f453ba04
DA
53
54struct drm_mode_object {
55 uint32_t id;
56 uint32_t type;
7e3bdf4a
PZ
57 struct drm_object_properties *properties;
58};
59
fe456168 60#define DRM_OBJECT_MAX_PROPERTY 24
7e3bdf4a 61struct drm_object_properties {
7f88a9be 62 int count;
7e3bdf4a
PZ
63 uint32_t ids[DRM_OBJECT_MAX_PROPERTY];
64 uint64_t values[DRM_OBJECT_MAX_PROPERTY];
f453ba04
DA
65};
66
67/*
68 * Note on terminology: here, for brevity and convenience, we refer to connector
69 * control chips as 'CRTCs'. They can control any type of connector, VGA, LVDS,
70 * DVI, etc. And 'screen' refers to the whole of the visible display, which
71 * may span multiple monitors (and therefore multiple CRTC and connector
72 * structures).
73 */
74
75enum drm_mode_status {
76 MODE_OK = 0, /* Mode OK */
77 MODE_HSYNC, /* hsync out of range */
78 MODE_VSYNC, /* vsync out of range */
79 MODE_H_ILLEGAL, /* mode has illegal horizontal timings */
80 MODE_V_ILLEGAL, /* mode has illegal horizontal timings */
81 MODE_BAD_WIDTH, /* requires an unsupported linepitch */
25985edc 82 MODE_NOMODE, /* no mode with a matching name */
f453ba04
DA
83 MODE_NO_INTERLACE, /* interlaced mode not supported */
84 MODE_NO_DBLESCAN, /* doublescan mode not supported */
85 MODE_NO_VSCAN, /* multiscan mode not supported */
86 MODE_MEM, /* insufficient video memory */
87 MODE_VIRTUAL_X, /* mode width too large for specified virtual size */
88 MODE_VIRTUAL_Y, /* mode height too large for specified virtual size */
89 MODE_MEM_VIRT, /* insufficient video memory given virtual size */
90 MODE_NOCLOCK, /* no fixed clock available */
91 MODE_CLOCK_HIGH, /* clock required is too high */
92 MODE_CLOCK_LOW, /* clock required is too low */
93 MODE_CLOCK_RANGE, /* clock/mode isn't in a ClockRange */
94 MODE_BAD_HVALUE, /* horizontal timing was out of range */
95 MODE_BAD_VVALUE, /* vertical timing was out of range */
96 MODE_BAD_VSCAN, /* VScan value out of range */
97 MODE_HSYNC_NARROW, /* horizontal sync too narrow */
98 MODE_HSYNC_WIDE, /* horizontal sync too wide */
99 MODE_HBLANK_NARROW, /* horizontal blanking too narrow */
100 MODE_HBLANK_WIDE, /* horizontal blanking too wide */
101 MODE_VSYNC_NARROW, /* vertical sync too narrow */
102 MODE_VSYNC_WIDE, /* vertical sync too wide */
103 MODE_VBLANK_NARROW, /* vertical blanking too narrow */
104 MODE_VBLANK_WIDE, /* vertical blanking too wide */
105 MODE_PANEL, /* exceeds panel dimensions */
106 MODE_INTERLACE_WIDTH, /* width too large for interlaced mode */
107 MODE_ONE_WIDTH, /* only one width is supported */
108 MODE_ONE_HEIGHT, /* only one height is supported */
109 MODE_ONE_SIZE, /* only one resolution is supported */
110 MODE_NO_REDUCED, /* monitor doesn't accept reduced blanking */
111 MODE_UNVERIFIED = -3, /* mode needs to reverified */
112 MODE_BAD = -2, /* unspecified reason */
113 MODE_ERROR = -1 /* error condition */
114};
115
116#define DRM_MODE_TYPE_CLOCK_CRTC_C (DRM_MODE_TYPE_CLOCK_C | \
117 DRM_MODE_TYPE_CRTC_C)
118
119#define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \
120 .name = nm, .status = 0, .type = (t), .clock = (c), \
121 .hdisplay = (hd), .hsync_start = (hss), .hsync_end = (hse), \
122 .htotal = (ht), .hskew = (hsk), .vdisplay = (vd), \
123 .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \
67af116e 124 .vscan = (vs), .flags = (f), \
22f5d115 125 .base.type = DRM_MODE_OBJECT_MODE
f453ba04
DA
126
127#define CRTC_INTERLACE_HALVE_V 0x1 /* halve V values for interlacing */
128
129struct drm_display_mode {
130 /* Header */
131 struct list_head head;
132 struct drm_mode_object base;
133
134 char name[DRM_DISPLAY_MODE_LEN];
135
f453ba04 136 enum drm_mode_status status;
2fcfc75b 137 unsigned int type;
f453ba04
DA
138
139 /* Proposed mode values */
7ac96a9c 140 int clock; /* in kHz */
f453ba04
DA
141 int hdisplay;
142 int hsync_start;
143 int hsync_end;
144 int htotal;
145 int hskew;
146 int vdisplay;
147 int vsync_start;
148 int vsync_end;
149 int vtotal;
150 int vscan;
151 unsigned int flags;
152
153 /* Addressable image size (may be 0 for projectors, etc.) */
154 int width_mm;
155 int height_mm;
156
157 /* Actual mode we give to hw */
158 int clock_index;
159 int synth_clock;
160 int crtc_hdisplay;
161 int crtc_hblank_start;
162 int crtc_hblank_end;
163 int crtc_hsync_start;
164 int crtc_hsync_end;
165 int crtc_htotal;
166 int crtc_hskew;
167 int crtc_vdisplay;
168 int crtc_vblank_start;
169 int crtc_vblank_end;
170 int crtc_vsync_start;
171 int crtc_vsync_end;
172 int crtc_vtotal;
f453ba04
DA
173
174 /* Driver private mode info */
175 int private_size;
176 int *private;
177 int private_flags;
178
7ac96a9c
AJ
179 int vrefresh; /* in Hz */
180 int hsync; /* in kHz */
f453ba04
DA
181};
182
4aa17cf0
DL
183#define DRM_MODE_FLAG_3D_MASK (DRM_MODE_FLAG_3D_FRAME_PACKING | \
184 DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE | \
185 DRM_MODE_FLAG_3D_LINE_ALTERNATIVE | \
186 DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL | \
187 DRM_MODE_FLAG_3D_L_DEPTH | \
188 DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH | \
189 DRM_MODE_FLAG_3D_TOP_AND_BOTTOM | \
190 DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF)
191
192static inline bool drm_mode_is_stereo(const struct drm_display_mode *mode)
193{
194 return mode->flags & DRM_MODE_FLAG_3D_MASK;
195}
196
f453ba04
DA
197enum drm_connector_status {
198 connector_status_connected = 1,
199 connector_status_disconnected = 2,
200 connector_status_unknown = 3,
201};
202
203enum subpixel_order {
204 SubPixelUnknown = 0,
205 SubPixelHorizontalRGB,
206 SubPixelHorizontalBGR,
207 SubPixelVerticalRGB,
208 SubPixelVerticalBGR,
209 SubPixelNone,
210};
211
da05a5a7
JB
212#define DRM_COLOR_FORMAT_RGB444 (1<<0)
213#define DRM_COLOR_FORMAT_YCRCB444 (1<<1)
214#define DRM_COLOR_FORMAT_YCRCB422 (1<<2)
f453ba04
DA
215/*
216 * Describes a given display (e.g. CRT or flat panel) and its limitations.
217 */
218struct drm_display_info {
219 char name[DRM_DISPLAY_INFO_LEN];
fb439640 220
f453ba04
DA
221 /* Physical size */
222 unsigned int width_mm;
223 unsigned int height_mm;
224
f453ba04
DA
225 /* Clock limits FIXME: storage format */
226 unsigned int min_vfreq, max_vfreq;
227 unsigned int min_hfreq, max_hfreq;
228 unsigned int pixel_clock;
3b11228b 229 unsigned int bpc;
f453ba04 230
f453ba04 231 enum subpixel_order subpixel_order;
da05a5a7 232 u32 color_formats;
f453ba04 233
ebec9a7b 234 u8 cea_rev;
f453ba04
DA
235};
236
237struct drm_framebuffer_funcs {
f7eff60e 238 /* note: use drm_framebuffer_remove() */
f453ba04
DA
239 void (*destroy)(struct drm_framebuffer *framebuffer);
240 int (*create_handle)(struct drm_framebuffer *fb,
241 struct drm_file *file_priv,
242 unsigned int *handle);
884840aa
JB
243 /**
244 * Optinal callback for the dirty fb ioctl.
245 *
246 * Userspace can notify the driver via this callback
247 * that a area of the framebuffer has changed and should
248 * be flushed to the display hardware.
249 *
250 * See documentation in drm_mode.h for the struct
251 * drm_mode_fb_dirty_cmd for more information as all
252 * the semantics and arguments have a one to one mapping
253 * on this function.
254 */
02b00162
TH
255 int (*dirty)(struct drm_framebuffer *framebuffer,
256 struct drm_file *file_priv, unsigned flags,
884840aa
JB
257 unsigned color, struct drm_clip_rect *clips,
258 unsigned num_clips);
f453ba04
DA
259};
260
261struct drm_framebuffer {
262 struct drm_device *dev;
f7eff60e
RC
263 /*
264 * Note that the fb is refcounted for the benefit of driver internals,
265 * for example some hw, disabling a CRTC/plane is asynchronous, and
266 * scanout does not actually complete until the next vblank. So some
267 * cleanup (like releasing the reference(s) on the backing GEM bo(s))
268 * should be deferred. In cases like this, the driver would like to
269 * hold a ref to the fb even though it has already been removed from
270 * userspace perspective.
271 */
272 struct kref refcount;
4b096ac1
DV
273 /*
274 * Place on the dev->mode_config.fb_list, access protected by
275 * dev->mode_config.fb_lock.
276 */
f453ba04
DA
277 struct list_head head;
278 struct drm_mode_object base;
279 const struct drm_framebuffer_funcs *funcs;
01f2c773
VS
280 unsigned int pitches[4];
281 unsigned int offsets[4];
f453ba04
DA
282 unsigned int width;
283 unsigned int height;
284 /* depth can be 15 or 16 */
285 unsigned int depth;
286 int bits_per_pixel;
287 int flags;
308e5bcb 288 uint32_t pixel_format; /* fourcc format */
f453ba04 289 struct list_head filp_head;
785b93ef
DA
290 /* if you are using the helper */
291 void *helper_private;
f453ba04
DA
292};
293
294struct drm_property_blob {
295 struct drm_mode_object base;
296 struct list_head head;
297 unsigned int length;
d63f5e6b 298 unsigned char data[];
f453ba04
DA
299};
300
301struct drm_property_enum {
302 uint64_t value;
303 struct list_head head;
304 char name[DRM_PROP_NAME_LEN];
305};
306
307struct drm_property {
308 struct list_head head;
309 struct drm_mode_object base;
310 uint32_t flags;
311 char name[DRM_PROP_NAME_LEN];
312 uint32_t num_values;
313 uint64_t *values;
314
315 struct list_head enum_blob_list;
316};
317
318struct drm_crtc;
319struct drm_connector;
320struct drm_encoder;
d91d8a3f 321struct drm_pending_vblank_event;
8cf5c917 322struct drm_plane;
3b336ec4 323struct drm_bridge;
f453ba04
DA
324
325/**
326 * drm_crtc_funcs - control CRTCs for a given device
f453ba04 327 * @save: save CRTC state
3b02ab88 328 * @restore: restore CRTC state
715f59cc 329 * @reset: reset CRTC after state has been invalidated (e.g. resume)
3b02ab88
LP
330 * @cursor_set: setup the cursor
331 * @cursor_move: move the cursor
f453ba04 332 * @gamma_set: specify color ramp for CRTC
bffd9de0
PZ
333 * @destroy: deinit and free object
334 * @set_property: called when a property is changed
3b02ab88
LP
335 * @set_config: apply a new CRTC configuration
336 * @page_flip: initiate a page flip
f453ba04
DA
337 *
338 * The drm_crtc_funcs structure is the central CRTC management structure
339 * in the DRM. Each CRTC controls one or more connectors (note that the name
340 * CRTC is simply historical, a CRTC may control LVDS, VGA, DVI, TV out, etc.
341 * connectors, not just CRTs).
342 *
343 * Each driver is responsible for filling out this structure at startup time,
344 * in addition to providing other modesetting features, like i2c and DDC
345 * bus accessors.
346 */
347struct drm_crtc_funcs {
348 /* Save CRTC state */
349 void (*save)(struct drm_crtc *crtc); /* suspend? */
350 /* Restore CRTC state */
351 void (*restore)(struct drm_crtc *crtc); /* resume? */
eb033556
CW
352 /* Reset CRTC state */
353 void (*reset)(struct drm_crtc *crtc);
f453ba04
DA
354
355 /* cursor controls */
356 int (*cursor_set)(struct drm_crtc *crtc, struct drm_file *file_priv,
357 uint32_t handle, uint32_t width, uint32_t height);
4c813d4d
DA
358 int (*cursor_set2)(struct drm_crtc *crtc, struct drm_file *file_priv,
359 uint32_t handle, uint32_t width, uint32_t height,
360 int32_t hot_x, int32_t hot_y);
f453ba04
DA
361 int (*cursor_move)(struct drm_crtc *crtc, int x, int y);
362
363 /* Set gamma on the CRTC */
364 void (*gamma_set)(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
7203425a 365 uint32_t start, uint32_t size);
f453ba04
DA
366 /* Object destroy routine */
367 void (*destroy)(struct drm_crtc *crtc);
368
369 int (*set_config)(struct drm_mode_set *set);
d91d8a3f
KH
370
371 /*
372 * Flip to the given framebuffer. This implements the page
25985edc 373 * flip ioctl described in drm_mode.h, specifically, the
d91d8a3f
KH
374 * implementation must return immediately and block all
375 * rendering to the current fb until the flip has completed.
376 * If userspace set the event flag in the ioctl, the event
377 * argument will point to an event to send back when the flip
378 * completes, otherwise it will be NULL.
379 */
380 int (*page_flip)(struct drm_crtc *crtc,
381 struct drm_framebuffer *fb,
ed8d1975
KP
382 struct drm_pending_vblank_event *event,
383 uint32_t flags);
bffd9de0
PZ
384
385 int (*set_property)(struct drm_crtc *crtc,
386 struct drm_property *property, uint64_t val);
f453ba04
DA
387};
388
389/**
390 * drm_crtc - central CRTC control structure
7749163e
JB
391 * @dev: parent DRM device
392 * @head: list management
393 * @base: base KMS object for ID tracking etc.
f453ba04 394 * @enabled: is this CRTC enabled?
7749163e
JB
395 * @mode: current mode timings
396 * @hwmode: mode timings as programmed to hw regs
7c80e128
RC
397 * @invert_dimensions: for purposes of error checking crtc vs fb sizes,
398 * invert the width/height of the crtc. This is used if the driver
399 * is performing 90 or 270 degree rotated scanout
f453ba04
DA
400 * @x: x position on screen
401 * @y: y position on screen
f453ba04 402 * @funcs: CRTC control functions
7749163e
JB
403 * @gamma_size: size of gamma ramp
404 * @gamma_store: gamma ramp values
405 * @framedur_ns: precise frame timing
406 * @framedur_ns: precise line timing
407 * @pixeldur_ns: precise pixel timing
408 * @helper_private: mid-layer private data
bffd9de0 409 * @properties: property tracking for this CRTC
f453ba04
DA
410 *
411 * Each CRTC may have one or more connectors associated with it. This structure
412 * allows the CRTC to be controlled.
413 */
414struct drm_crtc {
415 struct drm_device *dev;
416 struct list_head head;
417
29494c17
DV
418 /**
419 * crtc mutex
420 *
421 * This provides a read lock for the overall crtc state (mode, dpms
422 * state, ...) and a write lock for everything which can be update
423 * without a full modeset (fb, cursor data, ...)
424 */
425 struct mutex mutex;
426
f453ba04
DA
427 struct drm_mode_object base;
428
429 /* framebuffer the connector is currently bound to */
430 struct drm_framebuffer *fb;
431
5cef29aa
DV
432 /* Temporary tracking of the old fb while a modeset is ongoing. Used
433 * by drm_mode_set_config_internal to implement correct refcounting. */
434 struct drm_framebuffer *old_fb;
435
f453ba04
DA
436 bool enabled;
437
27641c3f 438 /* Requested mode from modesetting. */
f453ba04
DA
439 struct drm_display_mode mode;
440
27641c3f
MK
441 /* Programmed mode in hw, after adjustments for encoders,
442 * crtc, panel scaling etc. Needed for timestamping etc.
443 */
444 struct drm_display_mode hwmode;
445
7c80e128
RC
446 bool invert_dimensions;
447
f453ba04 448 int x, y;
f453ba04
DA
449 const struct drm_crtc_funcs *funcs;
450
451 /* CRTC gamma size for reporting to userspace */
452 uint32_t gamma_size;
453 uint16_t *gamma_store;
454
27641c3f
MK
455 /* Constants needed for precise vblank and swap timestamping. */
456 s64 framedur_ns, linedur_ns, pixeldur_ns;
457
f453ba04
DA
458 /* if you are using the helper */
459 void *helper_private;
bffd9de0
PZ
460
461 struct drm_object_properties properties;
f453ba04
DA
462};
463
464
465/**
466 * drm_connector_funcs - control connectors on a given device
467 * @dpms: set power state (see drm_crtc_funcs above)
468 * @save: save connector state
469 * @restore: restore connector state
13bcf01b 470 * @reset: reset connector after state has been invalidated (e.g. resume)
f453ba04 471 * @detect: is this connector active?
3b02ab88 472 * @fill_modes: fill mode list for this connector
13bcf01b 473 * @set_property: property for this connector may need an update
f453ba04 474 * @destroy: make object go away
13bcf01b 475 * @force: notify the driver that the connector is forced on
f453ba04
DA
476 *
477 * Each CRTC may have one or more connectors attached to it. The functions
478 * below allow the core DRM code to control connectors, enumerate available modes,
479 * etc.
480 */
481struct drm_connector_funcs {
482 void (*dpms)(struct drm_connector *connector, int mode);
483 void (*save)(struct drm_connector *connector);
484 void (*restore)(struct drm_connector *connector);
eb033556 485 void (*reset)(struct drm_connector *connector);
930a9e28
CW
486
487 /* Check to see if anything is attached to the connector.
488 * @force is set to false whilst polling, true when checking the
489 * connector due to user request. @force can be used by the driver
490 * to avoid expensive, destructive operations during automated
491 * probing.
492 */
7b334fcb 493 enum drm_connector_status (*detect)(struct drm_connector *connector,
930a9e28 494 bool force);
40a518d9 495 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height);
f453ba04
DA
496 int (*set_property)(struct drm_connector *connector, struct drm_property *property,
497 uint64_t val);
498 void (*destroy)(struct drm_connector *connector);
d50ba256 499 void (*force)(struct drm_connector *connector);
f453ba04
DA
500};
501
6c3db920
JB
502/**
503 * drm_encoder_funcs - encoder controls
504 * @reset: reset state (e.g. at init or resume time)
505 * @destroy: cleanup and free associated data
506 *
507 * Encoders sit between CRTCs and connectors.
508 */
f453ba04 509struct drm_encoder_funcs {
eb033556 510 void (*reset)(struct drm_encoder *encoder);
f453ba04
DA
511 void (*destroy)(struct drm_encoder *encoder);
512};
513
afe887df 514#define DRM_CONNECTOR_MAX_ENCODER 3
f453ba04
DA
515
516/**
517 * drm_encoder - central DRM encoder structure
db3e4499
JB
518 * @dev: parent DRM device
519 * @head: list management
520 * @base: base KMS object
521 * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h
522 * @possible_crtcs: bitmask of potential CRTC bindings
523 * @possible_clones: bitmask of potential sibling encoders for cloning
524 * @crtc: currently bound CRTC
3b336ec4 525 * @bridge: bridge associated to the encoder
db3e4499
JB
526 * @funcs: control functions
527 * @helper_private: mid-layer private data
528 *
529 * CRTCs drive pixels to encoders, which convert them into signals
530 * appropriate for a given connector or set of connectors.
f453ba04
DA
531 */
532struct drm_encoder {
533 struct drm_device *dev;
534 struct list_head head;
535
536 struct drm_mode_object base;
537 int encoder_type;
538 uint32_t possible_crtcs;
539 uint32_t possible_clones;
540
541 struct drm_crtc *crtc;
3b336ec4 542 struct drm_bridge *bridge;
f453ba04
DA
543 const struct drm_encoder_funcs *funcs;
544 void *helper_private;
545};
546
d50ba256
DA
547enum drm_connector_force {
548 DRM_FORCE_UNSPECIFIED,
549 DRM_FORCE_OFF,
550 DRM_FORCE_ON, /* force on analog part normally */
551 DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */
552};
553
eb1f8e4f
DA
554/* should we poll this connector for connects and disconnects */
555/* hot plug detectable */
556#define DRM_CONNECTOR_POLL_HPD (1 << 0)
557/* poll for connections */
558#define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
559/* can cleanly poll for disconnections without flickering the screen */
560/* DACs should rarely do this without a lot of testing */
561#define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
562
76adaa34
WF
563#define MAX_ELD_BYTES 128
564
f453ba04
DA
565/**
566 * drm_connector - central DRM connector control structure
72252548
JB
567 * @dev: parent DRM device
568 * @kdev: kernel device for sysfs attributes
569 * @attr: sysfs attributes
570 * @head: list management
571 * @base: base KMS object
572 * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h
573 * @connector_type_id: index into connector type enum
f453ba04
DA
574 * @interlace_allowed: can this connector handle interlaced modes?
575 * @doublescan_allowed: can this connector handle doublescan?
72252548
JB
576 * @modes: modes available on this connector (from fill_modes() + user)
577 * @status: one of the drm_connector_status enums (connected, not, or unknown)
578 * @probed_modes: list of modes derived directly from the display
579 * @display_info: information about attached display (e.g. from EDID)
f453ba04 580 * @funcs: connector control functions
72252548 581 * @edid_blob_ptr: DRM property containing EDID if present
7e3bdf4a 582 * @properties: property tracking for this connector
72252548
JB
583 * @polled: a %DRM_CONNECTOR_POLL_<foo> value for core driven polling
584 * @dpms: current dpms state
585 * @helper_private: mid-layer private data
586 * @force: a %DRM_FORCE_<foo> state for forced mode sets
587 * @encoder_ids: valid encoders for this connector
588 * @encoder: encoder driving this connector, if any
589 * @eld: EDID-like data, if present
590 * @dvi_dual: dual link DVI, if found
591 * @max_tmds_clock: max clock rate, if found
592 * @latency_present: AV delay info from ELD, if found
593 * @video_latency: video latency info from ELD, if found
594 * @audio_latency: audio latency info from ELD, if found
595 * @null_edid_counter: track sinks that give us all zeros for the EDID
f453ba04
DA
596 *
597 * Each connector may be connected to one or more CRTCs, or may be clonable by
598 * another connector if they can share a CRTC. Each connector also has a specific
599 * position in the broader display (referred to as a 'screen' though it could
600 * span multiple monitors).
601 */
602struct drm_connector {
603 struct drm_device *dev;
604 struct device kdev;
605 struct device_attribute *attr;
606 struct list_head head;
607
608 struct drm_mode_object base;
609
610 int connector_type;
611 int connector_type_id;
612 bool interlace_allowed;
613 bool doublescan_allowed;
614 struct list_head modes; /* list of modes on this connector */
615
f453ba04
DA
616 enum drm_connector_status status;
617
618 /* these are modes added by probing with DDC or the BIOS */
619 struct list_head probed_modes;
620
621 struct drm_display_info display_info;
622 const struct drm_connector_funcs *funcs;
623
f453ba04 624 struct drm_property_blob *edid_blob_ptr;
7e3bdf4a 625 struct drm_object_properties properties;
f453ba04 626
eb1f8e4f
DA
627 uint8_t polled; /* DRM_CONNECTOR_POLL_* */
628
c9fb15f6
KP
629 /* requested DPMS state */
630 int dpms;
631
f453ba04
DA
632 void *helper_private;
633
d50ba256
DA
634 /* forced on connector */
635 enum drm_connector_force force;
f453ba04 636 uint32_t encoder_ids[DRM_CONNECTOR_MAX_ENCODER];
f453ba04 637 struct drm_encoder *encoder; /* currently active encoder */
4a9a8b71 638
76adaa34
WF
639 /* EDID bits */
640 uint8_t eld[MAX_ELD_BYTES];
641 bool dvi_dual;
642 int max_tmds_clock; /* in MHz */
643 bool latency_present[2];
644 int video_latency[2]; /* [0]: progressive, [1]: interlaced */
645 int audio_latency[2];
4a9a8b71 646 int null_edid_counter; /* needed to workaround some HW bugs where we get all 0s */
0b2443ed 647 unsigned bad_edid_counter;
f453ba04
DA
648};
649
8cf5c917
JB
650/**
651 * drm_plane_funcs - driver plane control functions
652 * @update_plane: update the plane configuration
653 * @disable_plane: shut down the plane
654 * @destroy: clean up plane resources
4d93914a 655 * @set_property: called when a property is changed
8cf5c917
JB
656 */
657struct drm_plane_funcs {
658 int (*update_plane)(struct drm_plane *plane,
659 struct drm_crtc *crtc, struct drm_framebuffer *fb,
660 int crtc_x, int crtc_y,
661 unsigned int crtc_w, unsigned int crtc_h,
662 uint32_t src_x, uint32_t src_y,
663 uint32_t src_w, uint32_t src_h);
664 int (*disable_plane)(struct drm_plane *plane);
665 void (*destroy)(struct drm_plane *plane);
4d93914a
RC
666
667 int (*set_property)(struct drm_plane *plane,
668 struct drm_property *property, uint64_t val);
8cf5c917
JB
669};
670
671/**
672 * drm_plane - central DRM plane control structure
673 * @dev: DRM device this plane belongs to
674 * @head: for list management
675 * @base: base mode object
676 * @possible_crtcs: pipes this plane can be bound to
677 * @format_types: array of formats supported by this plane
678 * @format_count: number of formats supported
679 * @crtc: currently bound CRTC
680 * @fb: currently bound fb
8cf5c917 681 * @funcs: helper functions
4d93914a 682 * @properties: property tracking for this plane
8cf5c917
JB
683 */
684struct drm_plane {
685 struct drm_device *dev;
686 struct list_head head;
687
688 struct drm_mode_object base;
689
690 uint32_t possible_crtcs;
691 uint32_t *format_types;
692 uint32_t format_count;
693
694 struct drm_crtc *crtc;
695 struct drm_framebuffer *fb;
696
8cf5c917 697 const struct drm_plane_funcs *funcs;
4d93914a
RC
698
699 struct drm_object_properties properties;
8cf5c917
JB
700};
701
3b336ec4
SP
702/**
703 * drm_bridge_funcs - drm_bridge control functions
704 * @mode_fixup: Try to fixup (or reject entirely) proposed mode for this bridge
705 * @disable: Called right before encoder prepare, disables the bridge
706 * @post_disable: Called right after encoder prepare, for lockstepped disable
707 * @mode_set: Set this mode to the bridge
708 * @pre_enable: Called right before encoder commit, for lockstepped commit
709 * @enable: Called right after encoder commit, enables the bridge
710 * @destroy: make object go away
711 */
712struct drm_bridge_funcs {
713 bool (*mode_fixup)(struct drm_bridge *bridge,
714 const struct drm_display_mode *mode,
715 struct drm_display_mode *adjusted_mode);
716 void (*disable)(struct drm_bridge *bridge);
717 void (*post_disable)(struct drm_bridge *bridge);
718 void (*mode_set)(struct drm_bridge *bridge,
719 struct drm_display_mode *mode,
720 struct drm_display_mode *adjusted_mode);
721 void (*pre_enable)(struct drm_bridge *bridge);
722 void (*enable)(struct drm_bridge *bridge);
723 void (*destroy)(struct drm_bridge *bridge);
724};
725
726/**
727 * drm_bridge - central DRM bridge control structure
728 * @dev: DRM device this bridge belongs to
729 * @head: list management
730 * @base: base mode object
731 * @funcs: control functions
732 * @driver_private: pointer to the bridge driver's internal context
733 */
734struct drm_bridge {
735 struct drm_device *dev;
736 struct list_head head;
737
738 struct drm_mode_object base;
739
740 const struct drm_bridge_funcs *funcs;
741 void *driver_private;
742};
743
f453ba04 744/**
ef27351a
JB
745 * drm_mode_set - new values for a CRTC config change
746 * @head: list management
747 * @fb: framebuffer to use for new config
748 * @crtc: CRTC whose configuration we're about to change
749 * @mode: mode timings to use
750 * @x: position of this CRTC relative to @fb
751 * @y: position of this CRTC relative to @fb
752 * @connectors: array of connectors to drive with this CRTC if possible
753 * @num_connectors: size of @connectors array
f453ba04
DA
754 *
755 * Represents a single crtc the connectors that it drives with what mode
756 * and from which framebuffer it scans out from.
757 *
758 * This is used to set modes.
759 */
760struct drm_mode_set {
f453ba04
DA
761 struct drm_framebuffer *fb;
762 struct drm_crtc *crtc;
763 struct drm_display_mode *mode;
764
765 uint32_t x;
766 uint32_t y;
767
768 struct drm_connector **connectors;
769 size_t num_connectors;
770};
771
772/**
550cebcd
JB
773 * struct drm_mode_config_funcs - basic driver provided mode setting functions
774 * @fb_create: create a new framebuffer object
775 * @output_poll_changed: function to handle output configuration changes
776 *
777 * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
778 * involve drivers.
f453ba04
DA
779 */
780struct drm_mode_config_funcs {
550cebcd
JB
781 struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
782 struct drm_file *file_priv,
783 struct drm_mode_fb_cmd2 *mode_cmd);
eb1f8e4f 784 void (*output_poll_changed)(struct drm_device *dev);
f453ba04
DA
785};
786
c1aaca23
JB
787/**
788 * drm_mode_group - group of mode setting resources for potential sub-grouping
789 * @num_crtcs: CRTC count
790 * @num_encoders: encoder count
791 * @num_connectors: connector count
792 * @id_list: list of KMS object IDs in this group
793 *
794 * Currently this simply tracks the global mode setting state. But in the
795 * future it could allow groups of objects to be set aside into independent
796 * control groups for use by different user level processes (e.g. two X servers
797 * running simultaneously on different heads, each with their own mode
798 * configuration and freedom of mode setting).
799 */
f453ba04
DA
800struct drm_mode_group {
801 uint32_t num_crtcs;
802 uint32_t num_encoders;
803 uint32_t num_connectors;
3b336ec4 804 uint32_t num_bridges;
f453ba04
DA
805
806 /* list of object IDs for this group */
807 uint32_t *id_list;
808};
809
810/**
811 * drm_mode_config - Mode configuration control structure
a62c93d5
JB
812 * @mutex: mutex protecting KMS related lists and structures
813 * @idr_mutex: mutex for KMS ID allocation and management
814 * @crtc_idr: main KMS ID tracking object
815 * @num_fb: number of fbs available
816 * @fb_list: list of framebuffers available
817 * @num_connector: number of connectors on this device
818 * @connector_list: list of connector objects
3b336ec4
SP
819 * @num_bridge: number of bridges on this device
820 * @bridge_list: list of bridge objects
a62c93d5
JB
821 * @num_encoder: number of encoders on this device
822 * @encoder_list: list of encoder objects
823 * @num_crtc: number of CRTCs on this device
824 * @crtc_list: list of CRTC objects
825 * @min_width: minimum pixel width on this device
826 * @min_height: minimum pixel height on this device
827 * @max_width: maximum pixel width on this device
828 * @max_height: maximum pixel height on this device
829 * @funcs: core driver provided mode setting functions
830 * @fb_base: base address of the framebuffer
831 * @poll_enabled: track polling status for this device
832 * @output_poll_work: delayed work for polling in process context
833 * @*_property: core property tracking
f453ba04 834 *
a62c93d5
JB
835 * Core mode resource tracking structure. All CRTC, encoders, and connectors
836 * enumerated by the driver are added here, as are global properties. Some
837 * global restrictions are also here, e.g. dimension restrictions.
f453ba04
DA
838 */
839struct drm_mode_config {
ad2563c2
JB
840 struct mutex mutex; /* protects configuration (mode lists etc.) */
841 struct mutex idr_mutex; /* for IDR management */
f453ba04
DA
842 struct idr crtc_idr; /* use this idr for all IDs, fb, crtc, connector, modes - just makes life easier */
843 /* this is limited to one for now */
4b096ac1
DV
844
845
846 /**
847 * fb_lock - mutex to protect fb state
848 *
849 * Besides the global fb list his also protects the fbs list in the
850 * file_priv
851 */
852 struct mutex fb_lock;
f453ba04
DA
853 int num_fb;
854 struct list_head fb_list;
4b096ac1 855
f453ba04
DA
856 int num_connector;
857 struct list_head connector_list;
3b336ec4
SP
858 int num_bridge;
859 struct list_head bridge_list;
f453ba04
DA
860 int num_encoder;
861 struct list_head encoder_list;
8cf5c917
JB
862 int num_plane;
863 struct list_head plane_list;
f453ba04
DA
864
865 int num_crtc;
866 struct list_head crtc_list;
867
868 struct list_head property_list;
869
f453ba04
DA
870 int min_width, min_height;
871 int max_width, max_height;
e6ecefaa 872 const struct drm_mode_config_funcs *funcs;
d883f7f1 873 resource_size_t fb_base;
f453ba04 874
eb1f8e4f
DA
875 /* output poll support */
876 bool poll_enabled;
905bc9ff 877 bool poll_running;
991ea75c 878 struct delayed_work output_poll_work;
eb1f8e4f 879
f453ba04
DA
880 /* pointers to standard properties */
881 struct list_head property_blob_list;
882 struct drm_property *edid_property;
883 struct drm_property *dpms_property;
884
885 /* DVI-I properties */
886 struct drm_property *dvi_i_subconnector_property;
887 struct drm_property *dvi_i_select_subconnector_property;
888
889 /* TV properties */
890 struct drm_property *tv_subconnector_property;
891 struct drm_property *tv_select_subconnector_property;
892 struct drm_property *tv_mode_property;
893 struct drm_property *tv_left_margin_property;
894 struct drm_property *tv_right_margin_property;
895 struct drm_property *tv_top_margin_property;
896 struct drm_property *tv_bottom_margin_property;
b6b7902e
FJ
897 struct drm_property *tv_brightness_property;
898 struct drm_property *tv_contrast_property;
899 struct drm_property *tv_flicker_reduction_property;
a75f0236
FJ
900 struct drm_property *tv_overscan_property;
901 struct drm_property *tv_saturation_property;
902 struct drm_property *tv_hue_property;
f453ba04
DA
903
904 /* Optional properties */
905 struct drm_property *scaling_mode_property;
884840aa 906 struct drm_property *dirty_info_property;
019d96cb
DA
907
908 /* dumb ioctl parameters */
909 uint32_t preferred_depth, prefer_shadow;
62f2104f
KP
910
911 /* whether async page flip is supported or not */
912 bool async_page_flip;
f453ba04
DA
913};
914
915#define obj_to_crtc(x) container_of(x, struct drm_crtc, base)
916#define obj_to_connector(x) container_of(x, struct drm_connector, base)
917#define obj_to_encoder(x) container_of(x, struct drm_encoder, base)
918#define obj_to_mode(x) container_of(x, struct drm_display_mode, base)
919#define obj_to_fb(x) container_of(x, struct drm_framebuffer, base)
920#define obj_to_property(x) container_of(x, struct drm_property, base)
921#define obj_to_blob(x) container_of(x, struct drm_property_blob, base)
8cf5c917 922#define obj_to_plane(x) container_of(x, struct drm_plane, base)
f453ba04 923
4a67d391
SH
924struct drm_prop_enum_list {
925 int type;
926 char *name;
927};
f453ba04 928
84849903
DV
929extern void drm_modeset_lock_all(struct drm_device *dev);
930extern void drm_modeset_unlock_all(struct drm_device *dev);
6aed8ec3 931extern void drm_warn_on_modeset_not_all_locked(struct drm_device *dev);
84849903 932
6bfc56aa
VS
933extern int drm_crtc_init(struct drm_device *dev,
934 struct drm_crtc *crtc,
935 const struct drm_crtc_funcs *funcs);
f453ba04
DA
936extern void drm_crtc_cleanup(struct drm_crtc *crtc);
937
b21e3afe
IM
938extern void drm_connector_ida_init(void);
939extern void drm_connector_ida_destroy(void);
6bfc56aa
VS
940extern int drm_connector_init(struct drm_device *dev,
941 struct drm_connector *connector,
942 const struct drm_connector_funcs *funcs,
943 int connector_type);
f453ba04
DA
944
945extern void drm_connector_cleanup(struct drm_connector *connector);
cbc7e221
DA
946/* helper to unplug all connectors from sysfs for device */
947extern void drm_connector_unplug_all(struct drm_device *dev);
f453ba04 948
3b336ec4
SP
949extern int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
950 const struct drm_bridge_funcs *funcs);
951extern void drm_bridge_cleanup(struct drm_bridge *bridge);
952
6bfc56aa
VS
953extern int drm_encoder_init(struct drm_device *dev,
954 struct drm_encoder *encoder,
955 const struct drm_encoder_funcs *funcs,
956 int encoder_type);
f453ba04 957
8cf5c917
JB
958extern int drm_plane_init(struct drm_device *dev,
959 struct drm_plane *plane,
960 unsigned long possible_crtcs,
961 const struct drm_plane_funcs *funcs,
0a7eb243
RC
962 const uint32_t *formats, uint32_t format_count,
963 bool priv);
8cf5c917 964extern void drm_plane_cleanup(struct drm_plane *plane);
9125e618 965extern void drm_plane_force_disable(struct drm_plane *plane);
8cf5c917 966
f453ba04
DA
967extern void drm_encoder_cleanup(struct drm_encoder *encoder);
968
d20d3174
VS
969extern const char *drm_get_connector_name(const struct drm_connector *connector);
970extern const char *drm_get_connector_status_name(enum drm_connector_status status);
971extern const char *drm_get_dpms_name(int val);
972extern const char *drm_get_dvi_i_subconnector_name(int val);
973extern const char *drm_get_dvi_i_select_name(int val);
974extern const char *drm_get_tv_subconnector_name(int val);
975extern const char *drm_get_tv_select_name(int val);
ea39f835 976extern void drm_fb_release(struct drm_file *file_priv);
f453ba04 977extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group);
fbff4690 978extern bool drm_probe_ddc(struct i2c_adapter *adapter);
f453ba04
DA
979extern struct edid *drm_get_edid(struct drm_connector *connector,
980 struct i2c_adapter *adapter);
f453ba04
DA
981extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
982extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode);
c3c50e8b 983extern void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src);
f453ba04 984extern struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
b1f559ec 985 const struct drm_display_mode *mode);
0b3904ab 986extern void drm_mode_debug_printmodeline(const struct drm_display_mode *mode);
f453ba04 987extern void drm_mode_config_init(struct drm_device *dev);
eb033556 988extern void drm_mode_config_reset(struct drm_device *dev);
f453ba04
DA
989extern void drm_mode_config_cleanup(struct drm_device *dev);
990extern void drm_mode_set_name(struct drm_display_mode *mode);
0b3904ab 991extern bool drm_mode_equal(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2);
f2ecf2e3 992extern bool drm_mode_equal_no_clocks_no_stereo(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2);
0b3904ab
VS
993extern int drm_mode_width(const struct drm_display_mode *mode);
994extern int drm_mode_height(const struct drm_display_mode *mode);
f453ba04
DA
995
996/* for us by fb module */
f453ba04
DA
997extern struct drm_display_mode *drm_mode_create(struct drm_device *dev);
998extern void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode);
f453ba04
DA
999extern void drm_mode_validate_size(struct drm_device *dev,
1000 struct list_head *mode_list,
1001 int maxX, int maxY, int maxPitch);
1002extern void drm_mode_prune_invalid(struct drm_device *dev,
1003 struct list_head *mode_list, bool verbose);
1004extern void drm_mode_sort(struct list_head *mode_list);
b1f559ec
CW
1005extern int drm_mode_hsync(const struct drm_display_mode *mode);
1006extern int drm_mode_vrefresh(const struct drm_display_mode *mode);
f453ba04
DA
1007extern void drm_mode_set_crtcinfo(struct drm_display_mode *p,
1008 int adjust_flags);
1009extern void drm_mode_connector_list_update(struct drm_connector *connector);
1010extern int drm_mode_connector_update_edid_property(struct drm_connector *connector,
1011 struct edid *edid);
c543188a
PZ
1012extern int drm_object_property_set_value(struct drm_mode_object *obj,
1013 struct drm_property *property,
1014 uint64_t val);
1015extern int drm_object_property_get_value(struct drm_mode_object *obj,
1016 struct drm_property *property,
1017 uint64_t *value);
f453ba04
DA
1018extern int drm_framebuffer_init(struct drm_device *dev,
1019 struct drm_framebuffer *fb,
1020 const struct drm_framebuffer_funcs *funcs);
786b99ed
DV
1021extern struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
1022 uint32_t id);
f7eff60e
RC
1023extern void drm_framebuffer_unreference(struct drm_framebuffer *fb);
1024extern void drm_framebuffer_reference(struct drm_framebuffer *fb);
1025extern void drm_framebuffer_remove(struct drm_framebuffer *fb);
f453ba04 1026extern void drm_framebuffer_cleanup(struct drm_framebuffer *fb);
36206361 1027extern void drm_framebuffer_unregister_private(struct drm_framebuffer *fb);
f453ba04 1028
c543188a
PZ
1029extern void drm_object_attach_property(struct drm_mode_object *obj,
1030 struct drm_property *property,
1031 uint64_t init_val);
f453ba04
DA
1032extern struct drm_property *drm_property_create(struct drm_device *dev, int flags,
1033 const char *name, int num_values);
4a67d391
SH
1034extern struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
1035 const char *name,
49e27545
RC
1036 const struct drm_prop_enum_list *props,
1037 int num_values);
1038struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
1039 int flags, const char *name,
4a67d391
SH
1040 const struct drm_prop_enum_list *props,
1041 int num_values);
d9bc3c02
SH
1042struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
1043 const char *name,
1044 uint64_t min, uint64_t max);
f453ba04
DA
1045extern void drm_property_destroy(struct drm_device *dev, struct drm_property *property);
1046extern int drm_property_add_enum(struct drm_property *property, int index,
1047 uint64_t value, const char *name);
1048extern int drm_mode_create_dvi_i_properties(struct drm_device *dev);
1049extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats,
1050 char *formats[]);
1051extern int drm_mode_create_scaling_mode_property(struct drm_device *dev);
884840aa 1052extern int drm_mode_create_dirty_info_property(struct drm_device *dev);
d20d3174 1053extern const char *drm_get_encoder_name(const struct drm_encoder *encoder);
f453ba04
DA
1054
1055extern int drm_mode_connector_attach_encoder(struct drm_connector *connector,
1056 struct drm_encoder *encoder);
1057extern void drm_mode_connector_detach_encoder(struct drm_connector *connector,
1058 struct drm_encoder *encoder);
4cae5b84 1059extern int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
f453ba04 1060 int gamma_size);
7a9c9060
DV
1061extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
1062 uint32_t id, uint32_t type);
f453ba04
DA
1063/* IOCTLs */
1064extern int drm_mode_getresources(struct drm_device *dev,
1065 void *data, struct drm_file *file_priv);
8cf5c917
JB
1066extern int drm_mode_getplane_res(struct drm_device *dev, void *data,
1067 struct drm_file *file_priv);
f453ba04
DA
1068extern int drm_mode_getcrtc(struct drm_device *dev,
1069 void *data, struct drm_file *file_priv);
1070extern int drm_mode_getconnector(struct drm_device *dev,
1071 void *data, struct drm_file *file_priv);
2d13b679 1072extern int drm_mode_set_config_internal(struct drm_mode_set *set);
f453ba04
DA
1073extern int drm_mode_setcrtc(struct drm_device *dev,
1074 void *data, struct drm_file *file_priv);
8cf5c917
JB
1075extern int drm_mode_getplane(struct drm_device *dev,
1076 void *data, struct drm_file *file_priv);
1077extern int drm_mode_setplane(struct drm_device *dev,
1078 void *data, struct drm_file *file_priv);
f453ba04
DA
1079extern int drm_mode_cursor_ioctl(struct drm_device *dev,
1080 void *data, struct drm_file *file_priv);
4c813d4d
DA
1081extern int drm_mode_cursor2_ioctl(struct drm_device *dev,
1082 void *data, struct drm_file *file_priv);
f453ba04
DA
1083extern int drm_mode_addfb(struct drm_device *dev,
1084 void *data, struct drm_file *file_priv);
308e5bcb
JB
1085extern int drm_mode_addfb2(struct drm_device *dev,
1086 void *data, struct drm_file *file_priv);
1087extern uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth);
f453ba04
DA
1088extern int drm_mode_rmfb(struct drm_device *dev,
1089 void *data, struct drm_file *file_priv);
1090extern int drm_mode_getfb(struct drm_device *dev,
1091 void *data, struct drm_file *file_priv);
884840aa
JB
1092extern int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
1093 void *data, struct drm_file *file_priv);
f453ba04
DA
1094
1095extern int drm_mode_getproperty_ioctl(struct drm_device *dev,
1096 void *data, struct drm_file *file_priv);
1097extern int drm_mode_getblob_ioctl(struct drm_device *dev,
1098 void *data, struct drm_file *file_priv);
1099extern int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
1100 void *data, struct drm_file *file_priv);
f453ba04
DA
1101extern int drm_mode_getencoder(struct drm_device *dev,
1102 void *data, struct drm_file *file_priv);
1103extern int drm_mode_gamma_get_ioctl(struct drm_device *dev,
1104 void *data, struct drm_file *file_priv);
1105extern int drm_mode_gamma_set_ioctl(struct drm_device *dev,
1106 void *data, struct drm_file *file_priv);
18316c8c 1107extern u8 drm_match_cea_mode(const struct drm_display_mode *to_match);
f23c20c8 1108extern bool drm_detect_hdmi_monitor(struct edid *edid);
8fe9790d 1109extern bool drm_detect_monitor_audio(struct edid *edid);
b1edd6a6 1110extern bool drm_rgb_quant_range_selectable(struct edid *edid);
d91d8a3f
KH
1111extern int drm_mode_page_flip_ioctl(struct drm_device *dev,
1112 void *data, struct drm_file *file_priv);
d782c3f9
ZY
1113extern struct drm_display_mode *drm_cvt_mode(struct drm_device *dev,
1114 int hdisplay, int vdisplay, int vrefresh,
d50ba256 1115 bool reduced, bool interlaced, bool margins);
26bbdada
ZY
1116extern struct drm_display_mode *drm_gtf_mode(struct drm_device *dev,
1117 int hdisplay, int vdisplay, int vrefresh,
1118 bool interlaced, int margins);
7a374350
AJ
1119extern struct drm_display_mode *drm_gtf_mode_complex(struct drm_device *dev,
1120 int hdisplay, int vdisplay, int vrefresh,
1121 bool interlaced, int margins, int GTF_M,
1122 int GTF_2C, int GTF_K, int GTF_2J);
f0fda0a4
ZY
1123extern int drm_add_modes_noedid(struct drm_connector *connector,
1124 int hdisplay, int vdisplay);
3c537889 1125
051963d4 1126extern int drm_edid_header_is_valid(const u8 *raw_edid);
0b2443ed 1127extern bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid);
3c537889 1128extern bool drm_edid_is_valid(struct edid *edid);
1d42bbc8 1129struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
f6e252ba
AJ
1130 int hsize, int vsize, int fresh,
1131 bool rb);
ff72145b
DA
1132
1133extern int drm_mode_create_dumb_ioctl(struct drm_device *dev,
1134 void *data, struct drm_file *file_priv);
1135extern int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
1136 void *data, struct drm_file *file_priv);
1137extern int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
1138 void *data, struct drm_file *file_priv);
c543188a
PZ
1139extern int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
1140 struct drm_file *file_priv);
1141extern int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
1142 struct drm_file *file_priv);
248dbc23
DA
1143
1144extern void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
1145 int *bpp);
141670e9 1146extern int drm_format_num_planes(uint32_t format);
5a86bd55 1147extern int drm_format_plane_cpp(uint32_t format, int plane);
01b68b04
VS
1148extern int drm_format_horz_chroma_subsampling(uint32_t format);
1149extern int drm_format_vert_chroma_subsampling(uint32_t format);
d20d3174 1150extern const char *drm_get_format_name(uint32_t format);
141670e9 1151
f453ba04 1152#endif /* __DRM_CRTC_H__ */