blob: b2d08ca68ee765e4692c17183ee015a7c321cafb [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 */
Damien Lespiau560a0672013-09-25 16:45:29 +0100111 MODE_NO_STEREO, /* stereo modes not supported */
Dave Airlief453ba02008-11-07 14:05:41 -0800112 MODE_UNVERIFIED = -3, /* mode needs to reverified */
113 MODE_BAD = -2, /* unspecified reason */
114 MODE_ERROR = -1 /* error condition */
115};
116
117#define DRM_MODE_TYPE_CLOCK_CRTC_C (DRM_MODE_TYPE_CLOCK_C | \
118 DRM_MODE_TYPE_CRTC_C)
119
120#define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \
121 .name = nm, .status = 0, .type = (t), .clock = (c), \
122 .hdisplay = (hd), .hsync_start = (hss), .hsync_end = (hse), \
123 .htotal = (ht), .hskew = (hsk), .vdisplay = (vd), \
124 .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \
Ville Syrjälä67af1162013-04-24 19:07:15 +0300125 .vscan = (vs), .flags = (f), \
Ville Syrjälä22f5d112012-08-14 10:53:38 +0000126 .base.type = DRM_MODE_OBJECT_MODE
Dave Airlief453ba02008-11-07 14:05:41 -0800127
Damien Lespiau448cce22013-09-25 16:45:35 +0100128#define CRTC_INTERLACE_HALVE_V (1 << 0) /* halve V values for interlacing */
129#define CRTC_STEREO_DOUBLE (1 << 1) /* adjust timings for stereo modes */
Dave Airlief453ba02008-11-07 14:05:41 -0800130
131struct drm_display_mode {
132 /* Header */
133 struct list_head head;
134 struct drm_mode_object base;
135
136 char name[DRM_DISPLAY_MODE_LEN];
137
Dave Airlief453ba02008-11-07 14:05:41 -0800138 enum drm_mode_status status;
Ville Syrjälä2fcfc752012-03-13 12:35:39 +0200139 unsigned int type;
Dave Airlief453ba02008-11-07 14:05:41 -0800140
141 /* Proposed mode values */
Adam Jackson7ac96a92009-12-03 17:44:37 -0500142 int clock; /* in kHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800143 int hdisplay;
144 int hsync_start;
145 int hsync_end;
146 int htotal;
147 int hskew;
148 int vdisplay;
149 int vsync_start;
150 int vsync_end;
151 int vtotal;
152 int vscan;
153 unsigned int flags;
154
155 /* Addressable image size (may be 0 for projectors, etc.) */
156 int width_mm;
157 int height_mm;
158
159 /* Actual mode we give to hw */
Damien Lespiaubde2dcf2013-09-25 16:45:34 +0100160 int crtc_clock; /* in KHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800161 int crtc_hdisplay;
162 int crtc_hblank_start;
163 int crtc_hblank_end;
164 int crtc_hsync_start;
165 int crtc_hsync_end;
166 int crtc_htotal;
167 int crtc_hskew;
168 int crtc_vdisplay;
169 int crtc_vblank_start;
170 int crtc_vblank_end;
171 int crtc_vsync_start;
172 int crtc_vsync_end;
173 int crtc_vtotal;
Dave Airlief453ba02008-11-07 14:05:41 -0800174
175 /* Driver private mode info */
176 int private_size;
177 int *private;
178 int private_flags;
179
Adam Jackson7ac96a92009-12-03 17:44:37 -0500180 int vrefresh; /* in Hz */
181 int hsync; /* in kHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800182};
183
Damien Lespiau4aa17cf2013-09-25 16:45:21 +0100184#define DRM_MODE_FLAG_3D_MASK (DRM_MODE_FLAG_3D_FRAME_PACKING | \
185 DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE | \
186 DRM_MODE_FLAG_3D_LINE_ALTERNATIVE | \
187 DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL | \
188 DRM_MODE_FLAG_3D_L_DEPTH | \
189 DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH | \
190 DRM_MODE_FLAG_3D_TOP_AND_BOTTOM | \
191 DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF)
192
193static inline bool drm_mode_is_stereo(const struct drm_display_mode *mode)
194{
195 return mode->flags & DRM_MODE_FLAG_3D_MASK;
196}
197
Dave Airlief453ba02008-11-07 14:05:41 -0800198enum drm_connector_status {
199 connector_status_connected = 1,
200 connector_status_disconnected = 2,
201 connector_status_unknown = 3,
202};
203
204enum subpixel_order {
205 SubPixelUnknown = 0,
206 SubPixelHorizontalRGB,
207 SubPixelHorizontalBGR,
208 SubPixelVerticalRGB,
209 SubPixelVerticalBGR,
210 SubPixelNone,
211};
212
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700213#define DRM_COLOR_FORMAT_RGB444 (1<<0)
214#define DRM_COLOR_FORMAT_YCRCB444 (1<<1)
215#define DRM_COLOR_FORMAT_YCRCB422 (1<<2)
Dave Airlief453ba02008-11-07 14:05:41 -0800216/*
217 * Describes a given display (e.g. CRT or flat panel) and its limitations.
218 */
219struct drm_display_info {
220 char name[DRM_DISPLAY_INFO_LEN];
Adam Jacksonfb439642010-08-03 14:38:16 -0400221
Dave Airlief453ba02008-11-07 14:05:41 -0800222 /* Physical size */
223 unsigned int width_mm;
224 unsigned int height_mm;
225
Dave Airlief453ba02008-11-07 14:05:41 -0800226 /* Clock limits FIXME: storage format */
227 unsigned int min_vfreq, max_vfreq;
228 unsigned int min_hfreq, max_hfreq;
229 unsigned int pixel_clock;
Jesse Barnes3b112282011-04-15 12:49:23 -0700230 unsigned int bpc;
Dave Airlief453ba02008-11-07 14:05:41 -0800231
Dave Airlief453ba02008-11-07 14:05:41 -0800232 enum subpixel_order subpixel_order;
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700233 u32 color_formats;
Dave Airlief453ba02008-11-07 14:05:41 -0800234
Jesse Barnesebec9a7b2011-08-03 09:22:54 -0700235 u8 cea_rev;
Dave Airlief453ba02008-11-07 14:05:41 -0800236};
237
238struct drm_framebuffer_funcs {
Rob Clarkf7eff602012-09-05 21:48:38 +0000239 /* note: use drm_framebuffer_remove() */
Dave Airlief453ba02008-11-07 14:05:41 -0800240 void (*destroy)(struct drm_framebuffer *framebuffer);
241 int (*create_handle)(struct drm_framebuffer *fb,
242 struct drm_file *file_priv,
243 unsigned int *handle);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000244 /**
245 * Optinal callback for the dirty fb ioctl.
246 *
247 * Userspace can notify the driver via this callback
248 * that a area of the framebuffer has changed and should
249 * be flushed to the display hardware.
250 *
251 * See documentation in drm_mode.h for the struct
252 * drm_mode_fb_dirty_cmd for more information as all
253 * the semantics and arguments have a one to one mapping
254 * on this function.
255 */
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200256 int (*dirty)(struct drm_framebuffer *framebuffer,
257 struct drm_file *file_priv, unsigned flags,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000258 unsigned color, struct drm_clip_rect *clips,
259 unsigned num_clips);
Dave Airlief453ba02008-11-07 14:05:41 -0800260};
261
262struct drm_framebuffer {
263 struct drm_device *dev;
Rob Clarkf7eff602012-09-05 21:48:38 +0000264 /*
265 * Note that the fb is refcounted for the benefit of driver internals,
266 * for example some hw, disabling a CRTC/plane is asynchronous, and
267 * scanout does not actually complete until the next vblank. So some
268 * cleanup (like releasing the reference(s) on the backing GEM bo(s))
269 * should be deferred. In cases like this, the driver would like to
270 * hold a ref to the fb even though it has already been removed from
271 * userspace perspective.
272 */
273 struct kref refcount;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100274 /*
275 * Place on the dev->mode_config.fb_list, access protected by
276 * dev->mode_config.fb_lock.
277 */
Dave Airlief453ba02008-11-07 14:05:41 -0800278 struct list_head head;
279 struct drm_mode_object base;
280 const struct drm_framebuffer_funcs *funcs;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200281 unsigned int pitches[4];
282 unsigned int offsets[4];
Dave Airlief453ba02008-11-07 14:05:41 -0800283 unsigned int width;
284 unsigned int height;
285 /* depth can be 15 or 16 */
286 unsigned int depth;
287 int bits_per_pixel;
288 int flags;
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800289 uint32_t pixel_format; /* fourcc format */
Dave Airlief453ba02008-11-07 14:05:41 -0800290 struct list_head filp_head;
Dave Airlie785b93e2009-08-28 15:46:53 +1000291 /* if you are using the helper */
292 void *helper_private;
Dave Airlief453ba02008-11-07 14:05:41 -0800293};
294
295struct drm_property_blob {
296 struct drm_mode_object base;
297 struct list_head head;
298 unsigned int length;
Ville Syrjäläd63f5e62012-03-13 12:35:49 +0200299 unsigned char data[];
Dave Airlief453ba02008-11-07 14:05:41 -0800300};
301
302struct drm_property_enum {
303 uint64_t value;
304 struct list_head head;
305 char name[DRM_PROP_NAME_LEN];
306};
307
308struct drm_property {
309 struct list_head head;
310 struct drm_mode_object base;
311 uint32_t flags;
312 char name[DRM_PROP_NAME_LEN];
313 uint32_t num_values;
314 uint64_t *values;
315
316 struct list_head enum_blob_list;
317};
318
319struct drm_crtc;
320struct drm_connector;
321struct drm_encoder;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500322struct drm_pending_vblank_event;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800323struct drm_plane;
Sean Paul3b336ec2013-08-14 16:47:37 -0400324struct drm_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -0800325
326/**
327 * drm_crtc_funcs - control CRTCs for a given device
Dave Airlief453ba02008-11-07 14:05:41 -0800328 * @save: save CRTC state
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200329 * @restore: restore CRTC state
Christopher Harvey715f59c2013-04-05 15:28:32 +0000330 * @reset: reset CRTC after state has been invalidated (e.g. resume)
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200331 * @cursor_set: setup the cursor
332 * @cursor_move: move the cursor
Dave Airlief453ba02008-11-07 14:05:41 -0800333 * @gamma_set: specify color ramp for CRTC
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300334 * @destroy: deinit and free object
335 * @set_property: called when a property is changed
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200336 * @set_config: apply a new CRTC configuration
337 * @page_flip: initiate a page flip
Dave Airlief453ba02008-11-07 14:05:41 -0800338 *
339 * The drm_crtc_funcs structure is the central CRTC management structure
340 * in the DRM. Each CRTC controls one or more connectors (note that the name
341 * CRTC is simply historical, a CRTC may control LVDS, VGA, DVI, TV out, etc.
342 * connectors, not just CRTs).
343 *
344 * Each driver is responsible for filling out this structure at startup time,
345 * in addition to providing other modesetting features, like i2c and DDC
346 * bus accessors.
347 */
348struct drm_crtc_funcs {
349 /* Save CRTC state */
350 void (*save)(struct drm_crtc *crtc); /* suspend? */
351 /* Restore CRTC state */
352 void (*restore)(struct drm_crtc *crtc); /* resume? */
Chris Wilsoneb0335562011-01-24 15:11:08 +0000353 /* Reset CRTC state */
354 void (*reset)(struct drm_crtc *crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800355
356 /* cursor controls */
357 int (*cursor_set)(struct drm_crtc *crtc, struct drm_file *file_priv,
358 uint32_t handle, uint32_t width, uint32_t height);
Dave Airlie4c813d42013-06-20 11:48:52 +1000359 int (*cursor_set2)(struct drm_crtc *crtc, struct drm_file *file_priv,
360 uint32_t handle, uint32_t width, uint32_t height,
361 int32_t hot_x, int32_t hot_y);
Dave Airlief453ba02008-11-07 14:05:41 -0800362 int (*cursor_move)(struct drm_crtc *crtc, int x, int y);
363
364 /* Set gamma on the CRTC */
365 void (*gamma_set)(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
James Simmons72034252010-08-03 01:33:19 +0100366 uint32_t start, uint32_t size);
Dave Airlief453ba02008-11-07 14:05:41 -0800367 /* Object destroy routine */
368 void (*destroy)(struct drm_crtc *crtc);
369
370 int (*set_config)(struct drm_mode_set *set);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500371
372 /*
373 * Flip to the given framebuffer. This implements the page
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300374 * flip ioctl described in drm_mode.h, specifically, the
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500375 * implementation must return immediately and block all
376 * rendering to the current fb until the flip has completed.
377 * If userspace set the event flag in the ioctl, the event
378 * argument will point to an event to send back when the flip
379 * completes, otherwise it will be NULL.
380 */
381 int (*page_flip)(struct drm_crtc *crtc,
382 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -0700383 struct drm_pending_vblank_event *event,
384 uint32_t flags);
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300385
386 int (*set_property)(struct drm_crtc *crtc,
387 struct drm_property *property, uint64_t val);
Dave Airlief453ba02008-11-07 14:05:41 -0800388};
389
390/**
391 * drm_crtc - central CRTC control structure
Jesse Barnes77491632011-11-07 12:03:14 -0800392 * @dev: parent DRM device
393 * @head: list management
394 * @base: base KMS object for ID tracking etc.
Dave Airlief453ba02008-11-07 14:05:41 -0800395 * @enabled: is this CRTC enabled?
Jesse Barnes77491632011-11-07 12:03:14 -0800396 * @mode: current mode timings
397 * @hwmode: mode timings as programmed to hw regs
Rob Clark7c80e122012-09-04 16:35:56 +0000398 * @invert_dimensions: for purposes of error checking crtc vs fb sizes,
399 * invert the width/height of the crtc. This is used if the driver
400 * is performing 90 or 270 degree rotated scanout
Dave Airlief453ba02008-11-07 14:05:41 -0800401 * @x: x position on screen
402 * @y: y position on screen
Dave Airlief453ba02008-11-07 14:05:41 -0800403 * @funcs: CRTC control functions
Jesse Barnes77491632011-11-07 12:03:14 -0800404 * @gamma_size: size of gamma ramp
405 * @gamma_store: gamma ramp values
406 * @framedur_ns: precise frame timing
407 * @framedur_ns: precise line timing
408 * @pixeldur_ns: precise pixel timing
409 * @helper_private: mid-layer private data
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300410 * @properties: property tracking for this CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800411 *
412 * Each CRTC may have one or more connectors associated with it. This structure
413 * allows the CRTC to be controlled.
414 */
415struct drm_crtc {
416 struct drm_device *dev;
417 struct list_head head;
418
Daniel Vetter29494c12012-12-02 02:18:25 +0100419 /**
420 * crtc mutex
421 *
422 * This provides a read lock for the overall crtc state (mode, dpms
423 * state, ...) and a write lock for everything which can be update
424 * without a full modeset (fb, cursor data, ...)
425 */
426 struct mutex mutex;
427
Dave Airlief453ba02008-11-07 14:05:41 -0800428 struct drm_mode_object base;
429
430 /* framebuffer the connector is currently bound to */
431 struct drm_framebuffer *fb;
432
Daniel Vetter5cef29a2013-06-15 00:13:16 +0200433 /* Temporary tracking of the old fb while a modeset is ongoing. Used
434 * by drm_mode_set_config_internal to implement correct refcounting. */
435 struct drm_framebuffer *old_fb;
436
Dave Airlief453ba02008-11-07 14:05:41 -0800437 bool enabled;
438
Mario Kleiner27641c32010-10-23 04:20:23 +0200439 /* Requested mode from modesetting. */
Dave Airlief453ba02008-11-07 14:05:41 -0800440 struct drm_display_mode mode;
441
Mario Kleiner27641c32010-10-23 04:20:23 +0200442 /* Programmed mode in hw, after adjustments for encoders,
443 * crtc, panel scaling etc. Needed for timestamping etc.
444 */
445 struct drm_display_mode hwmode;
446
Rob Clark7c80e122012-09-04 16:35:56 +0000447 bool invert_dimensions;
448
Dave Airlief453ba02008-11-07 14:05:41 -0800449 int x, y;
Dave Airlief453ba02008-11-07 14:05:41 -0800450 const struct drm_crtc_funcs *funcs;
451
452 /* CRTC gamma size for reporting to userspace */
453 uint32_t gamma_size;
454 uint16_t *gamma_store;
455
Mario Kleiner27641c32010-10-23 04:20:23 +0200456 /* Constants needed for precise vblank and swap timestamping. */
457 s64 framedur_ns, linedur_ns, pixeldur_ns;
458
Dave Airlief453ba02008-11-07 14:05:41 -0800459 /* if you are using the helper */
460 void *helper_private;
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300461
462 struct drm_object_properties properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800463};
464
465
466/**
467 * drm_connector_funcs - control connectors on a given device
468 * @dpms: set power state (see drm_crtc_funcs above)
469 * @save: save connector state
470 * @restore: restore connector state
Christopher Harvey13bcf012013-03-07 10:42:25 -0500471 * @reset: reset connector after state has been invalidated (e.g. resume)
Dave Airlief453ba02008-11-07 14:05:41 -0800472 * @detect: is this connector active?
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200473 * @fill_modes: fill mode list for this connector
Christopher Harvey13bcf012013-03-07 10:42:25 -0500474 * @set_property: property for this connector may need an update
Dave Airlief453ba02008-11-07 14:05:41 -0800475 * @destroy: make object go away
Christopher Harvey13bcf012013-03-07 10:42:25 -0500476 * @force: notify the driver that the connector is forced on
Dave Airlief453ba02008-11-07 14:05:41 -0800477 *
478 * Each CRTC may have one or more connectors attached to it. The functions
479 * below allow the core DRM code to control connectors, enumerate available modes,
480 * etc.
481 */
482struct drm_connector_funcs {
483 void (*dpms)(struct drm_connector *connector, int mode);
484 void (*save)(struct drm_connector *connector);
485 void (*restore)(struct drm_connector *connector);
Chris Wilsoneb0335562011-01-24 15:11:08 +0000486 void (*reset)(struct drm_connector *connector);
Chris Wilson930a9e22010-09-14 11:07:23 +0100487
488 /* Check to see if anything is attached to the connector.
489 * @force is set to false whilst polling, true when checking the
490 * connector due to user request. @force can be used by the driver
491 * to avoid expensive, destructive operations during automated
492 * probing.
493 */
Chris Wilson7b334fc2010-09-09 23:51:02 +0100494 enum drm_connector_status (*detect)(struct drm_connector *connector,
Chris Wilson930a9e22010-09-14 11:07:23 +0100495 bool force);
Jesse Barnes40a518d2009-01-12 12:05:32 -0800496 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height);
Dave Airlief453ba02008-11-07 14:05:41 -0800497 int (*set_property)(struct drm_connector *connector, struct drm_property *property,
498 uint64_t val);
499 void (*destroy)(struct drm_connector *connector);
Dave Airlied50ba252009-09-23 14:44:08 +1000500 void (*force)(struct drm_connector *connector);
Dave Airlief453ba02008-11-07 14:05:41 -0800501};
502
Jesse Barnes6c3db922011-11-07 12:03:16 -0800503/**
504 * drm_encoder_funcs - encoder controls
505 * @reset: reset state (e.g. at init or resume time)
506 * @destroy: cleanup and free associated data
507 *
508 * Encoders sit between CRTCs and connectors.
509 */
Dave Airlief453ba02008-11-07 14:05:41 -0800510struct drm_encoder_funcs {
Chris Wilsoneb0335562011-01-24 15:11:08 +0000511 void (*reset)(struct drm_encoder *encoder);
Dave Airlief453ba02008-11-07 14:05:41 -0800512 void (*destroy)(struct drm_encoder *encoder);
513};
514
Ben Skeggsafe887d2012-01-12 16:00:57 +1000515#define DRM_CONNECTOR_MAX_ENCODER 3
Dave Airlief453ba02008-11-07 14:05:41 -0800516
517/**
518 * drm_encoder - central DRM encoder structure
Jesse Barnesdb3e4492011-11-07 12:03:17 -0800519 * @dev: parent DRM device
520 * @head: list management
521 * @base: base KMS object
522 * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h
523 * @possible_crtcs: bitmask of potential CRTC bindings
524 * @possible_clones: bitmask of potential sibling encoders for cloning
525 * @crtc: currently bound CRTC
Sean Paul3b336ec2013-08-14 16:47:37 -0400526 * @bridge: bridge associated to the encoder
Jesse Barnesdb3e4492011-11-07 12:03:17 -0800527 * @funcs: control functions
528 * @helper_private: mid-layer private data
529 *
530 * CRTCs drive pixels to encoders, which convert them into signals
531 * appropriate for a given connector or set of connectors.
Dave Airlief453ba02008-11-07 14:05:41 -0800532 */
533struct drm_encoder {
534 struct drm_device *dev;
535 struct list_head head;
536
537 struct drm_mode_object base;
538 int encoder_type;
539 uint32_t possible_crtcs;
540 uint32_t possible_clones;
541
542 struct drm_crtc *crtc;
Sean Paul3b336ec2013-08-14 16:47:37 -0400543 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -0800544 const struct drm_encoder_funcs *funcs;
545 void *helper_private;
546};
547
Dave Airlied50ba252009-09-23 14:44:08 +1000548enum drm_connector_force {
549 DRM_FORCE_UNSPECIFIED,
550 DRM_FORCE_OFF,
551 DRM_FORCE_ON, /* force on analog part normally */
552 DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */
553};
554
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000555/* should we poll this connector for connects and disconnects */
556/* hot plug detectable */
557#define DRM_CONNECTOR_POLL_HPD (1 << 0)
558/* poll for connections */
559#define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
560/* can cleanly poll for disconnections without flickering the screen */
561/* DACs should rarely do this without a lot of testing */
562#define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
563
Wu Fengguang76adaa342011-09-05 14:23:20 +0800564#define MAX_ELD_BYTES 128
565
Dave Airlief453ba02008-11-07 14:05:41 -0800566/**
567 * drm_connector - central DRM connector control structure
Jesse Barnes72252542011-11-07 12:03:18 -0800568 * @dev: parent DRM device
569 * @kdev: kernel device for sysfs attributes
570 * @attr: sysfs attributes
571 * @head: list management
572 * @base: base KMS object
573 * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h
574 * @connector_type_id: index into connector type enum
Dave Airlief453ba02008-11-07 14:05:41 -0800575 * @interlace_allowed: can this connector handle interlaced modes?
576 * @doublescan_allowed: can this connector handle doublescan?
Jesse Barnes72252542011-11-07 12:03:18 -0800577 * @modes: modes available on this connector (from fill_modes() + user)
578 * @status: one of the drm_connector_status enums (connected, not, or unknown)
579 * @probed_modes: list of modes derived directly from the display
580 * @display_info: information about attached display (e.g. from EDID)
Dave Airlief453ba02008-11-07 14:05:41 -0800581 * @funcs: connector control functions
Jesse Barnes72252542011-11-07 12:03:18 -0800582 * @edid_blob_ptr: DRM property containing EDID if present
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300583 * @properties: property tracking for this connector
Jesse Barnes72252542011-11-07 12:03:18 -0800584 * @polled: a %DRM_CONNECTOR_POLL_<foo> value for core driven polling
585 * @dpms: current dpms state
586 * @helper_private: mid-layer private data
587 * @force: a %DRM_FORCE_<foo> state for forced mode sets
588 * @encoder_ids: valid encoders for this connector
589 * @encoder: encoder driving this connector, if any
590 * @eld: EDID-like data, if present
591 * @dvi_dual: dual link DVI, if found
592 * @max_tmds_clock: max clock rate, if found
593 * @latency_present: AV delay info from ELD, if found
594 * @video_latency: video latency info from ELD, if found
595 * @audio_latency: audio latency info from ELD, if found
596 * @null_edid_counter: track sinks that give us all zeros for the EDID
Dave Airlief453ba02008-11-07 14:05:41 -0800597 *
598 * Each connector may be connected to one or more CRTCs, or may be clonable by
599 * another connector if they can share a CRTC. Each connector also has a specific
600 * position in the broader display (referred to as a 'screen' though it could
601 * span multiple monitors).
602 */
603struct drm_connector {
604 struct drm_device *dev;
605 struct device kdev;
606 struct device_attribute *attr;
607 struct list_head head;
608
609 struct drm_mode_object base;
610
611 int connector_type;
612 int connector_type_id;
613 bool interlace_allowed;
614 bool doublescan_allowed;
Damien Lespiau560a0672013-09-25 16:45:29 +0100615 bool stereo_allowed;
Dave Airlief453ba02008-11-07 14:05:41 -0800616 struct list_head modes; /* list of modes on this connector */
617
Dave Airlief453ba02008-11-07 14:05:41 -0800618 enum drm_connector_status status;
619
620 /* these are modes added by probing with DDC or the BIOS */
621 struct list_head probed_modes;
622
623 struct drm_display_info display_info;
624 const struct drm_connector_funcs *funcs;
625
Dave Airlief453ba02008-11-07 14:05:41 -0800626 struct drm_property_blob *edid_blob_ptr;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300627 struct drm_object_properties properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800628
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000629 uint8_t polled; /* DRM_CONNECTOR_POLL_* */
630
Keith Packardc9fb15f2009-05-30 20:42:28 -0700631 /* requested DPMS state */
632 int dpms;
633
Dave Airlief453ba02008-11-07 14:05:41 -0800634 void *helper_private;
635
Dave Airlied50ba252009-09-23 14:44:08 +1000636 /* forced on connector */
637 enum drm_connector_force force;
Dave Airlief453ba02008-11-07 14:05:41 -0800638 uint32_t encoder_ids[DRM_CONNECTOR_MAX_ENCODER];
Dave Airlief453ba02008-11-07 14:05:41 -0800639 struct drm_encoder *encoder; /* currently active encoder */
Dave Airlie4a9a8b72011-06-14 06:13:55 +0000640
Wu Fengguang76adaa342011-09-05 14:23:20 +0800641 /* EDID bits */
642 uint8_t eld[MAX_ELD_BYTES];
643 bool dvi_dual;
644 int max_tmds_clock; /* in MHz */
645 bool latency_present[2];
646 int video_latency[2]; /* [0]: progressive, [1]: interlaced */
647 int audio_latency[2];
Dave Airlie4a9a8b72011-06-14 06:13:55 +0000648 int null_edid_counter; /* needed to workaround some HW bugs where we get all 0s */
Jerome Glisse0b2443e2012-08-09 11:25:51 -0400649 unsigned bad_edid_counter;
Dave Airlief453ba02008-11-07 14:05:41 -0800650};
651
652/**
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800653 * drm_plane_funcs - driver plane control functions
654 * @update_plane: update the plane configuration
655 * @disable_plane: shut down the plane
656 * @destroy: clean up plane resources
Rob Clark4d939142012-05-17 02:23:27 -0600657 * @set_property: called when a property is changed
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800658 */
659struct drm_plane_funcs {
660 int (*update_plane)(struct drm_plane *plane,
661 struct drm_crtc *crtc, struct drm_framebuffer *fb,
662 int crtc_x, int crtc_y,
663 unsigned int crtc_w, unsigned int crtc_h,
664 uint32_t src_x, uint32_t src_y,
665 uint32_t src_w, uint32_t src_h);
666 int (*disable_plane)(struct drm_plane *plane);
667 void (*destroy)(struct drm_plane *plane);
Rob Clark4d939142012-05-17 02:23:27 -0600668
669 int (*set_property)(struct drm_plane *plane,
670 struct drm_property *property, uint64_t val);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800671};
672
673/**
674 * drm_plane - central DRM plane control structure
675 * @dev: DRM device this plane belongs to
676 * @head: for list management
677 * @base: base mode object
678 * @possible_crtcs: pipes this plane can be bound to
679 * @format_types: array of formats supported by this plane
680 * @format_count: number of formats supported
681 * @crtc: currently bound CRTC
682 * @fb: currently bound fb
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800683 * @funcs: helper functions
Rob Clark4d939142012-05-17 02:23:27 -0600684 * @properties: property tracking for this plane
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800685 */
686struct drm_plane {
687 struct drm_device *dev;
688 struct list_head head;
689
690 struct drm_mode_object base;
691
692 uint32_t possible_crtcs;
693 uint32_t *format_types;
694 uint32_t format_count;
695
696 struct drm_crtc *crtc;
697 struct drm_framebuffer *fb;
698
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800699 const struct drm_plane_funcs *funcs;
Rob Clark4d939142012-05-17 02:23:27 -0600700
701 struct drm_object_properties properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800702};
703
704/**
Sean Paul3b336ec2013-08-14 16:47:37 -0400705 * drm_bridge_funcs - drm_bridge control functions
706 * @mode_fixup: Try to fixup (or reject entirely) proposed mode for this bridge
707 * @disable: Called right before encoder prepare, disables the bridge
708 * @post_disable: Called right after encoder prepare, for lockstepped disable
709 * @mode_set: Set this mode to the bridge
710 * @pre_enable: Called right before encoder commit, for lockstepped commit
711 * @enable: Called right after encoder commit, enables the bridge
712 * @destroy: make object go away
713 */
714struct drm_bridge_funcs {
715 bool (*mode_fixup)(struct drm_bridge *bridge,
716 const struct drm_display_mode *mode,
717 struct drm_display_mode *adjusted_mode);
718 void (*disable)(struct drm_bridge *bridge);
719 void (*post_disable)(struct drm_bridge *bridge);
720 void (*mode_set)(struct drm_bridge *bridge,
721 struct drm_display_mode *mode,
722 struct drm_display_mode *adjusted_mode);
723 void (*pre_enable)(struct drm_bridge *bridge);
724 void (*enable)(struct drm_bridge *bridge);
725 void (*destroy)(struct drm_bridge *bridge);
726};
727
728/**
729 * drm_bridge - central DRM bridge control structure
730 * @dev: DRM device this bridge belongs to
731 * @head: list management
732 * @base: base mode object
733 * @funcs: control functions
734 * @driver_private: pointer to the bridge driver's internal context
735 */
736struct drm_bridge {
737 struct drm_device *dev;
738 struct list_head head;
739
740 struct drm_mode_object base;
741
742 const struct drm_bridge_funcs *funcs;
743 void *driver_private;
744};
745
746/**
Jesse Barnesef273512011-11-07 12:03:19 -0800747 * drm_mode_set - new values for a CRTC config change
748 * @head: list management
749 * @fb: framebuffer to use for new config
750 * @crtc: CRTC whose configuration we're about to change
751 * @mode: mode timings to use
752 * @x: position of this CRTC relative to @fb
753 * @y: position of this CRTC relative to @fb
754 * @connectors: array of connectors to drive with this CRTC if possible
755 * @num_connectors: size of @connectors array
Dave Airlief453ba02008-11-07 14:05:41 -0800756 *
757 * Represents a single crtc the connectors that it drives with what mode
758 * and from which framebuffer it scans out from.
759 *
760 * This is used to set modes.
761 */
762struct drm_mode_set {
Dave Airlief453ba02008-11-07 14:05:41 -0800763 struct drm_framebuffer *fb;
764 struct drm_crtc *crtc;
765 struct drm_display_mode *mode;
766
767 uint32_t x;
768 uint32_t y;
769
770 struct drm_connector **connectors;
771 size_t num_connectors;
772};
773
774/**
Jesse Barnes550cebc2011-11-07 12:03:20 -0800775 * struct drm_mode_config_funcs - basic driver provided mode setting functions
776 * @fb_create: create a new framebuffer object
777 * @output_poll_changed: function to handle output configuration changes
778 *
779 * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
780 * involve drivers.
Dave Airlief453ba02008-11-07 14:05:41 -0800781 */
782struct drm_mode_config_funcs {
Jesse Barnes550cebc2011-11-07 12:03:20 -0800783 struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
784 struct drm_file *file_priv,
785 struct drm_mode_fb_cmd2 *mode_cmd);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000786 void (*output_poll_changed)(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800787};
788
Jesse Barnesc1aaca22011-11-07 12:03:21 -0800789/**
790 * drm_mode_group - group of mode setting resources for potential sub-grouping
791 * @num_crtcs: CRTC count
792 * @num_encoders: encoder count
793 * @num_connectors: connector count
794 * @id_list: list of KMS object IDs in this group
795 *
796 * Currently this simply tracks the global mode setting state. But in the
797 * future it could allow groups of objects to be set aside into independent
798 * control groups for use by different user level processes (e.g. two X servers
799 * running simultaneously on different heads, each with their own mode
800 * configuration and freedom of mode setting).
801 */
Dave Airlief453ba02008-11-07 14:05:41 -0800802struct drm_mode_group {
803 uint32_t num_crtcs;
804 uint32_t num_encoders;
805 uint32_t num_connectors;
Sean Paul3b336ec2013-08-14 16:47:37 -0400806 uint32_t num_bridges;
Dave Airlief453ba02008-11-07 14:05:41 -0800807
808 /* list of object IDs for this group */
809 uint32_t *id_list;
810};
811
812/**
813 * drm_mode_config - Mode configuration control structure
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800814 * @mutex: mutex protecting KMS related lists and structures
815 * @idr_mutex: mutex for KMS ID allocation and management
816 * @crtc_idr: main KMS ID tracking object
817 * @num_fb: number of fbs available
818 * @fb_list: list of framebuffers available
819 * @num_connector: number of connectors on this device
820 * @connector_list: list of connector objects
Sean Paul3b336ec2013-08-14 16:47:37 -0400821 * @num_bridge: number of bridges on this device
822 * @bridge_list: list of bridge objects
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800823 * @num_encoder: number of encoders on this device
824 * @encoder_list: list of encoder objects
825 * @num_crtc: number of CRTCs on this device
826 * @crtc_list: list of CRTC objects
827 * @min_width: minimum pixel width on this device
828 * @min_height: minimum pixel height on this device
829 * @max_width: maximum pixel width on this device
830 * @max_height: maximum pixel height on this device
831 * @funcs: core driver provided mode setting functions
832 * @fb_base: base address of the framebuffer
833 * @poll_enabled: track polling status for this device
834 * @output_poll_work: delayed work for polling in process context
835 * @*_property: core property tracking
Dave Airlief453ba02008-11-07 14:05:41 -0800836 *
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800837 * Core mode resource tracking structure. All CRTC, encoders, and connectors
838 * enumerated by the driver are added here, as are global properties. Some
839 * global restrictions are also here, e.g. dimension restrictions.
Dave Airlief453ba02008-11-07 14:05:41 -0800840 */
841struct drm_mode_config {
Jesse Barnesad2563c2009-01-19 17:21:45 +1000842 struct mutex mutex; /* protects configuration (mode lists etc.) */
843 struct mutex idr_mutex; /* for IDR management */
Dave Airlief453ba02008-11-07 14:05:41 -0800844 struct idr crtc_idr; /* use this idr for all IDs, fb, crtc, connector, modes - just makes life easier */
845 /* this is limited to one for now */
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100846
847
848 /**
849 * fb_lock - mutex to protect fb state
850 *
851 * Besides the global fb list his also protects the fbs list in the
852 * file_priv
853 */
854 struct mutex fb_lock;
Dave Airlief453ba02008-11-07 14:05:41 -0800855 int num_fb;
856 struct list_head fb_list;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100857
Dave Airlief453ba02008-11-07 14:05:41 -0800858 int num_connector;
859 struct list_head connector_list;
Sean Paul3b336ec2013-08-14 16:47:37 -0400860 int num_bridge;
861 struct list_head bridge_list;
Dave Airlief453ba02008-11-07 14:05:41 -0800862 int num_encoder;
863 struct list_head encoder_list;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800864 int num_plane;
865 struct list_head plane_list;
Dave Airlief453ba02008-11-07 14:05:41 -0800866
867 int num_crtc;
868 struct list_head crtc_list;
869
870 struct list_head property_list;
871
Dave Airlief453ba02008-11-07 14:05:41 -0800872 int min_width, min_height;
873 int max_width, max_height;
Laurent Pincharte6ecefa2012-05-17 13:27:23 +0200874 const struct drm_mode_config_funcs *funcs;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +1100875 resource_size_t fb_base;
Dave Airlief453ba02008-11-07 14:05:41 -0800876
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000877 /* output poll support */
878 bool poll_enabled;
Daniel Vetter905bc9f2012-10-23 18:23:36 +0000879 bool poll_running;
Tejun Heo991ea752010-07-20 22:09:02 +0200880 struct delayed_work output_poll_work;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000881
Dave Airlief453ba02008-11-07 14:05:41 -0800882 /* pointers to standard properties */
883 struct list_head property_blob_list;
884 struct drm_property *edid_property;
885 struct drm_property *dpms_property;
886
887 /* DVI-I properties */
888 struct drm_property *dvi_i_subconnector_property;
889 struct drm_property *dvi_i_select_subconnector_property;
890
891 /* TV properties */
892 struct drm_property *tv_subconnector_property;
893 struct drm_property *tv_select_subconnector_property;
894 struct drm_property *tv_mode_property;
895 struct drm_property *tv_left_margin_property;
896 struct drm_property *tv_right_margin_property;
897 struct drm_property *tv_top_margin_property;
898 struct drm_property *tv_bottom_margin_property;
Francisco Jerezb6b79022009-08-02 04:19:20 +0200899 struct drm_property *tv_brightness_property;
900 struct drm_property *tv_contrast_property;
901 struct drm_property *tv_flicker_reduction_property;
Francisco Jereza75f0232009-08-12 02:30:10 +0200902 struct drm_property *tv_overscan_property;
903 struct drm_property *tv_saturation_property;
904 struct drm_property *tv_hue_property;
Dave Airlief453ba02008-11-07 14:05:41 -0800905
906 /* Optional properties */
907 struct drm_property *scaling_mode_property;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000908 struct drm_property *dirty_info_property;
Dave Airlie019d96c2011-09-29 16:20:42 +0100909
910 /* dumb ioctl parameters */
911 uint32_t preferred_depth, prefer_shadow;
Keith Packard62f21042013-07-22 18:50:00 -0700912
913 /* whether async page flip is supported or not */
914 bool async_page_flip;
Dave Airlief453ba02008-11-07 14:05:41 -0800915};
916
917#define obj_to_crtc(x) container_of(x, struct drm_crtc, base)
918#define obj_to_connector(x) container_of(x, struct drm_connector, base)
919#define obj_to_encoder(x) container_of(x, struct drm_encoder, base)
920#define obj_to_mode(x) container_of(x, struct drm_display_mode, base)
921#define obj_to_fb(x) container_of(x, struct drm_framebuffer, base)
922#define obj_to_property(x) container_of(x, struct drm_property, base)
923#define obj_to_blob(x) container_of(x, struct drm_property_blob, base)
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800924#define obj_to_plane(x) container_of(x, struct drm_plane, base)
Dave Airlief453ba02008-11-07 14:05:41 -0800925
Sascha Hauer4a67d392012-02-06 10:58:17 +0100926struct drm_prop_enum_list {
927 int type;
928 char *name;
929};
Dave Airlief453ba02008-11-07 14:05:41 -0800930
Daniel Vetter84849902012-12-02 00:28:11 +0100931extern void drm_modeset_lock_all(struct drm_device *dev);
932extern void drm_modeset_unlock_all(struct drm_device *dev);
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100933extern void drm_warn_on_modeset_not_all_locked(struct drm_device *dev);
Daniel Vetter84849902012-12-02 00:28:11 +0100934
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200935extern int drm_crtc_init(struct drm_device *dev,
936 struct drm_crtc *crtc,
937 const struct drm_crtc_funcs *funcs);
Dave Airlief453ba02008-11-07 14:05:41 -0800938extern void drm_crtc_cleanup(struct drm_crtc *crtc);
939
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400940extern void drm_connector_ida_init(void);
941extern void drm_connector_ida_destroy(void);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200942extern int drm_connector_init(struct drm_device *dev,
943 struct drm_connector *connector,
944 const struct drm_connector_funcs *funcs,
945 int connector_type);
Dave Airlief453ba02008-11-07 14:05:41 -0800946
947extern void drm_connector_cleanup(struct drm_connector *connector);
Dave Airliecbc7e222012-02-20 14:16:40 +0000948/* helper to unplug all connectors from sysfs for device */
949extern void drm_connector_unplug_all(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800950
Sean Paul3b336ec2013-08-14 16:47:37 -0400951extern int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
952 const struct drm_bridge_funcs *funcs);
953extern void drm_bridge_cleanup(struct drm_bridge *bridge);
954
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200955extern int drm_encoder_init(struct drm_device *dev,
956 struct drm_encoder *encoder,
957 const struct drm_encoder_funcs *funcs,
958 int encoder_type);
Dave Airlief453ba02008-11-07 14:05:41 -0800959
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800960extern int drm_plane_init(struct drm_device *dev,
961 struct drm_plane *plane,
962 unsigned long possible_crtcs,
963 const struct drm_plane_funcs *funcs,
Rob Clark0a7eb242011-12-13 20:19:36 -0600964 const uint32_t *formats, uint32_t format_count,
965 bool priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800966extern void drm_plane_cleanup(struct drm_plane *plane);
Ville Syrjälä9125e612013-06-03 16:10:40 +0300967extern void drm_plane_force_disable(struct drm_plane *plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800968
Dave Airlief453ba02008-11-07 14:05:41 -0800969extern void drm_encoder_cleanup(struct drm_encoder *encoder);
970
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000971extern const char *drm_get_connector_name(const struct drm_connector *connector);
972extern const char *drm_get_connector_status_name(enum drm_connector_status status);
973extern const char *drm_get_dpms_name(int val);
974extern const char *drm_get_dvi_i_subconnector_name(int val);
975extern const char *drm_get_dvi_i_select_name(int val);
976extern const char *drm_get_tv_subconnector_name(int val);
977extern const char *drm_get_tv_select_name(int val);
Kristian Høgsbergea39f832009-02-12 14:37:56 -0500978extern void drm_fb_release(struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -0800979extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group);
Adam Jacksonfbff4692012-09-18 10:58:47 -0400980extern bool drm_probe_ddc(struct i2c_adapter *adapter);
Dave Airlief453ba02008-11-07 14:05:41 -0800981extern struct edid *drm_get_edid(struct drm_connector *connector,
982 struct i2c_adapter *adapter);
Dave Airlief453ba02008-11-07 14:05:41 -0800983extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
984extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode);
Ville Syrjäläc3c50e82012-03-13 12:35:51 +0200985extern void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src);
Dave Airlief453ba02008-11-07 14:05:41 -0800986extern struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
Chris Wilsonb1f559e2011-01-26 09:49:47 +0000987 const struct drm_display_mode *mode);
Ville Syrjälä0b3904a2012-10-25 18:05:05 +0000988extern void drm_mode_debug_printmodeline(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800989extern void drm_mode_config_init(struct drm_device *dev);
Chris Wilsoneb0335562011-01-24 15:11:08 +0000990extern void drm_mode_config_reset(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800991extern void drm_mode_config_cleanup(struct drm_device *dev);
992extern void drm_mode_set_name(struct drm_display_mode *mode);
Ville Syrjälä0b3904a2012-10-25 18:05:05 +0000993extern bool drm_mode_equal(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2);
Damien Lespiauf2ecf2e32013-09-25 16:45:27 +0100994extern bool drm_mode_equal_no_clocks_no_stereo(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2);
Ville Syrjälä0b3904a2012-10-25 18:05:05 +0000995extern int drm_mode_width(const struct drm_display_mode *mode);
996extern int drm_mode_height(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800997
998/* for us by fb module */
Dave Airlief453ba02008-11-07 14:05:41 -0800999extern struct drm_display_mode *drm_mode_create(struct drm_device *dev);
1000extern void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -08001001extern void drm_mode_validate_size(struct drm_device *dev,
1002 struct list_head *mode_list,
1003 int maxX, int maxY, int maxPitch);
1004extern void drm_mode_prune_invalid(struct drm_device *dev,
1005 struct list_head *mode_list, bool verbose);
1006extern void drm_mode_sort(struct list_head *mode_list);
Chris Wilsonb1f559e2011-01-26 09:49:47 +00001007extern int drm_mode_hsync(const struct drm_display_mode *mode);
1008extern int drm_mode_vrefresh(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -08001009extern void drm_mode_set_crtcinfo(struct drm_display_mode *p,
1010 int adjust_flags);
1011extern void drm_mode_connector_list_update(struct drm_connector *connector);
1012extern int drm_mode_connector_update_edid_property(struct drm_connector *connector,
1013 struct edid *edid);
Paulo Zanonic5431882012-05-15 18:09:02 -03001014extern int drm_object_property_set_value(struct drm_mode_object *obj,
1015 struct drm_property *property,
1016 uint64_t val);
1017extern int drm_object_property_get_value(struct drm_mode_object *obj,
1018 struct drm_property *property,
1019 uint64_t *value);
Dave Airlief453ba02008-11-07 14:05:41 -08001020extern int drm_framebuffer_init(struct drm_device *dev,
1021 struct drm_framebuffer *fb,
1022 const struct drm_framebuffer_funcs *funcs);
Daniel Vetter786b99e2012-12-02 21:53:40 +01001023extern struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
1024 uint32_t id);
Rob Clarkf7eff602012-09-05 21:48:38 +00001025extern void drm_framebuffer_unreference(struct drm_framebuffer *fb);
1026extern void drm_framebuffer_reference(struct drm_framebuffer *fb);
1027extern void drm_framebuffer_remove(struct drm_framebuffer *fb);
Dave Airlief453ba02008-11-07 14:05:41 -08001028extern void drm_framebuffer_cleanup(struct drm_framebuffer *fb);
Daniel Vetter36206362012-12-10 20:42:17 +01001029extern void drm_framebuffer_unregister_private(struct drm_framebuffer *fb);
Dave Airlief453ba02008-11-07 14:05:41 -08001030
Paulo Zanonic5431882012-05-15 18:09:02 -03001031extern void drm_object_attach_property(struct drm_mode_object *obj,
1032 struct drm_property *property,
1033 uint64_t init_val);
Dave Airlief453ba02008-11-07 14:05:41 -08001034extern struct drm_property *drm_property_create(struct drm_device *dev, int flags,
1035 const char *name, int num_values);
Sascha Hauer4a67d392012-02-06 10:58:17 +01001036extern struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
1037 const char *name,
1038 const struct drm_prop_enum_list *props,
1039 int num_values);
Rob Clark49e27542012-05-17 02:23:26 -06001040struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
1041 int flags, const char *name,
1042 const struct drm_prop_enum_list *props,
1043 int num_values);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001044struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
1045 const char *name,
1046 uint64_t min, uint64_t max);
Dave Airlief453ba02008-11-07 14:05:41 -08001047extern void drm_property_destroy(struct drm_device *dev, struct drm_property *property);
1048extern int drm_property_add_enum(struct drm_property *property, int index,
1049 uint64_t value, const char *name);
1050extern int drm_mode_create_dvi_i_properties(struct drm_device *dev);
1051extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats,
1052 char *formats[]);
1053extern int drm_mode_create_scaling_mode_property(struct drm_device *dev);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001054extern int drm_mode_create_dirty_info_property(struct drm_device *dev);
Ville Syrjäläd20d3172013-06-07 15:43:07 +00001055extern const char *drm_get_encoder_name(const struct drm_encoder *encoder);
Dave Airlief453ba02008-11-07 14:05:41 -08001056
1057extern int drm_mode_connector_attach_encoder(struct drm_connector *connector,
1058 struct drm_encoder *encoder);
1059extern void drm_mode_connector_detach_encoder(struct drm_connector *connector,
1060 struct drm_encoder *encoder);
Sascha Hauer4cae5b82012-02-01 11:38:23 +01001061extern int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -08001062 int gamma_size);
Daniel Vetter7a9c9062009-09-15 22:57:31 +02001063extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
1064 uint32_t id, uint32_t type);
Dave Airlief453ba02008-11-07 14:05:41 -08001065/* IOCTLs */
1066extern int drm_mode_getresources(struct drm_device *dev,
1067 void *data, struct drm_file *file_priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001068extern int drm_mode_getplane_res(struct drm_device *dev, void *data,
1069 struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001070extern int drm_mode_getcrtc(struct drm_device *dev,
1071 void *data, struct drm_file *file_priv);
1072extern int drm_mode_getconnector(struct drm_device *dev,
1073 void *data, struct drm_file *file_priv);
Daniel Vetter2d13b672012-12-11 13:47:23 +01001074extern int drm_mode_set_config_internal(struct drm_mode_set *set);
Dave Airlief453ba02008-11-07 14:05:41 -08001075extern int drm_mode_setcrtc(struct drm_device *dev,
1076 void *data, struct drm_file *file_priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001077extern int drm_mode_getplane(struct drm_device *dev,
1078 void *data, struct drm_file *file_priv);
1079extern int drm_mode_setplane(struct drm_device *dev,
1080 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001081extern int drm_mode_cursor_ioctl(struct drm_device *dev,
1082 void *data, struct drm_file *file_priv);
Dave Airlie4c813d42013-06-20 11:48:52 +10001083extern int drm_mode_cursor2_ioctl(struct drm_device *dev,
1084 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001085extern int drm_mode_addfb(struct drm_device *dev,
1086 void *data, struct drm_file *file_priv);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001087extern int drm_mode_addfb2(struct drm_device *dev,
1088 void *data, struct drm_file *file_priv);
1089extern uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth);
Dave Airlief453ba02008-11-07 14:05:41 -08001090extern int drm_mode_rmfb(struct drm_device *dev,
1091 void *data, struct drm_file *file_priv);
1092extern int drm_mode_getfb(struct drm_device *dev,
1093 void *data, struct drm_file *file_priv);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001094extern int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
1095 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001096
1097extern int drm_mode_getproperty_ioctl(struct drm_device *dev,
1098 void *data, struct drm_file *file_priv);
1099extern int drm_mode_getblob_ioctl(struct drm_device *dev,
1100 void *data, struct drm_file *file_priv);
1101extern int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
1102 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08001103extern int drm_mode_getencoder(struct drm_device *dev,
1104 void *data, struct drm_file *file_priv);
1105extern int drm_mode_gamma_get_ioctl(struct drm_device *dev,
1106 void *data, struct drm_file *file_priv);
1107extern int drm_mode_gamma_set_ioctl(struct drm_device *dev,
1108 void *data, struct drm_file *file_priv);
Thierry Reding18316c82012-12-20 15:41:44 +01001109extern u8 drm_match_cea_mode(const struct drm_display_mode *to_match);
Ma Lingf23c20c2009-03-26 19:26:23 +08001110extern bool drm_detect_hdmi_monitor(struct edid *edid);
Zhenyu Wang8fe97902010-09-19 14:27:28 +08001111extern bool drm_detect_monitor_audio(struct edid *edid);
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02001112extern bool drm_rgb_quant_range_selectable(struct edid *edid);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05001113extern int drm_mode_page_flip_ioctl(struct drm_device *dev,
1114 void *data, struct drm_file *file_priv);
Zhao Yakuid782c3f2009-06-22 13:17:08 +08001115extern struct drm_display_mode *drm_cvt_mode(struct drm_device *dev,
1116 int hdisplay, int vdisplay, int vrefresh,
Dave Airlied50ba252009-09-23 14:44:08 +10001117 bool reduced, bool interlaced, bool margins);
Zhao Yakui26bbdad2009-06-22 13:17:09 +08001118extern struct drm_display_mode *drm_gtf_mode(struct drm_device *dev,
1119 int hdisplay, int vdisplay, int vrefresh,
1120 bool interlaced, int margins);
Adam Jackson7a374352010-03-29 21:43:30 +00001121extern struct drm_display_mode *drm_gtf_mode_complex(struct drm_device *dev,
1122 int hdisplay, int vdisplay, int vrefresh,
1123 bool interlaced, int margins, int GTF_M,
1124 int GTF_2C, int GTF_K, int GTF_2J);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001125extern int drm_add_modes_noedid(struct drm_connector *connector,
1126 int hdisplay, int vdisplay);
Alex Deucher3c537882010-02-05 04:21:19 -05001127
Thomas Reim051963d2011-07-29 14:28:57 +00001128extern int drm_edid_header_is_valid(const u8 *raw_edid);
Jerome Glisse0b2443e2012-08-09 11:25:51 -04001129extern bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid);
Alex Deucher3c537882010-02-05 04:21:19 -05001130extern bool drm_edid_is_valid(struct edid *edid);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001131struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001132 int hsize, int vsize, int fresh,
1133 bool rb);
Dave Airlieff72145b2011-02-07 12:16:14 +10001134
1135extern int drm_mode_create_dumb_ioctl(struct drm_device *dev,
1136 void *data, struct drm_file *file_priv);
1137extern int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
1138 void *data, struct drm_file *file_priv);
1139extern int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
1140 void *data, struct drm_file *file_priv);
Paulo Zanonic5431882012-05-15 18:09:02 -03001141extern int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
1142 struct drm_file *file_priv);
1143extern int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
1144 struct drm_file *file_priv);
Dave Airlie248dbc22011-11-29 20:02:54 +00001145
1146extern void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
1147 int *bpp);
Ville Syrjälä141670e2012-04-05 21:35:15 +03001148extern int drm_format_num_planes(uint32_t format);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03001149extern int drm_format_plane_cpp(uint32_t format, int plane);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03001150extern int drm_format_horz_chroma_subsampling(uint32_t format);
1151extern int drm_format_vert_chroma_subsampling(uint32_t format);
Ville Syrjäläd20d3172013-06-07 15:43:07 +00001152extern const char *drm_get_format_name(uint32_t format);
Ville Syrjälä141670e2012-04-05 21:35:15 +03001153
Dave Airlief453ba02008-11-07 14:05:41 -08001154#endif /* __DRM_CRTC_H__ */