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