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