blob: 24f499569a2f70480d87dca321c222c50755190d [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
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>
Dave Airlief453ba02008-11-07 14:05:41 -080032#include <linux/fb.h>
David Howells19218e42012-10-02 18:01:03 +010033#include <drm/drm_mode.h>
Dave Airlief453ba02008-11-07 14:05:41 -080034
Jesse Barnes308e5bc2011-11-14 14:51:28 -080035#include <drm/drm_fourcc.h>
36
Dave Airlief453ba02008-11-07 14:05:41 -080037struct drm_device;
38struct drm_mode_set;
39struct drm_framebuffer;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -030040struct drm_object_properties;
Thierry Reding595887e2012-11-21 15:00:47 +010041struct drm_file;
42struct drm_clip_rect;
Dave Airlief453ba02008-11-07 14:05:41 -080043
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
Jesse Barnes8cf5c912011-11-14 14:51:27 -080051#define DRM_MODE_OBJECT_PLANE 0xeeeeeeee
Sean Paul3b336ec2013-08-14 16:47:37 -040052#define DRM_MODE_OBJECT_BRIDGE 0xbdbdbdbd
Dave Airlief453ba02008-11-07 14:05:41 -080053
54struct drm_mode_object {
55 uint32_t id;
56 uint32_t type;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -030057 struct drm_object_properties *properties;
58};
59
Paulo Zanonife456162012-06-12 11:27:01 -030060#define DRM_OBJECT_MAX_PROPERTY 24
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -030061struct drm_object_properties {
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -030062 int count;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -030063 uint32_t ids[DRM_OBJECT_MAX_PROPERTY];
64 uint64_t values[DRM_OBJECT_MAX_PROPERTY];
Dave Airlief453ba02008-11-07 14:05:41 -080065};
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 */
Lucas De Marchi25985ed2011-03-30 22:57:33 -030082 MODE_NOMODE, /* no mode with a matching name */
Dave Airlief453ba02008-11-07 14:05:41 -080083 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), \
Ville Syrjälä67af1162013-04-24 19:07:15 +0300124 .vscan = (vs), .flags = (f), \
Ville Syrjälä22f5d112012-08-14 10:53:38 +0000125 .base.type = DRM_MODE_OBJECT_MODE
Dave Airlief453ba02008-11-07 14:05:41 -0800126
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
Dave Airlief453ba02008-11-07 14:05:41 -0800136 enum drm_mode_status status;
Ville Syrjälä2fcfc752012-03-13 12:35:39 +0200137 unsigned int type;
Dave Airlief453ba02008-11-07 14:05:41 -0800138
139 /* Proposed mode values */
Adam Jackson7ac96a92009-12-03 17:44:37 -0500140 int clock; /* in kHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800141 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;
Dave Airlief453ba02008-11-07 14:05:41 -0800173
174 /* Driver private mode info */
175 int private_size;
176 int *private;
177 int private_flags;
178
Adam Jackson7ac96a92009-12-03 17:44:37 -0500179 int vrefresh; /* in Hz */
180 int hsync; /* in kHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800181};
182
183enum drm_connector_status {
184 connector_status_connected = 1,
185 connector_status_disconnected = 2,
186 connector_status_unknown = 3,
187};
188
189enum subpixel_order {
190 SubPixelUnknown = 0,
191 SubPixelHorizontalRGB,
192 SubPixelHorizontalBGR,
193 SubPixelVerticalRGB,
194 SubPixelVerticalBGR,
195 SubPixelNone,
196};
197
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700198#define DRM_COLOR_FORMAT_RGB444 (1<<0)
199#define DRM_COLOR_FORMAT_YCRCB444 (1<<1)
200#define DRM_COLOR_FORMAT_YCRCB422 (1<<2)
Dave Airlief453ba02008-11-07 14:05:41 -0800201/*
202 * Describes a given display (e.g. CRT or flat panel) and its limitations.
203 */
204struct drm_display_info {
205 char name[DRM_DISPLAY_INFO_LEN];
Adam Jacksonfb439642010-08-03 14:38:16 -0400206
Dave Airlief453ba02008-11-07 14:05:41 -0800207 /* Physical size */
208 unsigned int width_mm;
209 unsigned int height_mm;
210
Dave Airlief453ba02008-11-07 14:05:41 -0800211 /* Clock limits FIXME: storage format */
212 unsigned int min_vfreq, max_vfreq;
213 unsigned int min_hfreq, max_hfreq;
214 unsigned int pixel_clock;
Jesse Barnes3b112282011-04-15 12:49:23 -0700215 unsigned int bpc;
Dave Airlief453ba02008-11-07 14:05:41 -0800216
Dave Airlief453ba02008-11-07 14:05:41 -0800217 enum subpixel_order subpixel_order;
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700218 u32 color_formats;
Dave Airlief453ba02008-11-07 14:05:41 -0800219
Jesse Barnesebec9a72011-08-03 09:22:54 -0700220 u8 cea_rev;
Dave Airlief453ba02008-11-07 14:05:41 -0800221};
222
223struct drm_framebuffer_funcs {
Rob Clarkf7eff602012-09-05 21:48:38 +0000224 /* note: use drm_framebuffer_remove() */
Dave Airlief453ba02008-11-07 14:05:41 -0800225 void (*destroy)(struct drm_framebuffer *framebuffer);
226 int (*create_handle)(struct drm_framebuffer *fb,
227 struct drm_file *file_priv,
228 unsigned int *handle);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000229 /**
230 * Optinal callback for the dirty fb ioctl.
231 *
232 * Userspace can notify the driver via this callback
233 * that a area of the framebuffer has changed and should
234 * be flushed to the display hardware.
235 *
236 * See documentation in drm_mode.h for the struct
237 * drm_mode_fb_dirty_cmd for more information as all
238 * the semantics and arguments have a one to one mapping
239 * on this function.
240 */
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200241 int (*dirty)(struct drm_framebuffer *framebuffer,
242 struct drm_file *file_priv, unsigned flags,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000243 unsigned color, struct drm_clip_rect *clips,
244 unsigned num_clips);
Dave Airlief453ba02008-11-07 14:05:41 -0800245};
246
247struct drm_framebuffer {
248 struct drm_device *dev;
Rob Clarkf7eff602012-09-05 21:48:38 +0000249 /*
250 * Note that the fb is refcounted for the benefit of driver internals,
251 * for example some hw, disabling a CRTC/plane is asynchronous, and
252 * scanout does not actually complete until the next vblank. So some
253 * cleanup (like releasing the reference(s) on the backing GEM bo(s))
254 * should be deferred. In cases like this, the driver would like to
255 * hold a ref to the fb even though it has already been removed from
256 * userspace perspective.
257 */
258 struct kref refcount;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100259 /*
260 * Place on the dev->mode_config.fb_list, access protected by
261 * dev->mode_config.fb_lock.
262 */
Dave Airlief453ba02008-11-07 14:05:41 -0800263 struct list_head head;
264 struct drm_mode_object base;
265 const struct drm_framebuffer_funcs *funcs;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200266 unsigned int pitches[4];
267 unsigned int offsets[4];
Dave Airlief453ba02008-11-07 14:05:41 -0800268 unsigned int width;
269 unsigned int height;
270 /* depth can be 15 or 16 */
271 unsigned int depth;
272 int bits_per_pixel;
273 int flags;
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800274 uint32_t pixel_format; /* fourcc format */
Dave Airlief453ba02008-11-07 14:05:41 -0800275 struct list_head filp_head;
Dave Airlie785b93e2009-08-28 15:46:53 +1000276 /* if you are using the helper */
277 void *helper_private;
Dave Airlief453ba02008-11-07 14:05:41 -0800278};
279
280struct drm_property_blob {
281 struct drm_mode_object base;
282 struct list_head head;
283 unsigned int length;
Ville Syrjäläd63f5e62012-03-13 12:35:49 +0200284 unsigned char data[];
Dave Airlief453ba02008-11-07 14:05:41 -0800285};
286
287struct drm_property_enum {
288 uint64_t value;
289 struct list_head head;
290 char name[DRM_PROP_NAME_LEN];
291};
292
293struct drm_property {
294 struct list_head head;
295 struct drm_mode_object base;
296 uint32_t flags;
297 char name[DRM_PROP_NAME_LEN];
298 uint32_t num_values;
299 uint64_t *values;
300
301 struct list_head enum_blob_list;
302};
303
304struct drm_crtc;
305struct drm_connector;
306struct drm_encoder;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500307struct drm_pending_vblank_event;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800308struct drm_plane;
Sean Paul3b336ec2013-08-14 16:47:37 -0400309struct drm_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -0800310
311/**
312 * drm_crtc_funcs - control CRTCs for a given device
Dave Airlief453ba02008-11-07 14:05:41 -0800313 * @save: save CRTC state
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200314 * @restore: restore CRTC state
Christopher Harvey715f59c2013-04-05 15:28:32 +0000315 * @reset: reset CRTC after state has been invalidated (e.g. resume)
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200316 * @cursor_set: setup the cursor
317 * @cursor_move: move the cursor
Dave Airlief453ba02008-11-07 14:05:41 -0800318 * @gamma_set: specify color ramp for CRTC
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300319 * @destroy: deinit and free object
320 * @set_property: called when a property is changed
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200321 * @set_config: apply a new CRTC configuration
322 * @page_flip: initiate a page flip
Dave Airlief453ba02008-11-07 14:05:41 -0800323 *
324 * The drm_crtc_funcs structure is the central CRTC management structure
325 * in the DRM. Each CRTC controls one or more connectors (note that the name
326 * CRTC is simply historical, a CRTC may control LVDS, VGA, DVI, TV out, etc.
327 * connectors, not just CRTs).
328 *
329 * Each driver is responsible for filling out this structure at startup time,
330 * in addition to providing other modesetting features, like i2c and DDC
331 * bus accessors.
332 */
333struct drm_crtc_funcs {
334 /* Save CRTC state */
335 void (*save)(struct drm_crtc *crtc); /* suspend? */
336 /* Restore CRTC state */
337 void (*restore)(struct drm_crtc *crtc); /* resume? */
Chris Wilsoneb033552011-01-24 15:11:08 +0000338 /* Reset CRTC state */
339 void (*reset)(struct drm_crtc *crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800340
341 /* cursor controls */
342 int (*cursor_set)(struct drm_crtc *crtc, struct drm_file *file_priv,
343 uint32_t handle, uint32_t width, uint32_t height);
Dave Airlie4c813d42013-06-20 11:48:52 +1000344 int (*cursor_set2)(struct drm_crtc *crtc, struct drm_file *file_priv,
345 uint32_t handle, uint32_t width, uint32_t height,
346 int32_t hot_x, int32_t hot_y);
Dave Airlief453ba02008-11-07 14:05:41 -0800347 int (*cursor_move)(struct drm_crtc *crtc, int x, int y);
348
349 /* Set gamma on the CRTC */
350 void (*gamma_set)(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
James Simmons72034252010-08-03 01:33:19 +0100351 uint32_t start, uint32_t size);
Dave Airlief453ba02008-11-07 14:05:41 -0800352 /* Object destroy routine */
353 void (*destroy)(struct drm_crtc *crtc);
354
355 int (*set_config)(struct drm_mode_set *set);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500356
357 /*
358 * Flip to the given framebuffer. This implements the page
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300359 * flip ioctl described in drm_mode.h, specifically, the
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500360 * implementation must return immediately and block all
361 * rendering to the current fb until the flip has completed.
362 * If userspace set the event flag in the ioctl, the event
363 * argument will point to an event to send back when the flip
364 * completes, otherwise it will be NULL.
365 */
366 int (*page_flip)(struct drm_crtc *crtc,
367 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -0700368 struct drm_pending_vblank_event *event,
369 uint32_t flags);
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300370
371 int (*set_property)(struct drm_crtc *crtc,
372 struct drm_property *property, uint64_t val);
Dave Airlief453ba02008-11-07 14:05:41 -0800373};
374
375/**
376 * drm_crtc - central CRTC control structure
Jesse Barnes77491632011-11-07 12:03:14 -0800377 * @dev: parent DRM device
378 * @head: list management
379 * @base: base KMS object for ID tracking etc.
Dave Airlief453ba02008-11-07 14:05:41 -0800380 * @enabled: is this CRTC enabled?
Jesse Barnes77491632011-11-07 12:03:14 -0800381 * @mode: current mode timings
382 * @hwmode: mode timings as programmed to hw regs
Rob Clark7c80e122012-09-04 16:35:56 +0000383 * @invert_dimensions: for purposes of error checking crtc vs fb sizes,
384 * invert the width/height of the crtc. This is used if the driver
385 * is performing 90 or 270 degree rotated scanout
Dave Airlief453ba02008-11-07 14:05:41 -0800386 * @x: x position on screen
387 * @y: y position on screen
Dave Airlief453ba02008-11-07 14:05:41 -0800388 * @funcs: CRTC control functions
Jesse Barnes77491632011-11-07 12:03:14 -0800389 * @gamma_size: size of gamma ramp
390 * @gamma_store: gamma ramp values
391 * @framedur_ns: precise frame timing
392 * @framedur_ns: precise line timing
393 * @pixeldur_ns: precise pixel timing
394 * @helper_private: mid-layer private data
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300395 * @properties: property tracking for this CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800396 *
397 * Each CRTC may have one or more connectors associated with it. This structure
398 * allows the CRTC to be controlled.
399 */
400struct drm_crtc {
401 struct drm_device *dev;
402 struct list_head head;
403
Daniel Vetter29494c12012-12-02 02:18:25 +0100404 /**
405 * crtc mutex
406 *
407 * This provides a read lock for the overall crtc state (mode, dpms
408 * state, ...) and a write lock for everything which can be update
409 * without a full modeset (fb, cursor data, ...)
410 */
411 struct mutex mutex;
412
Dave Airlief453ba02008-11-07 14:05:41 -0800413 struct drm_mode_object base;
414
415 /* framebuffer the connector is currently bound to */
416 struct drm_framebuffer *fb;
417
Daniel Vetter5cef29a2013-06-15 00:13:16 +0200418 /* Temporary tracking of the old fb while a modeset is ongoing. Used
419 * by drm_mode_set_config_internal to implement correct refcounting. */
420 struct drm_framebuffer *old_fb;
421
Dave Airlief453ba02008-11-07 14:05:41 -0800422 bool enabled;
423
Mario Kleiner27641c32010-10-23 04:20:23 +0200424 /* Requested mode from modesetting. */
Dave Airlief453ba02008-11-07 14:05:41 -0800425 struct drm_display_mode mode;
426
Mario Kleiner27641c32010-10-23 04:20:23 +0200427 /* Programmed mode in hw, after adjustments for encoders,
428 * crtc, panel scaling etc. Needed for timestamping etc.
429 */
430 struct drm_display_mode hwmode;
431
Rob Clark7c80e122012-09-04 16:35:56 +0000432 bool invert_dimensions;
433
Dave Airlief453ba02008-11-07 14:05:41 -0800434 int x, y;
Dave Airlief453ba02008-11-07 14:05:41 -0800435 const struct drm_crtc_funcs *funcs;
436
437 /* CRTC gamma size for reporting to userspace */
438 uint32_t gamma_size;
439 uint16_t *gamma_store;
440
Mario Kleiner27641c32010-10-23 04:20:23 +0200441 /* Constants needed for precise vblank and swap timestamping. */
442 s64 framedur_ns, linedur_ns, pixeldur_ns;
443
Dave Airlief453ba02008-11-07 14:05:41 -0800444 /* if you are using the helper */
445 void *helper_private;
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300446
447 struct drm_object_properties properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800448};
449
450
451/**
452 * drm_connector_funcs - control connectors on a given device
453 * @dpms: set power state (see drm_crtc_funcs above)
454 * @save: save connector state
455 * @restore: restore connector state
Christopher Harvey13bcf012013-03-07 10:42:25 -0500456 * @reset: reset connector after state has been invalidated (e.g. resume)
Dave Airlief453ba02008-11-07 14:05:41 -0800457 * @detect: is this connector active?
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200458 * @fill_modes: fill mode list for this connector
Christopher Harvey13bcf012013-03-07 10:42:25 -0500459 * @set_property: property for this connector may need an update
Dave Airlief453ba02008-11-07 14:05:41 -0800460 * @destroy: make object go away
Christopher Harvey13bcf012013-03-07 10:42:25 -0500461 * @force: notify the driver that the connector is forced on
Dave Airlief453ba02008-11-07 14:05:41 -0800462 *
463 * Each CRTC may have one or more connectors attached to it. The functions
464 * below allow the core DRM code to control connectors, enumerate available modes,
465 * etc.
466 */
467struct drm_connector_funcs {
468 void (*dpms)(struct drm_connector *connector, int mode);
469 void (*save)(struct drm_connector *connector);
470 void (*restore)(struct drm_connector *connector);
Chris Wilsoneb033552011-01-24 15:11:08 +0000471 void (*reset)(struct drm_connector *connector);
Chris Wilson930a9e22010-09-14 11:07:23 +0100472
473 /* Check to see if anything is attached to the connector.
474 * @force is set to false whilst polling, true when checking the
475 * connector due to user request. @force can be used by the driver
476 * to avoid expensive, destructive operations during automated
477 * probing.
478 */
Chris Wilson7b334fc2010-09-09 23:51:02 +0100479 enum drm_connector_status (*detect)(struct drm_connector *connector,
Chris Wilson930a9e22010-09-14 11:07:23 +0100480 bool force);
Jesse Barnes40a518d2009-01-12 12:05:32 -0800481 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height);
Dave Airlief453ba02008-11-07 14:05:41 -0800482 int (*set_property)(struct drm_connector *connector, struct drm_property *property,
483 uint64_t val);
484 void (*destroy)(struct drm_connector *connector);
Dave Airlied50ba252009-09-23 14:44:08 +1000485 void (*force)(struct drm_connector *connector);
Dave Airlief453ba02008-11-07 14:05:41 -0800486};
487
Jesse Barnes6c3db922011-11-07 12:03:16 -0800488/**
489 * drm_encoder_funcs - encoder controls
490 * @reset: reset state (e.g. at init or resume time)
491 * @destroy: cleanup and free associated data
492 *
493 * Encoders sit between CRTCs and connectors.
494 */
Dave Airlief453ba02008-11-07 14:05:41 -0800495struct drm_encoder_funcs {
Chris Wilsoneb033552011-01-24 15:11:08 +0000496 void (*reset)(struct drm_encoder *encoder);
Dave Airlief453ba02008-11-07 14:05:41 -0800497 void (*destroy)(struct drm_encoder *encoder);
498};
499
Ben Skeggsafe887d2012-01-12 16:00:57 +1000500#define DRM_CONNECTOR_MAX_ENCODER 3
Dave Airlief453ba02008-11-07 14:05:41 -0800501
502/**
503 * drm_encoder - central DRM encoder structure
Jesse Barnesdb3e4492011-11-07 12:03:17 -0800504 * @dev: parent DRM device
505 * @head: list management
506 * @base: base KMS object
507 * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h
508 * @possible_crtcs: bitmask of potential CRTC bindings
509 * @possible_clones: bitmask of potential sibling encoders for cloning
510 * @crtc: currently bound CRTC
Sean Paul3b336ec2013-08-14 16:47:37 -0400511 * @bridge: bridge associated to the encoder
Jesse Barnesdb3e4492011-11-07 12:03:17 -0800512 * @funcs: control functions
513 * @helper_private: mid-layer private data
514 *
515 * CRTCs drive pixels to encoders, which convert them into signals
516 * appropriate for a given connector or set of connectors.
Dave Airlief453ba02008-11-07 14:05:41 -0800517 */
518struct drm_encoder {
519 struct drm_device *dev;
520 struct list_head head;
521
522 struct drm_mode_object base;
523 int encoder_type;
524 uint32_t possible_crtcs;
525 uint32_t possible_clones;
526
527 struct drm_crtc *crtc;
Sean Paul3b336ec2013-08-14 16:47:37 -0400528 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -0800529 const struct drm_encoder_funcs *funcs;
530 void *helper_private;
531};
532
Dave Airlied50ba252009-09-23 14:44:08 +1000533enum drm_connector_force {
534 DRM_FORCE_UNSPECIFIED,
535 DRM_FORCE_OFF,
536 DRM_FORCE_ON, /* force on analog part normally */
537 DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */
538};
539
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000540/* should we poll this connector for connects and disconnects */
541/* hot plug detectable */
542#define DRM_CONNECTOR_POLL_HPD (1 << 0)
543/* poll for connections */
544#define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
545/* can cleanly poll for disconnections without flickering the screen */
546/* DACs should rarely do this without a lot of testing */
547#define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
548
Wu Fengguang76adaa342011-09-05 14:23:20 +0800549#define MAX_ELD_BYTES 128
550
Dave Airlief453ba02008-11-07 14:05:41 -0800551/**
552 * drm_connector - central DRM connector control structure
Jesse Barnes72252542011-11-07 12:03:18 -0800553 * @dev: parent DRM device
554 * @kdev: kernel device for sysfs attributes
555 * @attr: sysfs attributes
556 * @head: list management
557 * @base: base KMS object
558 * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h
559 * @connector_type_id: index into connector type enum
Dave Airlief453ba02008-11-07 14:05:41 -0800560 * @interlace_allowed: can this connector handle interlaced modes?
561 * @doublescan_allowed: can this connector handle doublescan?
Jesse Barnes72252542011-11-07 12:03:18 -0800562 * @modes: modes available on this connector (from fill_modes() + user)
563 * @status: one of the drm_connector_status enums (connected, not, or unknown)
564 * @probed_modes: list of modes derived directly from the display
565 * @display_info: information about attached display (e.g. from EDID)
Dave Airlief453ba02008-11-07 14:05:41 -0800566 * @funcs: connector control functions
Jesse Barnes72252542011-11-07 12:03:18 -0800567 * @edid_blob_ptr: DRM property containing EDID if present
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300568 * @properties: property tracking for this connector
Jesse Barnes72252542011-11-07 12:03:18 -0800569 * @polled: a %DRM_CONNECTOR_POLL_<foo> value for core driven polling
570 * @dpms: current dpms state
571 * @helper_private: mid-layer private data
572 * @force: a %DRM_FORCE_<foo> state for forced mode sets
573 * @encoder_ids: valid encoders for this connector
574 * @encoder: encoder driving this connector, if any
575 * @eld: EDID-like data, if present
576 * @dvi_dual: dual link DVI, if found
577 * @max_tmds_clock: max clock rate, if found
578 * @latency_present: AV delay info from ELD, if found
579 * @video_latency: video latency info from ELD, if found
580 * @audio_latency: audio latency info from ELD, if found
581 * @null_edid_counter: track sinks that give us all zeros for the EDID
Dave Airlief453ba02008-11-07 14:05:41 -0800582 *
583 * Each connector may be connected to one or more CRTCs, or may be clonable by
584 * another connector if they can share a CRTC. Each connector also has a specific
585 * position in the broader display (referred to as a 'screen' though it could
586 * span multiple monitors).
587 */
588struct drm_connector {
589 struct drm_device *dev;
590 struct device kdev;
591 struct device_attribute *attr;
592 struct list_head head;
593
594 struct drm_mode_object base;
595
596 int connector_type;
597 int connector_type_id;
598 bool interlace_allowed;
599 bool doublescan_allowed;
600 struct list_head modes; /* list of modes on this connector */
601
Dave Airlief453ba02008-11-07 14:05:41 -0800602 enum drm_connector_status status;
603
604 /* these are modes added by probing with DDC or the BIOS */
605 struct list_head probed_modes;
606
607 struct drm_display_info display_info;
608 const struct drm_connector_funcs *funcs;
609
Dave Airlief453ba02008-11-07 14:05:41 -0800610 struct drm_property_blob *edid_blob_ptr;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300611 struct drm_object_properties properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800612
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000613 uint8_t polled; /* DRM_CONNECTOR_POLL_* */
614
Keith Packardc9fb15f2009-05-30 20:42:28 -0700615 /* requested DPMS state */
616 int dpms;
617
Dave Airlief453ba02008-11-07 14:05:41 -0800618 void *helper_private;
619
Dave Airlied50ba252009-09-23 14:44:08 +1000620 /* forced on connector */
621 enum drm_connector_force force;
Dave Airlief453ba02008-11-07 14:05:41 -0800622 uint32_t encoder_ids[DRM_CONNECTOR_MAX_ENCODER];
Dave Airlief453ba02008-11-07 14:05:41 -0800623 struct drm_encoder *encoder; /* currently active encoder */
Dave Airlie4a9a8b72011-06-14 06:13:55 +0000624
Wu Fengguang76adaa342011-09-05 14:23:20 +0800625 /* EDID bits */
626 uint8_t eld[MAX_ELD_BYTES];
627 bool dvi_dual;
628 int max_tmds_clock; /* in MHz */
629 bool latency_present[2];
630 int video_latency[2]; /* [0]: progressive, [1]: interlaced */
631 int audio_latency[2];
Dave Airlie4a9a8b72011-06-14 06:13:55 +0000632 int null_edid_counter; /* needed to workaround some HW bugs where we get all 0s */
Jerome Glisse0b2443e2012-08-09 11:25:51 -0400633 unsigned bad_edid_counter;
Dave Airlief453ba02008-11-07 14:05:41 -0800634};
635
636/**
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800637 * drm_plane_funcs - driver plane control functions
638 * @update_plane: update the plane configuration
639 * @disable_plane: shut down the plane
640 * @destroy: clean up plane resources
Rob Clark4d939142012-05-17 02:23:27 -0600641 * @set_property: called when a property is changed
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800642 */
643struct drm_plane_funcs {
644 int (*update_plane)(struct drm_plane *plane,
645 struct drm_crtc *crtc, struct drm_framebuffer *fb,
646 int crtc_x, int crtc_y,
647 unsigned int crtc_w, unsigned int crtc_h,
648 uint32_t src_x, uint32_t src_y,
649 uint32_t src_w, uint32_t src_h);
650 int (*disable_plane)(struct drm_plane *plane);
651 void (*destroy)(struct drm_plane *plane);
Rob Clark4d939142012-05-17 02:23:27 -0600652
653 int (*set_property)(struct drm_plane *plane,
654 struct drm_property *property, uint64_t val);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800655};
656
657/**
658 * drm_plane - central DRM plane control structure
659 * @dev: DRM device this plane belongs to
660 * @head: for list management
661 * @base: base mode object
662 * @possible_crtcs: pipes this plane can be bound to
663 * @format_types: array of formats supported by this plane
664 * @format_count: number of formats supported
665 * @crtc: currently bound CRTC
666 * @fb: currently bound fb
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800667 * @funcs: helper functions
Rob Clark4d939142012-05-17 02:23:27 -0600668 * @properties: property tracking for this plane
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800669 */
670struct drm_plane {
671 struct drm_device *dev;
672 struct list_head head;
673
674 struct drm_mode_object base;
675
676 uint32_t possible_crtcs;
677 uint32_t *format_types;
678 uint32_t format_count;
679
680 struct drm_crtc *crtc;
681 struct drm_framebuffer *fb;
682
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800683 const struct drm_plane_funcs *funcs;
Rob Clark4d939142012-05-17 02:23:27 -0600684
685 struct drm_object_properties properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800686};
687
688/**
Sean Paul3b336ec2013-08-14 16:47:37 -0400689 * drm_bridge_funcs - drm_bridge control functions
690 * @mode_fixup: Try to fixup (or reject entirely) proposed mode for this bridge
691 * @disable: Called right before encoder prepare, disables the bridge
692 * @post_disable: Called right after encoder prepare, for lockstepped disable
693 * @mode_set: Set this mode to the bridge
694 * @pre_enable: Called right before encoder commit, for lockstepped commit
695 * @enable: Called right after encoder commit, enables the bridge
696 * @destroy: make object go away
697 */
698struct drm_bridge_funcs {
699 bool (*mode_fixup)(struct drm_bridge *bridge,
700 const struct drm_display_mode *mode,
701 struct drm_display_mode *adjusted_mode);
702 void (*disable)(struct drm_bridge *bridge);
703 void (*post_disable)(struct drm_bridge *bridge);
704 void (*mode_set)(struct drm_bridge *bridge,
705 struct drm_display_mode *mode,
706 struct drm_display_mode *adjusted_mode);
707 void (*pre_enable)(struct drm_bridge *bridge);
708 void (*enable)(struct drm_bridge *bridge);
709 void (*destroy)(struct drm_bridge *bridge);
710};
711
712/**
713 * drm_bridge - central DRM bridge control structure
714 * @dev: DRM device this bridge belongs to
715 * @head: list management
716 * @base: base mode object
717 * @funcs: control functions
718 * @driver_private: pointer to the bridge driver's internal context
719 */
720struct drm_bridge {
721 struct drm_device *dev;
722 struct list_head head;
723
724 struct drm_mode_object base;
725
726 const struct drm_bridge_funcs *funcs;
727 void *driver_private;
728};
729
730/**
Jesse Barnesef273512011-11-07 12:03:19 -0800731 * drm_mode_set - new values for a CRTC config change
732 * @head: list management
733 * @fb: framebuffer to use for new config
734 * @crtc: CRTC whose configuration we're about to change
735 * @mode: mode timings to use
736 * @x: position of this CRTC relative to @fb
737 * @y: position of this CRTC relative to @fb
738 * @connectors: array of connectors to drive with this CRTC if possible
739 * @num_connectors: size of @connectors array
Dave Airlief453ba02008-11-07 14:05:41 -0800740 *
741 * Represents a single crtc the connectors that it drives with what mode
742 * and from which framebuffer it scans out from.
743 *
744 * This is used to set modes.
745 */
746struct drm_mode_set {
Dave Airlief453ba02008-11-07 14:05:41 -0800747 struct drm_framebuffer *fb;
748 struct drm_crtc *crtc;
749 struct drm_display_mode *mode;
750
751 uint32_t x;
752 uint32_t y;
753
754 struct drm_connector **connectors;
755 size_t num_connectors;
756};
757
758/**
Jesse Barnes550cebc2011-11-07 12:03:20 -0800759 * struct drm_mode_config_funcs - basic driver provided mode setting functions
760 * @fb_create: create a new framebuffer object
761 * @output_poll_changed: function to handle output configuration changes
762 *
763 * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
764 * involve drivers.
Dave Airlief453ba02008-11-07 14:05:41 -0800765 */
766struct drm_mode_config_funcs {
Jesse Barnes550cebc2011-11-07 12:03:20 -0800767 struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
768 struct drm_file *file_priv,
769 struct drm_mode_fb_cmd2 *mode_cmd);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000770 void (*output_poll_changed)(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800771};
772
Jesse Barnesc1aaca22011-11-07 12:03:21 -0800773/**
774 * drm_mode_group - group of mode setting resources for potential sub-grouping
775 * @num_crtcs: CRTC count
776 * @num_encoders: encoder count
777 * @num_connectors: connector count
778 * @id_list: list of KMS object IDs in this group
779 *
780 * Currently this simply tracks the global mode setting state. But in the
781 * future it could allow groups of objects to be set aside into independent
782 * control groups for use by different user level processes (e.g. two X servers
783 * running simultaneously on different heads, each with their own mode
784 * configuration and freedom of mode setting).
785 */
Dave Airlief453ba02008-11-07 14:05:41 -0800786struct drm_mode_group {
787 uint32_t num_crtcs;
788 uint32_t num_encoders;
789 uint32_t num_connectors;
Sean Paul3b336ec2013-08-14 16:47:37 -0400790 uint32_t num_bridges;
Dave Airlief453ba02008-11-07 14:05:41 -0800791
792 /* list of object IDs for this group */
793 uint32_t *id_list;
794};
795
796/**
797 * drm_mode_config - Mode configuration control structure
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800798 * @mutex: mutex protecting KMS related lists and structures
799 * @idr_mutex: mutex for KMS ID allocation and management
800 * @crtc_idr: main KMS ID tracking object
801 * @num_fb: number of fbs available
802 * @fb_list: list of framebuffers available
803 * @num_connector: number of connectors on this device
804 * @connector_list: list of connector objects
Sean Paul3b336ec2013-08-14 16:47:37 -0400805 * @num_bridge: number of bridges on this device
806 * @bridge_list: list of bridge objects
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800807 * @num_encoder: number of encoders on this device
808 * @encoder_list: list of encoder objects
809 * @num_crtc: number of CRTCs on this device
810 * @crtc_list: list of CRTC objects
811 * @min_width: minimum pixel width on this device
812 * @min_height: minimum pixel height on this device
813 * @max_width: maximum pixel width on this device
814 * @max_height: maximum pixel height on this device
815 * @funcs: core driver provided mode setting functions
816 * @fb_base: base address of the framebuffer
817 * @poll_enabled: track polling status for this device
818 * @output_poll_work: delayed work for polling in process context
819 * @*_property: core property tracking
Dave Airlief453ba02008-11-07 14:05:41 -0800820 *
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800821 * Core mode resource tracking structure. All CRTC, encoders, and connectors
822 * enumerated by the driver are added here, as are global properties. Some
823 * global restrictions are also here, e.g. dimension restrictions.
Dave Airlief453ba02008-11-07 14:05:41 -0800824 */
825struct drm_mode_config {
Jesse Barnesad2563c2009-01-19 17:21:45 +1000826 struct mutex mutex; /* protects configuration (mode lists etc.) */
827 struct mutex idr_mutex; /* for IDR management */
Dave Airlief453ba02008-11-07 14:05:41 -0800828 struct idr crtc_idr; /* use this idr for all IDs, fb, crtc, connector, modes - just makes life easier */
829 /* this is limited to one for now */
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100830
831
832 /**
833 * fb_lock - mutex to protect fb state
834 *
835 * Besides the global fb list his also protects the fbs list in the
836 * file_priv
837 */
838 struct mutex fb_lock;
Dave Airlief453ba02008-11-07 14:05:41 -0800839 int num_fb;
840 struct list_head fb_list;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100841
Dave Airlief453ba02008-11-07 14:05:41 -0800842 int num_connector;
843 struct list_head connector_list;
Sean Paul3b336ec2013-08-14 16:47:37 -0400844 int num_bridge;
845 struct list_head bridge_list;
Dave Airlief453ba02008-11-07 14:05:41 -0800846 int num_encoder;
847 struct list_head encoder_list;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800848 int num_plane;
849 struct list_head plane_list;
Dave Airlief453ba02008-11-07 14:05:41 -0800850
851 int num_crtc;
852 struct list_head crtc_list;
853
854 struct list_head property_list;
855
Dave Airlief453ba02008-11-07 14:05:41 -0800856 int min_width, min_height;
857 int max_width, max_height;
Laurent Pincharte6ecefa2012-05-17 13:27:23 +0200858 const struct drm_mode_config_funcs *funcs;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +1100859 resource_size_t fb_base;
Dave Airlief453ba02008-11-07 14:05:41 -0800860
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000861 /* output poll support */
862 bool poll_enabled;
Daniel Vetter905bc9f2012-10-23 18:23:36 +0000863 bool poll_running;
Tejun Heo991ea752010-07-20 22:09:02 +0200864 struct delayed_work output_poll_work;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000865
Dave Airlief453ba02008-11-07 14:05:41 -0800866 /* pointers to standard properties */
867 struct list_head property_blob_list;
868 struct drm_property *edid_property;
869 struct drm_property *dpms_property;
870
871 /* DVI-I properties */
872 struct drm_property *dvi_i_subconnector_property;
873 struct drm_property *dvi_i_select_subconnector_property;
874
875 /* TV properties */
876 struct drm_property *tv_subconnector_property;
877 struct drm_property *tv_select_subconnector_property;
878 struct drm_property *tv_mode_property;
879 struct drm_property *tv_left_margin_property;
880 struct drm_property *tv_right_margin_property;
881 struct drm_property *tv_top_margin_property;
882 struct drm_property *tv_bottom_margin_property;
Francisco Jerezb6b79022009-08-02 04:19:20 +0200883 struct drm_property *tv_brightness_property;
884 struct drm_property *tv_contrast_property;
885 struct drm_property *tv_flicker_reduction_property;
Francisco Jereza75f0232009-08-12 02:30:10 +0200886 struct drm_property *tv_overscan_property;
887 struct drm_property *tv_saturation_property;
888 struct drm_property *tv_hue_property;
Dave Airlief453ba02008-11-07 14:05:41 -0800889
890 /* Optional properties */
891 struct drm_property *scaling_mode_property;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000892 struct drm_property *dirty_info_property;
Dave Airlie019d96c2011-09-29 16:20:42 +0100893
894 /* dumb ioctl parameters */
895 uint32_t preferred_depth, prefer_shadow;
Keith Packard62f21042013-07-22 18:50:00 -0700896
897 /* whether async page flip is supported or not */
898 bool async_page_flip;
Dave Airlief453ba02008-11-07 14:05:41 -0800899};
900
901#define obj_to_crtc(x) container_of(x, struct drm_crtc, base)
902#define obj_to_connector(x) container_of(x, struct drm_connector, base)
903#define obj_to_encoder(x) container_of(x, struct drm_encoder, base)
904#define obj_to_mode(x) container_of(x, struct drm_display_mode, base)
905#define obj_to_fb(x) container_of(x, struct drm_framebuffer, base)
906#define obj_to_property(x) container_of(x, struct drm_property, base)
907#define obj_to_blob(x) container_of(x, struct drm_property_blob, base)
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800908#define obj_to_plane(x) container_of(x, struct drm_plane, base)
Dave Airlief453ba02008-11-07 14:05:41 -0800909
Sascha Hauer4a67d392012-02-06 10:58:17 +0100910struct drm_prop_enum_list {
911 int type;
912 char *name;
913};
Dave Airlief453ba02008-11-07 14:05:41 -0800914
Daniel Vetter84849902012-12-02 00:28:11 +0100915extern void drm_modeset_lock_all(struct drm_device *dev);
916extern void drm_modeset_unlock_all(struct drm_device *dev);
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100917extern void drm_warn_on_modeset_not_all_locked(struct drm_device *dev);
Daniel Vetter84849902012-12-02 00:28:11 +0100918
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200919extern int drm_crtc_init(struct drm_device *dev,
920 struct drm_crtc *crtc,
921 const struct drm_crtc_funcs *funcs);
Dave Airlief453ba02008-11-07 14:05:41 -0800922extern void drm_crtc_cleanup(struct drm_crtc *crtc);
923
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400924extern void drm_connector_ida_init(void);
925extern void drm_connector_ida_destroy(void);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200926extern int drm_connector_init(struct drm_device *dev,
927 struct drm_connector *connector,
928 const struct drm_connector_funcs *funcs,
929 int connector_type);
Dave Airlief453ba02008-11-07 14:05:41 -0800930
931extern void drm_connector_cleanup(struct drm_connector *connector);
Dave Airliecbc7e222012-02-20 14:16:40 +0000932/* helper to unplug all connectors from sysfs for device */
933extern void drm_connector_unplug_all(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800934
Sean Paul3b336ec2013-08-14 16:47:37 -0400935extern int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
936 const struct drm_bridge_funcs *funcs);
937extern void drm_bridge_cleanup(struct drm_bridge *bridge);
938
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200939extern int drm_encoder_init(struct drm_device *dev,
940 struct drm_encoder *encoder,
941 const struct drm_encoder_funcs *funcs,
942 int encoder_type);
Dave Airlief453ba02008-11-07 14:05:41 -0800943
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800944extern int drm_plane_init(struct drm_device *dev,
945 struct drm_plane *plane,
946 unsigned long possible_crtcs,
947 const struct drm_plane_funcs *funcs,
Rob Clark0a7eb242011-12-13 20:19:36 -0600948 const uint32_t *formats, uint32_t format_count,
949 bool priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800950extern void drm_plane_cleanup(struct drm_plane *plane);
Ville Syrjälä9125e612013-06-03 16:10:40 +0300951extern void drm_plane_force_disable(struct drm_plane *plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800952
Dave Airlief453ba02008-11-07 14:05:41 -0800953extern void drm_encoder_cleanup(struct drm_encoder *encoder);
954
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000955extern const char *drm_get_connector_name(const struct drm_connector *connector);
956extern const char *drm_get_connector_status_name(enum drm_connector_status status);
957extern const char *drm_get_dpms_name(int val);
958extern const char *drm_get_dvi_i_subconnector_name(int val);
959extern const char *drm_get_dvi_i_select_name(int val);
960extern const char *drm_get_tv_subconnector_name(int val);
961extern const char *drm_get_tv_select_name(int val);
Kristian Høgsbergea39f832009-02-12 14:37:56 -0500962extern void drm_fb_release(struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -0800963extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group);
Adam Jacksonfbff4692012-09-18 10:58:47 -0400964extern bool drm_probe_ddc(struct i2c_adapter *adapter);
Dave Airlief453ba02008-11-07 14:05:41 -0800965extern struct edid *drm_get_edid(struct drm_connector *connector,
966 struct i2c_adapter *adapter);
Dave Airlief453ba02008-11-07 14:05:41 -0800967extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
968extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode);
Ville Syrjäläc3c50e82012-03-13 12:35:51 +0200969extern void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src);
Dave Airlief453ba02008-11-07 14:05:41 -0800970extern struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
Chris Wilsonb1f559e2011-01-26 09:49:47 +0000971 const struct drm_display_mode *mode);
Ville Syrjälä0b3904a2012-10-25 18:05:05 +0000972extern void drm_mode_debug_printmodeline(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800973extern void drm_mode_config_init(struct drm_device *dev);
Chris Wilsoneb033552011-01-24 15:11:08 +0000974extern void drm_mode_config_reset(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800975extern void drm_mode_config_cleanup(struct drm_device *dev);
976extern void drm_mode_set_name(struct drm_display_mode *mode);
Ville Syrjälä0b3904a2012-10-25 18:05:05 +0000977extern bool drm_mode_equal(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2);
Ville Syrjälä8cc3f232013-04-24 19:07:16 +0300978extern bool drm_mode_equal_no_clocks(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2);
Ville Syrjälä0b3904a2012-10-25 18:05:05 +0000979extern int drm_mode_width(const struct drm_display_mode *mode);
980extern int drm_mode_height(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800981
982/* for us by fb module */
Dave Airlief453ba02008-11-07 14:05:41 -0800983extern struct drm_display_mode *drm_mode_create(struct drm_device *dev);
984extern void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800985extern void drm_mode_validate_size(struct drm_device *dev,
986 struct list_head *mode_list,
987 int maxX, int maxY, int maxPitch);
988extern void drm_mode_prune_invalid(struct drm_device *dev,
989 struct list_head *mode_list, bool verbose);
990extern void drm_mode_sort(struct list_head *mode_list);
Chris Wilsonb1f559e2011-01-26 09:49:47 +0000991extern int drm_mode_hsync(const struct drm_display_mode *mode);
992extern int drm_mode_vrefresh(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800993extern void drm_mode_set_crtcinfo(struct drm_display_mode *p,
994 int adjust_flags);
995extern void drm_mode_connector_list_update(struct drm_connector *connector);
996extern int drm_mode_connector_update_edid_property(struct drm_connector *connector,
997 struct edid *edid);
Paulo Zanonic5431882012-05-15 18:09:02 -0300998extern int drm_object_property_set_value(struct drm_mode_object *obj,
999 struct drm_property *property,
1000 uint64_t val);
1001extern int drm_object_property_get_value(struct drm_mode_object *obj,
1002 struct drm_property *property,
1003 uint64_t *value);
Dave Airlief453ba02008-11-07 14:05:41 -08001004extern int drm_framebuffer_init(struct drm_device *dev,
1005 struct drm_framebuffer *fb,
1006 const struct drm_framebuffer_funcs *funcs);
Daniel Vetter786b99e2012-12-02 21:53:40 +01001007extern struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
1008 uint32_t id);
Rob Clarkf7eff602012-09-05 21:48:38 +00001009extern void drm_framebuffer_unreference(struct drm_framebuffer *fb);
1010extern void drm_framebuffer_reference(struct drm_framebuffer *fb);
1011extern void drm_framebuffer_remove(struct drm_framebuffer *fb);
Dave Airlief453ba02008-11-07 14:05:41 -08001012extern void drm_framebuffer_cleanup(struct drm_framebuffer *fb);
Daniel Vetter36206362012-12-10 20:42:17 +01001013extern void drm_framebuffer_unregister_private(struct drm_framebuffer *fb);
Dave Airlief453ba02008-11-07 14:05:41 -08001014
Paulo Zanonic5431882012-05-15 18:09:02 -03001015extern void drm_object_attach_property(struct drm_mode_object *obj,
1016 struct drm_property *property,
1017 uint64_t init_val);
Dave Airlief453ba02008-11-07 14:05:41 -08001018extern struct drm_property *drm_property_create(struct drm_device *dev, int flags,
1019 const char *name, int num_values);
Sascha Hauer4a67d392012-02-06 10:58:17 +01001020extern struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
1021 const char *name,
1022 const struct drm_prop_enum_list *props,
1023 int num_values);
Rob Clark49e27542012-05-17 02:23:26 -06001024struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
1025 int flags, const char *name,
1026 const struct drm_prop_enum_list *props,
1027 int num_values);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001028struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
1029 const char *name,
1030 uint64_t min, uint64_t max);
Dave Airlief453ba02008-11-07 14:05:41 -08001031extern void drm_property_destroy(struct drm_device *dev, struct drm_property *property);
1032extern int drm_property_add_enum(struct drm_property *property, int index,
1033 uint64_t value, const char *name);
1034extern int drm_mode_create_dvi_i_properties(struct drm_device *dev);
1035extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats,
1036 char *formats[]);
1037extern int drm_mode_create_scaling_mode_property(struct drm_device *dev);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001038extern int drm_mode_create_dirty_info_property(struct drm_device *dev);
Ville Syrjäläd20d3172013-06-07 15:43:07 +00001039extern const char *drm_get_encoder_name(const struct drm_encoder *encoder);
Dave Airlief453ba02008-11-07 14:05:41 -08001040
1041extern int drm_mode_connector_attach_encoder(struct drm_connector *connector,
1042 struct drm_encoder *encoder);
1043extern void drm_mode_connector_detach_encoder(struct drm_connector *connector,
1044 struct drm_encoder *encoder);
Sascha Hauer4cae5b82012-02-01 11:38:23 +01001045extern int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -08001046 int gamma_size);
Daniel Vetter7a9c9062009-09-15 22:57:31 +02001047extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
1048 uint32_t id, uint32_t type);
Dave Airlief453ba02008-11-07 14:05:41 -08001049/* IOCTLs */
1050extern int drm_mode_getresources(struct drm_device *dev,
1051 void *data, struct drm_file *file_priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001052extern int drm_mode_getplane_res(struct drm_device *dev, void *data,
1053 struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001054extern int drm_mode_getcrtc(struct drm_device *dev,
1055 void *data, struct drm_file *file_priv);
1056extern int drm_mode_getconnector(struct drm_device *dev,
1057 void *data, struct drm_file *file_priv);
Daniel Vetter2d13b672012-12-11 13:47:23 +01001058extern int drm_mode_set_config_internal(struct drm_mode_set *set);
Dave Airlief453ba02008-11-07 14:05:41 -08001059extern int drm_mode_setcrtc(struct drm_device *dev,
1060 void *data, struct drm_file *file_priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001061extern int drm_mode_getplane(struct drm_device *dev,
1062 void *data, struct drm_file *file_priv);
1063extern int drm_mode_setplane(struct drm_device *dev,
1064 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001065extern int drm_mode_cursor_ioctl(struct drm_device *dev,
1066 void *data, struct drm_file *file_priv);
Dave Airlie4c813d42013-06-20 11:48:52 +10001067extern int drm_mode_cursor2_ioctl(struct drm_device *dev,
1068 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001069extern int drm_mode_addfb(struct drm_device *dev,
1070 void *data, struct drm_file *file_priv);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001071extern int drm_mode_addfb2(struct drm_device *dev,
1072 void *data, struct drm_file *file_priv);
1073extern uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth);
Dave Airlief453ba02008-11-07 14:05:41 -08001074extern int drm_mode_rmfb(struct drm_device *dev,
1075 void *data, struct drm_file *file_priv);
1076extern int drm_mode_getfb(struct drm_device *dev,
1077 void *data, struct drm_file *file_priv);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001078extern int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
1079 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001080
1081extern int drm_mode_getproperty_ioctl(struct drm_device *dev,
1082 void *data, struct drm_file *file_priv);
1083extern int drm_mode_getblob_ioctl(struct drm_device *dev,
1084 void *data, struct drm_file *file_priv);
1085extern int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
1086 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001087extern int drm_mode_getencoder(struct drm_device *dev,
1088 void *data, struct drm_file *file_priv);
1089extern int drm_mode_gamma_get_ioctl(struct drm_device *dev,
1090 void *data, struct drm_file *file_priv);
1091extern int drm_mode_gamma_set_ioctl(struct drm_device *dev,
1092 void *data, struct drm_file *file_priv);
Thierry Reding18316c82012-12-20 15:41:44 +01001093extern u8 drm_match_cea_mode(const struct drm_display_mode *to_match);
Ma Lingf23c20c2009-03-26 19:26:23 +08001094extern bool drm_detect_hdmi_monitor(struct edid *edid);
Zhenyu Wang8fe97902010-09-19 14:27:28 +08001095extern bool drm_detect_monitor_audio(struct edid *edid);
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02001096extern bool drm_rgb_quant_range_selectable(struct edid *edid);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05001097extern int drm_mode_page_flip_ioctl(struct drm_device *dev,
1098 void *data, struct drm_file *file_priv);
Zhao Yakuid782c3f2009-06-22 13:17:08 +08001099extern struct drm_display_mode *drm_cvt_mode(struct drm_device *dev,
1100 int hdisplay, int vdisplay, int vrefresh,
Dave Airlied50ba252009-09-23 14:44:08 +10001101 bool reduced, bool interlaced, bool margins);
Zhao Yakui26bbdad2009-06-22 13:17:09 +08001102extern struct drm_display_mode *drm_gtf_mode(struct drm_device *dev,
1103 int hdisplay, int vdisplay, int vrefresh,
1104 bool interlaced, int margins);
Adam Jackson7a374352010-03-29 21:43:30 +00001105extern struct drm_display_mode *drm_gtf_mode_complex(struct drm_device *dev,
1106 int hdisplay, int vdisplay, int vrefresh,
1107 bool interlaced, int margins, int GTF_M,
1108 int GTF_2C, int GTF_K, int GTF_2J);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001109extern int drm_add_modes_noedid(struct drm_connector *connector,
1110 int hdisplay, int vdisplay);
Alex Deucher3c537882010-02-05 04:21:19 -05001111
Thomas Reim051963d2011-07-29 14:28:57 +00001112extern int drm_edid_header_is_valid(const u8 *raw_edid);
Jerome Glisse0b2443e2012-08-09 11:25:51 -04001113extern bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid);
Alex Deucher3c537882010-02-05 04:21:19 -05001114extern bool drm_edid_is_valid(struct edid *edid);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001115struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001116 int hsize, int vsize, int fresh,
1117 bool rb);
Dave Airlieff72145b2011-02-07 12:16:14 +10001118
1119extern int drm_mode_create_dumb_ioctl(struct drm_device *dev,
1120 void *data, struct drm_file *file_priv);
1121extern int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
1122 void *data, struct drm_file *file_priv);
1123extern int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
1124 void *data, struct drm_file *file_priv);
Paulo Zanonic5431882012-05-15 18:09:02 -03001125extern int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
1126 struct drm_file *file_priv);
1127extern int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
1128 struct drm_file *file_priv);
Dave Airlie248dbc22011-11-29 20:02:54 +00001129
1130extern void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
1131 int *bpp);
Ville Syrjälä141670e2012-04-05 21:35:15 +03001132extern int drm_format_num_planes(uint32_t format);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03001133extern int drm_format_plane_cpp(uint32_t format, int plane);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03001134extern int drm_format_horz_chroma_subsampling(uint32_t format);
1135extern int drm_format_vert_chroma_subsampling(uint32_t format);
Ville Syrjäläd20d3172013-06-07 15:43:07 +00001136extern const char *drm_get_format_name(uint32_t format);
Ville Syrjälä141670e2012-04-05 21:35:15 +03001137
Dave Airlief453ba02008-11-07 14:05:41 -08001138#endif /* __DRM_CRTC_H__ */