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