blob: 77606794308b5db8a86822112e8887d3e5dfe1bd [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>
33
Jesse Barnes308e5bc2011-11-14 14:51:28 -080034#include <drm/drm_fourcc.h>
35
Dave Airlief453ba02008-11-07 14:05:41 -080036struct drm_device;
37struct drm_mode_set;
38struct drm_framebuffer;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -030039struct drm_object_properties;
Dave Airlief453ba02008-11-07 14:05:41 -080040
41
42#define DRM_MODE_OBJECT_CRTC 0xcccccccc
43#define DRM_MODE_OBJECT_CONNECTOR 0xc0c0c0c0
44#define DRM_MODE_OBJECT_ENCODER 0xe0e0e0e0
45#define DRM_MODE_OBJECT_MODE 0xdededede
46#define DRM_MODE_OBJECT_PROPERTY 0xb0b0b0b0
47#define DRM_MODE_OBJECT_FB 0xfbfbfbfb
48#define DRM_MODE_OBJECT_BLOB 0xbbbbbbbb
Jesse Barnes8cf5c912011-11-14 14:51:27 -080049#define DRM_MODE_OBJECT_PLANE 0xeeeeeeee
Dave Airlief453ba02008-11-07 14:05:41 -080050
51struct drm_mode_object {
52 uint32_t id;
53 uint32_t type;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -030054 struct drm_object_properties *properties;
55};
56
57#define DRM_OBJECT_MAX_PROPERTY 16
58struct drm_object_properties {
59 uint32_t ids[DRM_OBJECT_MAX_PROPERTY];
60 uint64_t values[DRM_OBJECT_MAX_PROPERTY];
Dave Airlief453ba02008-11-07 14:05:41 -080061};
62
63/*
64 * Note on terminology: here, for brevity and convenience, we refer to connector
65 * control chips as 'CRTCs'. They can control any type of connector, VGA, LVDS,
66 * DVI, etc. And 'screen' refers to the whole of the visible display, which
67 * may span multiple monitors (and therefore multiple CRTC and connector
68 * structures).
69 */
70
71enum drm_mode_status {
72 MODE_OK = 0, /* Mode OK */
73 MODE_HSYNC, /* hsync out of range */
74 MODE_VSYNC, /* vsync out of range */
75 MODE_H_ILLEGAL, /* mode has illegal horizontal timings */
76 MODE_V_ILLEGAL, /* mode has illegal horizontal timings */
77 MODE_BAD_WIDTH, /* requires an unsupported linepitch */
Lucas De Marchi25985ed2011-03-30 22:57:33 -030078 MODE_NOMODE, /* no mode with a matching name */
Dave Airlief453ba02008-11-07 14:05:41 -080079 MODE_NO_INTERLACE, /* interlaced mode not supported */
80 MODE_NO_DBLESCAN, /* doublescan mode not supported */
81 MODE_NO_VSCAN, /* multiscan mode not supported */
82 MODE_MEM, /* insufficient video memory */
83 MODE_VIRTUAL_X, /* mode width too large for specified virtual size */
84 MODE_VIRTUAL_Y, /* mode height too large for specified virtual size */
85 MODE_MEM_VIRT, /* insufficient video memory given virtual size */
86 MODE_NOCLOCK, /* no fixed clock available */
87 MODE_CLOCK_HIGH, /* clock required is too high */
88 MODE_CLOCK_LOW, /* clock required is too low */
89 MODE_CLOCK_RANGE, /* clock/mode isn't in a ClockRange */
90 MODE_BAD_HVALUE, /* horizontal timing was out of range */
91 MODE_BAD_VVALUE, /* vertical timing was out of range */
92 MODE_BAD_VSCAN, /* VScan value out of range */
93 MODE_HSYNC_NARROW, /* horizontal sync too narrow */
94 MODE_HSYNC_WIDE, /* horizontal sync too wide */
95 MODE_HBLANK_NARROW, /* horizontal blanking too narrow */
96 MODE_HBLANK_WIDE, /* horizontal blanking too wide */
97 MODE_VSYNC_NARROW, /* vertical sync too narrow */
98 MODE_VSYNC_WIDE, /* vertical sync too wide */
99 MODE_VBLANK_NARROW, /* vertical blanking too narrow */
100 MODE_VBLANK_WIDE, /* vertical blanking too wide */
101 MODE_PANEL, /* exceeds panel dimensions */
102 MODE_INTERLACE_WIDTH, /* width too large for interlaced mode */
103 MODE_ONE_WIDTH, /* only one width is supported */
104 MODE_ONE_HEIGHT, /* only one height is supported */
105 MODE_ONE_SIZE, /* only one resolution is supported */
106 MODE_NO_REDUCED, /* monitor doesn't accept reduced blanking */
107 MODE_UNVERIFIED = -3, /* mode needs to reverified */
108 MODE_BAD = -2, /* unspecified reason */
109 MODE_ERROR = -1 /* error condition */
110};
111
112#define DRM_MODE_TYPE_CLOCK_CRTC_C (DRM_MODE_TYPE_CLOCK_C | \
113 DRM_MODE_TYPE_CRTC_C)
114
115#define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \
116 .name = nm, .status = 0, .type = (t), .clock = (c), \
117 .hdisplay = (hd), .hsync_start = (hss), .hsync_end = (hse), \
118 .htotal = (ht), .hskew = (hsk), .vdisplay = (vd), \
119 .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \
120 .vscan = (vs), .flags = (f), .vrefresh = 0
121
122#define CRTC_INTERLACE_HALVE_V 0x1 /* halve V values for interlacing */
123
124struct drm_display_mode {
125 /* Header */
126 struct list_head head;
127 struct drm_mode_object base;
128
129 char name[DRM_DISPLAY_MODE_LEN];
130
Dave Airlief453ba02008-11-07 14:05:41 -0800131 enum drm_mode_status status;
Ville Syrjälä2fcfc752012-03-13 12:35:39 +0200132 unsigned int type;
Dave Airlief453ba02008-11-07 14:05:41 -0800133
134 /* Proposed mode values */
Adam Jackson7ac96a92009-12-03 17:44:37 -0500135 int clock; /* in kHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800136 int hdisplay;
137 int hsync_start;
138 int hsync_end;
139 int htotal;
140 int hskew;
141 int vdisplay;
142 int vsync_start;
143 int vsync_end;
144 int vtotal;
145 int vscan;
146 unsigned int flags;
147
148 /* Addressable image size (may be 0 for projectors, etc.) */
149 int width_mm;
150 int height_mm;
151
152 /* Actual mode we give to hw */
153 int clock_index;
154 int synth_clock;
155 int crtc_hdisplay;
156 int crtc_hblank_start;
157 int crtc_hblank_end;
158 int crtc_hsync_start;
159 int crtc_hsync_end;
160 int crtc_htotal;
161 int crtc_hskew;
162 int crtc_vdisplay;
163 int crtc_vblank_start;
164 int crtc_vblank_end;
165 int crtc_vsync_start;
166 int crtc_vsync_end;
167 int crtc_vtotal;
168 int crtc_hadjusted;
169 int crtc_vadjusted;
170
171 /* Driver private mode info */
172 int private_size;
173 int *private;
174 int private_flags;
175
Adam Jackson7ac96a92009-12-03 17:44:37 -0500176 int vrefresh; /* in Hz */
177 int hsync; /* in kHz */
Dave Airlief453ba02008-11-07 14:05:41 -0800178};
179
180enum drm_connector_status {
181 connector_status_connected = 1,
182 connector_status_disconnected = 2,
183 connector_status_unknown = 3,
184};
185
186enum subpixel_order {
187 SubPixelUnknown = 0,
188 SubPixelHorizontalRGB,
189 SubPixelHorizontalBGR,
190 SubPixelVerticalRGB,
191 SubPixelVerticalBGR,
192 SubPixelNone,
193};
194
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700195#define DRM_COLOR_FORMAT_RGB444 (1<<0)
196#define DRM_COLOR_FORMAT_YCRCB444 (1<<1)
197#define DRM_COLOR_FORMAT_YCRCB422 (1<<2)
Dave Airlief453ba02008-11-07 14:05:41 -0800198/*
199 * Describes a given display (e.g. CRT or flat panel) and its limitations.
200 */
201struct drm_display_info {
202 char name[DRM_DISPLAY_INFO_LEN];
Adam Jacksonfb439642010-08-03 14:38:16 -0400203
Dave Airlief453ba02008-11-07 14:05:41 -0800204 /* Physical size */
205 unsigned int width_mm;
206 unsigned int height_mm;
207
Dave Airlief453ba02008-11-07 14:05:41 -0800208 /* Clock limits FIXME: storage format */
209 unsigned int min_vfreq, max_vfreq;
210 unsigned int min_hfreq, max_hfreq;
211 unsigned int pixel_clock;
Jesse Barnes3b112282011-04-15 12:49:23 -0700212 unsigned int bpc;
Dave Airlief453ba02008-11-07 14:05:41 -0800213
Dave Airlief453ba02008-11-07 14:05:41 -0800214 enum subpixel_order subpixel_order;
Jesse Barnesda05a5a72011-04-15 13:48:57 -0700215 u32 color_formats;
Dave Airlief453ba02008-11-07 14:05:41 -0800216
Jesse Barnesebec9a72011-08-03 09:22:54 -0700217 u8 cea_rev;
218
Dave Airlief453ba02008-11-07 14:05:41 -0800219 char *raw_edid; /* if any */
220};
221
222struct drm_framebuffer_funcs {
223 void (*destroy)(struct drm_framebuffer *framebuffer);
224 int (*create_handle)(struct drm_framebuffer *fb,
225 struct drm_file *file_priv,
226 unsigned int *handle);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000227 /**
228 * Optinal callback for the dirty fb ioctl.
229 *
230 * Userspace can notify the driver via this callback
231 * that a area of the framebuffer has changed and should
232 * be flushed to the display hardware.
233 *
234 * See documentation in drm_mode.h for the struct
235 * drm_mode_fb_dirty_cmd for more information as all
236 * the semantics and arguments have a one to one mapping
237 * on this function.
238 */
Thomas Hellstrom02b00162010-10-05 12:43:02 +0200239 int (*dirty)(struct drm_framebuffer *framebuffer,
240 struct drm_file *file_priv, unsigned flags,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000241 unsigned color, struct drm_clip_rect *clips,
242 unsigned num_clips);
Dave Airlief453ba02008-11-07 14:05:41 -0800243};
244
245struct drm_framebuffer {
246 struct drm_device *dev;
247 struct list_head head;
248 struct drm_mode_object base;
249 const struct drm_framebuffer_funcs *funcs;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200250 unsigned int pitches[4];
251 unsigned int offsets[4];
Dave Airlief453ba02008-11-07 14:05:41 -0800252 unsigned int width;
253 unsigned int height;
254 /* depth can be 15 or 16 */
255 unsigned int depth;
256 int bits_per_pixel;
257 int flags;
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800258 uint32_t pixel_format; /* fourcc format */
Dave Airlief453ba02008-11-07 14:05:41 -0800259 struct list_head filp_head;
Dave Airlie785b93e2009-08-28 15:46:53 +1000260 /* if you are using the helper */
261 void *helper_private;
Dave Airlief453ba02008-11-07 14:05:41 -0800262};
263
264struct drm_property_blob {
265 struct drm_mode_object base;
266 struct list_head head;
267 unsigned int length;
Ville Syrjäläd63f5e62012-03-13 12:35:49 +0200268 unsigned char data[];
Dave Airlief453ba02008-11-07 14:05:41 -0800269};
270
271struct drm_property_enum {
272 uint64_t value;
273 struct list_head head;
274 char name[DRM_PROP_NAME_LEN];
275};
276
277struct drm_property {
278 struct list_head head;
279 struct drm_mode_object base;
280 uint32_t flags;
281 char name[DRM_PROP_NAME_LEN];
282 uint32_t num_values;
283 uint64_t *values;
284
285 struct list_head enum_blob_list;
286};
287
288struct drm_crtc;
289struct drm_connector;
290struct drm_encoder;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500291struct drm_pending_vblank_event;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800292struct drm_plane;
Dave Airlief453ba02008-11-07 14:05:41 -0800293
294/**
295 * drm_crtc_funcs - control CRTCs for a given device
Chris Wilsoneb033552011-01-24 15:11:08 +0000296 * @reset: reset CRTC after state has been invalidate (e.g. resume)
Dave Airlief453ba02008-11-07 14:05:41 -0800297 * @dpms: control display power levels
298 * @save: save CRTC state
299 * @resore: restore CRTC state
300 * @lock: lock the CRTC
301 * @unlock: unlock the CRTC
302 * @shadow_allocate: allocate shadow pixmap
303 * @shadow_create: create shadow pixmap for rotation support
304 * @shadow_destroy: free shadow pixmap
305 * @mode_fixup: fixup proposed mode
306 * @mode_set: set the desired mode on the CRTC
307 * @gamma_set: specify color ramp for CRTC
308 * @destroy: deinit and free object.
309 *
310 * The drm_crtc_funcs structure is the central CRTC management structure
311 * in the DRM. Each CRTC controls one or more connectors (note that the name
312 * CRTC is simply historical, a CRTC may control LVDS, VGA, DVI, TV out, etc.
313 * connectors, not just CRTs).
314 *
315 * Each driver is responsible for filling out this structure at startup time,
316 * in addition to providing other modesetting features, like i2c and DDC
317 * bus accessors.
318 */
319struct drm_crtc_funcs {
320 /* Save CRTC state */
321 void (*save)(struct drm_crtc *crtc); /* suspend? */
322 /* Restore CRTC state */
323 void (*restore)(struct drm_crtc *crtc); /* resume? */
Chris Wilsoneb033552011-01-24 15:11:08 +0000324 /* Reset CRTC state */
325 void (*reset)(struct drm_crtc *crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800326
327 /* cursor controls */
328 int (*cursor_set)(struct drm_crtc *crtc, struct drm_file *file_priv,
329 uint32_t handle, uint32_t width, uint32_t height);
330 int (*cursor_move)(struct drm_crtc *crtc, int x, int y);
331
332 /* Set gamma on the CRTC */
333 void (*gamma_set)(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
James Simmons72034252010-08-03 01:33:19 +0100334 uint32_t start, uint32_t size);
Dave Airlief453ba02008-11-07 14:05:41 -0800335 /* Object destroy routine */
336 void (*destroy)(struct drm_crtc *crtc);
337
338 int (*set_config)(struct drm_mode_set *set);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500339
340 /*
341 * Flip to the given framebuffer. This implements the page
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300342 * flip ioctl described in drm_mode.h, specifically, the
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -0500343 * implementation must return immediately and block all
344 * rendering to the current fb until the flip has completed.
345 * If userspace set the event flag in the ioctl, the event
346 * argument will point to an event to send back when the flip
347 * completes, otherwise it will be NULL.
348 */
349 int (*page_flip)(struct drm_crtc *crtc,
350 struct drm_framebuffer *fb,
351 struct drm_pending_vblank_event *event);
Dave Airlief453ba02008-11-07 14:05:41 -0800352};
353
354/**
355 * drm_crtc - central CRTC control structure
Jesse Barnes77491632011-11-07 12:03:14 -0800356 * @dev: parent DRM device
357 * @head: list management
358 * @base: base KMS object for ID tracking etc.
Dave Airlief453ba02008-11-07 14:05:41 -0800359 * @enabled: is this CRTC enabled?
Jesse Barnes77491632011-11-07 12:03:14 -0800360 * @mode: current mode timings
361 * @hwmode: mode timings as programmed to hw regs
Dave Airlief453ba02008-11-07 14:05:41 -0800362 * @x: x position on screen
363 * @y: y position on screen
Dave Airlief453ba02008-11-07 14:05:41 -0800364 * @funcs: CRTC control functions
Jesse Barnes77491632011-11-07 12:03:14 -0800365 * @gamma_size: size of gamma ramp
366 * @gamma_store: gamma ramp values
367 * @framedur_ns: precise frame timing
368 * @framedur_ns: precise line timing
369 * @pixeldur_ns: precise pixel timing
370 * @helper_private: mid-layer private data
Dave Airlief453ba02008-11-07 14:05:41 -0800371 *
372 * Each CRTC may have one or more connectors associated with it. This structure
373 * allows the CRTC to be controlled.
374 */
375struct drm_crtc {
376 struct drm_device *dev;
377 struct list_head head;
378
379 struct drm_mode_object base;
380
381 /* framebuffer the connector is currently bound to */
382 struct drm_framebuffer *fb;
383
384 bool enabled;
385
Mario Kleiner27641c32010-10-23 04:20:23 +0200386 /* Requested mode from modesetting. */
Dave Airlief453ba02008-11-07 14:05:41 -0800387 struct drm_display_mode mode;
388
Mario Kleiner27641c32010-10-23 04:20:23 +0200389 /* Programmed mode in hw, after adjustments for encoders,
390 * crtc, panel scaling etc. Needed for timestamping etc.
391 */
392 struct drm_display_mode hwmode;
393
Dave Airlief453ba02008-11-07 14:05:41 -0800394 int x, y;
Dave Airlief453ba02008-11-07 14:05:41 -0800395 const struct drm_crtc_funcs *funcs;
396
397 /* CRTC gamma size for reporting to userspace */
398 uint32_t gamma_size;
399 uint16_t *gamma_store;
400
Mario Kleiner27641c32010-10-23 04:20:23 +0200401 /* Constants needed for precise vblank and swap timestamping. */
402 s64 framedur_ns, linedur_ns, pixeldur_ns;
403
Dave Airlief453ba02008-11-07 14:05:41 -0800404 /* if you are using the helper */
405 void *helper_private;
406};
407
408
409/**
410 * drm_connector_funcs - control connectors on a given device
411 * @dpms: set power state (see drm_crtc_funcs above)
412 * @save: save connector state
413 * @restore: restore connector state
Chris Wilsoneb033552011-01-24 15:11:08 +0000414 * @reset: reset connector after state has been invalidate (e.g. resume)
Dave Airlief453ba02008-11-07 14:05:41 -0800415 * @mode_valid: is this mode valid on the given connector?
416 * @mode_fixup: try to fixup proposed mode for this connector
417 * @mode_set: set this mode
418 * @detect: is this connector active?
419 * @get_modes: get mode list for this connector
420 * @set_property: property for this connector may need update
421 * @destroy: make object go away
Dave Airlied50ba252009-09-23 14:44:08 +1000422 * @force: notify the driver the connector is forced on
Dave Airlief453ba02008-11-07 14:05:41 -0800423 *
424 * Each CRTC may have one or more connectors attached to it. The functions
425 * below allow the core DRM code to control connectors, enumerate available modes,
426 * etc.
427 */
428struct drm_connector_funcs {
429 void (*dpms)(struct drm_connector *connector, int mode);
430 void (*save)(struct drm_connector *connector);
431 void (*restore)(struct drm_connector *connector);
Chris Wilsoneb033552011-01-24 15:11:08 +0000432 void (*reset)(struct drm_connector *connector);
Chris Wilson930a9e22010-09-14 11:07:23 +0100433
434 /* Check to see if anything is attached to the connector.
435 * @force is set to false whilst polling, true when checking the
436 * connector due to user request. @force can be used by the driver
437 * to avoid expensive, destructive operations during automated
438 * probing.
439 */
Chris Wilson7b334fc2010-09-09 23:51:02 +0100440 enum drm_connector_status (*detect)(struct drm_connector *connector,
Chris Wilson930a9e22010-09-14 11:07:23 +0100441 bool force);
Jesse Barnes40a518d2009-01-12 12:05:32 -0800442 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height);
Dave Airlief453ba02008-11-07 14:05:41 -0800443 int (*set_property)(struct drm_connector *connector, struct drm_property *property,
444 uint64_t val);
445 void (*destroy)(struct drm_connector *connector);
Dave Airlied50ba252009-09-23 14:44:08 +1000446 void (*force)(struct drm_connector *connector);
Dave Airlief453ba02008-11-07 14:05:41 -0800447};
448
Jesse Barnes6c3db922011-11-07 12:03:16 -0800449/**
450 * drm_encoder_funcs - encoder controls
451 * @reset: reset state (e.g. at init or resume time)
452 * @destroy: cleanup and free associated data
453 *
454 * Encoders sit between CRTCs and connectors.
455 */
Dave Airlief453ba02008-11-07 14:05:41 -0800456struct drm_encoder_funcs {
Chris Wilsoneb033552011-01-24 15:11:08 +0000457 void (*reset)(struct drm_encoder *encoder);
Dave Airlief453ba02008-11-07 14:05:41 -0800458 void (*destroy)(struct drm_encoder *encoder);
459};
460
461#define DRM_CONNECTOR_MAX_UMODES 16
Dave Airlief453ba02008-11-07 14:05:41 -0800462#define DRM_CONNECTOR_LEN 32
Ben Skeggsafe887d2012-01-12 16:00:57 +1000463#define DRM_CONNECTOR_MAX_ENCODER 3
Dave Airlief453ba02008-11-07 14:05:41 -0800464
465/**
466 * drm_encoder - central DRM encoder structure
Jesse Barnesdb3e4492011-11-07 12:03:17 -0800467 * @dev: parent DRM device
468 * @head: list management
469 * @base: base KMS object
470 * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h
471 * @possible_crtcs: bitmask of potential CRTC bindings
472 * @possible_clones: bitmask of potential sibling encoders for cloning
473 * @crtc: currently bound CRTC
474 * @funcs: control functions
475 * @helper_private: mid-layer private data
476 *
477 * CRTCs drive pixels to encoders, which convert them into signals
478 * appropriate for a given connector or set of connectors.
Dave Airlief453ba02008-11-07 14:05:41 -0800479 */
480struct drm_encoder {
481 struct drm_device *dev;
482 struct list_head head;
483
484 struct drm_mode_object base;
485 int encoder_type;
486 uint32_t possible_crtcs;
487 uint32_t possible_clones;
488
489 struct drm_crtc *crtc;
490 const struct drm_encoder_funcs *funcs;
491 void *helper_private;
492};
493
Dave Airlied50ba252009-09-23 14:44:08 +1000494enum drm_connector_force {
495 DRM_FORCE_UNSPECIFIED,
496 DRM_FORCE_OFF,
497 DRM_FORCE_ON, /* force on analog part normally */
498 DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */
499};
500
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000501/* should we poll this connector for connects and disconnects */
502/* hot plug detectable */
503#define DRM_CONNECTOR_POLL_HPD (1 << 0)
504/* poll for connections */
505#define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
506/* can cleanly poll for disconnections without flickering the screen */
507/* DACs should rarely do this without a lot of testing */
508#define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
509
Wu Fengguang76adaa342011-09-05 14:23:20 +0800510#define MAX_ELD_BYTES 128
511
Dave Airlief453ba02008-11-07 14:05:41 -0800512/**
513 * drm_connector - central DRM connector control structure
Jesse Barnes72252542011-11-07 12:03:18 -0800514 * @dev: parent DRM device
515 * @kdev: kernel device for sysfs attributes
516 * @attr: sysfs attributes
517 * @head: list management
518 * @base: base KMS object
519 * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h
520 * @connector_type_id: index into connector type enum
Dave Airlief453ba02008-11-07 14:05:41 -0800521 * @interlace_allowed: can this connector handle interlaced modes?
522 * @doublescan_allowed: can this connector handle doublescan?
Jesse Barnes72252542011-11-07 12:03:18 -0800523 * @modes: modes available on this connector (from fill_modes() + user)
524 * @status: one of the drm_connector_status enums (connected, not, or unknown)
525 * @probed_modes: list of modes derived directly from the display
526 * @display_info: information about attached display (e.g. from EDID)
Dave Airlief453ba02008-11-07 14:05:41 -0800527 * @funcs: connector control functions
Jesse Barnes72252542011-11-07 12:03:18 -0800528 * @user_modes: user added mode list
529 * @edid_blob_ptr: DRM property containing EDID if present
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300530 * @properties: property tracking for this connector
Jesse Barnes72252542011-11-07 12:03:18 -0800531 * @polled: a %DRM_CONNECTOR_POLL_<foo> value for core driven polling
532 * @dpms: current dpms state
533 * @helper_private: mid-layer private data
534 * @force: a %DRM_FORCE_<foo> state for forced mode sets
535 * @encoder_ids: valid encoders for this connector
536 * @encoder: encoder driving this connector, if any
537 * @eld: EDID-like data, if present
538 * @dvi_dual: dual link DVI, if found
539 * @max_tmds_clock: max clock rate, if found
540 * @latency_present: AV delay info from ELD, if found
541 * @video_latency: video latency info from ELD, if found
542 * @audio_latency: audio latency info from ELD, if found
543 * @null_edid_counter: track sinks that give us all zeros for the EDID
Dave Airlief453ba02008-11-07 14:05:41 -0800544 *
545 * Each connector may be connected to one or more CRTCs, or may be clonable by
546 * another connector if they can share a CRTC. Each connector also has a specific
547 * position in the broader display (referred to as a 'screen' though it could
548 * span multiple monitors).
549 */
550struct drm_connector {
551 struct drm_device *dev;
552 struct device kdev;
553 struct device_attribute *attr;
554 struct list_head head;
555
556 struct drm_mode_object base;
557
558 int connector_type;
559 int connector_type_id;
560 bool interlace_allowed;
561 bool doublescan_allowed;
562 struct list_head modes; /* list of modes on this connector */
563
Dave Airlief453ba02008-11-07 14:05:41 -0800564 enum drm_connector_status status;
565
566 /* these are modes added by probing with DDC or the BIOS */
567 struct list_head probed_modes;
568
569 struct drm_display_info display_info;
570 const struct drm_connector_funcs *funcs;
571
572 struct list_head user_modes;
573 struct drm_property_blob *edid_blob_ptr;
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300574 struct drm_object_properties properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800575
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000576 uint8_t polled; /* DRM_CONNECTOR_POLL_* */
577
Keith Packardc9fb15f2009-05-30 20:42:28 -0700578 /* requested DPMS state */
579 int dpms;
580
Dave Airlief453ba02008-11-07 14:05:41 -0800581 void *helper_private;
582
Dave Airlied50ba252009-09-23 14:44:08 +1000583 /* forced on connector */
584 enum drm_connector_force force;
Dave Airlief453ba02008-11-07 14:05:41 -0800585 uint32_t encoder_ids[DRM_CONNECTOR_MAX_ENCODER];
Dave Airlief453ba02008-11-07 14:05:41 -0800586 struct drm_encoder *encoder; /* currently active encoder */
Dave Airlie4a9a8b72011-06-14 06:13:55 +0000587
Wu Fengguang76adaa342011-09-05 14:23:20 +0800588 /* EDID bits */
589 uint8_t eld[MAX_ELD_BYTES];
590 bool dvi_dual;
591 int max_tmds_clock; /* in MHz */
592 bool latency_present[2];
593 int video_latency[2]; /* [0]: progressive, [1]: interlaced */
594 int audio_latency[2];
Dave Airlie4a9a8b72011-06-14 06:13:55 +0000595 int null_edid_counter; /* needed to workaround some HW bugs where we get all 0s */
Dave Airlief453ba02008-11-07 14:05:41 -0800596};
597
598/**
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800599 * drm_plane_funcs - driver plane control functions
600 * @update_plane: update the plane configuration
601 * @disable_plane: shut down the plane
602 * @destroy: clean up plane resources
603 */
604struct drm_plane_funcs {
605 int (*update_plane)(struct drm_plane *plane,
606 struct drm_crtc *crtc, struct drm_framebuffer *fb,
607 int crtc_x, int crtc_y,
608 unsigned int crtc_w, unsigned int crtc_h,
609 uint32_t src_x, uint32_t src_y,
610 uint32_t src_w, uint32_t src_h);
611 int (*disable_plane)(struct drm_plane *plane);
612 void (*destroy)(struct drm_plane *plane);
613};
614
615/**
616 * drm_plane - central DRM plane control structure
617 * @dev: DRM device this plane belongs to
618 * @head: for list management
619 * @base: base mode object
620 * @possible_crtcs: pipes this plane can be bound to
621 * @format_types: array of formats supported by this plane
622 * @format_count: number of formats supported
623 * @crtc: currently bound CRTC
624 * @fb: currently bound fb
625 * @gamma_size: size of gamma table
626 * @gamma_store: gamma correction table
627 * @enabled: enabled flag
628 * @funcs: helper functions
629 * @helper_private: storage for drver layer
630 */
631struct drm_plane {
632 struct drm_device *dev;
633 struct list_head head;
634
635 struct drm_mode_object base;
636
637 uint32_t possible_crtcs;
638 uint32_t *format_types;
639 uint32_t format_count;
640
641 struct drm_crtc *crtc;
642 struct drm_framebuffer *fb;
643
644 /* CRTC gamma size for reporting to userspace */
645 uint32_t gamma_size;
646 uint16_t *gamma_store;
647
648 bool enabled;
649
650 const struct drm_plane_funcs *funcs;
651 void *helper_private;
652};
653
654/**
Jesse Barnesef273512011-11-07 12:03:19 -0800655 * drm_mode_set - new values for a CRTC config change
656 * @head: list management
657 * @fb: framebuffer to use for new config
658 * @crtc: CRTC whose configuration we're about to change
659 * @mode: mode timings to use
660 * @x: position of this CRTC relative to @fb
661 * @y: position of this CRTC relative to @fb
662 * @connectors: array of connectors to drive with this CRTC if possible
663 * @num_connectors: size of @connectors array
Dave Airlief453ba02008-11-07 14:05:41 -0800664 *
665 * Represents a single crtc the connectors that it drives with what mode
666 * and from which framebuffer it scans out from.
667 *
668 * This is used to set modes.
669 */
670struct drm_mode_set {
671 struct list_head head;
672
673 struct drm_framebuffer *fb;
674 struct drm_crtc *crtc;
675 struct drm_display_mode *mode;
676
677 uint32_t x;
678 uint32_t y;
679
680 struct drm_connector **connectors;
681 size_t num_connectors;
682};
683
684/**
Jesse Barnes550cebc2011-11-07 12:03:20 -0800685 * struct drm_mode_config_funcs - basic driver provided mode setting functions
686 * @fb_create: create a new framebuffer object
687 * @output_poll_changed: function to handle output configuration changes
688 *
689 * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
690 * involve drivers.
Dave Airlief453ba02008-11-07 14:05:41 -0800691 */
692struct drm_mode_config_funcs {
Jesse Barnes550cebc2011-11-07 12:03:20 -0800693 struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
694 struct drm_file *file_priv,
695 struct drm_mode_fb_cmd2 *mode_cmd);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000696 void (*output_poll_changed)(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800697};
698
Jesse Barnesc1aaca22011-11-07 12:03:21 -0800699/**
700 * drm_mode_group - group of mode setting resources for potential sub-grouping
701 * @num_crtcs: CRTC count
702 * @num_encoders: encoder count
703 * @num_connectors: connector count
704 * @id_list: list of KMS object IDs in this group
705 *
706 * Currently this simply tracks the global mode setting state. But in the
707 * future it could allow groups of objects to be set aside into independent
708 * control groups for use by different user level processes (e.g. two X servers
709 * running simultaneously on different heads, each with their own mode
710 * configuration and freedom of mode setting).
711 */
Dave Airlief453ba02008-11-07 14:05:41 -0800712struct drm_mode_group {
713 uint32_t num_crtcs;
714 uint32_t num_encoders;
715 uint32_t num_connectors;
716
717 /* list of object IDs for this group */
718 uint32_t *id_list;
719};
720
721/**
722 * drm_mode_config - Mode configuration control structure
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800723 * @mutex: mutex protecting KMS related lists and structures
724 * @idr_mutex: mutex for KMS ID allocation and management
725 * @crtc_idr: main KMS ID tracking object
726 * @num_fb: number of fbs available
727 * @fb_list: list of framebuffers available
728 * @num_connector: number of connectors on this device
729 * @connector_list: list of connector objects
730 * @num_encoder: number of encoders on this device
731 * @encoder_list: list of encoder objects
732 * @num_crtc: number of CRTCs on this device
733 * @crtc_list: list of CRTC objects
734 * @min_width: minimum pixel width on this device
735 * @min_height: minimum pixel height on this device
736 * @max_width: maximum pixel width on this device
737 * @max_height: maximum pixel height on this device
738 * @funcs: core driver provided mode setting functions
739 * @fb_base: base address of the framebuffer
740 * @poll_enabled: track polling status for this device
741 * @output_poll_work: delayed work for polling in process context
742 * @*_property: core property tracking
Dave Airlief453ba02008-11-07 14:05:41 -0800743 *
Jesse Barnesa62c93d2011-11-07 12:03:22 -0800744 * Core mode resource tracking structure. All CRTC, encoders, and connectors
745 * enumerated by the driver are added here, as are global properties. Some
746 * global restrictions are also here, e.g. dimension restrictions.
Dave Airlief453ba02008-11-07 14:05:41 -0800747 */
748struct drm_mode_config {
Jesse Barnesad2563c2009-01-19 17:21:45 +1000749 struct mutex mutex; /* protects configuration (mode lists etc.) */
750 struct mutex idr_mutex; /* for IDR management */
Dave Airlief453ba02008-11-07 14:05:41 -0800751 struct idr crtc_idr; /* use this idr for all IDs, fb, crtc, connector, modes - just makes life easier */
752 /* this is limited to one for now */
753 int num_fb;
754 struct list_head fb_list;
755 int num_connector;
756 struct list_head connector_list;
757 int num_encoder;
758 struct list_head encoder_list;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800759 int num_plane;
760 struct list_head plane_list;
Dave Airlief453ba02008-11-07 14:05:41 -0800761
762 int num_crtc;
763 struct list_head crtc_list;
764
765 struct list_head property_list;
766
Dave Airlief453ba02008-11-07 14:05:41 -0800767 int min_width, min_height;
768 int max_width, max_height;
769 struct drm_mode_config_funcs *funcs;
Benjamin Herrenschmidtd883f7f2009-02-02 16:55:45 +1100770 resource_size_t fb_base;
Dave Airlief453ba02008-11-07 14:05:41 -0800771
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000772 /* output poll support */
773 bool poll_enabled;
Tejun Heo991ea752010-07-20 22:09:02 +0200774 struct delayed_work output_poll_work;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000775
Dave Airlief453ba02008-11-07 14:05:41 -0800776 /* pointers to standard properties */
777 struct list_head property_blob_list;
778 struct drm_property *edid_property;
779 struct drm_property *dpms_property;
780
781 /* DVI-I properties */
782 struct drm_property *dvi_i_subconnector_property;
783 struct drm_property *dvi_i_select_subconnector_property;
784
785 /* TV properties */
786 struct drm_property *tv_subconnector_property;
787 struct drm_property *tv_select_subconnector_property;
788 struct drm_property *tv_mode_property;
789 struct drm_property *tv_left_margin_property;
790 struct drm_property *tv_right_margin_property;
791 struct drm_property *tv_top_margin_property;
792 struct drm_property *tv_bottom_margin_property;
Francisco Jerezb6b79022009-08-02 04:19:20 +0200793 struct drm_property *tv_brightness_property;
794 struct drm_property *tv_contrast_property;
795 struct drm_property *tv_flicker_reduction_property;
Francisco Jereza75f0232009-08-12 02:30:10 +0200796 struct drm_property *tv_overscan_property;
797 struct drm_property *tv_saturation_property;
798 struct drm_property *tv_hue_property;
Dave Airlief453ba02008-11-07 14:05:41 -0800799
800 /* Optional properties */
801 struct drm_property *scaling_mode_property;
802 struct drm_property *dithering_mode_property;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000803 struct drm_property *dirty_info_property;
Dave Airlie019d96c2011-09-29 16:20:42 +0100804
805 /* dumb ioctl parameters */
806 uint32_t preferred_depth, prefer_shadow;
Dave Airlief453ba02008-11-07 14:05:41 -0800807};
808
809#define obj_to_crtc(x) container_of(x, struct drm_crtc, base)
810#define obj_to_connector(x) container_of(x, struct drm_connector, base)
811#define obj_to_encoder(x) container_of(x, struct drm_encoder, base)
812#define obj_to_mode(x) container_of(x, struct drm_display_mode, base)
813#define obj_to_fb(x) container_of(x, struct drm_framebuffer, base)
814#define obj_to_property(x) container_of(x, struct drm_property, base)
815#define obj_to_blob(x) container_of(x, struct drm_property_blob, base)
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800816#define obj_to_plane(x) container_of(x, struct drm_plane, base)
Dave Airlief453ba02008-11-07 14:05:41 -0800817
Sascha Hauer4a67d392012-02-06 10:58:17 +0100818struct drm_prop_enum_list {
819 int type;
820 char *name;
821};
Dave Airlief453ba02008-11-07 14:05:41 -0800822
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200823extern int drm_crtc_init(struct drm_device *dev,
824 struct drm_crtc *crtc,
825 const struct drm_crtc_funcs *funcs);
Dave Airlief453ba02008-11-07 14:05:41 -0800826extern void drm_crtc_cleanup(struct drm_crtc *crtc);
827
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200828extern int drm_connector_init(struct drm_device *dev,
829 struct drm_connector *connector,
830 const struct drm_connector_funcs *funcs,
831 int connector_type);
Dave Airlief453ba02008-11-07 14:05:41 -0800832
833extern void drm_connector_cleanup(struct drm_connector *connector);
Dave Airliecbc7e222012-02-20 14:16:40 +0000834/* helper to unplug all connectors from sysfs for device */
835extern void drm_connector_unplug_all(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800836
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200837extern int drm_encoder_init(struct drm_device *dev,
838 struct drm_encoder *encoder,
839 const struct drm_encoder_funcs *funcs,
840 int encoder_type);
Dave Airlief453ba02008-11-07 14:05:41 -0800841
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800842extern int drm_plane_init(struct drm_device *dev,
843 struct drm_plane *plane,
844 unsigned long possible_crtcs,
845 const struct drm_plane_funcs *funcs,
Rob Clark0a7eb242011-12-13 20:19:36 -0600846 const uint32_t *formats, uint32_t format_count,
847 bool priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800848extern void drm_plane_cleanup(struct drm_plane *plane);
849
Dave Airlief453ba02008-11-07 14:05:41 -0800850extern void drm_encoder_cleanup(struct drm_encoder *encoder);
851
852extern char *drm_get_connector_name(struct drm_connector *connector);
853extern char *drm_get_dpms_name(int val);
854extern char *drm_get_dvi_i_subconnector_name(int val);
855extern char *drm_get_dvi_i_select_name(int val);
856extern char *drm_get_tv_subconnector_name(int val);
857extern char *drm_get_tv_select_name(int val);
Kristian Høgsbergea39f832009-02-12 14:37:56 -0500858extern void drm_fb_release(struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -0800859extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group);
860extern struct edid *drm_get_edid(struct drm_connector *connector,
861 struct i2c_adapter *adapter);
Dave Airlief453ba02008-11-07 14:05:41 -0800862extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
863extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode);
864extern void drm_mode_remove(struct drm_connector *connector, struct drm_display_mode *mode);
Ville Syrjäläc3c50e82012-03-13 12:35:51 +0200865extern void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src);
Dave Airlief453ba02008-11-07 14:05:41 -0800866extern struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
Chris Wilsonb1f559e2011-01-26 09:49:47 +0000867 const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800868extern void drm_mode_debug_printmodeline(struct drm_display_mode *mode);
869extern void drm_mode_config_init(struct drm_device *dev);
Chris Wilsoneb033552011-01-24 15:11:08 +0000870extern void drm_mode_config_reset(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800871extern void drm_mode_config_cleanup(struct drm_device *dev);
872extern void drm_mode_set_name(struct drm_display_mode *mode);
873extern bool drm_mode_equal(struct drm_display_mode *mode1, struct drm_display_mode *mode2);
874extern int drm_mode_width(struct drm_display_mode *mode);
875extern int drm_mode_height(struct drm_display_mode *mode);
876
877/* for us by fb module */
878extern int drm_mode_attachmode_crtc(struct drm_device *dev,
879 struct drm_crtc *crtc,
Ville Syrjäläac235da2012-03-13 12:35:46 +0200880 const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800881extern int drm_mode_detachmode_crtc(struct drm_device *dev, struct drm_display_mode *mode);
882
883extern struct drm_display_mode *drm_mode_create(struct drm_device *dev);
884extern void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode);
885extern void drm_mode_list_concat(struct list_head *head,
886 struct list_head *new);
887extern void drm_mode_validate_size(struct drm_device *dev,
888 struct list_head *mode_list,
889 int maxX, int maxY, int maxPitch);
890extern void drm_mode_prune_invalid(struct drm_device *dev,
891 struct list_head *mode_list, bool verbose);
892extern void drm_mode_sort(struct list_head *mode_list);
Chris Wilsonb1f559e2011-01-26 09:49:47 +0000893extern int drm_mode_hsync(const struct drm_display_mode *mode);
894extern int drm_mode_vrefresh(const struct drm_display_mode *mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800895extern void drm_mode_set_crtcinfo(struct drm_display_mode *p,
896 int adjust_flags);
897extern void drm_mode_connector_list_update(struct drm_connector *connector);
898extern int drm_mode_connector_update_edid_property(struct drm_connector *connector,
899 struct edid *edid);
900extern int drm_connector_property_set_value(struct drm_connector *connector,
901 struct drm_property *property,
902 uint64_t value);
903extern int drm_connector_property_get_value(struct drm_connector *connector,
904 struct drm_property *property,
905 uint64_t *value);
906extern struct drm_display_mode *drm_crtc_mode_create(struct drm_device *dev);
907extern void drm_framebuffer_set_object(struct drm_device *dev,
908 unsigned long handle);
909extern int drm_framebuffer_init(struct drm_device *dev,
910 struct drm_framebuffer *fb,
911 const struct drm_framebuffer_funcs *funcs);
912extern void drm_framebuffer_cleanup(struct drm_framebuffer *fb);
913extern int drmfb_probe(struct drm_device *dev, struct drm_crtc *crtc);
914extern int drmfb_remove(struct drm_device *dev, struct drm_framebuffer *fb);
915extern void drm_crtc_probe_connector_modes(struct drm_device *dev, int maxX, int maxY);
916extern bool drm_crtc_in_use(struct drm_crtc *crtc);
917
Paulo Zanoniafea2ad2012-05-15 18:09:00 -0300918extern void drm_connector_attach_property(struct drm_connector *connector,
919 struct drm_property *property, uint64_t init_val);
Dave Airlief453ba02008-11-07 14:05:41 -0800920extern struct drm_property *drm_property_create(struct drm_device *dev, int flags,
921 const char *name, int num_values);
Sascha Hauer4a67d392012-02-06 10:58:17 +0100922extern struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
923 const char *name,
924 const struct drm_prop_enum_list *props,
925 int num_values);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100926struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
927 const char *name,
928 uint64_t min, uint64_t max);
Dave Airlief453ba02008-11-07 14:05:41 -0800929extern void drm_property_destroy(struct drm_device *dev, struct drm_property *property);
930extern int drm_property_add_enum(struct drm_property *property, int index,
931 uint64_t value, const char *name);
932extern int drm_mode_create_dvi_i_properties(struct drm_device *dev);
933extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats,
934 char *formats[]);
935extern int drm_mode_create_scaling_mode_property(struct drm_device *dev);
936extern int drm_mode_create_dithering_property(struct drm_device *dev);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000937extern int drm_mode_create_dirty_info_property(struct drm_device *dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800938extern char *drm_get_encoder_name(struct drm_encoder *encoder);
939
940extern int drm_mode_connector_attach_encoder(struct drm_connector *connector,
941 struct drm_encoder *encoder);
942extern void drm_mode_connector_detach_encoder(struct drm_connector *connector,
943 struct drm_encoder *encoder);
Sascha Hauer4cae5b82012-02-01 11:38:23 +0100944extern int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -0800945 int gamma_size);
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200946extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
947 uint32_t id, uint32_t type);
Dave Airlief453ba02008-11-07 14:05:41 -0800948/* IOCTLs */
949extern int drm_mode_getresources(struct drm_device *dev,
950 void *data, struct drm_file *file_priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800951extern int drm_mode_getplane_res(struct drm_device *dev, void *data,
952 struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -0800953extern int drm_mode_getcrtc(struct drm_device *dev,
954 void *data, struct drm_file *file_priv);
955extern int drm_mode_getconnector(struct drm_device *dev,
956 void *data, struct drm_file *file_priv);
957extern int drm_mode_setcrtc(struct drm_device *dev,
958 void *data, struct drm_file *file_priv);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800959extern int drm_mode_getplane(struct drm_device *dev,
960 void *data, struct drm_file *file_priv);
961extern int drm_mode_setplane(struct drm_device *dev,
962 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -0800963extern int drm_mode_cursor_ioctl(struct drm_device *dev,
964 void *data, struct drm_file *file_priv);
965extern int drm_mode_addfb(struct drm_device *dev,
966 void *data, struct drm_file *file_priv);
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800967extern int drm_mode_addfb2(struct drm_device *dev,
968 void *data, struct drm_file *file_priv);
969extern uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth);
Dave Airlief453ba02008-11-07 14:05:41 -0800970extern int drm_mode_rmfb(struct drm_device *dev,
971 void *data, struct drm_file *file_priv);
972extern int drm_mode_getfb(struct drm_device *dev,
973 void *data, struct drm_file *file_priv);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000974extern int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
975 void *data, struct drm_file *file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -0800976extern int drm_mode_addmode_ioctl(struct drm_device *dev,
977 void *data, struct drm_file *file_priv);
978extern int drm_mode_rmmode_ioctl(struct drm_device *dev,
979 void *data, struct drm_file *file_priv);
980extern int drm_mode_attachmode_ioctl(struct drm_device *dev,
981 void *data, struct drm_file *file_priv);
982extern int drm_mode_detachmode_ioctl(struct drm_device *dev,
983 void *data, struct drm_file *file_priv);
984
985extern int drm_mode_getproperty_ioctl(struct drm_device *dev,
986 void *data, struct drm_file *file_priv);
987extern int drm_mode_getblob_ioctl(struct drm_device *dev,
988 void *data, struct drm_file *file_priv);
989extern int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
990 void *data, struct drm_file *file_priv);
991extern int drm_mode_hotplug_ioctl(struct drm_device *dev,
992 void *data, struct drm_file *file_priv);
993extern int drm_mode_replacefb(struct drm_device *dev,
994 void *data, struct drm_file *file_priv);
995extern int drm_mode_getencoder(struct drm_device *dev,
996 void *data, struct drm_file *file_priv);
997extern int drm_mode_gamma_get_ioctl(struct drm_device *dev,
998 void *data, struct drm_file *file_priv);
999extern int drm_mode_gamma_set_ioctl(struct drm_device *dev,
1000 void *data, struct drm_file *file_priv);
Ben Skeggseccaca22011-03-30 05:03:47 +00001001extern u8 *drm_find_cea_extension(struct edid *edid);
Ma Lingf23c20c2009-03-26 19:26:23 +08001002extern bool drm_detect_hdmi_monitor(struct edid *edid);
Zhenyu Wang8fe97902010-09-19 14:27:28 +08001003extern bool drm_detect_monitor_audio(struct edid *edid);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05001004extern int drm_mode_page_flip_ioctl(struct drm_device *dev,
1005 void *data, struct drm_file *file_priv);
Zhao Yakuid782c3f2009-06-22 13:17:08 +08001006extern struct drm_display_mode *drm_cvt_mode(struct drm_device *dev,
1007 int hdisplay, int vdisplay, int vrefresh,
Dave Airlied50ba252009-09-23 14:44:08 +10001008 bool reduced, bool interlaced, bool margins);
Zhao Yakui26bbdad2009-06-22 13:17:09 +08001009extern struct drm_display_mode *drm_gtf_mode(struct drm_device *dev,
1010 int hdisplay, int vdisplay, int vrefresh,
1011 bool interlaced, int margins);
Adam Jackson7a374352010-03-29 21:43:30 +00001012extern struct drm_display_mode *drm_gtf_mode_complex(struct drm_device *dev,
1013 int hdisplay, int vdisplay, int vrefresh,
1014 bool interlaced, int margins, int GTF_M,
1015 int GTF_2C, int GTF_K, int GTF_2J);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08001016extern int drm_add_modes_noedid(struct drm_connector *connector,
1017 int hdisplay, int vdisplay);
Alex Deucher3c537882010-02-05 04:21:19 -05001018
Thomas Reim051963d2011-07-29 14:28:57 +00001019extern int drm_edid_header_is_valid(const u8 *raw_edid);
Adam Jacksonf89ec8a2012-04-16 10:40:08 -04001020extern bool drm_edid_block_valid(u8 *raw_edid, int block);
Alex Deucher3c537882010-02-05 04:21:19 -05001021extern bool drm_edid_is_valid(struct edid *edid);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001022struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001023 int hsize, int vsize, int fresh,
1024 bool rb);
Dave Airlieff72145b2011-02-07 12:16:14 +10001025
1026extern int drm_mode_create_dumb_ioctl(struct drm_device *dev,
1027 void *data, struct drm_file *file_priv);
1028extern int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
1029 void *data, struct drm_file *file_priv);
1030extern int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
1031 void *data, struct drm_file *file_priv);
Dave Airlie248dbc22011-11-29 20:02:54 +00001032
1033extern void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
1034 int *bpp);
Ville Syrjälä141670e2012-04-05 21:35:15 +03001035extern int drm_format_num_planes(uint32_t format);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03001036extern int drm_format_plane_cpp(uint32_t format, int plane);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03001037extern int drm_format_horz_chroma_subsampling(uint32_t format);
1038extern int drm_format_vert_chroma_subsampling(uint32_t format);
Ville Syrjälä141670e2012-04-05 21:35:15 +03001039
Dave Airlief453ba02008-11-07 14:05:41 -08001040#endif /* __DRM_CRTC_H__ */