blob: 46fa0945b53ef33cf9e3f12f63f93e36bff8d2a0 [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4 * Copyright (c) 2008 Red Hat Inc.
5 *
6 * DRM core CRTC related functions
7 *
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
17 *
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 * OF THIS SOFTWARE.
25 *
26 * Authors:
27 * Keith Packard
28 * Eric Anholt <eric@anholt.net>
29 * Dave Airlie <airlied@linux.ie>
30 * Jesse Barnes <jesse.barnes@intel.com>
31 */
Ville Syrjälä6ba6d032013-06-10 11:15:10 +030032#include <linux/ctype.h>
Dave Airlief453ba02008-11-07 14:05:41 -080033#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040035#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drmP.h>
37#include <drm/drm_crtc.h>
38#include <drm/drm_edid.h>
39#include <drm/drm_fourcc.h>
Rob Clark51fd3712013-11-19 12:10:12 -050040#include <drm/drm_modeset_lock.h>
Rob Clark88a48e22014-12-18 16:01:50 -050041#include <drm/drm_atomic.h>
Dave Airlief453ba02008-11-07 14:05:41 -080042
Daniel Vetter8bd441b2014-01-23 15:35:24 +010043#include "drm_crtc_internal.h"
Daniel Vetter67d0ec42014-09-10 12:43:53 +020044#include "drm_internal.h"
Daniel Vetter8bd441b2014-01-23 15:35:24 +010045
Matt Roperc394c2b2014-06-10 08:28:08 -070046static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
47 struct drm_mode_fb_cmd2 *r,
48 struct drm_file *file_priv);
49
Dave Airlief453ba02008-11-07 14:05:41 -080050/* Avoid boilerplate. I'm tired of typing. */
51#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +000052 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -080053 { \
54 int i; \
55 for (i = 0; i < ARRAY_SIZE(list); i++) { \
56 if (list[i].type == val) \
57 return list[i].name; \
58 } \
59 return "(unknown)"; \
60 }
61
62/*
63 * Global properties
64 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010065static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
66 { DRM_MODE_DPMS_ON, "On" },
Dave Airlief453ba02008-11-07 14:05:41 -080067 { DRM_MODE_DPMS_STANDBY, "Standby" },
68 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
69 { DRM_MODE_DPMS_OFF, "Off" }
70};
71
72DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
73
Thierry Reding4dfd9092014-12-10 13:03:34 +010074static const struct drm_prop_enum_list drm_plane_type_enum_list[] = {
Rob Clark9922ab52014-04-01 20:16:57 -040075 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
76 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
77 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
78};
79
Dave Airlief453ba02008-11-07 14:05:41 -080080/*
81 * Optional properties
82 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010083static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
Jesse Barnes53bd8382009-07-01 10:04:40 -070084 { DRM_MODE_SCALE_NONE, "None" },
85 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
86 { DRM_MODE_SCALE_CENTER, "Center" },
87 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -080088};
89
Vandana Kannanff587e42014-06-11 10:46:48 +053090static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
91 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
92 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
93 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
94};
95
Dave Airlief453ba02008-11-07 14:05:41 -080096/*
97 * Non-global properties, but "required" for certain connectors.
98 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010099static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800100 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
101 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
102 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
103};
104
105DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
106
Thierry Reding4dfd9092014-12-10 13:03:34 +0100107static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800108 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
109 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
110 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
111};
112
113DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
114 drm_dvi_i_subconnector_enum_list)
115
Thierry Reding4dfd9092014-12-10 13:03:34 +0100116static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800117 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
118 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
119 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
120 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200121 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800122};
123
124DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
125
Thierry Reding4dfd9092014-12-10 13:03:34 +0100126static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800127 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
128 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
129 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
130 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200131 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800132};
133
134DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
135 drm_tv_subconnector_enum_list)
136
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000137static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000138 { DRM_MODE_DIRTY_OFF, "Off" },
139 { DRM_MODE_DIRTY_ON, "On" },
140 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
141};
142
Dave Airlief453ba02008-11-07 14:05:41 -0800143struct drm_conn_prop_enum_list {
144 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000145 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400146 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800147};
148
149/*
150 * Connector and encoder types.
151 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100152static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
153 { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400154 { DRM_MODE_CONNECTOR_VGA, "VGA" },
155 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
156 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
157 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
158 { DRM_MODE_CONNECTOR_Composite, "Composite" },
159 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
160 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
161 { DRM_MODE_CONNECTOR_Component, "Component" },
162 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
163 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
164 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
165 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
166 { DRM_MODE_CONNECTOR_TV, "TV" },
167 { DRM_MODE_CONNECTOR_eDP, "eDP" },
168 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300169 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800170};
171
Thierry Reding4dfd9092014-12-10 13:03:34 +0100172static const struct drm_prop_enum_list drm_encoder_enum_list[] = {
173 { DRM_MODE_ENCODER_NONE, "None" },
Dave Airlief453ba02008-11-07 14:05:41 -0800174 { DRM_MODE_ENCODER_DAC, "DAC" },
175 { DRM_MODE_ENCODER_TMDS, "TMDS" },
176 { DRM_MODE_ENCODER_LVDS, "LVDS" },
177 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200178 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300179 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlie182407a2014-05-02 11:09:54 +1000180 { DRM_MODE_ENCODER_DPMST, "DP MST" },
Dave Airlief453ba02008-11-07 14:05:41 -0800181};
182
Thierry Reding4dfd9092014-12-10 13:03:34 +0100183static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
Jesse Barnesac1bb362014-02-10 15:32:44 -0800184 { SubPixelUnknown, "Unknown" },
185 { SubPixelHorizontalRGB, "Horizontal RGB" },
186 { SubPixelHorizontalBGR, "Horizontal BGR" },
187 { SubPixelVerticalRGB, "Vertical RGB" },
188 { SubPixelVerticalBGR, "Vertical BGR" },
189 { SubPixelNone, "None" },
190};
191
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400192void drm_connector_ida_init(void)
193{
194 int i;
195
196 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
197 ida_init(&drm_connector_enum_list[i].ida);
198}
199
200void drm_connector_ida_destroy(void)
201{
202 int i;
203
204 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
205 ida_destroy(&drm_connector_enum_list[i].ida);
206}
207
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100208/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100209 * drm_get_connector_status_name - return a string for connector status
210 * @status: connector status to compute name of
211 *
212 * In contrast to the other drm_get_*_name functions this one here returns a
213 * const pointer and hence is threadsafe.
214 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000215const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800216{
217 if (status == connector_status_connected)
218 return "connected";
219 else if (status == connector_status_disconnected)
220 return "disconnected";
221 else
222 return "unknown";
223}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000224EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800225
Jesse Barnesac1bb362014-02-10 15:32:44 -0800226/**
227 * drm_get_subpixel_order_name - return a string for a given subpixel enum
228 * @order: enum of subpixel_order
229 *
230 * Note you could abuse this and return something out of bounds, but that
231 * would be a caller error. No unscrubbed user data should make it here.
232 */
233const char *drm_get_subpixel_order_name(enum subpixel_order order)
234{
235 return drm_subpixel_enum_list[order].name;
236}
237EXPORT_SYMBOL(drm_get_subpixel_order_name);
238
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300239static char printable_char(int c)
240{
241 return isascii(c) && isprint(c) ? c : '?';
242}
243
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100244/**
245 * drm_get_format_name - return a string for drm fourcc format
246 * @format: format to compute name of
247 *
248 * Note that the buffer used by this function is globally shared and owned by
249 * the function itself.
250 *
251 * FIXME: This isn't really multithreading safe.
252 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000253const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300254{
255 static char buf[32];
256
257 snprintf(buf, sizeof(buf),
258 "%c%c%c%c %s-endian (0x%08x)",
259 printable_char(format & 0xff),
260 printable_char((format >> 8) & 0xff),
261 printable_char((format >> 16) & 0xff),
262 printable_char((format >> 24) & 0x7f),
263 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
264 format);
265
266 return buf;
267}
268EXPORT_SYMBOL(drm_get_format_name);
269
Dave Airlie2ee39452014-07-24 11:53:45 +1000270/*
271 * Internal function to assign a slot in the object idr and optionally
272 * register the object into the idr.
273 */
274static int drm_mode_object_get_reg(struct drm_device *dev,
275 struct drm_mode_object *obj,
276 uint32_t obj_type,
277 bool register_obj)
278{
279 int ret;
280
281 mutex_lock(&dev->mode_config.idr_mutex);
282 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
283 if (ret >= 0) {
284 /*
285 * Set up the object linking under the protection of the idr
286 * lock so that other users can't see inconsistent state.
287 */
288 obj->id = ret;
289 obj->type = obj_type;
290 }
291 mutex_unlock(&dev->mode_config.idr_mutex);
292
293 return ret < 0 ? ret : 0;
294}
295
Dave Airlief453ba02008-11-07 14:05:41 -0800296/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100297 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800298 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100299 * @obj: object pointer, used to generate unique ID
300 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800301 *
Dave Airlief453ba02008-11-07 14:05:41 -0800302 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100303 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
304 * modeset identifiers are _not_ reference counted. Hence don't use this for
305 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800306 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100307 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800308 * New unique (relative to other objects in @dev) integer identifier for the
309 * object.
310 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100311int drm_mode_object_get(struct drm_device *dev,
312 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800313{
Dave Airlie2ee39452014-07-24 11:53:45 +1000314 return drm_mode_object_get_reg(dev, obj, obj_type, true);
315}
Dave Airlief453ba02008-11-07 14:05:41 -0800316
Dave Airlie2ee39452014-07-24 11:53:45 +1000317static void drm_mode_object_register(struct drm_device *dev,
318 struct drm_mode_object *obj)
319{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000320 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlie2ee39452014-07-24 11:53:45 +1000321 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000322 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800323}
324
325/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100326 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800327 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100328 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800329 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100330 * Free @id from @dev's unique identifier pool. Note that despite the _get
331 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
332 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800333 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100334void drm_mode_object_put(struct drm_device *dev,
335 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800336{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000337 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800338 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000339 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800340}
341
Rob Clark98f75de2014-05-30 11:37:03 -0400342static struct drm_mode_object *_object_find(struct drm_device *dev,
343 uint32_t id, uint32_t type)
344{
345 struct drm_mode_object *obj = NULL;
346
347 mutex_lock(&dev->mode_config.idr_mutex);
348 obj = idr_find(&dev->mode_config.crtc_idr, id);
Daniel Vetter168c02e2014-07-24 12:12:45 +0200349 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
350 obj = NULL;
351 if (obj && obj->id != id)
352 obj = NULL;
353 /* don't leak out unref'd fb's */
354 if (obj && (obj->type == DRM_MODE_OBJECT_FB))
Rob Clark98f75de2014-05-30 11:37:03 -0400355 obj = NULL;
356 mutex_unlock(&dev->mode_config.idr_mutex);
357
358 return obj;
359}
360
Daniel Vetter786b99e2012-12-02 21:53:40 +0100361/**
362 * drm_mode_object_find - look up a drm object with static lifetime
363 * @dev: drm device
364 * @id: id of the mode object
365 * @type: type of the mode object
366 *
367 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400368 * are reference counted, they need special treatment. Even with
369 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
370 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100371 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200372struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
373 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800374{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000375 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800376
Daniel Vetter786b99e2012-12-02 21:53:40 +0100377 /* Framebuffers are reference counted and need their own lookup
378 * function.*/
379 WARN_ON(type == DRM_MODE_OBJECT_FB);
Rob Clark98f75de2014-05-30 11:37:03 -0400380 obj = _object_find(dev, id, type);
Dave Airlief453ba02008-11-07 14:05:41 -0800381 return obj;
382}
383EXPORT_SYMBOL(drm_mode_object_find);
384
385/**
Dave Airlief453ba02008-11-07 14:05:41 -0800386 * drm_framebuffer_init - initialize a framebuffer
387 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100388 * @fb: framebuffer to be initialized
389 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800390 *
Dave Airlief453ba02008-11-07 14:05:41 -0800391 * Allocates an ID for the framebuffer's parent mode object, sets its mode
392 * functions & device file and adds it to the master fd list.
393 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100394 * IMPORTANT:
395 * This functions publishes the fb and makes it available for concurrent access
396 * by other users. Which means by this point the fb _must_ be fully set up -
397 * since all the fb attributes are invariant over its lifetime, no further
398 * locking but only correct reference counting is required.
399 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100400 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200401 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800402 */
403int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
404 const struct drm_framebuffer_funcs *funcs)
405{
406 int ret;
407
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100408 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000409 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100410 INIT_LIST_HEAD(&fb->filp_head);
411 fb->dev = dev;
412 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000413
Dave Airlief453ba02008-11-07 14:05:41 -0800414 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200415 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100416 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800417
Dave Airlief453ba02008-11-07 14:05:41 -0800418 dev->mode_config.num_fb++;
419 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100420out:
421 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800422
423 return 0;
424}
425EXPORT_SYMBOL(drm_framebuffer_init);
426
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200427/* dev->mode_config.fb_lock must be held! */
428static void __drm_framebuffer_unregister(struct drm_device *dev,
429 struct drm_framebuffer *fb)
430{
431 mutex_lock(&dev->mode_config.idr_mutex);
432 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
433 mutex_unlock(&dev->mode_config.idr_mutex);
434
435 fb->base.id = 0;
436}
437
Rob Clarkf7eff602012-09-05 21:48:38 +0000438static void drm_framebuffer_free(struct kref *kref)
439{
440 struct drm_framebuffer *fb =
441 container_of(kref, struct drm_framebuffer, refcount);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200442 struct drm_device *dev = fb->dev;
443
444 /*
445 * The lookup idr holds a weak reference, which has not necessarily been
446 * removed at this point. Check for that.
447 */
448 mutex_lock(&dev->mode_config.fb_lock);
449 if (fb->base.id) {
450 /* Mark fb as reaped and drop idr ref. */
451 __drm_framebuffer_unregister(dev, fb);
452 }
453 mutex_unlock(&dev->mode_config.fb_lock);
454
Rob Clarkf7eff602012-09-05 21:48:38 +0000455 fb->funcs->destroy(fb);
456}
457
Daniel Vetter2b677e82012-12-10 21:16:05 +0100458static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
459 uint32_t id)
460{
461 struct drm_mode_object *obj = NULL;
462 struct drm_framebuffer *fb;
463
464 mutex_lock(&dev->mode_config.idr_mutex);
465 obj = idr_find(&dev->mode_config.crtc_idr, id);
466 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
467 fb = NULL;
468 else
469 fb = obj_to_fb(obj);
470 mutex_unlock(&dev->mode_config.idr_mutex);
471
472 return fb;
473}
474
Rob Clarkf7eff602012-09-05 21:48:38 +0000475/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100476 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
477 * @dev: drm device
478 * @id: id of the fb object
479 *
480 * If successful, this grabs an additional reference to the framebuffer -
481 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100482 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100483 */
484struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
485 uint32_t id)
486{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100487 struct drm_framebuffer *fb;
488
489 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100490 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200491 if (fb) {
492 if (!kref_get_unless_zero(&fb->refcount))
493 fb = NULL;
494 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100495 mutex_unlock(&dev->mode_config.fb_lock);
496
497 return fb;
498}
499EXPORT_SYMBOL(drm_framebuffer_lookup);
500
501/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000502 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100503 * @fb: framebuffer to unref
504 *
505 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000506 */
507void drm_framebuffer_unreference(struct drm_framebuffer *fb)
508{
Rob Clark82912722014-03-18 10:07:08 -0400509 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000510 kref_put(&fb->refcount, drm_framebuffer_free);
511}
512EXPORT_SYMBOL(drm_framebuffer_unreference);
513
514/**
515 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100516 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100517 *
518 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000519 */
520void drm_framebuffer_reference(struct drm_framebuffer *fb)
521{
Rob Clark82912722014-03-18 10:07:08 -0400522 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000523 kref_get(&fb->refcount);
524}
525EXPORT_SYMBOL(drm_framebuffer_reference);
526
Daniel Vetter2b677e82012-12-10 21:16:05 +0100527static void drm_framebuffer_free_bug(struct kref *kref)
528{
529 BUG();
530}
531
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100532static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
533{
Rob Clark82912722014-03-18 10:07:08 -0400534 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100535 kref_put(&fb->refcount, drm_framebuffer_free_bug);
536}
537
Dave Airlief453ba02008-11-07 14:05:41 -0800538/**
Daniel Vetter36206362012-12-10 20:42:17 +0100539 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
540 * @fb: fb to unregister
541 *
542 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
543 * those used for fbdev. Note that the caller must hold a reference of it's own,
544 * i.e. the object may not be destroyed through this call (since it'll lead to a
545 * locking inversion).
546 */
547void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
548{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100549 struct drm_device *dev = fb->dev;
550
551 mutex_lock(&dev->mode_config.fb_lock);
552 /* Mark fb as reaped and drop idr ref. */
553 __drm_framebuffer_unregister(dev, fb);
554 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100555}
556EXPORT_SYMBOL(drm_framebuffer_unregister_private);
557
558/**
Dave Airlief453ba02008-11-07 14:05:41 -0800559 * drm_framebuffer_cleanup - remove a framebuffer object
560 * @fb: framebuffer to remove
561 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100562 * Cleanup framebuffer. This function is intended to be used from the drivers
563 * ->destroy callback. It can also be used to clean up driver private
564 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100565 *
566 * Note that this function does not remove the fb from active usuage - if it is
567 * still used anywhere, hilarity can ensue since userspace could call getfb on
568 * the id and get back -EINVAL. Obviously no concern at driver unload time.
569 *
570 * Also, the framebuffer will not be removed from the lookup idr - for
571 * user-created framebuffers this will happen in in the rmfb ioctl. For
572 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
573 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800574 */
575void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
576{
577 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100578
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100579 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000580 list_del(&fb->head);
581 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100582 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000583}
584EXPORT_SYMBOL(drm_framebuffer_cleanup);
585
586/**
587 * drm_framebuffer_remove - remove and unreference a framebuffer object
588 * @fb: framebuffer to remove
589 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000590 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100591 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100592 * passed-in framebuffer. Might take the modeset locks.
593 *
594 * Note that this function optimizes the cleanup away if the caller holds the
595 * last reference to the framebuffer. It is also guaranteed to not take the
596 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000597 */
598void drm_framebuffer_remove(struct drm_framebuffer *fb)
599{
600 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800601 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800602 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000603 struct drm_mode_set set;
604 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800605
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100606 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100607
Daniel Vetterb62584e2012-12-11 16:51:35 +0100608 /*
609 * drm ABI mandates that we remove any deleted framebuffers from active
610 * useage. But since most sane clients only remove framebuffers they no
611 * longer need, try to optimize this away.
612 *
613 * Since we're holding a reference ourselves, observing a refcount of 1
614 * means that we're the last holder and can skip it. Also, the refcount
615 * can never increase from 1 again, so we don't need any barriers or
616 * locks.
617 *
618 * Note that userspace could try to race with use and instate a new
619 * usage _after_ we've cleared all current ones. End result will be an
620 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
621 * in this manner.
622 */
623 if (atomic_read(&fb->refcount.refcount) > 1) {
624 drm_modeset_lock_all(dev);
625 /* remove from any CRTC */
626 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700627 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100628 /* should turn off the crtc */
629 memset(&set, 0, sizeof(struct drm_mode_set));
630 set.crtc = crtc;
631 set.fb = NULL;
632 ret = drm_mode_set_config_internal(&set);
633 if (ret)
634 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
635 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000636 }
Dave Airlief453ba02008-11-07 14:05:41 -0800637
Daniel Vetterb62584e2012-12-11 16:51:35 +0100638 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300639 if (plane->fb == fb)
640 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800641 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100642 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800643 }
644
Rob Clarkf7eff602012-09-05 21:48:38 +0000645 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800646}
Rob Clarkf7eff602012-09-05 21:48:38 +0000647EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800648
Rob Clark51fd3712013-11-19 12:10:12 -0500649DEFINE_WW_CLASS(crtc_ww_class);
650
Dave Airlief453ba02008-11-07 14:05:41 -0800651/**
Matt Ropere13161a2014-04-01 15:22:38 -0700652 * drm_crtc_init_with_planes - Initialise a new CRTC object with
653 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800654 * @dev: DRM device
655 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700656 * @primary: Primary plane for CRTC
657 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800658 * @funcs: callbacks for the new CRTC
659 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000660 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200661 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100662 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200663 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800664 */
Matt Ropere13161a2014-04-01 15:22:38 -0700665int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
666 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700667 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700668 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800669{
Rob Clark51fd3712013-11-19 12:10:12 -0500670 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200671 int ret;
672
Dave Airlief453ba02008-11-07 14:05:41 -0800673 crtc->dev = dev;
674 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000675 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800676
Rob Clark51fd3712013-11-19 12:10:12 -0500677 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200678 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
679 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100680 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800681
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300682 crtc->base.properties = &crtc->properties;
683
Rob Clark51fd3712013-11-19 12:10:12 -0500684 list_add_tail(&crtc->head, &config->crtc_list);
685 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200686
Matt Ropere13161a2014-04-01 15:22:38 -0700687 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700688 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700689 if (primary)
690 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700691 if (cursor)
692 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700693
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100694 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800695}
Matt Ropere13161a2014-04-01 15:22:38 -0700696EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800697
698/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000699 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800700 * @crtc: CRTC to cleanup
701 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000702 * This function cleans up @crtc and removes it from the DRM mode setting
703 * core. Note that the function does *not* free the crtc structure itself,
704 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800705 */
706void drm_crtc_cleanup(struct drm_crtc *crtc)
707{
708 struct drm_device *dev = crtc->dev;
709
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000710 kfree(crtc->gamma_store);
711 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800712
Rob Clark51fd3712013-11-19 12:10:12 -0500713 drm_modeset_lock_fini(&crtc->mutex);
714
Dave Airlief453ba02008-11-07 14:05:41 -0800715 drm_mode_object_put(dev, &crtc->base);
716 list_del(&crtc->head);
717 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100718
719 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
720 if (crtc->state && crtc->funcs->atomic_destroy_state)
721 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100722
723 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800724}
725EXPORT_SYMBOL(drm_crtc_cleanup);
726
727/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000728 * drm_crtc_index - find the index of a registered CRTC
729 * @crtc: CRTC to find index for
730 *
731 * Given a registered CRTC, return the index of that CRTC within a DRM
732 * device's list of CRTCs.
733 */
734unsigned int drm_crtc_index(struct drm_crtc *crtc)
735{
736 unsigned int index = 0;
737 struct drm_crtc *tmp;
738
739 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
740 if (tmp == crtc)
741 return index;
742
743 index++;
744 }
745
746 BUG();
747}
748EXPORT_SYMBOL(drm_crtc_index);
749
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100750/*
Dave Airlief453ba02008-11-07 14:05:41 -0800751 * drm_mode_remove - remove and free a mode
752 * @connector: connector list to modify
753 * @mode: mode to remove
754 *
Dave Airlief453ba02008-11-07 14:05:41 -0800755 * Remove @mode from @connector's mode list, then free it.
756 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100757static void drm_mode_remove(struct drm_connector *connector,
758 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800759{
760 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100761 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800762}
Dave Airlief453ba02008-11-07 14:05:41 -0800763
764/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200765 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
766 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200767 *
768 * The kernel supports per-connector configration of its consoles through
769 * use of the video= parameter. This function parses that option and
770 * extracts the user's specified mode (or enable/disable status) for a
771 * particular connector. This is typically only used during the early fbdev
772 * setup.
773 */
774static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
775{
776 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
777 char *option = NULL;
778
779 if (fb_get_options(connector->name, &option))
780 return;
781
782 if (!drm_mode_parse_command_line_for_connector(option,
783 connector,
784 mode))
785 return;
786
787 if (mode->force) {
788 const char *s;
789
790 switch (mode->force) {
791 case DRM_FORCE_OFF:
792 s = "OFF";
793 break;
794 case DRM_FORCE_ON_DIGITAL:
795 s = "ON - dig";
796 break;
797 default:
798 case DRM_FORCE_ON:
799 s = "ON";
800 break;
801 }
802
803 DRM_INFO("forcing %s connector %s\n", connector->name, s);
804 connector->force = mode->force;
805 }
806
807 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
808 connector->name,
809 mode->xres, mode->yres,
810 mode->refresh_specified ? mode->refresh : 60,
811 mode->rb ? " reduced blanking" : "",
812 mode->margins ? " with margins" : "",
813 mode->interlace ? " interlaced" : "");
814}
815
816/**
Dave Airlief453ba02008-11-07 14:05:41 -0800817 * drm_connector_init - Init a preallocated connector
818 * @dev: DRM device
819 * @connector: the connector to init
820 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100821 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800822 *
Dave Airlief453ba02008-11-07 14:05:41 -0800823 * Initialises a preallocated connector. Connectors should be
824 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200825 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100826 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200827 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800828 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200829int drm_connector_init(struct drm_device *dev,
830 struct drm_connector *connector,
831 const struct drm_connector_funcs *funcs,
832 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800833{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200834 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400835 struct ida *connector_ida =
836 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200837
Daniel Vetter84849902012-12-02 00:28:11 +0100838 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800839
Dave Airlie2ee39452014-07-24 11:53:45 +1000840 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200841 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300842 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200843
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300844 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800845 connector->dev = dev;
846 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800847 connector->connector_type = connector_type;
848 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400849 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
850 if (connector->connector_type_id < 0) {
851 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300852 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400853 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300854 connector->name =
855 kasprintf(GFP_KERNEL, "%s-%d",
856 drm_connector_enum_list[connector_type].name,
857 connector->connector_type_id);
858 if (!connector->name) {
859 ret = -ENOMEM;
860 goto out_put;
861 }
862
Dave Airlief453ba02008-11-07 14:05:41 -0800863 INIT_LIST_HEAD(&connector->probed_modes);
864 INIT_LIST_HEAD(&connector->modes);
865 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000866 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800867
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200868 drm_connector_get_cmdline_mode(connector);
869
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100870 /* We should add connectors at the end to avoid upsetting the connector
871 * index too much. */
Dave Airlief453ba02008-11-07 14:05:41 -0800872 list_add_tail(&connector->head, &dev->mode_config.connector_list);
873 dev->mode_config.num_connector++;
874
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200875 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500876 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200877 dev->mode_config.edid_property,
878 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800879
Rob Clark58495562012-10-11 20:50:56 -0500880 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800881 dev->mode_config.dpms_property, 0);
882
Thomas Wood30f65702014-06-18 17:52:32 +0100883 connector->debugfs_entry = NULL;
884
Jani Nikula2abdd312014-05-14 16:58:19 +0300885out_put:
886 if (ret)
887 drm_mode_object_put(dev, &connector->base);
888
889out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100890 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200891
892 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800893}
894EXPORT_SYMBOL(drm_connector_init);
895
896/**
897 * drm_connector_cleanup - cleans up an initialised connector
898 * @connector: connector to cleanup
899 *
Dave Airlief453ba02008-11-07 14:05:41 -0800900 * Cleans up the connector but doesn't free the object.
901 */
902void drm_connector_cleanup(struct drm_connector *connector)
903{
904 struct drm_device *dev = connector->dev;
905 struct drm_display_mode *mode, *t;
906
Dave Airlie40d9b042014-10-20 16:29:33 +1000907 if (connector->tile_group) {
908 drm_mode_put_tile_group(dev, connector->tile_group);
909 connector->tile_group = NULL;
910 }
911
Dave Airlief453ba02008-11-07 14:05:41 -0800912 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
913 drm_mode_remove(connector, mode);
914
915 list_for_each_entry_safe(mode, t, &connector->modes, head)
916 drm_mode_remove(connector, mode);
917
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400918 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
919 connector->connector_type_id);
920
Dave Airlief453ba02008-11-07 14:05:41 -0800921 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300922 kfree(connector->name);
923 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800924 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000925 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100926
927 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
928 if (connector->state && connector->funcs->atomic_destroy_state)
929 connector->funcs->atomic_destroy_state(connector,
930 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100931
932 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800933}
934EXPORT_SYMBOL(drm_connector_cleanup);
935
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100936/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200937 * drm_connector_index - find the index of a registered connector
938 * @connector: connector to find index for
939 *
940 * Given a registered connector, return the index of that connector within a DRM
941 * device's list of connectors.
942 */
943unsigned int drm_connector_index(struct drm_connector *connector)
944{
945 unsigned int index = 0;
946 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100947 struct drm_mode_config *config = &connector->dev->mode_config;
948
949 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200950
951 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
952 if (tmp == connector)
953 return index;
954
955 index++;
956 }
957
958 BUG();
959}
960EXPORT_SYMBOL(drm_connector_index);
961
962/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100963 * drm_connector_register - register a connector
964 * @connector: the connector to register
965 *
966 * Register userspace interfaces for a connector
967 *
968 * Returns:
969 * Zero on success, error code on failure.
970 */
971int drm_connector_register(struct drm_connector *connector)
972{
Thomas Wood30f65702014-06-18 17:52:32 +0100973 int ret;
974
Dave Airlie2ee39452014-07-24 11:53:45 +1000975 drm_mode_object_register(connector->dev, &connector->base);
976
Thomas Wood30f65702014-06-18 17:52:32 +0100977 ret = drm_sysfs_connector_add(connector);
978 if (ret)
979 return ret;
980
981 ret = drm_debugfs_connector_add(connector);
982 if (ret) {
983 drm_sysfs_connector_remove(connector);
984 return ret;
985 }
986
987 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +0100988}
989EXPORT_SYMBOL(drm_connector_register);
990
991/**
992 * drm_connector_unregister - unregister a connector
993 * @connector: the connector to unregister
994 *
995 * Unregister userspace interfaces for a connector
996 */
997void drm_connector_unregister(struct drm_connector *connector)
998{
999 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001000 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001001}
1002EXPORT_SYMBOL(drm_connector_unregister);
1003
1004
1005/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001006 * drm_connector_unplug_all - unregister connector userspace interfaces
1007 * @dev: drm device
1008 *
1009 * This function unregisters all connector userspace interfaces in sysfs. Should
1010 * be call when the device is disconnected, e.g. from an usb driver's
1011 * ->disconnect callback.
1012 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001013void drm_connector_unplug_all(struct drm_device *dev)
1014{
1015 struct drm_connector *connector;
1016
1017 /* taking the mode config mutex ends up in a clash with sysfs */
1018 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001019 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001020
1021}
1022EXPORT_SYMBOL(drm_connector_unplug_all);
1023
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001024/**
1025 * drm_bridge_init - initialize a drm transcoder/bridge
1026 * @dev: drm device
1027 * @bridge: transcoder/bridge to set up
1028 * @funcs: bridge function table
1029 *
1030 * Initialises a preallocated bridge. Bridges should be
1031 * subclassed as part of driver connector objects.
1032 *
1033 * Returns:
1034 * Zero on success, error code on failure.
1035 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001036int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1037 const struct drm_bridge_funcs *funcs)
1038{
1039 int ret;
1040
1041 drm_modeset_lock_all(dev);
1042
1043 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1044 if (ret)
1045 goto out;
1046
1047 bridge->dev = dev;
1048 bridge->funcs = funcs;
1049
1050 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1051 dev->mode_config.num_bridge++;
1052
1053 out:
1054 drm_modeset_unlock_all(dev);
1055 return ret;
1056}
1057EXPORT_SYMBOL(drm_bridge_init);
1058
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001059/**
1060 * drm_bridge_cleanup - cleans up an initialised bridge
1061 * @bridge: bridge to cleanup
1062 *
1063 * Cleans up the bridge but doesn't free the object.
1064 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001065void drm_bridge_cleanup(struct drm_bridge *bridge)
1066{
1067 struct drm_device *dev = bridge->dev;
1068
1069 drm_modeset_lock_all(dev);
1070 drm_mode_object_put(dev, &bridge->base);
1071 list_del(&bridge->head);
1072 dev->mode_config.num_bridge--;
1073 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001074
1075 memset(bridge, 0, sizeof(*bridge));
Sean Paul3b336ec2013-08-14 16:47:37 -04001076}
1077EXPORT_SYMBOL(drm_bridge_cleanup);
1078
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001079/**
1080 * drm_encoder_init - Init a preallocated encoder
1081 * @dev: drm device
1082 * @encoder: the encoder to init
1083 * @funcs: callbacks for this encoder
1084 * @encoder_type: user visible type of the encoder
1085 *
1086 * Initialises a preallocated encoder. Encoder should be
1087 * subclassed as part of driver encoder objects.
1088 *
1089 * Returns:
1090 * Zero on success, error code on failure.
1091 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001092int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001093 struct drm_encoder *encoder,
1094 const struct drm_encoder_funcs *funcs,
1095 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001096{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001097 int ret;
1098
Daniel Vetter84849902012-12-02 00:28:11 +01001099 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001100
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001101 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1102 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001103 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001104
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001105 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001106 encoder->encoder_type = encoder_type;
1107 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001108 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1109 drm_encoder_enum_list[encoder_type].name,
1110 encoder->base.id);
1111 if (!encoder->name) {
1112 ret = -ENOMEM;
1113 goto out_put;
1114 }
Dave Airlief453ba02008-11-07 14:05:41 -08001115
1116 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1117 dev->mode_config.num_encoder++;
1118
Jani Nikulae5748942014-05-14 16:58:20 +03001119out_put:
1120 if (ret)
1121 drm_mode_object_put(dev, &encoder->base);
1122
1123out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001124 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001125
1126 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001127}
1128EXPORT_SYMBOL(drm_encoder_init);
1129
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001130/**
1131 * drm_encoder_cleanup - cleans up an initialised encoder
1132 * @encoder: encoder to cleanup
1133 *
1134 * Cleans up the encoder but doesn't free the object.
1135 */
Dave Airlief453ba02008-11-07 14:05:41 -08001136void drm_encoder_cleanup(struct drm_encoder *encoder)
1137{
1138 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001139
Daniel Vetter84849902012-12-02 00:28:11 +01001140 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001141 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001142 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001143 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001144 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001145 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001146
1147 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001148}
1149EXPORT_SYMBOL(drm_encoder_cleanup);
1150
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001151/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001152 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001153 * @dev: DRM device
1154 * @plane: plane object to init
1155 * @possible_crtcs: bitmask of possible CRTCs
1156 * @funcs: callbacks for the new plane
1157 * @formats: array of supported formats (%DRM_FORMAT_*)
1158 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001159 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001160 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001161 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001162 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001163 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001164 * Zero on success, error code on failure.
1165 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001166int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1167 unsigned long possible_crtcs,
1168 const struct drm_plane_funcs *funcs,
1169 const uint32_t *formats, uint32_t format_count,
1170 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001171{
Rob Clark6b4959f2014-12-18 16:01:53 -05001172 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001173 int ret;
1174
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001175 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1176 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001177 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001178
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001179 drm_modeset_lock_init(&plane->mutex);
1180
Rob Clark4d939142012-05-17 02:23:27 -06001181 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001182 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001183 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001184 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1185 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001186 if (!plane->format_types) {
1187 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1188 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001189 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001190 }
1191
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001192 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001193 plane->format_count = format_count;
1194 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001195 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001196
Rob Clark6b4959f2014-12-18 16:01:53 -05001197 list_add_tail(&plane->head, &config->plane_list);
1198 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001199 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001200 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001201
Rob Clark9922ab52014-04-01 20:16:57 -04001202 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001203 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001204 plane->type);
1205
Rob Clark6b4959f2014-12-18 16:01:53 -05001206 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1207 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1208 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1209 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1210 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1211 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1212 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1213 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1214 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1215 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1216 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1217 }
1218
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001219 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001220}
Matt Roperdc415ff2014-04-01 15:22:36 -07001221EXPORT_SYMBOL(drm_universal_plane_init);
1222
1223/**
1224 * drm_plane_init - Initialize a legacy plane
1225 * @dev: DRM device
1226 * @plane: plane object to init
1227 * @possible_crtcs: bitmask of possible CRTCs
1228 * @funcs: callbacks for the new plane
1229 * @formats: array of supported formats (%DRM_FORMAT_*)
1230 * @format_count: number of elements in @formats
1231 * @is_primary: plane type (primary vs overlay)
1232 *
1233 * Legacy API to initialize a DRM plane.
1234 *
1235 * New drivers should call drm_universal_plane_init() instead.
1236 *
1237 * Returns:
1238 * Zero on success, error code on failure.
1239 */
1240int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1241 unsigned long possible_crtcs,
1242 const struct drm_plane_funcs *funcs,
1243 const uint32_t *formats, uint32_t format_count,
1244 bool is_primary)
1245{
1246 enum drm_plane_type type;
1247
1248 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1249 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1250 formats, format_count, type);
1251}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001252EXPORT_SYMBOL(drm_plane_init);
1253
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001254/**
1255 * drm_plane_cleanup - Clean up the core plane usage
1256 * @plane: plane to cleanup
1257 *
1258 * This function cleans up @plane and removes it from the DRM mode setting
1259 * core. Note that the function does *not* free the plane structure itself,
1260 * this is the responsibility of the caller.
1261 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001262void drm_plane_cleanup(struct drm_plane *plane)
1263{
1264 struct drm_device *dev = plane->dev;
1265
Daniel Vetter84849902012-12-02 00:28:11 +01001266 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001267 kfree(plane->format_types);
1268 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001269
1270 BUG_ON(list_empty(&plane->head));
1271
1272 list_del(&plane->head);
1273 dev->mode_config.num_total_plane--;
1274 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1275 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001276 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001277
1278 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1279 if (plane->state && plane->funcs->atomic_destroy_state)
1280 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001281
1282 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001283}
1284EXPORT_SYMBOL(drm_plane_cleanup);
1285
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001286/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001287 * drm_plane_index - find the index of a registered plane
1288 * @plane: plane to find index for
1289 *
1290 * Given a registered plane, return the index of that CRTC within a DRM
1291 * device's list of planes.
1292 */
1293unsigned int drm_plane_index(struct drm_plane *plane)
1294{
1295 unsigned int index = 0;
1296 struct drm_plane *tmp;
1297
1298 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1299 if (tmp == plane)
1300 return index;
1301
1302 index++;
1303 }
1304
1305 BUG();
1306}
1307EXPORT_SYMBOL(drm_plane_index);
1308
1309/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001310 * drm_plane_force_disable - Forcibly disable a plane
1311 * @plane: plane to disable
1312 *
1313 * Forces the plane to be disabled.
1314 *
1315 * Used when the plane's current framebuffer is destroyed,
1316 * and when restoring fbdev mode.
1317 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001318void drm_plane_force_disable(struct drm_plane *plane)
1319{
1320 int ret;
1321
Daniel Vetter3d30a592014-07-27 13:42:42 +02001322 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001323 return;
1324
Daniel Vetter3d30a592014-07-27 13:42:42 +02001325 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001326 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001327 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001328 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001329 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001330 return;
1331 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001332 /* disconnect the plane from the fb and crtc: */
Daniel Vetter3d30a592014-07-27 13:42:42 +02001333 __drm_framebuffer_unreference(plane->old_fb);
1334 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001335 plane->fb = NULL;
1336 plane->crtc = NULL;
1337}
1338EXPORT_SYMBOL(drm_plane_force_disable);
1339
Rob Clark6b4959f2014-12-18 16:01:53 -05001340static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001341{
Rob Clark356af0e2014-12-18 16:01:52 -05001342 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001343
1344 /*
1345 * Standard properties (apply to all connectors)
1346 */
Rob Clark356af0e2014-12-18 16:01:52 -05001347 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001348 DRM_MODE_PROP_IMMUTABLE,
1349 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001350 if (!prop)
1351 return -ENOMEM;
1352 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001353
Rob Clark356af0e2014-12-18 16:01:52 -05001354 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001355 "DPMS", drm_dpms_enum_list,
1356 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001357 if (!prop)
1358 return -ENOMEM;
1359 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001360
Rob Clark356af0e2014-12-18 16:01:52 -05001361 prop = drm_property_create(dev,
1362 DRM_MODE_PROP_BLOB |
1363 DRM_MODE_PROP_IMMUTABLE,
1364 "PATH", 0);
1365 if (!prop)
1366 return -ENOMEM;
1367 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001368
Rob Clark356af0e2014-12-18 16:01:52 -05001369 prop = drm_property_create(dev,
1370 DRM_MODE_PROP_BLOB |
1371 DRM_MODE_PROP_IMMUTABLE,
1372 "TILE", 0);
1373 if (!prop)
1374 return -ENOMEM;
1375 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001376
Rob Clark6b4959f2014-12-18 16:01:53 -05001377 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001378 "type", drm_plane_type_enum_list,
1379 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001380 if (!prop)
1381 return -ENOMEM;
1382 dev->mode_config.plane_type_property = prop;
1383
1384 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1385 "SRC_X", 0, UINT_MAX);
1386 if (!prop)
1387 return -ENOMEM;
1388 dev->mode_config.prop_src_x = prop;
1389
1390 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1391 "SRC_Y", 0, UINT_MAX);
1392 if (!prop)
1393 return -ENOMEM;
1394 dev->mode_config.prop_src_y = prop;
1395
1396 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1397 "SRC_W", 0, UINT_MAX);
1398 if (!prop)
1399 return -ENOMEM;
1400 dev->mode_config.prop_src_w = prop;
1401
1402 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1403 "SRC_H", 0, UINT_MAX);
1404 if (!prop)
1405 return -ENOMEM;
1406 dev->mode_config.prop_src_h = prop;
1407
1408 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1409 "CRTC_X", INT_MIN, INT_MAX);
1410 if (!prop)
1411 return -ENOMEM;
1412 dev->mode_config.prop_crtc_x = prop;
1413
1414 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1415 "CRTC_Y", INT_MIN, INT_MAX);
1416 if (!prop)
1417 return -ENOMEM;
1418 dev->mode_config.prop_crtc_y = prop;
1419
1420 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1421 "CRTC_W", 0, INT_MAX);
1422 if (!prop)
1423 return -ENOMEM;
1424 dev->mode_config.prop_crtc_w = prop;
1425
1426 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1427 "CRTC_H", 0, INT_MAX);
1428 if (!prop)
1429 return -ENOMEM;
1430 dev->mode_config.prop_crtc_h = prop;
1431
1432 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1433 "FB_ID", DRM_MODE_OBJECT_FB);
1434 if (!prop)
1435 return -ENOMEM;
1436 dev->mode_config.prop_fb_id = prop;
1437
1438 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1439 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1440 if (!prop)
1441 return -ENOMEM;
1442 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001443
1444 return 0;
1445}
1446
Dave Airlief453ba02008-11-07 14:05:41 -08001447/**
1448 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1449 * @dev: DRM device
1450 *
1451 * Called by a driver the first time a DVI-I connector is made.
1452 */
1453int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1454{
1455 struct drm_property *dvi_i_selector;
1456 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001457
1458 if (dev->mode_config.dvi_i_select_subconnector_property)
1459 return 0;
1460
1461 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001462 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001463 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001464 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001465 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001466 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1467
Sascha Hauer4a67d392012-02-06 10:58:17 +01001468 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001469 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001470 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001471 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001472 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1473
1474 return 0;
1475}
1476EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1477
1478/**
1479 * drm_create_tv_properties - create TV specific connector properties
1480 * @dev: DRM device
1481 * @num_modes: number of different TV formats (modes) supported
1482 * @modes: array of pointers to strings containing name of each format
1483 *
1484 * Called by a driver's TV initialization routine, this function creates
1485 * the TV specific connector properties for a given device. Caller is
1486 * responsible for allocating a list of format names and passing them to
1487 * this routine.
1488 */
Thierry Reding2f763312014-10-13 12:45:57 +02001489int drm_mode_create_tv_properties(struct drm_device *dev,
1490 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001491 char *modes[])
1492{
1493 struct drm_property *tv_selector;
1494 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001495 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001496
1497 if (dev->mode_config.tv_select_subconnector_property)
1498 return 0;
1499
1500 /*
1501 * Basic connector properties
1502 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001503 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001504 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001505 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001506 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001507 dev->mode_config.tv_select_subconnector_property = tv_selector;
1508
1509 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001510 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1511 "subconnector",
1512 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001513 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001514 dev->mode_config.tv_subconnector_property = tv_subconnector;
1515
1516 /*
1517 * Other, TV specific properties: margins & TV modes.
1518 */
1519 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001520 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001521
1522 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001523 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001524
1525 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001526 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001527
1528 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001529 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001530
1531 dev->mode_config.tv_mode_property =
1532 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1533 "mode", num_modes);
1534 for (i = 0; i < num_modes; i++)
1535 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1536 i, modes[i]);
1537
Francisco Jerezb6b79022009-08-02 04:19:20 +02001538 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001539 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001540
1541 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001542 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001543
1544 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001545 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001546
Francisco Jereza75f0232009-08-12 02:30:10 +02001547 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001548 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001549
1550 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001551 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001552
1553 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001554 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001555
Dave Airlief453ba02008-11-07 14:05:41 -08001556 return 0;
1557}
1558EXPORT_SYMBOL(drm_mode_create_tv_properties);
1559
1560/**
1561 * drm_mode_create_scaling_mode_property - create scaling mode property
1562 * @dev: DRM device
1563 *
1564 * Called by a driver the first time it's needed, must be attached to desired
1565 * connectors.
1566 */
1567int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1568{
1569 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001570
1571 if (dev->mode_config.scaling_mode_property)
1572 return 0;
1573
1574 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001575 drm_property_create_enum(dev, 0, "scaling mode",
1576 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001577 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001578
1579 dev->mode_config.scaling_mode_property = scaling_mode;
1580
1581 return 0;
1582}
1583EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1584
1585/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301586 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1587 * @dev: DRM device
1588 *
1589 * Called by a driver the first time it's needed, must be attached to desired
1590 * connectors.
1591 *
1592 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001593 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301594 */
1595int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1596{
1597 if (dev->mode_config.aspect_ratio_property)
1598 return 0;
1599
1600 dev->mode_config.aspect_ratio_property =
1601 drm_property_create_enum(dev, 0, "aspect ratio",
1602 drm_aspect_ratio_enum_list,
1603 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1604
1605 if (dev->mode_config.aspect_ratio_property == NULL)
1606 return -ENOMEM;
1607
1608 return 0;
1609}
1610EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1611
1612/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001613 * drm_mode_create_dirty_property - create dirty property
1614 * @dev: DRM device
1615 *
1616 * Called by a driver the first time it's needed, must be attached to desired
1617 * connectors.
1618 */
1619int drm_mode_create_dirty_info_property(struct drm_device *dev)
1620{
1621 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001622
1623 if (dev->mode_config.dirty_info_property)
1624 return 0;
1625
1626 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001627 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001628 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001629 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001630 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001631 dev->mode_config.dirty_info_property = dirty_info;
1632
1633 return 0;
1634}
1635EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1636
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001637/**
1638 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1639 * @dev: DRM device
1640 *
1641 * Create the the suggested x/y offset property for connectors.
1642 */
1643int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1644{
1645 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1646 return 0;
1647
1648 dev->mode_config.suggested_x_property =
1649 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1650
1651 dev->mode_config.suggested_y_property =
1652 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1653
1654 if (dev->mode_config.suggested_x_property == NULL ||
1655 dev->mode_config.suggested_y_property == NULL)
1656 return -ENOMEM;
1657 return 0;
1658}
1659EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1660
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001661static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001662{
1663 uint32_t total_objects = 0;
1664
1665 total_objects += dev->mode_config.num_crtc;
1666 total_objects += dev->mode_config.num_connector;
1667 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001668 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001669
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001670 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001671 if (!group->id_list)
1672 return -ENOMEM;
1673
1674 group->num_crtcs = 0;
1675 group->num_connectors = 0;
1676 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001677 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001678 return 0;
1679}
1680
Dave Airliead222792014-05-02 13:22:19 +10001681void drm_mode_group_destroy(struct drm_mode_group *group)
1682{
1683 kfree(group->id_list);
1684 group->id_list = NULL;
1685}
1686
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001687/*
1688 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1689 * the drm core's responsibility to set up mode control groups.
1690 */
Dave Airlief453ba02008-11-07 14:05:41 -08001691int drm_mode_group_init_legacy_group(struct drm_device *dev,
1692 struct drm_mode_group *group)
1693{
1694 struct drm_crtc *crtc;
1695 struct drm_encoder *encoder;
1696 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001697 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001698 int ret;
1699
Thierry Reding0cc0b222014-12-10 13:03:37 +01001700 ret = drm_mode_group_init(dev, group);
1701 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001702 return ret;
1703
1704 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1705 group->id_list[group->num_crtcs++] = crtc->base.id;
1706
1707 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1708 group->id_list[group->num_crtcs + group->num_encoders++] =
1709 encoder->base.id;
1710
1711 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1712 group->id_list[group->num_crtcs + group->num_encoders +
1713 group->num_connectors++] = connector->base.id;
1714
Sean Paul3b336ec2013-08-14 16:47:37 -04001715 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1716 group->id_list[group->num_crtcs + group->num_encoders +
1717 group->num_connectors + group->num_bridges++] =
1718 bridge->base.id;
1719
Dave Airlief453ba02008-11-07 14:05:41 -08001720 return 0;
1721}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001722EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001723
Dave Airlie2390cd12014-06-05 14:01:29 +10001724void drm_reinit_primary_mode_group(struct drm_device *dev)
1725{
1726 drm_modeset_lock_all(dev);
1727 drm_mode_group_destroy(&dev->primary->mode_group);
1728 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1729 drm_modeset_unlock_all(dev);
1730}
1731EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1732
Dave Airlief453ba02008-11-07 14:05:41 -08001733/**
Dave Airlief453ba02008-11-07 14:05:41 -08001734 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1735 * @out: drm_mode_modeinfo struct to return to the user
1736 * @in: drm_display_mode to use
1737 *
Dave Airlief453ba02008-11-07 14:05:41 -08001738 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1739 * the user.
1740 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001741static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1742 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001743{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001744 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1745 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1746 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1747 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1748 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1749 "timing values too large for mode info\n");
1750
Dave Airlief453ba02008-11-07 14:05:41 -08001751 out->clock = in->clock;
1752 out->hdisplay = in->hdisplay;
1753 out->hsync_start = in->hsync_start;
1754 out->hsync_end = in->hsync_end;
1755 out->htotal = in->htotal;
1756 out->hskew = in->hskew;
1757 out->vdisplay = in->vdisplay;
1758 out->vsync_start = in->vsync_start;
1759 out->vsync_end = in->vsync_end;
1760 out->vtotal = in->vtotal;
1761 out->vscan = in->vscan;
1762 out->vrefresh = in->vrefresh;
1763 out->flags = in->flags;
1764 out->type = in->type;
1765 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1766 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1767}
1768
1769/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001770 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001771 * @out: drm_display_mode to return to the user
1772 * @in: drm_mode_modeinfo to use
1773 *
Dave Airlief453ba02008-11-07 14:05:41 -08001774 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1775 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001776 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001777 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001778 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001779 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001780static int drm_crtc_convert_umode(struct drm_display_mode *out,
1781 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001782{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001783 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1784 return -ERANGE;
1785
Damien Lespiau5848ad42013-09-27 12:11:50 +01001786 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1787 return -EINVAL;
1788
Dave Airlief453ba02008-11-07 14:05:41 -08001789 out->clock = in->clock;
1790 out->hdisplay = in->hdisplay;
1791 out->hsync_start = in->hsync_start;
1792 out->hsync_end = in->hsync_end;
1793 out->htotal = in->htotal;
1794 out->hskew = in->hskew;
1795 out->vdisplay = in->vdisplay;
1796 out->vsync_start = in->vsync_start;
1797 out->vsync_end = in->vsync_end;
1798 out->vtotal = in->vtotal;
1799 out->vscan = in->vscan;
1800 out->vrefresh = in->vrefresh;
1801 out->flags = in->flags;
1802 out->type = in->type;
1803 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1804 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001805
1806 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001807}
1808
1809/**
1810 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001811 * @dev: drm device for the ioctl
1812 * @data: data pointer for the ioctl
1813 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001814 *
Dave Airlief453ba02008-11-07 14:05:41 -08001815 * Construct a set of configuration description structures and return
1816 * them to the user, including CRTC, connector and framebuffer configuration.
1817 *
1818 * Called by the user via ioctl.
1819 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001820 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001821 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001822 */
1823int drm_mode_getresources(struct drm_device *dev, void *data,
1824 struct drm_file *file_priv)
1825{
1826 struct drm_mode_card_res *card_res = data;
1827 struct list_head *lh;
1828 struct drm_framebuffer *fb;
1829 struct drm_connector *connector;
1830 struct drm_crtc *crtc;
1831 struct drm_encoder *encoder;
1832 int ret = 0;
1833 int connector_count = 0;
1834 int crtc_count = 0;
1835 int fb_count = 0;
1836 int encoder_count = 0;
1837 int copied = 0, i;
1838 uint32_t __user *fb_id;
1839 uint32_t __user *crtc_id;
1840 uint32_t __user *connector_id;
1841 uint32_t __user *encoder_id;
1842 struct drm_mode_group *mode_group;
1843
Dave Airliefb3b06c2011-02-08 13:55:21 +10001844 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1845 return -EINVAL;
1846
Dave Airlief453ba02008-11-07 14:05:41 -08001847
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001848 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001849 /*
1850 * For the non-control nodes we need to limit the list of resources
1851 * by IDs in the group list for this node
1852 */
1853 list_for_each(lh, &file_priv->fbs)
1854 fb_count++;
1855
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001856 /* handle this in 4 parts */
1857 /* FBs */
1858 if (card_res->count_fbs >= fb_count) {
1859 copied = 0;
1860 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1861 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1862 if (put_user(fb->base.id, fb_id + copied)) {
1863 mutex_unlock(&file_priv->fbs_lock);
1864 return -EFAULT;
1865 }
1866 copied++;
1867 }
1868 }
1869 card_res->count_fbs = fb_count;
1870 mutex_unlock(&file_priv->fbs_lock);
1871
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001872 /* mode_config.mutex protects the connector list against e.g. DP MST
1873 * connector hot-adding. CRTC/Plane lists are invariant. */
1874 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001875 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001876
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001877 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001878 list_for_each(lh, &dev->mode_config.crtc_list)
1879 crtc_count++;
1880
1881 list_for_each(lh, &dev->mode_config.connector_list)
1882 connector_count++;
1883
1884 list_for_each(lh, &dev->mode_config.encoder_list)
1885 encoder_count++;
1886 } else {
1887
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001888 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001889 crtc_count = mode_group->num_crtcs;
1890 connector_count = mode_group->num_connectors;
1891 encoder_count = mode_group->num_encoders;
1892 }
1893
1894 card_res->max_height = dev->mode_config.max_height;
1895 card_res->min_height = dev->mode_config.min_height;
1896 card_res->max_width = dev->mode_config.max_width;
1897 card_res->min_width = dev->mode_config.min_width;
1898
Dave Airlief453ba02008-11-07 14:05:41 -08001899 /* CRTCs */
1900 if (card_res->count_crtcs >= crtc_count) {
1901 copied = 0;
1902 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001903 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001904 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1905 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001906 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001907 if (put_user(crtc->base.id, crtc_id + copied)) {
1908 ret = -EFAULT;
1909 goto out;
1910 }
1911 copied++;
1912 }
1913 } else {
1914 for (i = 0; i < mode_group->num_crtcs; i++) {
1915 if (put_user(mode_group->id_list[i],
1916 crtc_id + copied)) {
1917 ret = -EFAULT;
1918 goto out;
1919 }
1920 copied++;
1921 }
1922 }
1923 }
1924 card_res->count_crtcs = crtc_count;
1925
1926 /* Encoders */
1927 if (card_res->count_encoders >= encoder_count) {
1928 copied = 0;
1929 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001930 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001931 list_for_each_entry(encoder,
1932 &dev->mode_config.encoder_list,
1933 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001934 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001935 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001936 if (put_user(encoder->base.id, encoder_id +
1937 copied)) {
1938 ret = -EFAULT;
1939 goto out;
1940 }
1941 copied++;
1942 }
1943 } else {
1944 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1945 if (put_user(mode_group->id_list[i],
1946 encoder_id + copied)) {
1947 ret = -EFAULT;
1948 goto out;
1949 }
1950 copied++;
1951 }
1952
1953 }
1954 }
1955 card_res->count_encoders = encoder_count;
1956
1957 /* Connectors */
1958 if (card_res->count_connectors >= connector_count) {
1959 copied = 0;
1960 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001961 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001962 list_for_each_entry(connector,
1963 &dev->mode_config.connector_list,
1964 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001965 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1966 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001967 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001968 if (put_user(connector->base.id,
1969 connector_id + copied)) {
1970 ret = -EFAULT;
1971 goto out;
1972 }
1973 copied++;
1974 }
1975 } else {
1976 int start = mode_group->num_crtcs +
1977 mode_group->num_encoders;
1978 for (i = start; i < start + mode_group->num_connectors; i++) {
1979 if (put_user(mode_group->id_list[i],
1980 connector_id + copied)) {
1981 ret = -EFAULT;
1982 goto out;
1983 }
1984 copied++;
1985 }
1986 }
1987 }
1988 card_res->count_connectors = connector_count;
1989
Jerome Glisse94401062010-07-15 15:43:25 -04001990 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001991 card_res->count_connectors, card_res->count_encoders);
1992
1993out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001994 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001995 return ret;
1996}
1997
1998/**
1999 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002000 * @dev: drm device for the ioctl
2001 * @data: data pointer for the ioctl
2002 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002003 *
Dave Airlief453ba02008-11-07 14:05:41 -08002004 * Construct a CRTC configuration structure to return to the user.
2005 *
2006 * Called by the user via ioctl.
2007 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002008 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002009 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002010 */
2011int drm_mode_getcrtc(struct drm_device *dev,
2012 void *data, struct drm_file *file_priv)
2013{
2014 struct drm_mode_crtc *crtc_resp = data;
2015 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002016
Dave Airliefb3b06c2011-02-08 13:55:21 +10002017 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2018 return -EINVAL;
2019
Rob Clarka2b34e22013-10-05 16:36:52 -04002020 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002021 if (!crtc)
2022 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002023
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002024 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08002025 crtc_resp->x = crtc->x;
2026 crtc_resp->y = crtc->y;
2027 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07002028 if (crtc->primary->fb)
2029 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002030 else
2031 crtc_resp->fb_id = 0;
2032
2033 if (crtc->enabled) {
2034
2035 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
2036 crtc_resp->mode_valid = 1;
2037
2038 } else {
2039 crtc_resp->mode_valid = 0;
2040 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002041 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08002042
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002043 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002044}
2045
Damien Lespiau61d8e322013-09-25 16:45:22 +01002046static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2047 const struct drm_file *file_priv)
2048{
2049 /*
2050 * If user-space hasn't configured the driver to expose the stereo 3D
2051 * modes, don't expose them.
2052 */
2053 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2054 return false;
2055
2056 return true;
2057}
2058
Daniel Vetterabd69c52014-11-25 23:50:05 +01002059static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2060{
2061 /* For atomic drivers only state objects are synchronously updated and
2062 * protected by modeset locks, so check those first. */
2063 if (connector->state)
2064 return connector->state->best_encoder;
2065 return connector->encoder;
2066}
2067
Rob Clark95cbf112014-12-18 16:01:49 -05002068/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002069static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002070 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2071 uint32_t *arg_count_props)
2072{
Rob Clark88a48e22014-12-18 16:01:50 -05002073 int props_count;
2074 int i, ret, copied;
2075
2076 props_count = obj->properties->count;
2077 if (!atomic)
2078 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002079
2080 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002081 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002082 struct drm_property *prop = obj->properties->properties[i];
2083 uint64_t val;
2084
Rob Clark88a48e22014-12-18 16:01:50 -05002085 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2086 continue;
2087
Rob Clark95cbf112014-12-18 16:01:49 -05002088 ret = drm_object_property_get_value(obj, prop, &val);
2089 if (ret)
2090 return ret;
2091
2092 if (put_user(prop->base.id, prop_ptr + copied))
2093 return -EFAULT;
2094
2095 if (put_user(val, prop_values + copied))
2096 return -EFAULT;
2097
2098 copied++;
2099 }
2100 }
2101 *arg_count_props = props_count;
2102
2103 return 0;
2104}
2105
Dave Airlief453ba02008-11-07 14:05:41 -08002106/**
2107 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002108 * @dev: drm device for the ioctl
2109 * @data: data pointer for the ioctl
2110 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002111 *
Dave Airlief453ba02008-11-07 14:05:41 -08002112 * Construct a connector configuration structure to return to the user.
2113 *
2114 * Called by the user via ioctl.
2115 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002116 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002117 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002118 */
2119int drm_mode_getconnector(struct drm_device *dev, void *data,
2120 struct drm_file *file_priv)
2121{
2122 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002123 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002124 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002125 struct drm_display_mode *mode;
2126 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002127 int encoders_count = 0;
2128 int ret = 0;
2129 int copied = 0;
2130 int i;
2131 struct drm_mode_modeinfo u_mode;
2132 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002133 uint32_t __user *encoder_ptr;
2134
Dave Airliefb3b06c2011-02-08 13:55:21 +10002135 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2136 return -EINVAL;
2137
Dave Airlief453ba02008-11-07 14:05:41 -08002138 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2139
Jerome Glisse94401062010-07-15 15:43:25 -04002140 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002141
Daniel Vetter7b240562012-12-12 00:35:33 +01002142 mutex_lock(&dev->mode_config.mutex);
Rob Clarkccfc0862014-12-18 16:01:48 -05002143 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlief453ba02008-11-07 14:05:41 -08002144
Rob Clarka2b34e22013-10-05 16:36:52 -04002145 connector = drm_connector_find(dev, out_resp->connector_id);
2146 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002147 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002148 goto out;
2149 }
Dave Airlief453ba02008-11-07 14:05:41 -08002150
Thierry Reding01073b02014-12-10 13:03:38 +01002151 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2152 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002153 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002154
2155 if (out_resp->count_modes == 0) {
2156 connector->funcs->fill_modes(connector,
2157 dev->mode_config.max_width,
2158 dev->mode_config.max_height);
2159 }
2160
2161 /* delayed so we get modes regardless of pre-fill_modes state */
2162 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002163 if (drm_mode_expose_to_userspace(mode, file_priv))
2164 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002165
2166 out_resp->connector_id = connector->base.id;
2167 out_resp->connector_type = connector->connector_type;
2168 out_resp->connector_type_id = connector->connector_type_id;
2169 out_resp->mm_width = connector->display_info.width_mm;
2170 out_resp->mm_height = connector->display_info.height_mm;
2171 out_resp->subpixel = connector->display_info.subpixel_order;
2172 out_resp->connection = connector->status;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002173 encoder = drm_connector_get_encoder(connector);
2174 if (encoder)
2175 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002176 else
2177 out_resp->encoder_id = 0;
2178
2179 /*
2180 * This ioctl is called twice, once to determine how much space is
2181 * needed, and the 2nd time to fill it.
2182 */
2183 if ((out_resp->count_modes >= mode_count) && mode_count) {
2184 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002185 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002186 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002187 if (!drm_mode_expose_to_userspace(mode, file_priv))
2188 continue;
2189
Dave Airlief453ba02008-11-07 14:05:41 -08002190 drm_crtc_convert_to_umode(&u_mode, mode);
2191 if (copy_to_user(mode_ptr + copied,
2192 &u_mode, sizeof(u_mode))) {
2193 ret = -EFAULT;
2194 goto out;
2195 }
2196 copied++;
2197 }
2198 }
2199 out_resp->count_modes = mode_count;
2200
Rob Clark88a48e22014-12-18 16:01:50 -05002201 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002202 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2203 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2204 &out_resp->count_props);
2205 if (ret)
2206 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002207
2208 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2209 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002210 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002211 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2212 if (connector->encoder_ids[i] != 0) {
2213 if (put_user(connector->encoder_ids[i],
2214 encoder_ptr + copied)) {
2215 ret = -EFAULT;
2216 goto out;
2217 }
2218 copied++;
2219 }
2220 }
2221 }
2222 out_resp->count_encoders = encoders_count;
2223
2224out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002225 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Daniel Vetter7b240562012-12-12 00:35:33 +01002226 mutex_unlock(&dev->mode_config.mutex);
2227
Dave Airlief453ba02008-11-07 14:05:41 -08002228 return ret;
2229}
2230
Daniel Vetterabd69c52014-11-25 23:50:05 +01002231static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2232{
2233 struct drm_connector *connector;
2234 struct drm_device *dev = encoder->dev;
2235 bool uses_atomic = false;
2236
2237 /* For atomic drivers only state objects are synchronously updated and
2238 * protected by modeset locks, so check those first. */
2239 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2240 if (!connector->state)
2241 continue;
2242
2243 uses_atomic = true;
2244
2245 if (connector->state->best_encoder != encoder)
2246 continue;
2247
2248 return connector->state->crtc;
2249 }
2250
2251 /* Don't return stale data (e.g. pending async disable). */
2252 if (uses_atomic)
2253 return NULL;
2254
2255 return encoder->crtc;
2256}
2257
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002258/**
2259 * drm_mode_getencoder - get encoder configuration
2260 * @dev: drm device for the ioctl
2261 * @data: data pointer for the ioctl
2262 * @file_priv: drm file for the ioctl call
2263 *
2264 * Construct a encoder configuration structure to return to the user.
2265 *
2266 * Called by the user via ioctl.
2267 *
2268 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002269 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002270 */
Dave Airlief453ba02008-11-07 14:05:41 -08002271int drm_mode_getencoder(struct drm_device *dev, void *data,
2272 struct drm_file *file_priv)
2273{
2274 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002275 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002276 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002277
Dave Airliefb3b06c2011-02-08 13:55:21 +10002278 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2279 return -EINVAL;
2280
Rob Clarka2b34e22013-10-05 16:36:52 -04002281 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002282 if (!encoder)
2283 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002284
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002285 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002286 crtc = drm_encoder_get_crtc(encoder);
2287 if (crtc)
2288 enc_resp->crtc_id = crtc->base.id;
2289 else if (encoder->crtc)
Dave Airlief453ba02008-11-07 14:05:41 -08002290 enc_resp->crtc_id = encoder->crtc->base.id;
2291 else
2292 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002293 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2294
Dave Airlief453ba02008-11-07 14:05:41 -08002295 enc_resp->encoder_type = encoder->encoder_type;
2296 enc_resp->encoder_id = encoder->base.id;
2297 enc_resp->possible_crtcs = encoder->possible_crtcs;
2298 enc_resp->possible_clones = encoder->possible_clones;
2299
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002300 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002301}
2302
2303/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002304 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002305 * @dev: DRM device
2306 * @data: ioctl data
2307 * @file_priv: DRM file info
2308 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002309 * Construct a list of plane ids to return to the user.
2310 *
2311 * Called by the user via ioctl.
2312 *
2313 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002314 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002315 */
2316int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002317 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002318{
2319 struct drm_mode_get_plane_res *plane_resp = data;
2320 struct drm_mode_config *config;
2321 struct drm_plane *plane;
2322 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002323 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002324 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002325
2326 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2327 return -EINVAL;
2328
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002329 config = &dev->mode_config;
2330
Matt Roper681e7ec2014-04-01 15:22:42 -07002331 if (file_priv->universal_planes)
2332 num_planes = config->num_total_plane;
2333 else
2334 num_planes = config->num_overlay_plane;
2335
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002336 /*
2337 * This ioctl is called twice, once to determine how much space is
2338 * needed, and the 2nd time to fill it.
2339 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002340 if (num_planes &&
2341 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002342 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002343
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002344 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002345 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002346 /*
2347 * Unless userspace set the 'universal planes'
2348 * capability bit, only advertise overlays.
2349 */
2350 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2351 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002352 continue;
2353
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002354 if (put_user(plane->base.id, plane_ptr + copied))
2355 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002356 copied++;
2357 }
2358 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002359 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002360
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002361 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002362}
2363
2364/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002365 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002366 * @dev: DRM device
2367 * @data: ioctl data
2368 * @file_priv: DRM file info
2369 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002370 * Construct a plane configuration structure to return to the user.
2371 *
2372 * Called by the user via ioctl.
2373 *
2374 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002375 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002376 */
2377int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002378 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002379{
2380 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002381 struct drm_plane *plane;
2382 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002383
2384 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2385 return -EINVAL;
2386
Rob Clarka2b34e22013-10-05 16:36:52 -04002387 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002388 if (!plane)
2389 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002390
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002391 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002392 if (plane->crtc)
2393 plane_resp->crtc_id = plane->crtc->base.id;
2394 else
2395 plane_resp->crtc_id = 0;
2396
2397 if (plane->fb)
2398 plane_resp->fb_id = plane->fb->base.id;
2399 else
2400 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002401 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002402
2403 plane_resp->plane_id = plane->base.id;
2404 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002405 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002406
2407 /*
2408 * This ioctl is called twice, once to determine how much space is
2409 * needed, and the 2nd time to fill it.
2410 */
2411 if (plane->format_count &&
2412 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002413 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002414 if (copy_to_user(format_ptr,
2415 plane->format_types,
2416 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002417 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002418 }
2419 }
2420 plane_resp->count_format_types = plane->format_count;
2421
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002422 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002423}
2424
Matt Roperb36552b2014-06-10 08:28:09 -07002425/*
2426 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002427 *
Matt Roperb36552b2014-06-10 08:28:09 -07002428 * Note that we assume an extra reference has already been taken on fb. If the
2429 * update fails, this reference will be dropped before return; if it succeeds,
2430 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002431 *
Matt Roperb36552b2014-06-10 08:28:09 -07002432 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002433 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002434static int __setplane_internal(struct drm_plane *plane,
2435 struct drm_crtc *crtc,
2436 struct drm_framebuffer *fb,
2437 int32_t crtc_x, int32_t crtc_y,
2438 uint32_t crtc_w, uint32_t crtc_h,
2439 /* src_{x,y,w,h} values are 16.16 fixed point */
2440 uint32_t src_x, uint32_t src_y,
2441 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002442{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002443 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002444 unsigned int fb_width, fb_height;
Thierry Reding2f763312014-10-13 12:45:57 +02002445 unsigned int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002446
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002447 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002448 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002449 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002450 ret = plane->funcs->disable_plane(plane);
2451 if (!ret) {
2452 plane->crtc = NULL;
2453 plane->fb = NULL;
2454 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002455 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002456 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002457 goto out;
2458 }
2459
Matt Roper7f994f32014-05-29 08:06:51 -07002460 /* Check whether this plane is usable on this CRTC */
2461 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2462 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2463 ret = -EINVAL;
2464 goto out;
2465 }
2466
Ville Syrjälä62443be2011-12-20 00:06:47 +02002467 /* Check whether this plane supports the fb pixel format. */
2468 for (i = 0; i < plane->format_count; i++)
2469 if (fb->pixel_format == plane->format_types[i])
2470 break;
2471 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002472 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2473 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002474 ret = -EINVAL;
2475 goto out;
2476 }
2477
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002478 fb_width = fb->width << 16;
2479 fb_height = fb->height << 16;
2480
2481 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002482 if (src_w > fb_width ||
2483 src_x > fb_width - src_w ||
2484 src_h > fb_height ||
2485 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002486 DRM_DEBUG_KMS("Invalid source coordinates "
2487 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002488 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2489 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2490 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2491 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002492 ret = -ENOSPC;
2493 goto out;
2494 }
2495
Daniel Vetter3d30a592014-07-27 13:42:42 +02002496 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002497 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002498 crtc_x, crtc_y, crtc_w, crtc_h,
2499 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002500 if (!ret) {
2501 plane->crtc = crtc;
2502 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002503 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002504 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002505 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002506 }
2507
2508out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002509 if (fb)
2510 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002511 if (plane->old_fb)
2512 drm_framebuffer_unreference(plane->old_fb);
2513 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002514
2515 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002516}
Matt Roperb36552b2014-06-10 08:28:09 -07002517
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002518static int setplane_internal(struct drm_plane *plane,
2519 struct drm_crtc *crtc,
2520 struct drm_framebuffer *fb,
2521 int32_t crtc_x, int32_t crtc_y,
2522 uint32_t crtc_w, uint32_t crtc_h,
2523 /* src_{x,y,w,h} values are 16.16 fixed point */
2524 uint32_t src_x, uint32_t src_y,
2525 uint32_t src_w, uint32_t src_h)
2526{
2527 int ret;
2528
2529 drm_modeset_lock_all(plane->dev);
2530 ret = __setplane_internal(plane, crtc, fb,
2531 crtc_x, crtc_y, crtc_w, crtc_h,
2532 src_x, src_y, src_w, src_h);
2533 drm_modeset_unlock_all(plane->dev);
2534
2535 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002536}
2537
2538/**
2539 * drm_mode_setplane - configure a plane's configuration
2540 * @dev: DRM device
2541 * @data: ioctl data*
2542 * @file_priv: DRM file info
2543 *
2544 * Set plane configuration, including placement, fb, scaling, and other factors.
2545 * Or pass a NULL fb to disable (planes may be disabled without providing a
2546 * valid crtc).
2547 *
2548 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002549 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002550 */
2551int drm_mode_setplane(struct drm_device *dev, void *data,
2552 struct drm_file *file_priv)
2553{
2554 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002555 struct drm_plane *plane;
2556 struct drm_crtc *crtc = NULL;
2557 struct drm_framebuffer *fb = NULL;
2558
2559 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2560 return -EINVAL;
2561
2562 /* Give drivers some help against integer overflows */
2563 if (plane_req->crtc_w > INT_MAX ||
2564 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2565 plane_req->crtc_h > INT_MAX ||
2566 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2567 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2568 plane_req->crtc_w, plane_req->crtc_h,
2569 plane_req->crtc_x, plane_req->crtc_y);
2570 return -ERANGE;
2571 }
2572
2573 /*
2574 * First, find the plane, crtc, and fb objects. If not available,
2575 * we don't bother to call the driver.
2576 */
Rob Clark933f6222014-11-25 20:33:11 -05002577 plane = drm_plane_find(dev, plane_req->plane_id);
2578 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002579 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2580 plane_req->plane_id);
2581 return -ENOENT;
2582 }
Matt Roperb36552b2014-06-10 08:28:09 -07002583
2584 if (plane_req->fb_id) {
2585 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2586 if (!fb) {
2587 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2588 plane_req->fb_id);
2589 return -ENOENT;
2590 }
2591
Rob Clark933f6222014-11-25 20:33:11 -05002592 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2593 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002594 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2595 plane_req->crtc_id);
2596 return -ENOENT;
2597 }
Matt Roperb36552b2014-06-10 08:28:09 -07002598 }
2599
Matt Roper161d0dc2014-06-10 08:28:10 -07002600 /*
2601 * setplane_internal will take care of deref'ing either the old or new
2602 * framebuffer depending on success.
2603 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002604 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002605 plane_req->crtc_x, plane_req->crtc_y,
2606 plane_req->crtc_w, plane_req->crtc_h,
2607 plane_req->src_x, plane_req->src_y,
2608 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002609}
2610
2611/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002612 * drm_mode_set_config_internal - helper to call ->set_config
2613 * @set: modeset config to set
2614 *
2615 * This is a little helper to wrap internal calls to the ->set_config driver
2616 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002617 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002618 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002619 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002620 */
2621int drm_mode_set_config_internal(struct drm_mode_set *set)
2622{
2623 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002624 struct drm_framebuffer *fb;
2625 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002626 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002627
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002628 /*
2629 * NOTE: ->set_config can also disable other crtcs (if we steal all
2630 * connectors from it), hence we need to refcount the fbs across all
2631 * crtcs. Atomic modeset will have saner semantics ...
2632 */
2633 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002634 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002635
Daniel Vetterb0d12322012-12-11 01:07:12 +01002636 fb = set->fb;
2637
2638 ret = crtc->funcs->set_config(set);
2639 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002640 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002641 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002642 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002643
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002644 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002645 if (tmp->primary->fb)
2646 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002647 if (tmp->primary->old_fb)
2648 drm_framebuffer_unreference(tmp->primary->old_fb);
2649 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002650 }
2651
2652 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002653}
2654EXPORT_SYMBOL(drm_mode_set_config_internal);
2655
Matt Roperaf936292014-04-01 15:22:34 -07002656/**
2657 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2658 * CRTC viewport
2659 * @crtc: CRTC that framebuffer will be displayed on
2660 * @x: x panning
2661 * @y: y panning
2662 * @mode: mode that framebuffer will be displayed under
2663 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002664 */
Matt Roperaf936292014-04-01 15:22:34 -07002665int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2666 int x, int y,
2667 const struct drm_display_mode *mode,
2668 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002669
2670{
2671 int hdisplay, vdisplay;
2672
2673 hdisplay = mode->hdisplay;
2674 vdisplay = mode->vdisplay;
2675
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002676 if (drm_mode_is_stereo(mode)) {
2677 struct drm_display_mode adjusted = *mode;
2678
2679 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2680 hdisplay = adjusted.crtc_hdisplay;
2681 vdisplay = adjusted.crtc_vdisplay;
2682 }
2683
Damien Lespiauc11e9282013-09-25 16:45:30 +01002684 if (crtc->invert_dimensions)
2685 swap(hdisplay, vdisplay);
2686
2687 if (hdisplay > fb->width ||
2688 vdisplay > fb->height ||
2689 x > fb->width - hdisplay ||
2690 y > fb->height - vdisplay) {
2691 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2692 fb->width, fb->height, hdisplay, vdisplay, x, y,
2693 crtc->invert_dimensions ? " (inverted)" : "");
2694 return -ENOSPC;
2695 }
2696
2697 return 0;
2698}
Matt Roperaf936292014-04-01 15:22:34 -07002699EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002700
Daniel Vetter2d13b672012-12-11 13:47:23 +01002701/**
Dave Airlief453ba02008-11-07 14:05:41 -08002702 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002703 * @dev: drm device for the ioctl
2704 * @data: data pointer for the ioctl
2705 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002706 *
Dave Airlief453ba02008-11-07 14:05:41 -08002707 * Build a new CRTC configuration based on user request.
2708 *
2709 * Called by the user via ioctl.
2710 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002711 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002712 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002713 */
2714int drm_mode_setcrtc(struct drm_device *dev, void *data,
2715 struct drm_file *file_priv)
2716{
2717 struct drm_mode_config *config = &dev->mode_config;
2718 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002719 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002720 struct drm_connector **connector_set = NULL, *connector;
2721 struct drm_framebuffer *fb = NULL;
2722 struct drm_display_mode *mode = NULL;
2723 struct drm_mode_set set;
2724 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002725 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002726 int i;
2727
Dave Airliefb3b06c2011-02-08 13:55:21 +10002728 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2729 return -EINVAL;
2730
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002731 /* For some reason crtc x/y offsets are signed internally. */
2732 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2733 return -ERANGE;
2734
Daniel Vetter84849902012-12-02 00:28:11 +01002735 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002736 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2737 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002738 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002739 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002740 goto out;
2741 }
Jerome Glisse94401062010-07-15 15:43:25 -04002742 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002743
2744 if (crtc_req->mode_valid) {
2745 /* If we have a mode we need a framebuffer. */
2746 /* If we pass -1, set the mode with the currently bound fb */
2747 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002748 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002749 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2750 ret = -EINVAL;
2751 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002752 }
Matt Roperf4510a22014-04-01 15:22:40 -07002753 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002754 /* Make refcounting symmetric with the lookup path. */
2755 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002756 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002757 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2758 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002759 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2760 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002761 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002762 goto out;
2763 }
Dave Airlief453ba02008-11-07 14:05:41 -08002764 }
2765
2766 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002767 if (!mode) {
2768 ret = -ENOMEM;
2769 goto out;
2770 }
2771
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002772 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2773 if (ret) {
2774 DRM_DEBUG_KMS("Invalid mode\n");
2775 goto out;
2776 }
2777
Dave Airlief453ba02008-11-07 14:05:41 -08002778 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002779
Damien Lespiauc11e9282013-09-25 16:45:30 +01002780 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2781 mode, fb);
2782 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002783 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002784
Dave Airlief453ba02008-11-07 14:05:41 -08002785 }
2786
2787 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002788 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002789 ret = -EINVAL;
2790 goto out;
2791 }
2792
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002793 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002794 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002795 crtc_req->count_connectors);
2796 ret = -EINVAL;
2797 goto out;
2798 }
2799
2800 if (crtc_req->count_connectors > 0) {
2801 u32 out_id;
2802
2803 /* Avoid unbounded kernel memory allocation */
2804 if (crtc_req->count_connectors > config->num_connector) {
2805 ret = -EINVAL;
2806 goto out;
2807 }
2808
Thierry Reding2f6c5382014-12-10 13:03:36 +01002809 connector_set = kmalloc_array(crtc_req->count_connectors,
2810 sizeof(struct drm_connector *),
2811 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002812 if (!connector_set) {
2813 ret = -ENOMEM;
2814 goto out;
2815 }
2816
2817 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002818 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002819 if (get_user(out_id, &set_connectors_ptr[i])) {
2820 ret = -EFAULT;
2821 goto out;
2822 }
2823
Rob Clarka2b34e22013-10-05 16:36:52 -04002824 connector = drm_connector_find(dev, out_id);
2825 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002826 DRM_DEBUG_KMS("Connector id %d unknown\n",
2827 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002828 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002829 goto out;
2830 }
Jerome Glisse94401062010-07-15 15:43:25 -04002831 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2832 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002833 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002834
2835 connector_set[i] = connector;
2836 }
2837 }
2838
2839 set.crtc = crtc;
2840 set.x = crtc_req->x;
2841 set.y = crtc_req->y;
2842 set.mode = mode;
2843 set.connectors = connector_set;
2844 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002845 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002846 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002847
2848out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002849 if (fb)
2850 drm_framebuffer_unreference(fb);
2851
Dave Airlief453ba02008-11-07 14:05:41 -08002852 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002853 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002854 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002855 return ret;
2856}
2857
Matt Roper161d0dc2014-06-10 08:28:10 -07002858/**
2859 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2860 * universal plane handler call
2861 * @crtc: crtc to update cursor for
2862 * @req: data pointer for the ioctl
2863 * @file_priv: drm file for the ioctl call
2864 *
2865 * Legacy cursor ioctl's work directly with driver buffer handles. To
2866 * translate legacy ioctl calls into universal plane handler calls, we need to
2867 * wrap the native buffer handle in a drm_framebuffer.
2868 *
2869 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2870 * buffer with a pitch of 4*width; the universal plane interface should be used
2871 * directly in cases where the hardware can support other buffer settings and
2872 * userspace wants to make use of these capabilities.
2873 *
2874 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002875 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002876 */
2877static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2878 struct drm_mode_cursor2 *req,
2879 struct drm_file *file_priv)
2880{
2881 struct drm_device *dev = crtc->dev;
2882 struct drm_framebuffer *fb = NULL;
2883 struct drm_mode_fb_cmd2 fbreq = {
2884 .width = req->width,
2885 .height = req->height,
2886 .pixel_format = DRM_FORMAT_ARGB8888,
2887 .pitches = { req->width * 4 },
2888 .handles = { req->handle },
2889 };
2890 int32_t crtc_x, crtc_y;
2891 uint32_t crtc_w = 0, crtc_h = 0;
2892 uint32_t src_w = 0, src_h = 0;
2893 int ret = 0;
2894
2895 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002896 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002897
2898 /*
2899 * Obtain fb we'll be using (either new or existing) and take an extra
2900 * reference to it if fb != null. setplane will take care of dropping
2901 * the reference if the plane update fails.
2902 */
2903 if (req->flags & DRM_MODE_CURSOR_BO) {
2904 if (req->handle) {
2905 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2906 if (IS_ERR(fb)) {
2907 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2908 return PTR_ERR(fb);
2909 }
2910
2911 drm_framebuffer_reference(fb);
2912 } else {
2913 fb = NULL;
2914 }
2915 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002916 fb = crtc->cursor->fb;
2917 if (fb)
2918 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002919 }
2920
2921 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2922 crtc_x = req->x;
2923 crtc_y = req->y;
2924 } else {
2925 crtc_x = crtc->cursor_x;
2926 crtc_y = crtc->cursor_y;
2927 }
2928
2929 if (fb) {
2930 crtc_w = fb->width;
2931 crtc_h = fb->height;
2932 src_w = fb->width << 16;
2933 src_h = fb->height << 16;
2934 }
2935
2936 /*
2937 * setplane_internal will take care of deref'ing either the old or new
2938 * framebuffer depending on success.
2939 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002940 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002941 crtc_x, crtc_y, crtc_w, crtc_h,
2942 0, 0, src_w, src_h);
2943
2944 /* Update successful; save new cursor position, if necessary */
2945 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2946 crtc->cursor_x = req->x;
2947 crtc->cursor_y = req->y;
2948 }
2949
2950 return ret;
2951}
2952
Dave Airlie4c813d42013-06-20 11:48:52 +10002953static int drm_mode_cursor_common(struct drm_device *dev,
2954 struct drm_mode_cursor2 *req,
2955 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002956{
Dave Airlief453ba02008-11-07 14:05:41 -08002957 struct drm_crtc *crtc;
2958 int ret = 0;
2959
Dave Airliefb3b06c2011-02-08 13:55:21 +10002960 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2961 return -EINVAL;
2962
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002963 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002964 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002965
Rob Clarka2b34e22013-10-05 16:36:52 -04002966 crtc = drm_crtc_find(dev, req->crtc_id);
2967 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002968 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002969 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002970 }
Dave Airlief453ba02008-11-07 14:05:41 -08002971
Matt Roper161d0dc2014-06-10 08:28:10 -07002972 /*
2973 * If this crtc has a universal cursor plane, call that plane's update
2974 * handler rather than using legacy cursor handlers.
2975 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002976 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002977 if (crtc->cursor) {
2978 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2979 goto out;
2980 }
2981
Dave Airlief453ba02008-11-07 14:05:41 -08002982 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002983 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002984 ret = -ENXIO;
2985 goto out;
2986 }
2987 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002988 if (crtc->funcs->cursor_set2)
2989 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2990 req->width, req->height, req->hot_x, req->hot_y);
2991 else
2992 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2993 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002994 }
2995
2996 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2997 if (crtc->funcs->cursor_move) {
2998 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2999 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08003000 ret = -EFAULT;
3001 goto out;
3002 }
3003 }
3004out:
Daniel Vetterd059f652014-07-25 18:07:40 +02003005 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01003006
Dave Airlief453ba02008-11-07 14:05:41 -08003007 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10003008
3009}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003010
3011
3012/**
3013 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3014 * @dev: drm device for the ioctl
3015 * @data: data pointer for the ioctl
3016 * @file_priv: drm file for the ioctl call
3017 *
3018 * Set the cursor configuration based on user request.
3019 *
3020 * Called by the user via ioctl.
3021 *
3022 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003023 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003024 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003025int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003026 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003027{
3028 struct drm_mode_cursor *req = data;
3029 struct drm_mode_cursor2 new_req;
3030
3031 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3032 new_req.hot_x = new_req.hot_y = 0;
3033
3034 return drm_mode_cursor_common(dev, &new_req, file_priv);
3035}
3036
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003037/**
3038 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3039 * @dev: drm device for the ioctl
3040 * @data: data pointer for the ioctl
3041 * @file_priv: drm file for the ioctl call
3042 *
3043 * Set the cursor configuration based on user request. This implements the 2nd
3044 * version of the cursor ioctl, which allows userspace to additionally specify
3045 * the hotspot of the pointer.
3046 *
3047 * Called by the user via ioctl.
3048 *
3049 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003050 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003051 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003052int drm_mode_cursor2_ioctl(struct drm_device *dev,
3053 void *data, struct drm_file *file_priv)
3054{
3055 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003056
Dave Airlie4c813d42013-06-20 11:48:52 +10003057 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003058}
3059
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003060/**
3061 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3062 * @bpp: bits per pixels
3063 * @depth: bit depth per pixel
3064 *
3065 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3066 * Useful in fbdev emulation code, since that deals in those values.
3067 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003068uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3069{
3070 uint32_t fmt;
3071
3072 switch (bpp) {
3073 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003074 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003075 break;
3076 case 16:
3077 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003078 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003079 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003080 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003081 break;
3082 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003083 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003084 break;
3085 case 32:
3086 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003087 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003088 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003089 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003090 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003091 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003092 break;
3093 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003094 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3095 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003096 break;
3097 }
3098
3099 return fmt;
3100}
3101EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3102
Dave Airlief453ba02008-11-07 14:05:41 -08003103/**
3104 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003105 * @dev: drm device for the ioctl
3106 * @data: data pointer for the ioctl
3107 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003108 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003109 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003110 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003111 *
3112 * Called by the user via ioctl.
3113 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003114 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003115 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003116 */
3117int drm_mode_addfb(struct drm_device *dev,
3118 void *data, struct drm_file *file_priv)
3119{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003120 struct drm_mode_fb_cmd *or = data;
3121 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003122 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003123
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003124 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003125 r.fb_id = or->fb_id;
3126 r.width = or->width;
3127 r.height = or->height;
3128 r.pitches[0] = or->pitch;
3129 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3130 r.handles[0] = or->handle;
3131
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003132 ret = drm_mode_addfb2(dev, &r, file_priv);
3133 if (ret)
3134 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003135
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003136 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003137
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003138 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003139}
3140
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003141static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003142{
3143 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3144
3145 switch (format) {
3146 case DRM_FORMAT_C8:
3147 case DRM_FORMAT_RGB332:
3148 case DRM_FORMAT_BGR233:
3149 case DRM_FORMAT_XRGB4444:
3150 case DRM_FORMAT_XBGR4444:
3151 case DRM_FORMAT_RGBX4444:
3152 case DRM_FORMAT_BGRX4444:
3153 case DRM_FORMAT_ARGB4444:
3154 case DRM_FORMAT_ABGR4444:
3155 case DRM_FORMAT_RGBA4444:
3156 case DRM_FORMAT_BGRA4444:
3157 case DRM_FORMAT_XRGB1555:
3158 case DRM_FORMAT_XBGR1555:
3159 case DRM_FORMAT_RGBX5551:
3160 case DRM_FORMAT_BGRX5551:
3161 case DRM_FORMAT_ARGB1555:
3162 case DRM_FORMAT_ABGR1555:
3163 case DRM_FORMAT_RGBA5551:
3164 case DRM_FORMAT_BGRA5551:
3165 case DRM_FORMAT_RGB565:
3166 case DRM_FORMAT_BGR565:
3167 case DRM_FORMAT_RGB888:
3168 case DRM_FORMAT_BGR888:
3169 case DRM_FORMAT_XRGB8888:
3170 case DRM_FORMAT_XBGR8888:
3171 case DRM_FORMAT_RGBX8888:
3172 case DRM_FORMAT_BGRX8888:
3173 case DRM_FORMAT_ARGB8888:
3174 case DRM_FORMAT_ABGR8888:
3175 case DRM_FORMAT_RGBA8888:
3176 case DRM_FORMAT_BGRA8888:
3177 case DRM_FORMAT_XRGB2101010:
3178 case DRM_FORMAT_XBGR2101010:
3179 case DRM_FORMAT_RGBX1010102:
3180 case DRM_FORMAT_BGRX1010102:
3181 case DRM_FORMAT_ARGB2101010:
3182 case DRM_FORMAT_ABGR2101010:
3183 case DRM_FORMAT_RGBA1010102:
3184 case DRM_FORMAT_BGRA1010102:
3185 case DRM_FORMAT_YUYV:
3186 case DRM_FORMAT_YVYU:
3187 case DRM_FORMAT_UYVY:
3188 case DRM_FORMAT_VYUY:
3189 case DRM_FORMAT_AYUV:
3190 case DRM_FORMAT_NV12:
3191 case DRM_FORMAT_NV21:
3192 case DRM_FORMAT_NV16:
3193 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003194 case DRM_FORMAT_NV24:
3195 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003196 case DRM_FORMAT_YUV410:
3197 case DRM_FORMAT_YVU410:
3198 case DRM_FORMAT_YUV411:
3199 case DRM_FORMAT_YVU411:
3200 case DRM_FORMAT_YUV420:
3201 case DRM_FORMAT_YVU420:
3202 case DRM_FORMAT_YUV422:
3203 case DRM_FORMAT_YVU422:
3204 case DRM_FORMAT_YUV444:
3205 case DRM_FORMAT_YVU444:
3206 return 0;
3207 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003208 DRM_DEBUG_KMS("invalid pixel format %s\n",
3209 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003210 return -EINVAL;
3211 }
3212}
3213
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003214static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003215{
3216 int ret, hsub, vsub, num_planes, i;
3217
3218 ret = format_check(r);
3219 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003220 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3221 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003222 return ret;
3223 }
3224
3225 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3226 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3227 num_planes = drm_format_num_planes(r->pixel_format);
3228
3229 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003230 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003231 return -EINVAL;
3232 }
3233
3234 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003235 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003236 return -EINVAL;
3237 }
3238
3239 for (i = 0; i < num_planes; i++) {
3240 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003241 unsigned int height = r->height / (i != 0 ? vsub : 1);
3242 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003243
3244 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003245 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003246 return -EINVAL;
3247 }
3248
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003249 if ((uint64_t) width * cpp > UINT_MAX)
3250 return -ERANGE;
3251
3252 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3253 return -ERANGE;
3254
3255 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003256 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003257 return -EINVAL;
3258 }
3259 }
3260
3261 return 0;
3262}
3263
Matt Roperc394c2b2014-06-10 08:28:08 -07003264static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3265 struct drm_mode_fb_cmd2 *r,
3266 struct drm_file *file_priv)
3267{
3268 struct drm_mode_config *config = &dev->mode_config;
3269 struct drm_framebuffer *fb;
3270 int ret;
3271
3272 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3273 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3274 return ERR_PTR(-EINVAL);
3275 }
3276
3277 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3278 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3279 r->width, config->min_width, config->max_width);
3280 return ERR_PTR(-EINVAL);
3281 }
3282 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3283 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3284 r->height, config->min_height, config->max_height);
3285 return ERR_PTR(-EINVAL);
3286 }
3287
3288 ret = framebuffer_check(r);
3289 if (ret)
3290 return ERR_PTR(ret);
3291
3292 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3293 if (IS_ERR(fb)) {
3294 DRM_DEBUG_KMS("could not create framebuffer\n");
3295 return fb;
3296 }
3297
3298 mutex_lock(&file_priv->fbs_lock);
3299 r->fb_id = fb->base.id;
3300 list_add(&fb->filp_head, &file_priv->fbs);
3301 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3302 mutex_unlock(&file_priv->fbs_lock);
3303
3304 return fb;
3305}
3306
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003307/**
3308 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003309 * @dev: drm device for the ioctl
3310 * @data: data pointer for the ioctl
3311 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003312 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003313 * Add a new FB to the specified CRTC, given a user request with format. This is
3314 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3315 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003316 *
3317 * Called by the user via ioctl.
3318 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003319 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003320 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003321 */
3322int drm_mode_addfb2(struct drm_device *dev,
3323 void *data, struct drm_file *file_priv)
3324{
Dave Airlief453ba02008-11-07 14:05:41 -08003325 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003326
Dave Airliefb3b06c2011-02-08 13:55:21 +10003327 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3328 return -EINVAL;
3329
Matt Roperc394c2b2014-06-10 08:28:08 -07003330 fb = add_framebuffer_internal(dev, data, file_priv);
3331 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003332 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003333
Matt Roperc394c2b2014-06-10 08:28:08 -07003334 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003335}
3336
3337/**
3338 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003339 * @dev: drm device for the ioctl
3340 * @data: data pointer for the ioctl
3341 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003342 *
Dave Airlief453ba02008-11-07 14:05:41 -08003343 * Remove the FB specified by the user.
3344 *
3345 * Called by the user via ioctl.
3346 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003347 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003348 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003349 */
3350int drm_mode_rmfb(struct drm_device *dev,
3351 void *data, struct drm_file *file_priv)
3352{
Dave Airlief453ba02008-11-07 14:05:41 -08003353 struct drm_framebuffer *fb = NULL;
3354 struct drm_framebuffer *fbl = NULL;
3355 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003356 int found = 0;
3357
Dave Airliefb3b06c2011-02-08 13:55:21 +10003358 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3359 return -EINVAL;
3360
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003361 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003362 mutex_lock(&dev->mode_config.fb_lock);
3363 fb = __drm_framebuffer_lookup(dev, *id);
3364 if (!fb)
3365 goto fail_lookup;
3366
Dave Airlief453ba02008-11-07 14:05:41 -08003367 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3368 if (fb == fbl)
3369 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003370 if (!found)
3371 goto fail_lookup;
3372
3373 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3374 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003375
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003376 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003377 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003378 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003379
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003380 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003381
Daniel Vetter2b677e82012-12-10 21:16:05 +01003382 return 0;
3383
3384fail_lookup:
3385 mutex_unlock(&dev->mode_config.fb_lock);
3386 mutex_unlock(&file_priv->fbs_lock);
3387
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003388 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003389}
3390
3391/**
3392 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003393 * @dev: drm device for the ioctl
3394 * @data: data pointer for the ioctl
3395 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003396 *
Dave Airlief453ba02008-11-07 14:05:41 -08003397 * Lookup the FB given its ID and return info about it.
3398 *
3399 * Called by the user via ioctl.
3400 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003401 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003402 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003403 */
3404int drm_mode_getfb(struct drm_device *dev,
3405 void *data, struct drm_file *file_priv)
3406{
3407 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003408 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003409 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003410
Dave Airliefb3b06c2011-02-08 13:55:21 +10003411 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3412 return -EINVAL;
3413
Daniel Vetter786b99e2012-12-02 21:53:40 +01003414 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003415 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003416 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003417
3418 r->height = fb->height;
3419 r->width = fb->width;
3420 r->depth = fb->depth;
3421 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003422 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003423 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003424 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003425 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003426 ret = fb->funcs->create_handle(fb, file_priv,
3427 &r->handle);
3428 } else {
3429 /* GET_FB() is an unprivileged ioctl so we must not
3430 * return a buffer-handle to non-master processes! For
3431 * backwards-compatibility reasons, we cannot make
3432 * GET_FB() privileged, so just return an invalid handle
3433 * for non-masters. */
3434 r->handle = 0;
3435 ret = 0;
3436 }
3437 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003438 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003439 }
Dave Airlief453ba02008-11-07 14:05:41 -08003440
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003441 drm_framebuffer_unreference(fb);
3442
Dave Airlief453ba02008-11-07 14:05:41 -08003443 return ret;
3444}
3445
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003446/**
3447 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3448 * @dev: drm device for the ioctl
3449 * @data: data pointer for the ioctl
3450 * @file_priv: drm file for the ioctl call
3451 *
3452 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3453 * rectangle list. Generic userspace which does frontbuffer rendering must call
3454 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3455 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3456 *
3457 * Modesetting drivers which always update the frontbuffer do not need to
3458 * implement the corresponding ->dirty framebuffer callback.
3459 *
3460 * Called by the user via ioctl.
3461 *
3462 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003463 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003464 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003465int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3466 void *data, struct drm_file *file_priv)
3467{
3468 struct drm_clip_rect __user *clips_ptr;
3469 struct drm_clip_rect *clips = NULL;
3470 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003471 struct drm_framebuffer *fb;
3472 unsigned flags;
3473 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003474 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003475
Dave Airliefb3b06c2011-02-08 13:55:21 +10003476 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3477 return -EINVAL;
3478
Daniel Vetter786b99e2012-12-02 21:53:40 +01003479 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003480 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003481 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003482
3483 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003484 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003485
3486 if (!num_clips != !clips_ptr) {
3487 ret = -EINVAL;
3488 goto out_err1;
3489 }
3490
3491 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3492
3493 /* If userspace annotates copy, clips must come in pairs */
3494 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3495 ret = -EINVAL;
3496 goto out_err1;
3497 }
3498
3499 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003500 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3501 ret = -EINVAL;
3502 goto out_err1;
3503 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003504 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003505 if (!clips) {
3506 ret = -ENOMEM;
3507 goto out_err1;
3508 }
3509
3510 ret = copy_from_user(clips, clips_ptr,
3511 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003512 if (ret) {
3513 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003514 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003515 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003516 }
3517
3518 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003519 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3520 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003521 } else {
3522 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003523 }
3524
3525out_err2:
3526 kfree(clips);
3527out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003528 drm_framebuffer_unreference(fb);
3529
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003530 return ret;
3531}
3532
3533
Dave Airlief453ba02008-11-07 14:05:41 -08003534/**
3535 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003536 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003537 *
Dave Airlief453ba02008-11-07 14:05:41 -08003538 * Destroy all the FBs associated with @filp.
3539 *
3540 * Called by the user via ioctl.
3541 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003542 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003543 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003544 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003545void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003546{
Dave Airlief453ba02008-11-07 14:05:41 -08003547 struct drm_device *dev = priv->minor->dev;
3548 struct drm_framebuffer *fb, *tfb;
3549
Daniel Vetter1b116292014-09-24 21:51:06 +02003550 /*
3551 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003552 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003553 * avoid upsetting lockdep since the universal cursor code adds a
3554 * framebuffer while holding mutex locks.
3555 *
3556 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3557 * locks is impossible here since no one else but this function can get
3558 * at it any more.
3559 */
Dave Airlief453ba02008-11-07 14:05:41 -08003560 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003561
3562 mutex_lock(&dev->mode_config.fb_lock);
3563 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3564 __drm_framebuffer_unregister(dev, fb);
3565 mutex_unlock(&dev->mode_config.fb_lock);
3566
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003567 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003568
3569 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003570 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003571 }
Dave Airlief453ba02008-11-07 14:05:41 -08003572}
3573
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003574/**
3575 * drm_property_create - create a new property type
3576 * @dev: drm device
3577 * @flags: flags specifying the property type
3578 * @name: name of the property
3579 * @num_values: number of pre-defined values
3580 *
3581 * This creates a new generic drm property which can then be attached to a drm
3582 * object with drm_object_attach_property. The returned property object must be
3583 * freed with drm_property_destroy.
3584 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003585 * Note that the DRM core keeps a per-device list of properties and that, if
3586 * drm_mode_config_cleanup() is called, it will destroy all properties created
3587 * by the driver.
3588 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003589 * Returns:
3590 * A pointer to the newly created property on success, NULL on failure.
3591 */
Dave Airlief453ba02008-11-07 14:05:41 -08003592struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3593 const char *name, int num_values)
3594{
3595 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003596 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003597
3598 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3599 if (!property)
3600 return NULL;
3601
Rob Clark98f75de2014-05-30 11:37:03 -04003602 property->dev = dev;
3603
Dave Airlief453ba02008-11-07 14:05:41 -08003604 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003605 property->values = kcalloc(num_values, sizeof(uint64_t),
3606 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003607 if (!property->values)
3608 goto fail;
3609 }
3610
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003611 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3612 if (ret)
3613 goto fail;
3614
Dave Airlief453ba02008-11-07 14:05:41 -08003615 property->flags = flags;
3616 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003617 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003618
Vinson Lee471dd2e2011-11-10 11:55:40 -08003619 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003620 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003621 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3622 }
Dave Airlief453ba02008-11-07 14:05:41 -08003623
3624 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003625
3626 WARN_ON(!drm_property_type_valid(property));
3627
Dave Airlief453ba02008-11-07 14:05:41 -08003628 return property;
3629fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003630 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003631 kfree(property);
3632 return NULL;
3633}
3634EXPORT_SYMBOL(drm_property_create);
3635
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003636/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003637 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003638 * @dev: drm device
3639 * @flags: flags specifying the property type
3640 * @name: name of the property
3641 * @props: enumeration lists with property values
3642 * @num_values: number of pre-defined values
3643 *
3644 * This creates a new generic drm property which can then be attached to a drm
3645 * object with drm_object_attach_property. The returned property object must be
3646 * freed with drm_property_destroy.
3647 *
3648 * Userspace is only allowed to set one of the predefined values for enumeration
3649 * properties.
3650 *
3651 * Returns:
3652 * A pointer to the newly created property on success, NULL on failure.
3653 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003654struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3655 const char *name,
3656 const struct drm_prop_enum_list *props,
3657 int num_values)
3658{
3659 struct drm_property *property;
3660 int i, ret;
3661
3662 flags |= DRM_MODE_PROP_ENUM;
3663
3664 property = drm_property_create(dev, flags, name, num_values);
3665 if (!property)
3666 return NULL;
3667
3668 for (i = 0; i < num_values; i++) {
3669 ret = drm_property_add_enum(property, i,
3670 props[i].type,
3671 props[i].name);
3672 if (ret) {
3673 drm_property_destroy(dev, property);
3674 return NULL;
3675 }
3676 }
3677
3678 return property;
3679}
3680EXPORT_SYMBOL(drm_property_create_enum);
3681
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003682/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003683 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003684 * @dev: drm device
3685 * @flags: flags specifying the property type
3686 * @name: name of the property
3687 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003688 * @num_props: size of the @props array
3689 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003690 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003691 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003692 * object with drm_object_attach_property. The returned property object must be
3693 * freed with drm_property_destroy.
3694 *
3695 * Compared to plain enumeration properties userspace is allowed to set any
3696 * or'ed together combination of the predefined property bitflag values
3697 *
3698 * Returns:
3699 * A pointer to the newly created property on success, NULL on failure.
3700 */
Rob Clark49e27542012-05-17 02:23:26 -06003701struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3702 int flags, const char *name,
3703 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303704 int num_props,
3705 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003706{
3707 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303708 int i, ret, index = 0;
3709 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003710
3711 flags |= DRM_MODE_PROP_BITMASK;
3712
3713 property = drm_property_create(dev, flags, name, num_values);
3714 if (!property)
3715 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303716 for (i = 0; i < num_props; i++) {
3717 if (!(supported_bits & (1ULL << props[i].type)))
3718 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003719
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303720 if (WARN_ON(index >= num_values)) {
3721 drm_property_destroy(dev, property);
3722 return NULL;
3723 }
3724
3725 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003726 props[i].type,
3727 props[i].name);
3728 if (ret) {
3729 drm_property_destroy(dev, property);
3730 return NULL;
3731 }
3732 }
3733
3734 return property;
3735}
3736EXPORT_SYMBOL(drm_property_create_bitmask);
3737
Rob Clarkebc44cf2012-09-12 22:22:31 -05003738static struct drm_property *property_create_range(struct drm_device *dev,
3739 int flags, const char *name,
3740 uint64_t min, uint64_t max)
3741{
3742 struct drm_property *property;
3743
3744 property = drm_property_create(dev, flags, name, 2);
3745 if (!property)
3746 return NULL;
3747
3748 property->values[0] = min;
3749 property->values[1] = max;
3750
3751 return property;
3752}
3753
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003754/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003755 * drm_property_create_range - create a new ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003756 * @dev: drm device
3757 * @flags: flags specifying the property type
3758 * @name: name of the property
3759 * @min: minimum value of the property
3760 * @max: maximum value of the property
3761 *
3762 * This creates a new generic drm property which can then be attached to a drm
3763 * object with drm_object_attach_property. The returned property object must be
3764 * freed with drm_property_destroy.
3765 *
Masanari Iida32197aa2014-10-20 23:53:13 +09003766 * Userspace is allowed to set any integer value in the (min, max) range
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003767 * inclusive.
3768 *
3769 * Returns:
3770 * A pointer to the newly created property on success, NULL on failure.
3771 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003772struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3773 const char *name,
3774 uint64_t min, uint64_t max)
3775{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003776 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3777 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003778}
3779EXPORT_SYMBOL(drm_property_create_range);
3780
Rob Clarkebc44cf2012-09-12 22:22:31 -05003781struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3782 int flags, const char *name,
3783 int64_t min, int64_t max)
3784{
3785 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3786 name, I642U64(min), I642U64(max));
3787}
3788EXPORT_SYMBOL(drm_property_create_signed_range);
3789
Rob Clark98f75de2014-05-30 11:37:03 -04003790struct drm_property *drm_property_create_object(struct drm_device *dev,
3791 int flags, const char *name, uint32_t type)
3792{
3793 struct drm_property *property;
3794
3795 flags |= DRM_MODE_PROP_OBJECT;
3796
3797 property = drm_property_create(dev, flags, name, 1);
3798 if (!property)
3799 return NULL;
3800
3801 property->values[0] = type;
3802
3803 return property;
3804}
3805EXPORT_SYMBOL(drm_property_create_object);
3806
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003807/**
3808 * drm_property_add_enum - add a possible value to an enumeration property
3809 * @property: enumeration property to change
3810 * @index: index of the new enumeration
3811 * @value: value of the new enumeration
3812 * @name: symbolic name of the new enumeration
3813 *
3814 * This functions adds enumerations to a property.
3815 *
3816 * It's use is deprecated, drivers should use one of the more specific helpers
3817 * to directly create the property with all enumerations already attached.
3818 *
3819 * Returns:
3820 * Zero on success, error code on failure.
3821 */
Dave Airlief453ba02008-11-07 14:05:41 -08003822int drm_property_add_enum(struct drm_property *property, int index,
3823 uint64_t value, const char *name)
3824{
3825 struct drm_property_enum *prop_enum;
3826
Rob Clark5ea22f22014-05-30 11:34:01 -04003827 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3828 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003829 return -EINVAL;
3830
3831 /*
3832 * Bitmask enum properties have the additional constraint of values
3833 * from 0 to 63
3834 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003835 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3836 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003837 return -EINVAL;
3838
Daniel Vetter3758b342014-11-19 18:38:10 +01003839 if (!list_empty(&property->enum_list)) {
3840 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003841 if (prop_enum->value == value) {
3842 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3843 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3844 return 0;
3845 }
3846 }
3847 }
3848
3849 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3850 if (!prop_enum)
3851 return -ENOMEM;
3852
3853 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3854 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3855 prop_enum->value = value;
3856
3857 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003858 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003859 return 0;
3860}
3861EXPORT_SYMBOL(drm_property_add_enum);
3862
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003863/**
3864 * drm_property_destroy - destroy a drm property
3865 * @dev: drm device
3866 * @property: property to destry
3867 *
3868 * This function frees a property including any attached resources like
3869 * enumeration values.
3870 */
Dave Airlief453ba02008-11-07 14:05:41 -08003871void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3872{
3873 struct drm_property_enum *prop_enum, *pt;
3874
Daniel Vetter3758b342014-11-19 18:38:10 +01003875 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003876 list_del(&prop_enum->head);
3877 kfree(prop_enum);
3878 }
3879
3880 if (property->num_values)
3881 kfree(property->values);
3882 drm_mode_object_put(dev, &property->base);
3883 list_del(&property->head);
3884 kfree(property);
3885}
3886EXPORT_SYMBOL(drm_property_destroy);
3887
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003888/**
3889 * drm_object_attach_property - attach a property to a modeset object
3890 * @obj: drm modeset object
3891 * @property: property to attach
3892 * @init_val: initial value of the property
3893 *
3894 * This attaches the given property to the modeset object with the given initial
3895 * value. Currently this function cannot fail since the properties are stored in
3896 * a statically sized array.
3897 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003898void drm_object_attach_property(struct drm_mode_object *obj,
3899 struct drm_property *property,
3900 uint64_t init_val)
3901{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003902 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003903
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003904 if (count == DRM_OBJECT_MAX_PROPERTY) {
3905 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3906 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3907 "you see this message on the same object type.\n",
3908 obj->type);
3909 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003910 }
3911
Rob Clarkb17cd752014-12-16 18:05:30 -05003912 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003913 obj->properties->values[count] = init_val;
3914 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05003915 if (property->flags & DRM_MODE_PROP_ATOMIC)
3916 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003917}
3918EXPORT_SYMBOL(drm_object_attach_property);
3919
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003920/**
3921 * drm_object_property_set_value - set the value of a property
3922 * @obj: drm mode object to set property value for
3923 * @property: property to set
3924 * @val: value the property should be set to
3925 *
3926 * This functions sets a given property on a given object. This function only
3927 * changes the software state of the property, it does not call into the
3928 * driver's ->set_property callback.
3929 *
3930 * Returns:
3931 * Zero on success, error code on failure.
3932 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003933int drm_object_property_set_value(struct drm_mode_object *obj,
3934 struct drm_property *property, uint64_t val)
3935{
3936 int i;
3937
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003938 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003939 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003940 obj->properties->values[i] = val;
3941 return 0;
3942 }
3943 }
3944
3945 return -EINVAL;
3946}
3947EXPORT_SYMBOL(drm_object_property_set_value);
3948
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003949/**
3950 * drm_object_property_get_value - retrieve the value of a property
3951 * @obj: drm mode object to get property value from
3952 * @property: property to retrieve
3953 * @val: storage for the property value
3954 *
3955 * This function retrieves the softare state of the given property for the given
3956 * property. Since there is no driver callback to retrieve the current property
3957 * value this might be out of sync with the hardware, depending upon the driver
3958 * and property.
3959 *
3960 * Returns:
3961 * Zero on success, error code on failure.
3962 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003963int drm_object_property_get_value(struct drm_mode_object *obj,
3964 struct drm_property *property, uint64_t *val)
3965{
3966 int i;
3967
Rob Clark88a48e22014-12-18 16:01:50 -05003968 /* read-only properties bypass atomic mechanism and still store
3969 * their value in obj->properties->values[].. mostly to avoid
3970 * having to deal w/ EDID and similar props in atomic paths:
3971 */
3972 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
3973 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
3974 return drm_atomic_get_property(obj, property, val);
3975
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003976 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003977 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003978 *val = obj->properties->values[i];
3979 return 0;
3980 }
3981 }
3982
3983 return -EINVAL;
3984}
3985EXPORT_SYMBOL(drm_object_property_get_value);
3986
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003987/**
Daniel Vetter1a498632014-11-19 18:38:09 +01003988 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003989 * @dev: DRM device
3990 * @data: ioctl data
3991 * @file_priv: DRM file info
3992 *
Daniel Vetter1a498632014-11-19 18:38:09 +01003993 * This function retrieves the metadata for a given property, like the different
3994 * possible values for an enum property or the limits for a range property.
3995 *
3996 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003997 *
3998 * Called by the user via ioctl.
3999 *
4000 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004001 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004002 */
Dave Airlief453ba02008-11-07 14:05:41 -08004003int drm_mode_getproperty_ioctl(struct drm_device *dev,
4004 void *data, struct drm_file *file_priv)
4005{
Dave Airlief453ba02008-11-07 14:05:41 -08004006 struct drm_mode_get_property *out_resp = data;
4007 struct drm_property *property;
4008 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004009 int value_count = 0;
4010 int ret = 0, i;
4011 int copied;
4012 struct drm_property_enum *prop_enum;
4013 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004014 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004015
Dave Airliefb3b06c2011-02-08 13:55:21 +10004016 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4017 return -EINVAL;
4018
Daniel Vetter84849902012-12-02 00:28:11 +01004019 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004020 property = drm_property_find(dev, out_resp->prop_id);
4021 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004022 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004023 goto done;
4024 }
Dave Airlief453ba02008-11-07 14:05:41 -08004025
Rob Clark5ea22f22014-05-30 11:34:01 -04004026 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4027 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004028 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004029 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004030 }
4031
4032 value_count = property->num_values;
4033
4034 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4035 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4036 out_resp->flags = property->flags;
4037
4038 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004039 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004040 for (i = 0; i < value_count; i++) {
4041 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4042 ret = -EFAULT;
4043 goto done;
4044 }
4045 }
4046 }
4047 out_resp->count_values = value_count;
4048
Rob Clark5ea22f22014-05-30 11:34:01 -04004049 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4050 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004051 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4052 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004053 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004054 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004055
4056 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4057 ret = -EFAULT;
4058 goto done;
4059 }
4060
4061 if (copy_to_user(&enum_ptr[copied].name,
4062 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4063 ret = -EFAULT;
4064 goto done;
4065 }
4066 copied++;
4067 }
4068 }
4069 out_resp->count_enum_blobs = enum_count;
4070 }
4071
Daniel Vetter3758b342014-11-19 18:38:10 +01004072 /*
4073 * NOTE: The idea seems to have been to use this to read all the blob
4074 * property values. But nothing ever added them to the corresponding
4075 * list, userspace always used the special-purpose get_blob ioctl to
4076 * read the value for a blob property. It also doesn't make a lot of
4077 * sense to return values here when everything else is just metadata for
4078 * the property itself.
4079 */
4080 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4081 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004082done:
Daniel Vetter84849902012-12-02 00:28:11 +01004083 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004084 return ret;
4085}
4086
Thierry Redingecbbe592014-05-13 11:36:13 +02004087static struct drm_property_blob *
4088drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004089 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004090{
4091 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004092 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004093
4094 if (!length || !data)
4095 return NULL;
4096
4097 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4098 if (!blob)
4099 return NULL;
4100
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004101 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4102 if (ret) {
4103 kfree(blob);
4104 return NULL;
4105 }
4106
Dave Airlief453ba02008-11-07 14:05:41 -08004107 blob->length = length;
4108
4109 memcpy(blob->data, data, length);
4110
Dave Airlief453ba02008-11-07 14:05:41 -08004111 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4112 return blob;
4113}
4114
4115static void drm_property_destroy_blob(struct drm_device *dev,
4116 struct drm_property_blob *blob)
4117{
4118 drm_mode_object_put(dev, &blob->base);
4119 list_del(&blob->head);
4120 kfree(blob);
4121}
4122
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004123/**
4124 * drm_mode_getblob_ioctl - get the contents of a blob property value
4125 * @dev: DRM device
4126 * @data: ioctl data
4127 * @file_priv: DRM file info
4128 *
4129 * This function retrieves the contents of a blob property. The value stored in
4130 * an object's blob property is just a normal modeset object id.
4131 *
4132 * Called by the user via ioctl.
4133 *
4134 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004135 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004136 */
Dave Airlief453ba02008-11-07 14:05:41 -08004137int drm_mode_getblob_ioctl(struct drm_device *dev,
4138 void *data, struct drm_file *file_priv)
4139{
Dave Airlief453ba02008-11-07 14:05:41 -08004140 struct drm_mode_get_blob *out_resp = data;
4141 struct drm_property_blob *blob;
4142 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004143 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004144
Dave Airliefb3b06c2011-02-08 13:55:21 +10004145 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4146 return -EINVAL;
4147
Daniel Vetter84849902012-12-02 00:28:11 +01004148 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004149 blob = drm_property_blob_find(dev, out_resp->blob_id);
4150 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004151 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004152 goto done;
4153 }
Dave Airlief453ba02008-11-07 14:05:41 -08004154
4155 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004156 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004157 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004158 ret = -EFAULT;
4159 goto done;
4160 }
4161 }
4162 out_resp->length = blob->length;
4163
4164done:
Daniel Vetter84849902012-12-02 00:28:11 +01004165 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004166 return ret;
4167}
4168
Dave Airliecc7096f2014-10-22 12:03:04 +10004169/**
4170 * drm_mode_connector_set_path_property - set tile property on connector
4171 * @connector: connector to set property on.
4172 * @path: path to use for property.
4173 *
4174 * This creates a property to expose to userspace to specify a
4175 * connector path. This is mainly used for DisplayPort MST where
4176 * connectors have a topology and we want to allow userspace to give
4177 * them more meaningful names.
4178 *
4179 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004180 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004181 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004182int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004183 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004184{
4185 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004186 size_t size = strlen(path) + 1;
4187 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004188
4189 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4190 size, path);
4191 if (!connector->path_blob_ptr)
4192 return -EINVAL;
4193
4194 ret = drm_object_property_set_value(&connector->base,
4195 dev->mode_config.path_property,
4196 connector->path_blob_ptr->base.id);
4197 return ret;
4198}
4199EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4200
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004201/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004202 * drm_mode_connector_set_tile_property - set tile property on connector
4203 * @connector: connector to set property on.
4204 *
4205 * This looks up the tile information for a connector, and creates a
4206 * property for userspace to parse if it exists. The property is of
4207 * the form of 8 integers using ':' as a separator.
4208 *
4209 * Returns:
4210 * Zero on success, errno on failure.
4211 */
4212int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4213{
4214 struct drm_device *dev = connector->dev;
4215 int ret, size;
4216 char tile[256];
4217
4218 if (connector->tile_blob_ptr)
4219 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4220
4221 if (!connector->has_tile) {
4222 connector->tile_blob_ptr = NULL;
4223 ret = drm_object_property_set_value(&connector->base,
4224 dev->mode_config.tile_property, 0);
4225 return ret;
4226 }
4227
4228 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4229 connector->tile_group->id, connector->tile_is_single_monitor,
4230 connector->num_h_tile, connector->num_v_tile,
4231 connector->tile_h_loc, connector->tile_v_loc,
4232 connector->tile_h_size, connector->tile_v_size);
4233 size = strlen(tile) + 1;
4234
4235 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4236 size, tile);
4237 if (!connector->tile_blob_ptr)
4238 return -EINVAL;
4239
4240 ret = drm_object_property_set_value(&connector->base,
4241 dev->mode_config.tile_property,
4242 connector->tile_blob_ptr->base.id);
4243 return ret;
4244}
4245EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4246
4247/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004248 * drm_mode_connector_update_edid_property - update the edid property of a connector
4249 * @connector: drm connector
4250 * @edid: new value of the edid property
4251 *
4252 * This function creates a new blob modeset object and assigns its id to the
4253 * connector's edid property.
4254 *
4255 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004256 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004257 */
Dave Airlief453ba02008-11-07 14:05:41 -08004258int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004259 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004260{
4261 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004262 size_t size;
4263 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004264
Thomas Wood4cf2b282014-06-18 17:52:33 +01004265 /* ignore requests to set edid when overridden */
4266 if (connector->override_edid)
4267 return 0;
4268
Dave Airlief453ba02008-11-07 14:05:41 -08004269 if (connector->edid_blob_ptr)
4270 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4271
4272 /* Delete edid, when there is none. */
4273 if (!edid) {
4274 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004275 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004276 return ret;
4277 }
4278
Adam Jackson7466f4c2010-03-29 21:43:23 +00004279 size = EDID_LENGTH * (1 + edid->extensions);
4280 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4281 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004282 if (!connector->edid_blob_ptr)
4283 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004284
Rob Clark58495562012-10-11 20:50:56 -05004285 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004286 dev->mode_config.edid_property,
4287 connector->edid_blob_ptr->base.id);
4288
4289 return ret;
4290}
4291EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4292
Rob Clark3843e712014-12-16 18:05:29 -05004293/* Some properties could refer to dynamic refcnt'd objects, or things that
4294 * need special locking to handle lifetime issues (ie. to ensure the prop
4295 * value doesn't become invalid part way through the property update due to
4296 * race). The value returned by reference via 'obj' should be passed back
4297 * to drm_property_change_valid_put() after the property is set (and the
4298 * object to which the property is attached has a chance to take it's own
4299 * reference).
4300 */
4301static bool drm_property_change_valid_get(struct drm_property *property,
4302 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004303{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004304 int i;
4305
Paulo Zanoni26a34812012-05-15 18:08:59 -03004306 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4307 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004308
Rob Clark3843e712014-12-16 18:05:29 -05004309 *ref = NULL;
4310
Rob Clark5ea22f22014-05-30 11:34:01 -04004311 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004312 if (value < property->values[0] || value > property->values[1])
4313 return false;
4314 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004315 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4316 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004317
Rob Clarkebc44cf2012-09-12 22:22:31 -05004318 if (svalue < U642I64(property->values[0]) ||
4319 svalue > U642I64(property->values[1]))
4320 return false;
4321 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004322 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004323 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004324
Rob Clark49e27542012-05-17 02:23:26 -06004325 for (i = 0; i < property->num_values; i++)
4326 valid_mask |= (1ULL << property->values[i]);
4327 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004328 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004329 /* Only the driver knows */
4330 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004331 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004332 /* a zero value for an object property translates to null: */
4333 if (value == 0)
4334 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004335
4336 /* handle refcnt'd objects specially: */
4337 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4338 struct drm_framebuffer *fb;
4339 fb = drm_framebuffer_lookup(property->dev, value);
4340 if (fb) {
4341 *ref = &fb->base;
4342 return true;
4343 } else {
4344 return false;
4345 }
4346 } else {
4347 return _object_find(property->dev, value, property->values[0]) != NULL;
4348 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004349 } else {
4350 int i;
4351 for (i = 0; i < property->num_values; i++)
4352 if (property->values[i] == value)
4353 return true;
4354 return false;
4355 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004356
4357 for (i = 0; i < property->num_values; i++)
4358 if (property->values[i] == value)
4359 return true;
4360 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004361}
4362
Rob Clark3843e712014-12-16 18:05:29 -05004363static void drm_property_change_valid_put(struct drm_property *property,
4364 struct drm_mode_object *ref)
4365{
4366 if (!ref)
4367 return;
4368
4369 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4370 if (property->values[0] == DRM_MODE_OBJECT_FB)
4371 drm_framebuffer_unreference(obj_to_fb(ref));
4372 }
4373}
4374
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004375/**
4376 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4377 * @dev: DRM device
4378 * @data: ioctl data
4379 * @file_priv: DRM file info
4380 *
4381 * This function sets the current value for a connectors's property. It also
4382 * calls into a driver's ->set_property callback to update the hardware state
4383 *
4384 * Called by the user via ioctl.
4385 *
4386 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004387 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004388 */
Dave Airlief453ba02008-11-07 14:05:41 -08004389int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4390 void *data, struct drm_file *file_priv)
4391{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004392 struct drm_mode_connector_set_property *conn_set_prop = data;
4393 struct drm_mode_obj_set_property obj_set_prop = {
4394 .value = conn_set_prop->value,
4395 .prop_id = conn_set_prop->prop_id,
4396 .obj_id = conn_set_prop->connector_id,
4397 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4398 };
Dave Airlief453ba02008-11-07 14:05:41 -08004399
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004400 /* It does all the locking and checking we need */
4401 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004402}
4403
Paulo Zanonic5431882012-05-15 18:09:02 -03004404static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4405 struct drm_property *property,
4406 uint64_t value)
4407{
4408 int ret = -EINVAL;
4409 struct drm_connector *connector = obj_to_connector(obj);
4410
4411 /* Do DPMS ourselves */
4412 if (property == connector->dev->mode_config.dpms_property) {
4413 if (connector->funcs->dpms)
4414 (*connector->funcs->dpms)(connector, (int)value);
4415 ret = 0;
4416 } else if (connector->funcs->set_property)
4417 ret = connector->funcs->set_property(connector, property, value);
4418
4419 /* store the property value if successful */
4420 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004421 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004422 return ret;
4423}
4424
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004425static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4426 struct drm_property *property,
4427 uint64_t value)
4428{
4429 int ret = -EINVAL;
4430 struct drm_crtc *crtc = obj_to_crtc(obj);
4431
4432 if (crtc->funcs->set_property)
4433 ret = crtc->funcs->set_property(crtc, property, value);
4434 if (!ret)
4435 drm_object_property_set_value(obj, property, value);
4436
4437 return ret;
4438}
4439
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004440/**
4441 * drm_mode_plane_set_obj_prop - set the value of a property
4442 * @plane: drm plane object to set property value for
4443 * @property: property to set
4444 * @value: value the property should be set to
4445 *
4446 * This functions sets a given property on a given plane object. This function
4447 * calls the driver's ->set_property callback and changes the software state of
4448 * the property if the callback succeeds.
4449 *
4450 * Returns:
4451 * Zero on success, error code on failure.
4452 */
4453int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4454 struct drm_property *property,
4455 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004456{
4457 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004458 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004459
4460 if (plane->funcs->set_property)
4461 ret = plane->funcs->set_property(plane, property, value);
4462 if (!ret)
4463 drm_object_property_set_value(obj, property, value);
4464
4465 return ret;
4466}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004467EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004468
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004469/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004470 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004471 * @dev: DRM device
4472 * @data: ioctl data
4473 * @file_priv: DRM file info
4474 *
4475 * This function retrieves the current value for an object's property. Compared
4476 * to the connector specific ioctl this one is extended to also work on crtc and
4477 * plane objects.
4478 *
4479 * Called by the user via ioctl.
4480 *
4481 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004482 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004483 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004484int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4485 struct drm_file *file_priv)
4486{
4487 struct drm_mode_obj_get_properties *arg = data;
4488 struct drm_mode_object *obj;
4489 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004490
4491 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4492 return -EINVAL;
4493
Daniel Vetter84849902012-12-02 00:28:11 +01004494 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004495
4496 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4497 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004498 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004499 goto out;
4500 }
4501 if (!obj->properties) {
4502 ret = -EINVAL;
4503 goto out;
4504 }
4505
Rob Clark88a48e22014-12-18 16:01:50 -05004506 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004507 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4508 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4509 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004510
Paulo Zanonic5431882012-05-15 18:09:02 -03004511out:
Daniel Vetter84849902012-12-02 00:28:11 +01004512 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004513 return ret;
4514}
4515
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004516/**
4517 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4518 * @dev: DRM device
4519 * @data: ioctl data
4520 * @file_priv: DRM file info
4521 *
4522 * This function sets the current value for an object's property. It also calls
4523 * into a driver's ->set_property callback to update the hardware state.
4524 * Compared to the connector specific ioctl this one is extended to also work on
4525 * crtc and plane objects.
4526 *
4527 * Called by the user via ioctl.
4528 *
4529 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004530 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004531 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004532int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4533 struct drm_file *file_priv)
4534{
4535 struct drm_mode_obj_set_property *arg = data;
4536 struct drm_mode_object *arg_obj;
4537 struct drm_mode_object *prop_obj;
4538 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004539 int i, ret = -EINVAL;
4540 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004541
4542 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4543 return -EINVAL;
4544
Daniel Vetter84849902012-12-02 00:28:11 +01004545 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004546
4547 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004548 if (!arg_obj) {
4549 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004550 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004551 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004552 if (!arg_obj->properties)
4553 goto out;
4554
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004555 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004556 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004557 break;
4558
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004559 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004560 goto out;
4561
4562 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4563 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004564 if (!prop_obj) {
4565 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004566 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004567 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004568 property = obj_to_property(prop_obj);
4569
Rob Clark3843e712014-12-16 18:05:29 -05004570 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004571 goto out;
4572
4573 switch (arg_obj->type) {
4574 case DRM_MODE_OBJECT_CONNECTOR:
4575 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4576 arg->value);
4577 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004578 case DRM_MODE_OBJECT_CRTC:
4579 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4580 break;
Rob Clark4d939142012-05-17 02:23:27 -06004581 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004582 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4583 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004584 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004585 }
4586
Rob Clark3843e712014-12-16 18:05:29 -05004587 drm_property_change_valid_put(property, ref);
4588
Paulo Zanonic5431882012-05-15 18:09:02 -03004589out:
Daniel Vetter84849902012-12-02 00:28:11 +01004590 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004591 return ret;
4592}
4593
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004594/**
4595 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4596 * @connector: connector to attach
4597 * @encoder: encoder to attach @connector to
4598 *
4599 * This function links up a connector to an encoder. Note that the routing
4600 * restrictions between encoders and crtcs are exposed to userspace through the
4601 * possible_clones and possible_crtcs bitmasks.
4602 *
4603 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004604 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004605 */
Dave Airlief453ba02008-11-07 14:05:41 -08004606int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4607 struct drm_encoder *encoder)
4608{
4609 int i;
4610
4611 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4612 if (connector->encoder_ids[i] == 0) {
4613 connector->encoder_ids[i] = encoder->base.id;
4614 return 0;
4615 }
4616 }
4617 return -ENOMEM;
4618}
4619EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4620
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004621/**
4622 * drm_mode_crtc_set_gamma_size - set the gamma table size
4623 * @crtc: CRTC to set the gamma table size for
4624 * @gamma_size: size of the gamma table
4625 *
4626 * Drivers which support gamma tables should set this to the supported gamma
4627 * table size when initializing the CRTC. Currently the drm core only supports a
4628 * fixed gamma table size.
4629 *
4630 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004631 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004632 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004633int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004634 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004635{
4636 crtc->gamma_size = gamma_size;
4637
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004638 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4639 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004640 if (!crtc->gamma_store) {
4641 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004642 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004643 }
4644
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004645 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004646}
4647EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4648
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004649/**
4650 * drm_mode_gamma_set_ioctl - set the gamma table
4651 * @dev: DRM device
4652 * @data: ioctl data
4653 * @file_priv: DRM file info
4654 *
4655 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4656 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4657 *
4658 * Called by the user via ioctl.
4659 *
4660 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004661 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004662 */
Dave Airlief453ba02008-11-07 14:05:41 -08004663int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4664 void *data, struct drm_file *file_priv)
4665{
4666 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004667 struct drm_crtc *crtc;
4668 void *r_base, *g_base, *b_base;
4669 int size;
4670 int ret = 0;
4671
Dave Airliefb3b06c2011-02-08 13:55:21 +10004672 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4673 return -EINVAL;
4674
Daniel Vetter84849902012-12-02 00:28:11 +01004675 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004676 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4677 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004678 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004679 goto out;
4680 }
Dave Airlief453ba02008-11-07 14:05:41 -08004681
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004682 if (crtc->funcs->gamma_set == NULL) {
4683 ret = -ENOSYS;
4684 goto out;
4685 }
4686
Dave Airlief453ba02008-11-07 14:05:41 -08004687 /* memcpy into gamma store */
4688 if (crtc_lut->gamma_size != crtc->gamma_size) {
4689 ret = -EINVAL;
4690 goto out;
4691 }
4692
4693 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4694 r_base = crtc->gamma_store;
4695 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4696 ret = -EFAULT;
4697 goto out;
4698 }
4699
4700 g_base = r_base + size;
4701 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4702 ret = -EFAULT;
4703 goto out;
4704 }
4705
4706 b_base = g_base + size;
4707 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4708 ret = -EFAULT;
4709 goto out;
4710 }
4711
James Simmons72034252010-08-03 01:33:19 +01004712 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004713
4714out:
Daniel Vetter84849902012-12-02 00:28:11 +01004715 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004716 return ret;
4717
4718}
4719
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004720/**
4721 * drm_mode_gamma_get_ioctl - get the gamma table
4722 * @dev: DRM device
4723 * @data: ioctl data
4724 * @file_priv: DRM file info
4725 *
4726 * Copy the current gamma table into the storage provided. This also provides
4727 * the gamma table size the driver expects, which can be used to size the
4728 * allocated storage.
4729 *
4730 * Called by the user via ioctl.
4731 *
4732 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004733 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004734 */
Dave Airlief453ba02008-11-07 14:05:41 -08004735int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4736 void *data, struct drm_file *file_priv)
4737{
4738 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004739 struct drm_crtc *crtc;
4740 void *r_base, *g_base, *b_base;
4741 int size;
4742 int ret = 0;
4743
Dave Airliefb3b06c2011-02-08 13:55:21 +10004744 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4745 return -EINVAL;
4746
Daniel Vetter84849902012-12-02 00:28:11 +01004747 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004748 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4749 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004750 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004751 goto out;
4752 }
Dave Airlief453ba02008-11-07 14:05:41 -08004753
4754 /* memcpy into gamma store */
4755 if (crtc_lut->gamma_size != crtc->gamma_size) {
4756 ret = -EINVAL;
4757 goto out;
4758 }
4759
4760 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4761 r_base = crtc->gamma_store;
4762 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4763 ret = -EFAULT;
4764 goto out;
4765 }
4766
4767 g_base = r_base + size;
4768 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4769 ret = -EFAULT;
4770 goto out;
4771 }
4772
4773 b_base = g_base + size;
4774 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4775 ret = -EFAULT;
4776 goto out;
4777 }
4778out:
Daniel Vetter84849902012-12-02 00:28:11 +01004779 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004780 return ret;
4781}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004782
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004783/**
4784 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4785 * @dev: DRM device
4786 * @data: ioctl data
4787 * @file_priv: DRM file info
4788 *
4789 * This schedules an asynchronous update on a given CRTC, called page flip.
4790 * Optionally a drm event is generated to signal the completion of the event.
4791 * Generic drivers cannot assume that a pageflip with changed framebuffer
4792 * properties (including driver specific metadata like tiling layout) will work,
4793 * but some drivers support e.g. pixel format changes through the pageflip
4794 * ioctl.
4795 *
4796 * Called by the user via ioctl.
4797 *
4798 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004799 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004800 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004801int drm_mode_page_flip_ioctl(struct drm_device *dev,
4802 void *data, struct drm_file *file_priv)
4803{
4804 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004805 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004806 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004807 struct drm_pending_vblank_event *e = NULL;
4808 unsigned long flags;
4809 int ret = -EINVAL;
4810
4811 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4812 page_flip->reserved != 0)
4813 return -EINVAL;
4814
Keith Packard62f21042013-07-22 18:50:00 -07004815 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4816 return -EINVAL;
4817
Rob Clarka2b34e22013-10-05 16:36:52 -04004818 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4819 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004820 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004821
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004822 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004823 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004824 /* The framebuffer is currently unbound, presumably
4825 * due to a hotplug event, that userspace has not
4826 * yet discovered.
4827 */
4828 ret = -EBUSY;
4829 goto out;
4830 }
4831
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004832 if (crtc->funcs->page_flip == NULL)
4833 goto out;
4834
Daniel Vetter786b99e2012-12-02 21:53:40 +01004835 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004836 if (!fb) {
4837 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004838 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004839 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004840
Damien Lespiauc11e9282013-09-25 16:45:30 +01004841 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4842 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004843 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004844
Matt Roperf4510a22014-04-01 15:22:40 -07004845 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004846 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4847 ret = -EINVAL;
4848 goto out;
4849 }
4850
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004851 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4852 ret = -ENOMEM;
4853 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004854 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004855 spin_unlock_irqrestore(&dev->event_lock, flags);
4856 goto out;
4857 }
Thierry Redingf76511b2014-12-10 13:03:40 +01004858 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004859 spin_unlock_irqrestore(&dev->event_lock, flags);
4860
Thierry Redingf76511b2014-12-10 13:03:40 +01004861 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004862 if (e == NULL) {
4863 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004864 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004865 spin_unlock_irqrestore(&dev->event_lock, flags);
4866 goto out;
4867 }
4868
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004869 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01004870 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004871 e->event.user_data = page_flip->user_data;
4872 e->base.event = &e->event.base;
4873 e->base.file_priv = file_priv;
4874 e->base.destroy =
4875 (void (*) (struct drm_pending_event *)) kfree;
4876 }
4877
Daniel Vetter3d30a592014-07-27 13:42:42 +02004878 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004879 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004880 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004881 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4882 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004883 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004884 spin_unlock_irqrestore(&dev->event_lock, flags);
4885 kfree(e);
4886 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004887 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02004888 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004889 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004890 /*
4891 * Warn if the driver hasn't properly updated the crtc->fb
4892 * field to reflect that the new framebuffer is now used.
4893 * Failing to do so will screw with the reference counting
4894 * on framebuffers.
4895 */
Matt Roperf4510a22014-04-01 15:22:40 -07004896 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004897 /* Unref only the old framebuffer. */
4898 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004899 }
4900
4901out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004902 if (fb)
4903 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02004904 if (crtc->primary->old_fb)
4905 drm_framebuffer_unreference(crtc->primary->old_fb);
4906 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02004907 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004908
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004909 return ret;
4910}
Chris Wilsoneb033552011-01-24 15:11:08 +00004911
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004912/**
4913 * drm_mode_config_reset - call ->reset callbacks
4914 * @dev: drm device
4915 *
4916 * This functions calls all the crtc's, encoder's and connector's ->reset
4917 * callback. Drivers can use this in e.g. their driver load or resume code to
4918 * reset hardware and software state.
4919 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004920void drm_mode_config_reset(struct drm_device *dev)
4921{
4922 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004923 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00004924 struct drm_encoder *encoder;
4925 struct drm_connector *connector;
4926
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004927 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4928 if (plane->funcs->reset)
4929 plane->funcs->reset(plane);
4930
Chris Wilsoneb033552011-01-24 15:11:08 +00004931 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4932 if (crtc->funcs->reset)
4933 crtc->funcs->reset(crtc);
4934
4935 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4936 if (encoder->funcs->reset)
4937 encoder->funcs->reset(encoder);
4938
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004939 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4940 connector->status = connector_status_unknown;
4941
Chris Wilsoneb033552011-01-24 15:11:08 +00004942 if (connector->funcs->reset)
4943 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004944 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004945}
4946EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004947
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004948/**
4949 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4950 * @dev: DRM device
4951 * @data: ioctl data
4952 * @file_priv: DRM file info
4953 *
4954 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4955 * TTM or something else entirely) and returns the resulting buffer handle. This
4956 * handle can then be wrapped up into a framebuffer modeset object.
4957 *
4958 * Note that userspace is not allowed to use such objects for render
4959 * acceleration - drivers must create their own private ioctls for such a use
4960 * case.
4961 *
4962 * Called by the user via ioctl.
4963 *
4964 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004965 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004966 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004967int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4968 void *data, struct drm_file *file_priv)
4969{
4970 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004971 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004972
4973 if (!dev->driver->dumb_create)
4974 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004975 if (!args->width || !args->height || !args->bpp)
4976 return -EINVAL;
4977
4978 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02004979 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01004980 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02004981 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01004982 return -EINVAL;
4983 stride = cpp * args->width;
4984 if (args->height > 0xffffffffU / stride)
4985 return -EINVAL;
4986
4987 /* test for wrap-around */
4988 size = args->height * stride;
4989 if (PAGE_ALIGN(size) == 0)
4990 return -EINVAL;
4991
Thierry Redingf6085952014-11-03 11:14:14 +01004992 /*
4993 * handle, pitch and size are output parameters. Zero them out to
4994 * prevent drivers from accidentally using uninitialized data. Since
4995 * not all existing userspace is clearing these fields properly we
4996 * cannot reject IOCTL with garbage in them.
4997 */
4998 args->handle = 0;
4999 args->pitch = 0;
5000 args->size = 0;
5001
Dave Airlieff72145b2011-02-07 12:16:14 +10005002 return dev->driver->dumb_create(file_priv, dev, args);
5003}
5004
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005005/**
5006 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5007 * @dev: DRM device
5008 * @data: ioctl data
5009 * @file_priv: DRM file info
5010 *
5011 * Allocate an offset in the drm device node's address space to be able to
5012 * memory map a dumb buffer.
5013 *
5014 * Called by the user via ioctl.
5015 *
5016 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005017 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005018 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005019int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5020 void *data, struct drm_file *file_priv)
5021{
5022 struct drm_mode_map_dumb *args = data;
5023
5024 /* call driver ioctl to get mmap offset */
5025 if (!dev->driver->dumb_map_offset)
5026 return -ENOSYS;
5027
5028 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5029}
5030
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005031/**
5032 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5033 * @dev: DRM device
5034 * @data: ioctl data
5035 * @file_priv: DRM file info
5036 *
5037 * This destroys the userspace handle for the given dumb backing storage buffer.
5038 * Since buffer objects must be reference counted in the kernel a buffer object
5039 * won't be immediately freed if a framebuffer modeset object still uses it.
5040 *
5041 * Called by the user via ioctl.
5042 *
5043 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005044 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005045 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005046int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5047 void *data, struct drm_file *file_priv)
5048{
5049 struct drm_mode_destroy_dumb *args = data;
5050
5051 if (!dev->driver->dumb_destroy)
5052 return -ENOSYS;
5053
5054 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5055}
Dave Airlie248dbc22011-11-29 20:02:54 +00005056
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005057/**
5058 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5059 * @format: pixel format (DRM_FORMAT_*)
5060 * @depth: storage for the depth value
5061 * @bpp: storage for the bpp value
5062 *
5063 * This only supports RGB formats here for compat with code that doesn't use
5064 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005065 */
5066void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5067 int *bpp)
5068{
5069 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005070 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005071 case DRM_FORMAT_RGB332:
5072 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005073 *depth = 8;
5074 *bpp = 8;
5075 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005076 case DRM_FORMAT_XRGB1555:
5077 case DRM_FORMAT_XBGR1555:
5078 case DRM_FORMAT_RGBX5551:
5079 case DRM_FORMAT_BGRX5551:
5080 case DRM_FORMAT_ARGB1555:
5081 case DRM_FORMAT_ABGR1555:
5082 case DRM_FORMAT_RGBA5551:
5083 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005084 *depth = 15;
5085 *bpp = 16;
5086 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005087 case DRM_FORMAT_RGB565:
5088 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005089 *depth = 16;
5090 *bpp = 16;
5091 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005092 case DRM_FORMAT_RGB888:
5093 case DRM_FORMAT_BGR888:
5094 *depth = 24;
5095 *bpp = 24;
5096 break;
5097 case DRM_FORMAT_XRGB8888:
5098 case DRM_FORMAT_XBGR8888:
5099 case DRM_FORMAT_RGBX8888:
5100 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005101 *depth = 24;
5102 *bpp = 32;
5103 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005104 case DRM_FORMAT_XRGB2101010:
5105 case DRM_FORMAT_XBGR2101010:
5106 case DRM_FORMAT_RGBX1010102:
5107 case DRM_FORMAT_BGRX1010102:
5108 case DRM_FORMAT_ARGB2101010:
5109 case DRM_FORMAT_ABGR2101010:
5110 case DRM_FORMAT_RGBA1010102:
5111 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005112 *depth = 30;
5113 *bpp = 32;
5114 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005115 case DRM_FORMAT_ARGB8888:
5116 case DRM_FORMAT_ABGR8888:
5117 case DRM_FORMAT_RGBA8888:
5118 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005119 *depth = 32;
5120 *bpp = 32;
5121 break;
5122 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005123 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5124 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005125 *depth = 0;
5126 *bpp = 0;
5127 break;
5128 }
5129}
5130EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005131
5132/**
5133 * drm_format_num_planes - get the number of planes for format
5134 * @format: pixel format (DRM_FORMAT_*)
5135 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005136 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005137 * The number of planes used by the specified pixel format.
5138 */
5139int drm_format_num_planes(uint32_t format)
5140{
5141 switch (format) {
5142 case DRM_FORMAT_YUV410:
5143 case DRM_FORMAT_YVU410:
5144 case DRM_FORMAT_YUV411:
5145 case DRM_FORMAT_YVU411:
5146 case DRM_FORMAT_YUV420:
5147 case DRM_FORMAT_YVU420:
5148 case DRM_FORMAT_YUV422:
5149 case DRM_FORMAT_YVU422:
5150 case DRM_FORMAT_YUV444:
5151 case DRM_FORMAT_YVU444:
5152 return 3;
5153 case DRM_FORMAT_NV12:
5154 case DRM_FORMAT_NV21:
5155 case DRM_FORMAT_NV16:
5156 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005157 case DRM_FORMAT_NV24:
5158 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005159 return 2;
5160 default:
5161 return 1;
5162 }
5163}
5164EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005165
5166/**
5167 * drm_format_plane_cpp - determine the bytes per pixel value
5168 * @format: pixel format (DRM_FORMAT_*)
5169 * @plane: plane index
5170 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005171 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005172 * The bytes per pixel value for the specified plane.
5173 */
5174int drm_format_plane_cpp(uint32_t format, int plane)
5175{
5176 unsigned int depth;
5177 int bpp;
5178
5179 if (plane >= drm_format_num_planes(format))
5180 return 0;
5181
5182 switch (format) {
5183 case DRM_FORMAT_YUYV:
5184 case DRM_FORMAT_YVYU:
5185 case DRM_FORMAT_UYVY:
5186 case DRM_FORMAT_VYUY:
5187 return 2;
5188 case DRM_FORMAT_NV12:
5189 case DRM_FORMAT_NV21:
5190 case DRM_FORMAT_NV16:
5191 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005192 case DRM_FORMAT_NV24:
5193 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005194 return plane ? 2 : 1;
5195 case DRM_FORMAT_YUV410:
5196 case DRM_FORMAT_YVU410:
5197 case DRM_FORMAT_YUV411:
5198 case DRM_FORMAT_YVU411:
5199 case DRM_FORMAT_YUV420:
5200 case DRM_FORMAT_YVU420:
5201 case DRM_FORMAT_YUV422:
5202 case DRM_FORMAT_YVU422:
5203 case DRM_FORMAT_YUV444:
5204 case DRM_FORMAT_YVU444:
5205 return 1;
5206 default:
5207 drm_fb_get_bpp_depth(format, &depth, &bpp);
5208 return bpp >> 3;
5209 }
5210}
5211EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005212
5213/**
5214 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5215 * @format: pixel format (DRM_FORMAT_*)
5216 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005217 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005218 * The horizontal chroma subsampling factor for the
5219 * specified pixel format.
5220 */
5221int drm_format_horz_chroma_subsampling(uint32_t format)
5222{
5223 switch (format) {
5224 case DRM_FORMAT_YUV411:
5225 case DRM_FORMAT_YVU411:
5226 case DRM_FORMAT_YUV410:
5227 case DRM_FORMAT_YVU410:
5228 return 4;
5229 case DRM_FORMAT_YUYV:
5230 case DRM_FORMAT_YVYU:
5231 case DRM_FORMAT_UYVY:
5232 case DRM_FORMAT_VYUY:
5233 case DRM_FORMAT_NV12:
5234 case DRM_FORMAT_NV21:
5235 case DRM_FORMAT_NV16:
5236 case DRM_FORMAT_NV61:
5237 case DRM_FORMAT_YUV422:
5238 case DRM_FORMAT_YVU422:
5239 case DRM_FORMAT_YUV420:
5240 case DRM_FORMAT_YVU420:
5241 return 2;
5242 default:
5243 return 1;
5244 }
5245}
5246EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5247
5248/**
5249 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5250 * @format: pixel format (DRM_FORMAT_*)
5251 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005252 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005253 * The vertical chroma subsampling factor for the
5254 * specified pixel format.
5255 */
5256int drm_format_vert_chroma_subsampling(uint32_t format)
5257{
5258 switch (format) {
5259 case DRM_FORMAT_YUV410:
5260 case DRM_FORMAT_YVU410:
5261 return 4;
5262 case DRM_FORMAT_YUV420:
5263 case DRM_FORMAT_YVU420:
5264 case DRM_FORMAT_NV12:
5265 case DRM_FORMAT_NV21:
5266 return 2;
5267 default:
5268 return 1;
5269 }
5270}
5271EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005272
5273/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305274 * drm_rotation_simplify() - Try to simplify the rotation
5275 * @rotation: Rotation to be simplified
5276 * @supported_rotations: Supported rotations
5277 *
5278 * Attempt to simplify the rotation to a form that is supported.
5279 * Eg. if the hardware supports everything except DRM_REFLECT_X
5280 * one could call this function like this:
5281 *
5282 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5283 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5284 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5285 *
5286 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5287 * transforms the hardware supports, this function may not
5288 * be able to produce a supported transform, so the caller should
5289 * check the result afterwards.
5290 */
5291unsigned int drm_rotation_simplify(unsigned int rotation,
5292 unsigned int supported_rotations)
5293{
5294 if (rotation & ~supported_rotations) {
5295 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5296 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5297 }
5298
5299 return rotation;
5300}
5301EXPORT_SYMBOL(drm_rotation_simplify);
5302
5303/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005304 * drm_mode_config_init - initialize DRM mode_configuration structure
5305 * @dev: DRM device
5306 *
5307 * Initialize @dev's mode_config structure, used for tracking the graphics
5308 * configuration of @dev.
5309 *
5310 * Since this initializes the modeset locks, no locking is possible. Which is no
5311 * problem, since this should happen single threaded at init time. It is the
5312 * driver's problem to ensure this guarantee.
5313 *
5314 */
5315void drm_mode_config_init(struct drm_device *dev)
5316{
5317 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005318 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005319 mutex_init(&dev->mode_config.idr_mutex);
5320 mutex_init(&dev->mode_config.fb_lock);
5321 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5322 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5323 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04005324 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005325 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5326 INIT_LIST_HEAD(&dev->mode_config.property_list);
5327 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5328 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5329 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005330 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005331
5332 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005333 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005334 drm_modeset_unlock_all(dev);
5335
5336 /* Just to be sure */
5337 dev->mode_config.num_fb = 0;
5338 dev->mode_config.num_connector = 0;
5339 dev->mode_config.num_crtc = 0;
5340 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005341 dev->mode_config.num_overlay_plane = 0;
5342 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005343}
5344EXPORT_SYMBOL(drm_mode_config_init);
5345
5346/**
5347 * drm_mode_config_cleanup - free up DRM mode_config info
5348 * @dev: DRM device
5349 *
5350 * Free up all the connectors and CRTCs associated with this DRM device, then
5351 * free up the framebuffers and associated buffer objects.
5352 *
5353 * Note that since this /should/ happen single-threaded at driver/device
5354 * teardown time, no locking is required. It's the driver's job to ensure that
5355 * this guarantee actually holds true.
5356 *
5357 * FIXME: cleanup any dangling user buffer objects too
5358 */
5359void drm_mode_config_cleanup(struct drm_device *dev)
5360{
5361 struct drm_connector *connector, *ot;
5362 struct drm_crtc *crtc, *ct;
5363 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04005364 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005365 struct drm_framebuffer *fb, *fbt;
5366 struct drm_property *property, *pt;
5367 struct drm_property_blob *blob, *bt;
5368 struct drm_plane *plane, *plt;
5369
5370 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5371 head) {
5372 encoder->funcs->destroy(encoder);
5373 }
5374
Sean Paul3b336ec2013-08-14 16:47:37 -04005375 list_for_each_entry_safe(bridge, brt,
5376 &dev->mode_config.bridge_list, head) {
5377 bridge->funcs->destroy(bridge);
5378 }
5379
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005380 list_for_each_entry_safe(connector, ot,
5381 &dev->mode_config.connector_list, head) {
5382 connector->funcs->destroy(connector);
5383 }
5384
5385 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5386 head) {
5387 drm_property_destroy(dev, property);
5388 }
5389
5390 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5391 head) {
5392 drm_property_destroy_blob(dev, blob);
5393 }
5394
5395 /*
5396 * Single-threaded teardown context, so it's not required to grab the
5397 * fb_lock to protect against concurrent fb_list access. Contrary, it
5398 * would actually deadlock with the drm_framebuffer_cleanup function.
5399 *
5400 * Also, if there are any framebuffers left, that's a driver leak now,
5401 * so politely WARN about this.
5402 */
5403 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5404 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5405 drm_framebuffer_remove(fb);
5406 }
5407
5408 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5409 head) {
5410 plane->funcs->destroy(plane);
5411 }
5412
5413 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5414 crtc->funcs->destroy(crtc);
5415 }
5416
Dave Airlie138f9eb2014-10-20 16:17:17 +10005417 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005418 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005419 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005420}
5421EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305422
5423struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5424 unsigned int supported_rotations)
5425{
5426 static const struct drm_prop_enum_list props[] = {
5427 { DRM_ROTATE_0, "rotate-0" },
5428 { DRM_ROTATE_90, "rotate-90" },
5429 { DRM_ROTATE_180, "rotate-180" },
5430 { DRM_ROTATE_270, "rotate-270" },
5431 { DRM_REFLECT_X, "reflect-x" },
5432 { DRM_REFLECT_Y, "reflect-y" },
5433 };
5434
5435 return drm_property_create_bitmask(dev, 0, "rotation",
5436 props, ARRAY_SIZE(props),
5437 supported_rotations);
5438}
5439EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005440
5441/**
5442 * DOC: Tile group
5443 *
5444 * Tile groups are used to represent tiled monitors with a unique
5445 * integer identifier. Tiled monitors using DisplayID v1.3 have
5446 * a unique 8-byte handle, we store this in a tile group, so we
5447 * have a common identifier for all tiles in a monitor group.
5448 */
5449static void drm_tile_group_free(struct kref *kref)
5450{
5451 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5452 struct drm_device *dev = tg->dev;
5453 mutex_lock(&dev->mode_config.idr_mutex);
5454 idr_remove(&dev->mode_config.tile_idr, tg->id);
5455 mutex_unlock(&dev->mode_config.idr_mutex);
5456 kfree(tg);
5457}
5458
5459/**
5460 * drm_mode_put_tile_group - drop a reference to a tile group.
5461 * @dev: DRM device
5462 * @tg: tile group to drop reference to.
5463 *
5464 * drop reference to tile group and free if 0.
5465 */
5466void drm_mode_put_tile_group(struct drm_device *dev,
5467 struct drm_tile_group *tg)
5468{
5469 kref_put(&tg->refcount, drm_tile_group_free);
5470}
5471
5472/**
5473 * drm_mode_get_tile_group - get a reference to an existing tile group
5474 * @dev: DRM device
5475 * @topology: 8-bytes unique per monitor.
5476 *
5477 * Use the unique bytes to get a reference to an existing tile group.
5478 *
5479 * RETURNS:
5480 * tile group or NULL if not found.
5481 */
5482struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5483 char topology[8])
5484{
5485 struct drm_tile_group *tg;
5486 int id;
5487 mutex_lock(&dev->mode_config.idr_mutex);
5488 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5489 if (!memcmp(tg->group_data, topology, 8)) {
5490 if (!kref_get_unless_zero(&tg->refcount))
5491 tg = NULL;
5492 mutex_unlock(&dev->mode_config.idr_mutex);
5493 return tg;
5494 }
5495 }
5496 mutex_unlock(&dev->mode_config.idr_mutex);
5497 return NULL;
5498}
5499
5500/**
5501 * drm_mode_create_tile_group - create a tile group from a displayid description
5502 * @dev: DRM device
5503 * @topology: 8-bytes unique per monitor.
5504 *
5505 * Create a tile group for the unique monitor, and get a unique
5506 * identifier for the tile group.
5507 *
5508 * RETURNS:
5509 * new tile group or error.
5510 */
5511struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5512 char topology[8])
5513{
5514 struct drm_tile_group *tg;
5515 int ret;
5516
5517 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5518 if (!tg)
5519 return ERR_PTR(-ENOMEM);
5520
5521 kref_init(&tg->refcount);
5522 memcpy(tg->group_data, topology, 8);
5523 tg->dev = dev;
5524
5525 mutex_lock(&dev->mode_config.idr_mutex);
5526 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5527 if (ret >= 0) {
5528 tg->id = ret;
5529 } else {
5530 kfree(tg);
5531 tg = ERR_PTR(ret);
5532 }
5533
5534 mutex_unlock(&dev->mode_config.idr_mutex);
5535 return tg;
5536}