blob: 20596423d52d159c7f49c981e419a6c15bb2f543 [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{
Rob Clarkae16c592014-12-18 16:01:54 -0500834 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200835 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400836 struct ida *connector_ida =
837 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200838
Daniel Vetter84849902012-12-02 00:28:11 +0100839 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800840
Dave Airlie2ee39452014-07-24 11:53:45 +1000841 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200842 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300843 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200844
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300845 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800846 connector->dev = dev;
847 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800848 connector->connector_type = connector_type;
849 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400850 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
851 if (connector->connector_type_id < 0) {
852 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300853 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400854 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300855 connector->name =
856 kasprintf(GFP_KERNEL, "%s-%d",
857 drm_connector_enum_list[connector_type].name,
858 connector->connector_type_id);
859 if (!connector->name) {
860 ret = -ENOMEM;
861 goto out_put;
862 }
863
Dave Airlief453ba02008-11-07 14:05:41 -0800864 INIT_LIST_HEAD(&connector->probed_modes);
865 INIT_LIST_HEAD(&connector->modes);
866 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000867 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800868
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200869 drm_connector_get_cmdline_mode(connector);
870
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100871 /* We should add connectors at the end to avoid upsetting the connector
872 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500873 list_add_tail(&connector->head, &config->connector_list);
874 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800875
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200876 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500877 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500878 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200879 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800880
Rob Clark58495562012-10-11 20:50:56 -0500881 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500882 config->dpms_property, 0);
883
884 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
885 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
886 }
Dave Airlief453ba02008-11-07 14:05:41 -0800887
Thomas Wood30f65702014-06-18 17:52:32 +0100888 connector->debugfs_entry = NULL;
889
Jani Nikula2abdd312014-05-14 16:58:19 +0300890out_put:
891 if (ret)
892 drm_mode_object_put(dev, &connector->base);
893
894out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100895 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200896
897 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800898}
899EXPORT_SYMBOL(drm_connector_init);
900
901/**
902 * drm_connector_cleanup - cleans up an initialised connector
903 * @connector: connector to cleanup
904 *
Dave Airlief453ba02008-11-07 14:05:41 -0800905 * Cleans up the connector but doesn't free the object.
906 */
907void drm_connector_cleanup(struct drm_connector *connector)
908{
909 struct drm_device *dev = connector->dev;
910 struct drm_display_mode *mode, *t;
911
Dave Airlie40d9b042014-10-20 16:29:33 +1000912 if (connector->tile_group) {
913 drm_mode_put_tile_group(dev, connector->tile_group);
914 connector->tile_group = NULL;
915 }
916
Dave Airlief453ba02008-11-07 14:05:41 -0800917 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
918 drm_mode_remove(connector, mode);
919
920 list_for_each_entry_safe(mode, t, &connector->modes, head)
921 drm_mode_remove(connector, mode);
922
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400923 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
924 connector->connector_type_id);
925
Dave Airlief453ba02008-11-07 14:05:41 -0800926 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300927 kfree(connector->name);
928 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800929 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000930 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100931
932 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
933 if (connector->state && connector->funcs->atomic_destroy_state)
934 connector->funcs->atomic_destroy_state(connector,
935 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100936
937 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800938}
939EXPORT_SYMBOL(drm_connector_cleanup);
940
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100941/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200942 * drm_connector_index - find the index of a registered connector
943 * @connector: connector to find index for
944 *
945 * Given a registered connector, return the index of that connector within a DRM
946 * device's list of connectors.
947 */
948unsigned int drm_connector_index(struct drm_connector *connector)
949{
950 unsigned int index = 0;
951 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100952 struct drm_mode_config *config = &connector->dev->mode_config;
953
954 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200955
956 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
957 if (tmp == connector)
958 return index;
959
960 index++;
961 }
962
963 BUG();
964}
965EXPORT_SYMBOL(drm_connector_index);
966
967/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100968 * drm_connector_register - register a connector
969 * @connector: the connector to register
970 *
971 * Register userspace interfaces for a connector
972 *
973 * Returns:
974 * Zero on success, error code on failure.
975 */
976int drm_connector_register(struct drm_connector *connector)
977{
Thomas Wood30f65702014-06-18 17:52:32 +0100978 int ret;
979
Dave Airlie2ee39452014-07-24 11:53:45 +1000980 drm_mode_object_register(connector->dev, &connector->base);
981
Thomas Wood30f65702014-06-18 17:52:32 +0100982 ret = drm_sysfs_connector_add(connector);
983 if (ret)
984 return ret;
985
986 ret = drm_debugfs_connector_add(connector);
987 if (ret) {
988 drm_sysfs_connector_remove(connector);
989 return ret;
990 }
991
992 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +0100993}
994EXPORT_SYMBOL(drm_connector_register);
995
996/**
997 * drm_connector_unregister - unregister a connector
998 * @connector: the connector to unregister
999 *
1000 * Unregister userspace interfaces for a connector
1001 */
1002void drm_connector_unregister(struct drm_connector *connector)
1003{
1004 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001005 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001006}
1007EXPORT_SYMBOL(drm_connector_unregister);
1008
1009
1010/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001011 * drm_connector_unplug_all - unregister connector userspace interfaces
1012 * @dev: drm device
1013 *
1014 * This function unregisters all connector userspace interfaces in sysfs. Should
1015 * be call when the device is disconnected, e.g. from an usb driver's
1016 * ->disconnect callback.
1017 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001018void drm_connector_unplug_all(struct drm_device *dev)
1019{
1020 struct drm_connector *connector;
1021
1022 /* taking the mode config mutex ends up in a clash with sysfs */
1023 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001024 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001025
1026}
1027EXPORT_SYMBOL(drm_connector_unplug_all);
1028
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001029/**
1030 * drm_bridge_init - initialize a drm transcoder/bridge
1031 * @dev: drm device
1032 * @bridge: transcoder/bridge to set up
1033 * @funcs: bridge function table
1034 *
1035 * Initialises a preallocated bridge. Bridges should be
1036 * subclassed as part of driver connector objects.
1037 *
1038 * Returns:
1039 * Zero on success, error code on failure.
1040 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001041int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1042 const struct drm_bridge_funcs *funcs)
1043{
1044 int ret;
1045
1046 drm_modeset_lock_all(dev);
1047
1048 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1049 if (ret)
1050 goto out;
1051
1052 bridge->dev = dev;
1053 bridge->funcs = funcs;
1054
1055 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1056 dev->mode_config.num_bridge++;
1057
1058 out:
1059 drm_modeset_unlock_all(dev);
1060 return ret;
1061}
1062EXPORT_SYMBOL(drm_bridge_init);
1063
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001064/**
1065 * drm_bridge_cleanup - cleans up an initialised bridge
1066 * @bridge: bridge to cleanup
1067 *
1068 * Cleans up the bridge but doesn't free the object.
1069 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001070void drm_bridge_cleanup(struct drm_bridge *bridge)
1071{
1072 struct drm_device *dev = bridge->dev;
1073
1074 drm_modeset_lock_all(dev);
1075 drm_mode_object_put(dev, &bridge->base);
1076 list_del(&bridge->head);
1077 dev->mode_config.num_bridge--;
1078 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001079
1080 memset(bridge, 0, sizeof(*bridge));
Sean Paul3b336ec2013-08-14 16:47:37 -04001081}
1082EXPORT_SYMBOL(drm_bridge_cleanup);
1083
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001084/**
1085 * drm_encoder_init - Init a preallocated encoder
1086 * @dev: drm device
1087 * @encoder: the encoder to init
1088 * @funcs: callbacks for this encoder
1089 * @encoder_type: user visible type of the encoder
1090 *
1091 * Initialises a preallocated encoder. Encoder should be
1092 * subclassed as part of driver encoder objects.
1093 *
1094 * Returns:
1095 * Zero on success, error code on failure.
1096 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001097int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001098 struct drm_encoder *encoder,
1099 const struct drm_encoder_funcs *funcs,
1100 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001101{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001102 int ret;
1103
Daniel Vetter84849902012-12-02 00:28:11 +01001104 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001105
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001106 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1107 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001108 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001109
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001110 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001111 encoder->encoder_type = encoder_type;
1112 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001113 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1114 drm_encoder_enum_list[encoder_type].name,
1115 encoder->base.id);
1116 if (!encoder->name) {
1117 ret = -ENOMEM;
1118 goto out_put;
1119 }
Dave Airlief453ba02008-11-07 14:05:41 -08001120
1121 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1122 dev->mode_config.num_encoder++;
1123
Jani Nikulae5748942014-05-14 16:58:20 +03001124out_put:
1125 if (ret)
1126 drm_mode_object_put(dev, &encoder->base);
1127
1128out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001129 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001130
1131 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001132}
1133EXPORT_SYMBOL(drm_encoder_init);
1134
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001135/**
1136 * drm_encoder_cleanup - cleans up an initialised encoder
1137 * @encoder: encoder to cleanup
1138 *
1139 * Cleans up the encoder but doesn't free the object.
1140 */
Dave Airlief453ba02008-11-07 14:05:41 -08001141void drm_encoder_cleanup(struct drm_encoder *encoder)
1142{
1143 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001144
Daniel Vetter84849902012-12-02 00:28:11 +01001145 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001146 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001147 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001148 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001149 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001150 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001151
1152 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001153}
1154EXPORT_SYMBOL(drm_encoder_cleanup);
1155
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001156/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001157 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001158 * @dev: DRM device
1159 * @plane: plane object to init
1160 * @possible_crtcs: bitmask of possible CRTCs
1161 * @funcs: callbacks for the new plane
1162 * @formats: array of supported formats (%DRM_FORMAT_*)
1163 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001164 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001165 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001166 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001167 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001168 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001169 * Zero on success, error code on failure.
1170 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001171int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1172 unsigned long possible_crtcs,
1173 const struct drm_plane_funcs *funcs,
1174 const uint32_t *formats, uint32_t format_count,
1175 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001176{
Rob Clark6b4959f2014-12-18 16:01:53 -05001177 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001178 int ret;
1179
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001180 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1181 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001182 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001183
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001184 drm_modeset_lock_init(&plane->mutex);
1185
Rob Clark4d939142012-05-17 02:23:27 -06001186 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001187 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001188 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001189 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1190 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001191 if (!plane->format_types) {
1192 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1193 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001194 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001195 }
1196
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001197 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001198 plane->format_count = format_count;
1199 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001200 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001201
Rob Clark6b4959f2014-12-18 16:01:53 -05001202 list_add_tail(&plane->head, &config->plane_list);
1203 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001204 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001205 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001206
Rob Clark9922ab52014-04-01 20:16:57 -04001207 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001208 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001209 plane->type);
1210
Rob Clark6b4959f2014-12-18 16:01:53 -05001211 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1212 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1213 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1214 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1215 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1216 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1217 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1218 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1219 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1220 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1221 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1222 }
1223
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001224 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001225}
Matt Roperdc415ff2014-04-01 15:22:36 -07001226EXPORT_SYMBOL(drm_universal_plane_init);
1227
1228/**
1229 * drm_plane_init - Initialize a legacy plane
1230 * @dev: DRM device
1231 * @plane: plane object to init
1232 * @possible_crtcs: bitmask of possible CRTCs
1233 * @funcs: callbacks for the new plane
1234 * @formats: array of supported formats (%DRM_FORMAT_*)
1235 * @format_count: number of elements in @formats
1236 * @is_primary: plane type (primary vs overlay)
1237 *
1238 * Legacy API to initialize a DRM plane.
1239 *
1240 * New drivers should call drm_universal_plane_init() instead.
1241 *
1242 * Returns:
1243 * Zero on success, error code on failure.
1244 */
1245int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1246 unsigned long possible_crtcs,
1247 const struct drm_plane_funcs *funcs,
1248 const uint32_t *formats, uint32_t format_count,
1249 bool is_primary)
1250{
1251 enum drm_plane_type type;
1252
1253 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1254 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1255 formats, format_count, type);
1256}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001257EXPORT_SYMBOL(drm_plane_init);
1258
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001259/**
1260 * drm_plane_cleanup - Clean up the core plane usage
1261 * @plane: plane to cleanup
1262 *
1263 * This function cleans up @plane and removes it from the DRM mode setting
1264 * core. Note that the function does *not* free the plane structure itself,
1265 * this is the responsibility of the caller.
1266 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001267void drm_plane_cleanup(struct drm_plane *plane)
1268{
1269 struct drm_device *dev = plane->dev;
1270
Daniel Vetter84849902012-12-02 00:28:11 +01001271 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001272 kfree(plane->format_types);
1273 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001274
1275 BUG_ON(list_empty(&plane->head));
1276
1277 list_del(&plane->head);
1278 dev->mode_config.num_total_plane--;
1279 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1280 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001281 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001282
1283 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1284 if (plane->state && plane->funcs->atomic_destroy_state)
1285 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001286
1287 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001288}
1289EXPORT_SYMBOL(drm_plane_cleanup);
1290
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001291/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001292 * drm_plane_index - find the index of a registered plane
1293 * @plane: plane to find index for
1294 *
1295 * Given a registered plane, return the index of that CRTC within a DRM
1296 * device's list of planes.
1297 */
1298unsigned int drm_plane_index(struct drm_plane *plane)
1299{
1300 unsigned int index = 0;
1301 struct drm_plane *tmp;
1302
1303 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1304 if (tmp == plane)
1305 return index;
1306
1307 index++;
1308 }
1309
1310 BUG();
1311}
1312EXPORT_SYMBOL(drm_plane_index);
1313
1314/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001315 * drm_plane_force_disable - Forcibly disable a plane
1316 * @plane: plane to disable
1317 *
1318 * Forces the plane to be disabled.
1319 *
1320 * Used when the plane's current framebuffer is destroyed,
1321 * and when restoring fbdev mode.
1322 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001323void drm_plane_force_disable(struct drm_plane *plane)
1324{
1325 int ret;
1326
Daniel Vetter3d30a592014-07-27 13:42:42 +02001327 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001328 return;
1329
Daniel Vetter3d30a592014-07-27 13:42:42 +02001330 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001331 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001332 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001333 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001334 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001335 return;
1336 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001337 /* disconnect the plane from the fb and crtc: */
Daniel Vetter3d30a592014-07-27 13:42:42 +02001338 __drm_framebuffer_unreference(plane->old_fb);
1339 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001340 plane->fb = NULL;
1341 plane->crtc = NULL;
1342}
1343EXPORT_SYMBOL(drm_plane_force_disable);
1344
Rob Clark6b4959f2014-12-18 16:01:53 -05001345static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001346{
Rob Clark356af0e2014-12-18 16:01:52 -05001347 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001348
1349 /*
1350 * Standard properties (apply to all connectors)
1351 */
Rob Clark356af0e2014-12-18 16:01:52 -05001352 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001353 DRM_MODE_PROP_IMMUTABLE,
1354 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001355 if (!prop)
1356 return -ENOMEM;
1357 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001358
Rob Clark356af0e2014-12-18 16:01:52 -05001359 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001360 "DPMS", drm_dpms_enum_list,
1361 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001362 if (!prop)
1363 return -ENOMEM;
1364 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001365
Rob Clark356af0e2014-12-18 16:01:52 -05001366 prop = drm_property_create(dev,
1367 DRM_MODE_PROP_BLOB |
1368 DRM_MODE_PROP_IMMUTABLE,
1369 "PATH", 0);
1370 if (!prop)
1371 return -ENOMEM;
1372 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001373
Rob Clark356af0e2014-12-18 16:01:52 -05001374 prop = drm_property_create(dev,
1375 DRM_MODE_PROP_BLOB |
1376 DRM_MODE_PROP_IMMUTABLE,
1377 "TILE", 0);
1378 if (!prop)
1379 return -ENOMEM;
1380 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001381
Rob Clark6b4959f2014-12-18 16:01:53 -05001382 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001383 "type", drm_plane_type_enum_list,
1384 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001385 if (!prop)
1386 return -ENOMEM;
1387 dev->mode_config.plane_type_property = prop;
1388
1389 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1390 "SRC_X", 0, UINT_MAX);
1391 if (!prop)
1392 return -ENOMEM;
1393 dev->mode_config.prop_src_x = prop;
1394
1395 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1396 "SRC_Y", 0, UINT_MAX);
1397 if (!prop)
1398 return -ENOMEM;
1399 dev->mode_config.prop_src_y = prop;
1400
1401 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1402 "SRC_W", 0, UINT_MAX);
1403 if (!prop)
1404 return -ENOMEM;
1405 dev->mode_config.prop_src_w = prop;
1406
1407 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1408 "SRC_H", 0, UINT_MAX);
1409 if (!prop)
1410 return -ENOMEM;
1411 dev->mode_config.prop_src_h = prop;
1412
1413 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1414 "CRTC_X", INT_MIN, INT_MAX);
1415 if (!prop)
1416 return -ENOMEM;
1417 dev->mode_config.prop_crtc_x = prop;
1418
1419 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1420 "CRTC_Y", INT_MIN, INT_MAX);
1421 if (!prop)
1422 return -ENOMEM;
1423 dev->mode_config.prop_crtc_y = prop;
1424
1425 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1426 "CRTC_W", 0, INT_MAX);
1427 if (!prop)
1428 return -ENOMEM;
1429 dev->mode_config.prop_crtc_w = prop;
1430
1431 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1432 "CRTC_H", 0, INT_MAX);
1433 if (!prop)
1434 return -ENOMEM;
1435 dev->mode_config.prop_crtc_h = prop;
1436
1437 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1438 "FB_ID", DRM_MODE_OBJECT_FB);
1439 if (!prop)
1440 return -ENOMEM;
1441 dev->mode_config.prop_fb_id = prop;
1442
1443 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1444 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1445 if (!prop)
1446 return -ENOMEM;
1447 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001448
1449 return 0;
1450}
1451
Dave Airlief453ba02008-11-07 14:05:41 -08001452/**
1453 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1454 * @dev: DRM device
1455 *
1456 * Called by a driver the first time a DVI-I connector is made.
1457 */
1458int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1459{
1460 struct drm_property *dvi_i_selector;
1461 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001462
1463 if (dev->mode_config.dvi_i_select_subconnector_property)
1464 return 0;
1465
1466 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001467 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001468 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001469 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001470 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001471 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1472
Sascha Hauer4a67d392012-02-06 10:58:17 +01001473 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001474 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001475 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001476 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001477 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1478
1479 return 0;
1480}
1481EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1482
1483/**
1484 * drm_create_tv_properties - create TV specific connector properties
1485 * @dev: DRM device
1486 * @num_modes: number of different TV formats (modes) supported
1487 * @modes: array of pointers to strings containing name of each format
1488 *
1489 * Called by a driver's TV initialization routine, this function creates
1490 * the TV specific connector properties for a given device. Caller is
1491 * responsible for allocating a list of format names and passing them to
1492 * this routine.
1493 */
Thierry Reding2f763312014-10-13 12:45:57 +02001494int drm_mode_create_tv_properties(struct drm_device *dev,
1495 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001496 char *modes[])
1497{
1498 struct drm_property *tv_selector;
1499 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001500 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001501
1502 if (dev->mode_config.tv_select_subconnector_property)
1503 return 0;
1504
1505 /*
1506 * Basic connector properties
1507 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001508 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001509 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001510 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001511 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001512 dev->mode_config.tv_select_subconnector_property = tv_selector;
1513
1514 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001515 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1516 "subconnector",
1517 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001518 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001519 dev->mode_config.tv_subconnector_property = tv_subconnector;
1520
1521 /*
1522 * Other, TV specific properties: margins & TV modes.
1523 */
1524 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001525 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001526
1527 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001528 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001529
1530 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001531 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001532
1533 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001534 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001535
1536 dev->mode_config.tv_mode_property =
1537 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1538 "mode", num_modes);
1539 for (i = 0; i < num_modes; i++)
1540 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1541 i, modes[i]);
1542
Francisco Jerezb6b79022009-08-02 04:19:20 +02001543 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001544 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001545
1546 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001547 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001548
1549 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001550 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001551
Francisco Jereza75f0232009-08-12 02:30:10 +02001552 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001553 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001554
1555 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001556 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001557
1558 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001559 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001560
Dave Airlief453ba02008-11-07 14:05:41 -08001561 return 0;
1562}
1563EXPORT_SYMBOL(drm_mode_create_tv_properties);
1564
1565/**
1566 * drm_mode_create_scaling_mode_property - create scaling mode property
1567 * @dev: DRM device
1568 *
1569 * Called by a driver the first time it's needed, must be attached to desired
1570 * connectors.
1571 */
1572int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1573{
1574 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001575
1576 if (dev->mode_config.scaling_mode_property)
1577 return 0;
1578
1579 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001580 drm_property_create_enum(dev, 0, "scaling mode",
1581 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001582 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001583
1584 dev->mode_config.scaling_mode_property = scaling_mode;
1585
1586 return 0;
1587}
1588EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1589
1590/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301591 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1592 * @dev: DRM device
1593 *
1594 * Called by a driver the first time it's needed, must be attached to desired
1595 * connectors.
1596 *
1597 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001598 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301599 */
1600int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1601{
1602 if (dev->mode_config.aspect_ratio_property)
1603 return 0;
1604
1605 dev->mode_config.aspect_ratio_property =
1606 drm_property_create_enum(dev, 0, "aspect ratio",
1607 drm_aspect_ratio_enum_list,
1608 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1609
1610 if (dev->mode_config.aspect_ratio_property == NULL)
1611 return -ENOMEM;
1612
1613 return 0;
1614}
1615EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1616
1617/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001618 * drm_mode_create_dirty_property - create dirty property
1619 * @dev: DRM device
1620 *
1621 * Called by a driver the first time it's needed, must be attached to desired
1622 * connectors.
1623 */
1624int drm_mode_create_dirty_info_property(struct drm_device *dev)
1625{
1626 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001627
1628 if (dev->mode_config.dirty_info_property)
1629 return 0;
1630
1631 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001632 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001633 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001634 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001635 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001636 dev->mode_config.dirty_info_property = dirty_info;
1637
1638 return 0;
1639}
1640EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1641
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001642/**
1643 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1644 * @dev: DRM device
1645 *
1646 * Create the the suggested x/y offset property for connectors.
1647 */
1648int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1649{
1650 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1651 return 0;
1652
1653 dev->mode_config.suggested_x_property =
1654 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1655
1656 dev->mode_config.suggested_y_property =
1657 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1658
1659 if (dev->mode_config.suggested_x_property == NULL ||
1660 dev->mode_config.suggested_y_property == NULL)
1661 return -ENOMEM;
1662 return 0;
1663}
1664EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1665
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001666static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001667{
1668 uint32_t total_objects = 0;
1669
1670 total_objects += dev->mode_config.num_crtc;
1671 total_objects += dev->mode_config.num_connector;
1672 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001673 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001674
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001675 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001676 if (!group->id_list)
1677 return -ENOMEM;
1678
1679 group->num_crtcs = 0;
1680 group->num_connectors = 0;
1681 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001682 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001683 return 0;
1684}
1685
Dave Airliead222792014-05-02 13:22:19 +10001686void drm_mode_group_destroy(struct drm_mode_group *group)
1687{
1688 kfree(group->id_list);
1689 group->id_list = NULL;
1690}
1691
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001692/*
1693 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1694 * the drm core's responsibility to set up mode control groups.
1695 */
Dave Airlief453ba02008-11-07 14:05:41 -08001696int drm_mode_group_init_legacy_group(struct drm_device *dev,
1697 struct drm_mode_group *group)
1698{
1699 struct drm_crtc *crtc;
1700 struct drm_encoder *encoder;
1701 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001702 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001703 int ret;
1704
Thierry Reding0cc0b222014-12-10 13:03:37 +01001705 ret = drm_mode_group_init(dev, group);
1706 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001707 return ret;
1708
1709 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1710 group->id_list[group->num_crtcs++] = crtc->base.id;
1711
1712 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1713 group->id_list[group->num_crtcs + group->num_encoders++] =
1714 encoder->base.id;
1715
1716 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1717 group->id_list[group->num_crtcs + group->num_encoders +
1718 group->num_connectors++] = connector->base.id;
1719
Sean Paul3b336ec2013-08-14 16:47:37 -04001720 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1721 group->id_list[group->num_crtcs + group->num_encoders +
1722 group->num_connectors + group->num_bridges++] =
1723 bridge->base.id;
1724
Dave Airlief453ba02008-11-07 14:05:41 -08001725 return 0;
1726}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001727EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001728
Dave Airlie2390cd12014-06-05 14:01:29 +10001729void drm_reinit_primary_mode_group(struct drm_device *dev)
1730{
1731 drm_modeset_lock_all(dev);
1732 drm_mode_group_destroy(&dev->primary->mode_group);
1733 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1734 drm_modeset_unlock_all(dev);
1735}
1736EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1737
Dave Airlief453ba02008-11-07 14:05:41 -08001738/**
Dave Airlief453ba02008-11-07 14:05:41 -08001739 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1740 * @out: drm_mode_modeinfo struct to return to the user
1741 * @in: drm_display_mode to use
1742 *
Dave Airlief453ba02008-11-07 14:05:41 -08001743 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1744 * the user.
1745 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001746static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1747 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001748{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001749 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1750 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1751 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1752 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1753 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1754 "timing values too large for mode info\n");
1755
Dave Airlief453ba02008-11-07 14:05:41 -08001756 out->clock = in->clock;
1757 out->hdisplay = in->hdisplay;
1758 out->hsync_start = in->hsync_start;
1759 out->hsync_end = in->hsync_end;
1760 out->htotal = in->htotal;
1761 out->hskew = in->hskew;
1762 out->vdisplay = in->vdisplay;
1763 out->vsync_start = in->vsync_start;
1764 out->vsync_end = in->vsync_end;
1765 out->vtotal = in->vtotal;
1766 out->vscan = in->vscan;
1767 out->vrefresh = in->vrefresh;
1768 out->flags = in->flags;
1769 out->type = in->type;
1770 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1771 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1772}
1773
1774/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001775 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001776 * @out: drm_display_mode to return to the user
1777 * @in: drm_mode_modeinfo to use
1778 *
Dave Airlief453ba02008-11-07 14:05:41 -08001779 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1780 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001781 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001782 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001783 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001784 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001785static int drm_crtc_convert_umode(struct drm_display_mode *out,
1786 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001787{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001788 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1789 return -ERANGE;
1790
Damien Lespiau5848ad42013-09-27 12:11:50 +01001791 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1792 return -EINVAL;
1793
Dave Airlief453ba02008-11-07 14:05:41 -08001794 out->clock = in->clock;
1795 out->hdisplay = in->hdisplay;
1796 out->hsync_start = in->hsync_start;
1797 out->hsync_end = in->hsync_end;
1798 out->htotal = in->htotal;
1799 out->hskew = in->hskew;
1800 out->vdisplay = in->vdisplay;
1801 out->vsync_start = in->vsync_start;
1802 out->vsync_end = in->vsync_end;
1803 out->vtotal = in->vtotal;
1804 out->vscan = in->vscan;
1805 out->vrefresh = in->vrefresh;
1806 out->flags = in->flags;
1807 out->type = in->type;
1808 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1809 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001810
1811 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001812}
1813
1814/**
1815 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001816 * @dev: drm device for the ioctl
1817 * @data: data pointer for the ioctl
1818 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001819 *
Dave Airlief453ba02008-11-07 14:05:41 -08001820 * Construct a set of configuration description structures and return
1821 * them to the user, including CRTC, connector and framebuffer configuration.
1822 *
1823 * Called by the user via ioctl.
1824 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001825 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001826 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001827 */
1828int drm_mode_getresources(struct drm_device *dev, void *data,
1829 struct drm_file *file_priv)
1830{
1831 struct drm_mode_card_res *card_res = data;
1832 struct list_head *lh;
1833 struct drm_framebuffer *fb;
1834 struct drm_connector *connector;
1835 struct drm_crtc *crtc;
1836 struct drm_encoder *encoder;
1837 int ret = 0;
1838 int connector_count = 0;
1839 int crtc_count = 0;
1840 int fb_count = 0;
1841 int encoder_count = 0;
1842 int copied = 0, i;
1843 uint32_t __user *fb_id;
1844 uint32_t __user *crtc_id;
1845 uint32_t __user *connector_id;
1846 uint32_t __user *encoder_id;
1847 struct drm_mode_group *mode_group;
1848
Dave Airliefb3b06c2011-02-08 13:55:21 +10001849 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1850 return -EINVAL;
1851
Dave Airlief453ba02008-11-07 14:05:41 -08001852
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001853 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001854 /*
1855 * For the non-control nodes we need to limit the list of resources
1856 * by IDs in the group list for this node
1857 */
1858 list_for_each(lh, &file_priv->fbs)
1859 fb_count++;
1860
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001861 /* handle this in 4 parts */
1862 /* FBs */
1863 if (card_res->count_fbs >= fb_count) {
1864 copied = 0;
1865 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1866 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1867 if (put_user(fb->base.id, fb_id + copied)) {
1868 mutex_unlock(&file_priv->fbs_lock);
1869 return -EFAULT;
1870 }
1871 copied++;
1872 }
1873 }
1874 card_res->count_fbs = fb_count;
1875 mutex_unlock(&file_priv->fbs_lock);
1876
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001877 /* mode_config.mutex protects the connector list against e.g. DP MST
1878 * connector hot-adding. CRTC/Plane lists are invariant. */
1879 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001880 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001881
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001882 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001883 list_for_each(lh, &dev->mode_config.crtc_list)
1884 crtc_count++;
1885
1886 list_for_each(lh, &dev->mode_config.connector_list)
1887 connector_count++;
1888
1889 list_for_each(lh, &dev->mode_config.encoder_list)
1890 encoder_count++;
1891 } else {
1892
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001893 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001894 crtc_count = mode_group->num_crtcs;
1895 connector_count = mode_group->num_connectors;
1896 encoder_count = mode_group->num_encoders;
1897 }
1898
1899 card_res->max_height = dev->mode_config.max_height;
1900 card_res->min_height = dev->mode_config.min_height;
1901 card_res->max_width = dev->mode_config.max_width;
1902 card_res->min_width = dev->mode_config.min_width;
1903
Dave Airlief453ba02008-11-07 14:05:41 -08001904 /* CRTCs */
1905 if (card_res->count_crtcs >= crtc_count) {
1906 copied = 0;
1907 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001908 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001909 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1910 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001911 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001912 if (put_user(crtc->base.id, crtc_id + copied)) {
1913 ret = -EFAULT;
1914 goto out;
1915 }
1916 copied++;
1917 }
1918 } else {
1919 for (i = 0; i < mode_group->num_crtcs; i++) {
1920 if (put_user(mode_group->id_list[i],
1921 crtc_id + copied)) {
1922 ret = -EFAULT;
1923 goto out;
1924 }
1925 copied++;
1926 }
1927 }
1928 }
1929 card_res->count_crtcs = crtc_count;
1930
1931 /* Encoders */
1932 if (card_res->count_encoders >= encoder_count) {
1933 copied = 0;
1934 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001935 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001936 list_for_each_entry(encoder,
1937 &dev->mode_config.encoder_list,
1938 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001939 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001940 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001941 if (put_user(encoder->base.id, encoder_id +
1942 copied)) {
1943 ret = -EFAULT;
1944 goto out;
1945 }
1946 copied++;
1947 }
1948 } else {
1949 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1950 if (put_user(mode_group->id_list[i],
1951 encoder_id + copied)) {
1952 ret = -EFAULT;
1953 goto out;
1954 }
1955 copied++;
1956 }
1957
1958 }
1959 }
1960 card_res->count_encoders = encoder_count;
1961
1962 /* Connectors */
1963 if (card_res->count_connectors >= connector_count) {
1964 copied = 0;
1965 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001966 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001967 list_for_each_entry(connector,
1968 &dev->mode_config.connector_list,
1969 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001970 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1971 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001972 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001973 if (put_user(connector->base.id,
1974 connector_id + copied)) {
1975 ret = -EFAULT;
1976 goto out;
1977 }
1978 copied++;
1979 }
1980 } else {
1981 int start = mode_group->num_crtcs +
1982 mode_group->num_encoders;
1983 for (i = start; i < start + mode_group->num_connectors; i++) {
1984 if (put_user(mode_group->id_list[i],
1985 connector_id + copied)) {
1986 ret = -EFAULT;
1987 goto out;
1988 }
1989 copied++;
1990 }
1991 }
1992 }
1993 card_res->count_connectors = connector_count;
1994
Jerome Glisse94401062010-07-15 15:43:25 -04001995 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001996 card_res->count_connectors, card_res->count_encoders);
1997
1998out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001999 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002000 return ret;
2001}
2002
2003/**
2004 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002005 * @dev: drm device for the ioctl
2006 * @data: data pointer for the ioctl
2007 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002008 *
Dave Airlief453ba02008-11-07 14:05:41 -08002009 * Construct a CRTC configuration structure to return to the user.
2010 *
2011 * Called by the user via ioctl.
2012 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002013 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002014 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002015 */
2016int drm_mode_getcrtc(struct drm_device *dev,
2017 void *data, struct drm_file *file_priv)
2018{
2019 struct drm_mode_crtc *crtc_resp = data;
2020 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002021
Dave Airliefb3b06c2011-02-08 13:55:21 +10002022 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2023 return -EINVAL;
2024
Rob Clarka2b34e22013-10-05 16:36:52 -04002025 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002026 if (!crtc)
2027 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002028
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002029 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08002030 crtc_resp->x = crtc->x;
2031 crtc_resp->y = crtc->y;
2032 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07002033 if (crtc->primary->fb)
2034 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002035 else
2036 crtc_resp->fb_id = 0;
2037
2038 if (crtc->enabled) {
2039
2040 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
2041 crtc_resp->mode_valid = 1;
2042
2043 } else {
2044 crtc_resp->mode_valid = 0;
2045 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002046 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08002047
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002048 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002049}
2050
Damien Lespiau61d8e322013-09-25 16:45:22 +01002051static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2052 const struct drm_file *file_priv)
2053{
2054 /*
2055 * If user-space hasn't configured the driver to expose the stereo 3D
2056 * modes, don't expose them.
2057 */
2058 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2059 return false;
2060
2061 return true;
2062}
2063
Daniel Vetterabd69c52014-11-25 23:50:05 +01002064static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2065{
2066 /* For atomic drivers only state objects are synchronously updated and
2067 * protected by modeset locks, so check those first. */
2068 if (connector->state)
2069 return connector->state->best_encoder;
2070 return connector->encoder;
2071}
2072
Rob Clark95cbf112014-12-18 16:01:49 -05002073/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002074static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002075 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2076 uint32_t *arg_count_props)
2077{
Rob Clark88a48e22014-12-18 16:01:50 -05002078 int props_count;
2079 int i, ret, copied;
2080
2081 props_count = obj->properties->count;
2082 if (!atomic)
2083 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002084
2085 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002086 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002087 struct drm_property *prop = obj->properties->properties[i];
2088 uint64_t val;
2089
Rob Clark88a48e22014-12-18 16:01:50 -05002090 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2091 continue;
2092
Rob Clark95cbf112014-12-18 16:01:49 -05002093 ret = drm_object_property_get_value(obj, prop, &val);
2094 if (ret)
2095 return ret;
2096
2097 if (put_user(prop->base.id, prop_ptr + copied))
2098 return -EFAULT;
2099
2100 if (put_user(val, prop_values + copied))
2101 return -EFAULT;
2102
2103 copied++;
2104 }
2105 }
2106 *arg_count_props = props_count;
2107
2108 return 0;
2109}
2110
Dave Airlief453ba02008-11-07 14:05:41 -08002111/**
2112 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002113 * @dev: drm device for the ioctl
2114 * @data: data pointer for the ioctl
2115 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002116 *
Dave Airlief453ba02008-11-07 14:05:41 -08002117 * Construct a connector configuration structure to return to the user.
2118 *
2119 * Called by the user via ioctl.
2120 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002121 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002122 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002123 */
2124int drm_mode_getconnector(struct drm_device *dev, void *data,
2125 struct drm_file *file_priv)
2126{
2127 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002128 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002129 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002130 struct drm_display_mode *mode;
2131 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002132 int encoders_count = 0;
2133 int ret = 0;
2134 int copied = 0;
2135 int i;
2136 struct drm_mode_modeinfo u_mode;
2137 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002138 uint32_t __user *encoder_ptr;
2139
Dave Airliefb3b06c2011-02-08 13:55:21 +10002140 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2141 return -EINVAL;
2142
Dave Airlief453ba02008-11-07 14:05:41 -08002143 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2144
Jerome Glisse94401062010-07-15 15:43:25 -04002145 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002146
Daniel Vetter7b240562012-12-12 00:35:33 +01002147 mutex_lock(&dev->mode_config.mutex);
Rob Clarkccfc0862014-12-18 16:01:48 -05002148 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlief453ba02008-11-07 14:05:41 -08002149
Rob Clarka2b34e22013-10-05 16:36:52 -04002150 connector = drm_connector_find(dev, out_resp->connector_id);
2151 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002152 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002153 goto out;
2154 }
Dave Airlief453ba02008-11-07 14:05:41 -08002155
Thierry Reding01073b02014-12-10 13:03:38 +01002156 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2157 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002158 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002159
2160 if (out_resp->count_modes == 0) {
2161 connector->funcs->fill_modes(connector,
2162 dev->mode_config.max_width,
2163 dev->mode_config.max_height);
2164 }
2165
2166 /* delayed so we get modes regardless of pre-fill_modes state */
2167 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002168 if (drm_mode_expose_to_userspace(mode, file_priv))
2169 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002170
2171 out_resp->connector_id = connector->base.id;
2172 out_resp->connector_type = connector->connector_type;
2173 out_resp->connector_type_id = connector->connector_type_id;
2174 out_resp->mm_width = connector->display_info.width_mm;
2175 out_resp->mm_height = connector->display_info.height_mm;
2176 out_resp->subpixel = connector->display_info.subpixel_order;
2177 out_resp->connection = connector->status;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002178 encoder = drm_connector_get_encoder(connector);
2179 if (encoder)
2180 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002181 else
2182 out_resp->encoder_id = 0;
2183
2184 /*
2185 * This ioctl is called twice, once to determine how much space is
2186 * needed, and the 2nd time to fill it.
2187 */
2188 if ((out_resp->count_modes >= mode_count) && mode_count) {
2189 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002190 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002191 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002192 if (!drm_mode_expose_to_userspace(mode, file_priv))
2193 continue;
2194
Dave Airlief453ba02008-11-07 14:05:41 -08002195 drm_crtc_convert_to_umode(&u_mode, mode);
2196 if (copy_to_user(mode_ptr + copied,
2197 &u_mode, sizeof(u_mode))) {
2198 ret = -EFAULT;
2199 goto out;
2200 }
2201 copied++;
2202 }
2203 }
2204 out_resp->count_modes = mode_count;
2205
Rob Clark88a48e22014-12-18 16:01:50 -05002206 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002207 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2208 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2209 &out_resp->count_props);
2210 if (ret)
2211 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002212
2213 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2214 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002215 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002216 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2217 if (connector->encoder_ids[i] != 0) {
2218 if (put_user(connector->encoder_ids[i],
2219 encoder_ptr + copied)) {
2220 ret = -EFAULT;
2221 goto out;
2222 }
2223 copied++;
2224 }
2225 }
2226 }
2227 out_resp->count_encoders = encoders_count;
2228
2229out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002230 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Daniel Vetter7b240562012-12-12 00:35:33 +01002231 mutex_unlock(&dev->mode_config.mutex);
2232
Dave Airlief453ba02008-11-07 14:05:41 -08002233 return ret;
2234}
2235
Daniel Vetterabd69c52014-11-25 23:50:05 +01002236static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2237{
2238 struct drm_connector *connector;
2239 struct drm_device *dev = encoder->dev;
2240 bool uses_atomic = false;
2241
2242 /* For atomic drivers only state objects are synchronously updated and
2243 * protected by modeset locks, so check those first. */
2244 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2245 if (!connector->state)
2246 continue;
2247
2248 uses_atomic = true;
2249
2250 if (connector->state->best_encoder != encoder)
2251 continue;
2252
2253 return connector->state->crtc;
2254 }
2255
2256 /* Don't return stale data (e.g. pending async disable). */
2257 if (uses_atomic)
2258 return NULL;
2259
2260 return encoder->crtc;
2261}
2262
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002263/**
2264 * drm_mode_getencoder - get encoder configuration
2265 * @dev: drm device for the ioctl
2266 * @data: data pointer for the ioctl
2267 * @file_priv: drm file for the ioctl call
2268 *
2269 * Construct a encoder configuration structure to return to the user.
2270 *
2271 * Called by the user via ioctl.
2272 *
2273 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002274 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002275 */
Dave Airlief453ba02008-11-07 14:05:41 -08002276int drm_mode_getencoder(struct drm_device *dev, void *data,
2277 struct drm_file *file_priv)
2278{
2279 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002280 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002281 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002282
Dave Airliefb3b06c2011-02-08 13:55:21 +10002283 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2284 return -EINVAL;
2285
Rob Clarka2b34e22013-10-05 16:36:52 -04002286 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002287 if (!encoder)
2288 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002289
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002290 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002291 crtc = drm_encoder_get_crtc(encoder);
2292 if (crtc)
2293 enc_resp->crtc_id = crtc->base.id;
2294 else if (encoder->crtc)
Dave Airlief453ba02008-11-07 14:05:41 -08002295 enc_resp->crtc_id = encoder->crtc->base.id;
2296 else
2297 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002298 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2299
Dave Airlief453ba02008-11-07 14:05:41 -08002300 enc_resp->encoder_type = encoder->encoder_type;
2301 enc_resp->encoder_id = encoder->base.id;
2302 enc_resp->possible_crtcs = encoder->possible_crtcs;
2303 enc_resp->possible_clones = encoder->possible_clones;
2304
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002305 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002306}
2307
2308/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002309 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002310 * @dev: DRM device
2311 * @data: ioctl data
2312 * @file_priv: DRM file info
2313 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002314 * Construct a list of plane ids to return to the user.
2315 *
2316 * Called by the user via ioctl.
2317 *
2318 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002319 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002320 */
2321int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002322 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002323{
2324 struct drm_mode_get_plane_res *plane_resp = data;
2325 struct drm_mode_config *config;
2326 struct drm_plane *plane;
2327 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002328 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002329 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002330
2331 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2332 return -EINVAL;
2333
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002334 config = &dev->mode_config;
2335
Matt Roper681e7ec2014-04-01 15:22:42 -07002336 if (file_priv->universal_planes)
2337 num_planes = config->num_total_plane;
2338 else
2339 num_planes = config->num_overlay_plane;
2340
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002341 /*
2342 * This ioctl is called twice, once to determine how much space is
2343 * needed, and the 2nd time to fill it.
2344 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002345 if (num_planes &&
2346 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002347 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002348
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002349 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002350 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002351 /*
2352 * Unless userspace set the 'universal planes'
2353 * capability bit, only advertise overlays.
2354 */
2355 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2356 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002357 continue;
2358
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002359 if (put_user(plane->base.id, plane_ptr + copied))
2360 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002361 copied++;
2362 }
2363 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002364 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002365
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002366 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002367}
2368
2369/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002370 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002371 * @dev: DRM device
2372 * @data: ioctl data
2373 * @file_priv: DRM file info
2374 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002375 * Construct a plane configuration structure to return to the user.
2376 *
2377 * Called by the user via ioctl.
2378 *
2379 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002380 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002381 */
2382int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002383 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002384{
2385 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002386 struct drm_plane *plane;
2387 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002388
2389 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2390 return -EINVAL;
2391
Rob Clarka2b34e22013-10-05 16:36:52 -04002392 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002393 if (!plane)
2394 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002395
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002396 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002397 if (plane->crtc)
2398 plane_resp->crtc_id = plane->crtc->base.id;
2399 else
2400 plane_resp->crtc_id = 0;
2401
2402 if (plane->fb)
2403 plane_resp->fb_id = plane->fb->base.id;
2404 else
2405 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002406 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002407
2408 plane_resp->plane_id = plane->base.id;
2409 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002410 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002411
2412 /*
2413 * This ioctl is called twice, once to determine how much space is
2414 * needed, and the 2nd time to fill it.
2415 */
2416 if (plane->format_count &&
2417 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002418 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002419 if (copy_to_user(format_ptr,
2420 plane->format_types,
2421 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002422 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002423 }
2424 }
2425 plane_resp->count_format_types = plane->format_count;
2426
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002427 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002428}
2429
Matt Roperb36552b2014-06-10 08:28:09 -07002430/*
2431 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002432 *
Matt Roperb36552b2014-06-10 08:28:09 -07002433 * Note that we assume an extra reference has already been taken on fb. If the
2434 * update fails, this reference will be dropped before return; if it succeeds,
2435 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002436 *
Matt Roperb36552b2014-06-10 08:28:09 -07002437 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002438 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002439static int __setplane_internal(struct drm_plane *plane,
2440 struct drm_crtc *crtc,
2441 struct drm_framebuffer *fb,
2442 int32_t crtc_x, int32_t crtc_y,
2443 uint32_t crtc_w, uint32_t crtc_h,
2444 /* src_{x,y,w,h} values are 16.16 fixed point */
2445 uint32_t src_x, uint32_t src_y,
2446 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002447{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002448 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002449 unsigned int fb_width, fb_height;
Thierry Reding2f763312014-10-13 12:45:57 +02002450 unsigned int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002451
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002452 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002453 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002454 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002455 ret = plane->funcs->disable_plane(plane);
2456 if (!ret) {
2457 plane->crtc = NULL;
2458 plane->fb = NULL;
2459 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002460 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002461 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002462 goto out;
2463 }
2464
Matt Roper7f994f32014-05-29 08:06:51 -07002465 /* Check whether this plane is usable on this CRTC */
2466 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2467 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2468 ret = -EINVAL;
2469 goto out;
2470 }
2471
Ville Syrjälä62443be2011-12-20 00:06:47 +02002472 /* Check whether this plane supports the fb pixel format. */
2473 for (i = 0; i < plane->format_count; i++)
2474 if (fb->pixel_format == plane->format_types[i])
2475 break;
2476 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002477 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2478 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002479 ret = -EINVAL;
2480 goto out;
2481 }
2482
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002483 fb_width = fb->width << 16;
2484 fb_height = fb->height << 16;
2485
2486 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002487 if (src_w > fb_width ||
2488 src_x > fb_width - src_w ||
2489 src_h > fb_height ||
2490 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002491 DRM_DEBUG_KMS("Invalid source coordinates "
2492 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002493 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2494 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2495 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2496 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002497 ret = -ENOSPC;
2498 goto out;
2499 }
2500
Daniel Vetter3d30a592014-07-27 13:42:42 +02002501 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002502 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002503 crtc_x, crtc_y, crtc_w, crtc_h,
2504 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002505 if (!ret) {
2506 plane->crtc = crtc;
2507 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002508 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002509 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002510 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002511 }
2512
2513out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002514 if (fb)
2515 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002516 if (plane->old_fb)
2517 drm_framebuffer_unreference(plane->old_fb);
2518 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002519
2520 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002521}
Matt Roperb36552b2014-06-10 08:28:09 -07002522
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002523static int setplane_internal(struct drm_plane *plane,
2524 struct drm_crtc *crtc,
2525 struct drm_framebuffer *fb,
2526 int32_t crtc_x, int32_t crtc_y,
2527 uint32_t crtc_w, uint32_t crtc_h,
2528 /* src_{x,y,w,h} values are 16.16 fixed point */
2529 uint32_t src_x, uint32_t src_y,
2530 uint32_t src_w, uint32_t src_h)
2531{
2532 int ret;
2533
2534 drm_modeset_lock_all(plane->dev);
2535 ret = __setplane_internal(plane, crtc, fb,
2536 crtc_x, crtc_y, crtc_w, crtc_h,
2537 src_x, src_y, src_w, src_h);
2538 drm_modeset_unlock_all(plane->dev);
2539
2540 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002541}
2542
2543/**
2544 * drm_mode_setplane - configure a plane's configuration
2545 * @dev: DRM device
2546 * @data: ioctl data*
2547 * @file_priv: DRM file info
2548 *
2549 * Set plane configuration, including placement, fb, scaling, and other factors.
2550 * Or pass a NULL fb to disable (planes may be disabled without providing a
2551 * valid crtc).
2552 *
2553 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002554 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002555 */
2556int drm_mode_setplane(struct drm_device *dev, void *data,
2557 struct drm_file *file_priv)
2558{
2559 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002560 struct drm_plane *plane;
2561 struct drm_crtc *crtc = NULL;
2562 struct drm_framebuffer *fb = NULL;
2563
2564 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2565 return -EINVAL;
2566
2567 /* Give drivers some help against integer overflows */
2568 if (plane_req->crtc_w > INT_MAX ||
2569 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2570 plane_req->crtc_h > INT_MAX ||
2571 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2572 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2573 plane_req->crtc_w, plane_req->crtc_h,
2574 plane_req->crtc_x, plane_req->crtc_y);
2575 return -ERANGE;
2576 }
2577
2578 /*
2579 * First, find the plane, crtc, and fb objects. If not available,
2580 * we don't bother to call the driver.
2581 */
Rob Clark933f6222014-11-25 20:33:11 -05002582 plane = drm_plane_find(dev, plane_req->plane_id);
2583 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002584 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2585 plane_req->plane_id);
2586 return -ENOENT;
2587 }
Matt Roperb36552b2014-06-10 08:28:09 -07002588
2589 if (plane_req->fb_id) {
2590 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2591 if (!fb) {
2592 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2593 plane_req->fb_id);
2594 return -ENOENT;
2595 }
2596
Rob Clark933f6222014-11-25 20:33:11 -05002597 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2598 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002599 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2600 plane_req->crtc_id);
2601 return -ENOENT;
2602 }
Matt Roperb36552b2014-06-10 08:28:09 -07002603 }
2604
Matt Roper161d0dc2014-06-10 08:28:10 -07002605 /*
2606 * setplane_internal will take care of deref'ing either the old or new
2607 * framebuffer depending on success.
2608 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002609 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002610 plane_req->crtc_x, plane_req->crtc_y,
2611 plane_req->crtc_w, plane_req->crtc_h,
2612 plane_req->src_x, plane_req->src_y,
2613 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002614}
2615
2616/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002617 * drm_mode_set_config_internal - helper to call ->set_config
2618 * @set: modeset config to set
2619 *
2620 * This is a little helper to wrap internal calls to the ->set_config driver
2621 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002622 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002623 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002624 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002625 */
2626int drm_mode_set_config_internal(struct drm_mode_set *set)
2627{
2628 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002629 struct drm_framebuffer *fb;
2630 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002631 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002632
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002633 /*
2634 * NOTE: ->set_config can also disable other crtcs (if we steal all
2635 * connectors from it), hence we need to refcount the fbs across all
2636 * crtcs. Atomic modeset will have saner semantics ...
2637 */
2638 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002639 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002640
Daniel Vetterb0d12322012-12-11 01:07:12 +01002641 fb = set->fb;
2642
2643 ret = crtc->funcs->set_config(set);
2644 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002645 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002646 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002647 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002648
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002649 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002650 if (tmp->primary->fb)
2651 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002652 if (tmp->primary->old_fb)
2653 drm_framebuffer_unreference(tmp->primary->old_fb);
2654 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002655 }
2656
2657 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002658}
2659EXPORT_SYMBOL(drm_mode_set_config_internal);
2660
Matt Roperaf936292014-04-01 15:22:34 -07002661/**
2662 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2663 * CRTC viewport
2664 * @crtc: CRTC that framebuffer will be displayed on
2665 * @x: x panning
2666 * @y: y panning
2667 * @mode: mode that framebuffer will be displayed under
2668 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002669 */
Matt Roperaf936292014-04-01 15:22:34 -07002670int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2671 int x, int y,
2672 const struct drm_display_mode *mode,
2673 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002674
2675{
2676 int hdisplay, vdisplay;
2677
2678 hdisplay = mode->hdisplay;
2679 vdisplay = mode->vdisplay;
2680
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002681 if (drm_mode_is_stereo(mode)) {
2682 struct drm_display_mode adjusted = *mode;
2683
2684 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2685 hdisplay = adjusted.crtc_hdisplay;
2686 vdisplay = adjusted.crtc_vdisplay;
2687 }
2688
Damien Lespiauc11e9282013-09-25 16:45:30 +01002689 if (crtc->invert_dimensions)
2690 swap(hdisplay, vdisplay);
2691
2692 if (hdisplay > fb->width ||
2693 vdisplay > fb->height ||
2694 x > fb->width - hdisplay ||
2695 y > fb->height - vdisplay) {
2696 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2697 fb->width, fb->height, hdisplay, vdisplay, x, y,
2698 crtc->invert_dimensions ? " (inverted)" : "");
2699 return -ENOSPC;
2700 }
2701
2702 return 0;
2703}
Matt Roperaf936292014-04-01 15:22:34 -07002704EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002705
Daniel Vetter2d13b672012-12-11 13:47:23 +01002706/**
Dave Airlief453ba02008-11-07 14:05:41 -08002707 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002708 * @dev: drm device for the ioctl
2709 * @data: data pointer for the ioctl
2710 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002711 *
Dave Airlief453ba02008-11-07 14:05:41 -08002712 * Build a new CRTC configuration based on user request.
2713 *
2714 * Called by the user via ioctl.
2715 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002716 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002717 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002718 */
2719int drm_mode_setcrtc(struct drm_device *dev, void *data,
2720 struct drm_file *file_priv)
2721{
2722 struct drm_mode_config *config = &dev->mode_config;
2723 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002724 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002725 struct drm_connector **connector_set = NULL, *connector;
2726 struct drm_framebuffer *fb = NULL;
2727 struct drm_display_mode *mode = NULL;
2728 struct drm_mode_set set;
2729 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002730 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002731 int i;
2732
Dave Airliefb3b06c2011-02-08 13:55:21 +10002733 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2734 return -EINVAL;
2735
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002736 /* For some reason crtc x/y offsets are signed internally. */
2737 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2738 return -ERANGE;
2739
Daniel Vetter84849902012-12-02 00:28:11 +01002740 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002741 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2742 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002743 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002744 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002745 goto out;
2746 }
Jerome Glisse94401062010-07-15 15:43:25 -04002747 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002748
2749 if (crtc_req->mode_valid) {
2750 /* If we have a mode we need a framebuffer. */
2751 /* If we pass -1, set the mode with the currently bound fb */
2752 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002753 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002754 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2755 ret = -EINVAL;
2756 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002757 }
Matt Roperf4510a22014-04-01 15:22:40 -07002758 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002759 /* Make refcounting symmetric with the lookup path. */
2760 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002761 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002762 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2763 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002764 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2765 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002766 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002767 goto out;
2768 }
Dave Airlief453ba02008-11-07 14:05:41 -08002769 }
2770
2771 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002772 if (!mode) {
2773 ret = -ENOMEM;
2774 goto out;
2775 }
2776
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002777 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2778 if (ret) {
2779 DRM_DEBUG_KMS("Invalid mode\n");
2780 goto out;
2781 }
2782
Dave Airlief453ba02008-11-07 14:05:41 -08002783 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002784
Damien Lespiauc11e9282013-09-25 16:45:30 +01002785 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2786 mode, fb);
2787 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002788 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002789
Dave Airlief453ba02008-11-07 14:05:41 -08002790 }
2791
2792 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002793 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002794 ret = -EINVAL;
2795 goto out;
2796 }
2797
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002798 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002799 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002800 crtc_req->count_connectors);
2801 ret = -EINVAL;
2802 goto out;
2803 }
2804
2805 if (crtc_req->count_connectors > 0) {
2806 u32 out_id;
2807
2808 /* Avoid unbounded kernel memory allocation */
2809 if (crtc_req->count_connectors > config->num_connector) {
2810 ret = -EINVAL;
2811 goto out;
2812 }
2813
Thierry Reding2f6c5382014-12-10 13:03:36 +01002814 connector_set = kmalloc_array(crtc_req->count_connectors,
2815 sizeof(struct drm_connector *),
2816 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002817 if (!connector_set) {
2818 ret = -ENOMEM;
2819 goto out;
2820 }
2821
2822 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002823 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002824 if (get_user(out_id, &set_connectors_ptr[i])) {
2825 ret = -EFAULT;
2826 goto out;
2827 }
2828
Rob Clarka2b34e22013-10-05 16:36:52 -04002829 connector = drm_connector_find(dev, out_id);
2830 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002831 DRM_DEBUG_KMS("Connector id %d unknown\n",
2832 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002833 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002834 goto out;
2835 }
Jerome Glisse94401062010-07-15 15:43:25 -04002836 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2837 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002838 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002839
2840 connector_set[i] = connector;
2841 }
2842 }
2843
2844 set.crtc = crtc;
2845 set.x = crtc_req->x;
2846 set.y = crtc_req->y;
2847 set.mode = mode;
2848 set.connectors = connector_set;
2849 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002850 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002851 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002852
2853out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002854 if (fb)
2855 drm_framebuffer_unreference(fb);
2856
Dave Airlief453ba02008-11-07 14:05:41 -08002857 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002858 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002859 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002860 return ret;
2861}
2862
Matt Roper161d0dc2014-06-10 08:28:10 -07002863/**
2864 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2865 * universal plane handler call
2866 * @crtc: crtc to update cursor for
2867 * @req: data pointer for the ioctl
2868 * @file_priv: drm file for the ioctl call
2869 *
2870 * Legacy cursor ioctl's work directly with driver buffer handles. To
2871 * translate legacy ioctl calls into universal plane handler calls, we need to
2872 * wrap the native buffer handle in a drm_framebuffer.
2873 *
2874 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2875 * buffer with a pitch of 4*width; the universal plane interface should be used
2876 * directly in cases where the hardware can support other buffer settings and
2877 * userspace wants to make use of these capabilities.
2878 *
2879 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002880 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002881 */
2882static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2883 struct drm_mode_cursor2 *req,
2884 struct drm_file *file_priv)
2885{
2886 struct drm_device *dev = crtc->dev;
2887 struct drm_framebuffer *fb = NULL;
2888 struct drm_mode_fb_cmd2 fbreq = {
2889 .width = req->width,
2890 .height = req->height,
2891 .pixel_format = DRM_FORMAT_ARGB8888,
2892 .pitches = { req->width * 4 },
2893 .handles = { req->handle },
2894 };
2895 int32_t crtc_x, crtc_y;
2896 uint32_t crtc_w = 0, crtc_h = 0;
2897 uint32_t src_w = 0, src_h = 0;
2898 int ret = 0;
2899
2900 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002901 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002902
2903 /*
2904 * Obtain fb we'll be using (either new or existing) and take an extra
2905 * reference to it if fb != null. setplane will take care of dropping
2906 * the reference if the plane update fails.
2907 */
2908 if (req->flags & DRM_MODE_CURSOR_BO) {
2909 if (req->handle) {
2910 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2911 if (IS_ERR(fb)) {
2912 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2913 return PTR_ERR(fb);
2914 }
2915
2916 drm_framebuffer_reference(fb);
2917 } else {
2918 fb = NULL;
2919 }
2920 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002921 fb = crtc->cursor->fb;
2922 if (fb)
2923 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002924 }
2925
2926 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2927 crtc_x = req->x;
2928 crtc_y = req->y;
2929 } else {
2930 crtc_x = crtc->cursor_x;
2931 crtc_y = crtc->cursor_y;
2932 }
2933
2934 if (fb) {
2935 crtc_w = fb->width;
2936 crtc_h = fb->height;
2937 src_w = fb->width << 16;
2938 src_h = fb->height << 16;
2939 }
2940
2941 /*
2942 * setplane_internal will take care of deref'ing either the old or new
2943 * framebuffer depending on success.
2944 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002945 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002946 crtc_x, crtc_y, crtc_w, crtc_h,
2947 0, 0, src_w, src_h);
2948
2949 /* Update successful; save new cursor position, if necessary */
2950 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2951 crtc->cursor_x = req->x;
2952 crtc->cursor_y = req->y;
2953 }
2954
2955 return ret;
2956}
2957
Dave Airlie4c813d42013-06-20 11:48:52 +10002958static int drm_mode_cursor_common(struct drm_device *dev,
2959 struct drm_mode_cursor2 *req,
2960 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002961{
Dave Airlief453ba02008-11-07 14:05:41 -08002962 struct drm_crtc *crtc;
2963 int ret = 0;
2964
Dave Airliefb3b06c2011-02-08 13:55:21 +10002965 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2966 return -EINVAL;
2967
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002968 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002969 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002970
Rob Clarka2b34e22013-10-05 16:36:52 -04002971 crtc = drm_crtc_find(dev, req->crtc_id);
2972 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002973 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002974 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002975 }
Dave Airlief453ba02008-11-07 14:05:41 -08002976
Matt Roper161d0dc2014-06-10 08:28:10 -07002977 /*
2978 * If this crtc has a universal cursor plane, call that plane's update
2979 * handler rather than using legacy cursor handlers.
2980 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002981 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002982 if (crtc->cursor) {
2983 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2984 goto out;
2985 }
2986
Dave Airlief453ba02008-11-07 14:05:41 -08002987 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002988 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002989 ret = -ENXIO;
2990 goto out;
2991 }
2992 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002993 if (crtc->funcs->cursor_set2)
2994 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2995 req->width, req->height, req->hot_x, req->hot_y);
2996 else
2997 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2998 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002999 }
3000
3001 if (req->flags & DRM_MODE_CURSOR_MOVE) {
3002 if (crtc->funcs->cursor_move) {
3003 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
3004 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08003005 ret = -EFAULT;
3006 goto out;
3007 }
3008 }
3009out:
Daniel Vetterd059f652014-07-25 18:07:40 +02003010 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01003011
Dave Airlief453ba02008-11-07 14:05:41 -08003012 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10003013
3014}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003015
3016
3017/**
3018 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3019 * @dev: drm device for the ioctl
3020 * @data: data pointer for the ioctl
3021 * @file_priv: drm file for the ioctl call
3022 *
3023 * Set the cursor configuration based on user request.
3024 *
3025 * Called by the user via ioctl.
3026 *
3027 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003028 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003029 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003030int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003031 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003032{
3033 struct drm_mode_cursor *req = data;
3034 struct drm_mode_cursor2 new_req;
3035
3036 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3037 new_req.hot_x = new_req.hot_y = 0;
3038
3039 return drm_mode_cursor_common(dev, &new_req, file_priv);
3040}
3041
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003042/**
3043 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3044 * @dev: drm device for the ioctl
3045 * @data: data pointer for the ioctl
3046 * @file_priv: drm file for the ioctl call
3047 *
3048 * Set the cursor configuration based on user request. This implements the 2nd
3049 * version of the cursor ioctl, which allows userspace to additionally specify
3050 * the hotspot of the pointer.
3051 *
3052 * Called by the user via ioctl.
3053 *
3054 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003055 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003056 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003057int drm_mode_cursor2_ioctl(struct drm_device *dev,
3058 void *data, struct drm_file *file_priv)
3059{
3060 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003061
Dave Airlie4c813d42013-06-20 11:48:52 +10003062 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003063}
3064
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003065/**
3066 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3067 * @bpp: bits per pixels
3068 * @depth: bit depth per pixel
3069 *
3070 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3071 * Useful in fbdev emulation code, since that deals in those values.
3072 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003073uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3074{
3075 uint32_t fmt;
3076
3077 switch (bpp) {
3078 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003079 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003080 break;
3081 case 16:
3082 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003083 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003084 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003085 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003086 break;
3087 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003088 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003089 break;
3090 case 32:
3091 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003092 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003093 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003094 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003095 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003096 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003097 break;
3098 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003099 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3100 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003101 break;
3102 }
3103
3104 return fmt;
3105}
3106EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3107
Dave Airlief453ba02008-11-07 14:05:41 -08003108/**
3109 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003110 * @dev: drm device for the ioctl
3111 * @data: data pointer for the ioctl
3112 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003113 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003114 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003115 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003116 *
3117 * Called by the user via ioctl.
3118 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003119 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003120 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003121 */
3122int drm_mode_addfb(struct drm_device *dev,
3123 void *data, struct drm_file *file_priv)
3124{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003125 struct drm_mode_fb_cmd *or = data;
3126 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003127 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003128
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003129 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003130 r.fb_id = or->fb_id;
3131 r.width = or->width;
3132 r.height = or->height;
3133 r.pitches[0] = or->pitch;
3134 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3135 r.handles[0] = or->handle;
3136
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003137 ret = drm_mode_addfb2(dev, &r, file_priv);
3138 if (ret)
3139 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003140
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003141 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003142
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003143 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003144}
3145
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003146static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003147{
3148 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3149
3150 switch (format) {
3151 case DRM_FORMAT_C8:
3152 case DRM_FORMAT_RGB332:
3153 case DRM_FORMAT_BGR233:
3154 case DRM_FORMAT_XRGB4444:
3155 case DRM_FORMAT_XBGR4444:
3156 case DRM_FORMAT_RGBX4444:
3157 case DRM_FORMAT_BGRX4444:
3158 case DRM_FORMAT_ARGB4444:
3159 case DRM_FORMAT_ABGR4444:
3160 case DRM_FORMAT_RGBA4444:
3161 case DRM_FORMAT_BGRA4444:
3162 case DRM_FORMAT_XRGB1555:
3163 case DRM_FORMAT_XBGR1555:
3164 case DRM_FORMAT_RGBX5551:
3165 case DRM_FORMAT_BGRX5551:
3166 case DRM_FORMAT_ARGB1555:
3167 case DRM_FORMAT_ABGR1555:
3168 case DRM_FORMAT_RGBA5551:
3169 case DRM_FORMAT_BGRA5551:
3170 case DRM_FORMAT_RGB565:
3171 case DRM_FORMAT_BGR565:
3172 case DRM_FORMAT_RGB888:
3173 case DRM_FORMAT_BGR888:
3174 case DRM_FORMAT_XRGB8888:
3175 case DRM_FORMAT_XBGR8888:
3176 case DRM_FORMAT_RGBX8888:
3177 case DRM_FORMAT_BGRX8888:
3178 case DRM_FORMAT_ARGB8888:
3179 case DRM_FORMAT_ABGR8888:
3180 case DRM_FORMAT_RGBA8888:
3181 case DRM_FORMAT_BGRA8888:
3182 case DRM_FORMAT_XRGB2101010:
3183 case DRM_FORMAT_XBGR2101010:
3184 case DRM_FORMAT_RGBX1010102:
3185 case DRM_FORMAT_BGRX1010102:
3186 case DRM_FORMAT_ARGB2101010:
3187 case DRM_FORMAT_ABGR2101010:
3188 case DRM_FORMAT_RGBA1010102:
3189 case DRM_FORMAT_BGRA1010102:
3190 case DRM_FORMAT_YUYV:
3191 case DRM_FORMAT_YVYU:
3192 case DRM_FORMAT_UYVY:
3193 case DRM_FORMAT_VYUY:
3194 case DRM_FORMAT_AYUV:
3195 case DRM_FORMAT_NV12:
3196 case DRM_FORMAT_NV21:
3197 case DRM_FORMAT_NV16:
3198 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003199 case DRM_FORMAT_NV24:
3200 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003201 case DRM_FORMAT_YUV410:
3202 case DRM_FORMAT_YVU410:
3203 case DRM_FORMAT_YUV411:
3204 case DRM_FORMAT_YVU411:
3205 case DRM_FORMAT_YUV420:
3206 case DRM_FORMAT_YVU420:
3207 case DRM_FORMAT_YUV422:
3208 case DRM_FORMAT_YVU422:
3209 case DRM_FORMAT_YUV444:
3210 case DRM_FORMAT_YVU444:
3211 return 0;
3212 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003213 DRM_DEBUG_KMS("invalid pixel format %s\n",
3214 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003215 return -EINVAL;
3216 }
3217}
3218
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003219static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003220{
3221 int ret, hsub, vsub, num_planes, i;
3222
3223 ret = format_check(r);
3224 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003225 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3226 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003227 return ret;
3228 }
3229
3230 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3231 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3232 num_planes = drm_format_num_planes(r->pixel_format);
3233
3234 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003235 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003236 return -EINVAL;
3237 }
3238
3239 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003240 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003241 return -EINVAL;
3242 }
3243
3244 for (i = 0; i < num_planes; i++) {
3245 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003246 unsigned int height = r->height / (i != 0 ? vsub : 1);
3247 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003248
3249 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003250 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003251 return -EINVAL;
3252 }
3253
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003254 if ((uint64_t) width * cpp > UINT_MAX)
3255 return -ERANGE;
3256
3257 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3258 return -ERANGE;
3259
3260 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003261 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003262 return -EINVAL;
3263 }
3264 }
3265
3266 return 0;
3267}
3268
Matt Roperc394c2b2014-06-10 08:28:08 -07003269static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3270 struct drm_mode_fb_cmd2 *r,
3271 struct drm_file *file_priv)
3272{
3273 struct drm_mode_config *config = &dev->mode_config;
3274 struct drm_framebuffer *fb;
3275 int ret;
3276
3277 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3278 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3279 return ERR_PTR(-EINVAL);
3280 }
3281
3282 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3283 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3284 r->width, config->min_width, config->max_width);
3285 return ERR_PTR(-EINVAL);
3286 }
3287 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3288 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3289 r->height, config->min_height, config->max_height);
3290 return ERR_PTR(-EINVAL);
3291 }
3292
3293 ret = framebuffer_check(r);
3294 if (ret)
3295 return ERR_PTR(ret);
3296
3297 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3298 if (IS_ERR(fb)) {
3299 DRM_DEBUG_KMS("could not create framebuffer\n");
3300 return fb;
3301 }
3302
3303 mutex_lock(&file_priv->fbs_lock);
3304 r->fb_id = fb->base.id;
3305 list_add(&fb->filp_head, &file_priv->fbs);
3306 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3307 mutex_unlock(&file_priv->fbs_lock);
3308
3309 return fb;
3310}
3311
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003312/**
3313 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003314 * @dev: drm device for the ioctl
3315 * @data: data pointer for the ioctl
3316 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003317 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003318 * Add a new FB to the specified CRTC, given a user request with format. This is
3319 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3320 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003321 *
3322 * Called by the user via ioctl.
3323 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003324 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003325 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003326 */
3327int drm_mode_addfb2(struct drm_device *dev,
3328 void *data, struct drm_file *file_priv)
3329{
Dave Airlief453ba02008-11-07 14:05:41 -08003330 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003331
Dave Airliefb3b06c2011-02-08 13:55:21 +10003332 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3333 return -EINVAL;
3334
Matt Roperc394c2b2014-06-10 08:28:08 -07003335 fb = add_framebuffer_internal(dev, data, file_priv);
3336 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003337 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003338
Matt Roperc394c2b2014-06-10 08:28:08 -07003339 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003340}
3341
3342/**
3343 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003344 * @dev: drm device for the ioctl
3345 * @data: data pointer for the ioctl
3346 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003347 *
Dave Airlief453ba02008-11-07 14:05:41 -08003348 * Remove the FB specified by the user.
3349 *
3350 * Called by the user via ioctl.
3351 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003352 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003353 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003354 */
3355int drm_mode_rmfb(struct drm_device *dev,
3356 void *data, struct drm_file *file_priv)
3357{
Dave Airlief453ba02008-11-07 14:05:41 -08003358 struct drm_framebuffer *fb = NULL;
3359 struct drm_framebuffer *fbl = NULL;
3360 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003361 int found = 0;
3362
Dave Airliefb3b06c2011-02-08 13:55:21 +10003363 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3364 return -EINVAL;
3365
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003366 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003367 mutex_lock(&dev->mode_config.fb_lock);
3368 fb = __drm_framebuffer_lookup(dev, *id);
3369 if (!fb)
3370 goto fail_lookup;
3371
Dave Airlief453ba02008-11-07 14:05:41 -08003372 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3373 if (fb == fbl)
3374 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003375 if (!found)
3376 goto fail_lookup;
3377
3378 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3379 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003380
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003381 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003382 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003383 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003384
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003385 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003386
Daniel Vetter2b677e82012-12-10 21:16:05 +01003387 return 0;
3388
3389fail_lookup:
3390 mutex_unlock(&dev->mode_config.fb_lock);
3391 mutex_unlock(&file_priv->fbs_lock);
3392
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003393 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003394}
3395
3396/**
3397 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003398 * @dev: drm device for the ioctl
3399 * @data: data pointer for the ioctl
3400 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003401 *
Dave Airlief453ba02008-11-07 14:05:41 -08003402 * Lookup the FB given its ID and return info about it.
3403 *
3404 * Called by the user via ioctl.
3405 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003406 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003407 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003408 */
3409int drm_mode_getfb(struct drm_device *dev,
3410 void *data, struct drm_file *file_priv)
3411{
3412 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003413 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003414 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003415
Dave Airliefb3b06c2011-02-08 13:55:21 +10003416 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3417 return -EINVAL;
3418
Daniel Vetter786b99e2012-12-02 21:53:40 +01003419 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003420 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003421 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003422
3423 r->height = fb->height;
3424 r->width = fb->width;
3425 r->depth = fb->depth;
3426 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003427 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003428 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003429 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003430 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003431 ret = fb->funcs->create_handle(fb, file_priv,
3432 &r->handle);
3433 } else {
3434 /* GET_FB() is an unprivileged ioctl so we must not
3435 * return a buffer-handle to non-master processes! For
3436 * backwards-compatibility reasons, we cannot make
3437 * GET_FB() privileged, so just return an invalid handle
3438 * for non-masters. */
3439 r->handle = 0;
3440 ret = 0;
3441 }
3442 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003443 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003444 }
Dave Airlief453ba02008-11-07 14:05:41 -08003445
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003446 drm_framebuffer_unreference(fb);
3447
Dave Airlief453ba02008-11-07 14:05:41 -08003448 return ret;
3449}
3450
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003451/**
3452 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3453 * @dev: drm device for the ioctl
3454 * @data: data pointer for the ioctl
3455 * @file_priv: drm file for the ioctl call
3456 *
3457 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3458 * rectangle list. Generic userspace which does frontbuffer rendering must call
3459 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3460 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3461 *
3462 * Modesetting drivers which always update the frontbuffer do not need to
3463 * implement the corresponding ->dirty framebuffer callback.
3464 *
3465 * Called by the user via ioctl.
3466 *
3467 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003468 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003469 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003470int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3471 void *data, struct drm_file *file_priv)
3472{
3473 struct drm_clip_rect __user *clips_ptr;
3474 struct drm_clip_rect *clips = NULL;
3475 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003476 struct drm_framebuffer *fb;
3477 unsigned flags;
3478 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003479 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003480
Dave Airliefb3b06c2011-02-08 13:55:21 +10003481 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3482 return -EINVAL;
3483
Daniel Vetter786b99e2012-12-02 21:53:40 +01003484 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003485 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003486 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003487
3488 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003489 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003490
3491 if (!num_clips != !clips_ptr) {
3492 ret = -EINVAL;
3493 goto out_err1;
3494 }
3495
3496 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3497
3498 /* If userspace annotates copy, clips must come in pairs */
3499 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3500 ret = -EINVAL;
3501 goto out_err1;
3502 }
3503
3504 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003505 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3506 ret = -EINVAL;
3507 goto out_err1;
3508 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003509 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003510 if (!clips) {
3511 ret = -ENOMEM;
3512 goto out_err1;
3513 }
3514
3515 ret = copy_from_user(clips, clips_ptr,
3516 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003517 if (ret) {
3518 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003519 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003520 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003521 }
3522
3523 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003524 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3525 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003526 } else {
3527 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003528 }
3529
3530out_err2:
3531 kfree(clips);
3532out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003533 drm_framebuffer_unreference(fb);
3534
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003535 return ret;
3536}
3537
3538
Dave Airlief453ba02008-11-07 14:05:41 -08003539/**
3540 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003541 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003542 *
Dave Airlief453ba02008-11-07 14:05:41 -08003543 * Destroy all the FBs associated with @filp.
3544 *
3545 * Called by the user via ioctl.
3546 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003547 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003548 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003549 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003550void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003551{
Dave Airlief453ba02008-11-07 14:05:41 -08003552 struct drm_device *dev = priv->minor->dev;
3553 struct drm_framebuffer *fb, *tfb;
3554
Daniel Vetter1b116292014-09-24 21:51:06 +02003555 /*
3556 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003557 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003558 * avoid upsetting lockdep since the universal cursor code adds a
3559 * framebuffer while holding mutex locks.
3560 *
3561 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3562 * locks is impossible here since no one else but this function can get
3563 * at it any more.
3564 */
Dave Airlief453ba02008-11-07 14:05:41 -08003565 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003566
3567 mutex_lock(&dev->mode_config.fb_lock);
3568 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3569 __drm_framebuffer_unregister(dev, fb);
3570 mutex_unlock(&dev->mode_config.fb_lock);
3571
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003572 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003573
3574 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003575 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003576 }
Dave Airlief453ba02008-11-07 14:05:41 -08003577}
3578
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003579/**
3580 * drm_property_create - create a new property type
3581 * @dev: drm device
3582 * @flags: flags specifying the property type
3583 * @name: name of the property
3584 * @num_values: number of pre-defined values
3585 *
3586 * This creates a new generic drm property which can then be attached to a drm
3587 * object with drm_object_attach_property. The returned property object must be
3588 * freed with drm_property_destroy.
3589 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003590 * Note that the DRM core keeps a per-device list of properties and that, if
3591 * drm_mode_config_cleanup() is called, it will destroy all properties created
3592 * by the driver.
3593 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003594 * Returns:
3595 * A pointer to the newly created property on success, NULL on failure.
3596 */
Dave Airlief453ba02008-11-07 14:05:41 -08003597struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3598 const char *name, int num_values)
3599{
3600 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003601 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003602
3603 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3604 if (!property)
3605 return NULL;
3606
Rob Clark98f75de2014-05-30 11:37:03 -04003607 property->dev = dev;
3608
Dave Airlief453ba02008-11-07 14:05:41 -08003609 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003610 property->values = kcalloc(num_values, sizeof(uint64_t),
3611 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003612 if (!property->values)
3613 goto fail;
3614 }
3615
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003616 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3617 if (ret)
3618 goto fail;
3619
Dave Airlief453ba02008-11-07 14:05:41 -08003620 property->flags = flags;
3621 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003622 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003623
Vinson Lee471dd2e2011-11-10 11:55:40 -08003624 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003625 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003626 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3627 }
Dave Airlief453ba02008-11-07 14:05:41 -08003628
3629 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003630
3631 WARN_ON(!drm_property_type_valid(property));
3632
Dave Airlief453ba02008-11-07 14:05:41 -08003633 return property;
3634fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003635 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003636 kfree(property);
3637 return NULL;
3638}
3639EXPORT_SYMBOL(drm_property_create);
3640
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003641/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003642 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003643 * @dev: drm device
3644 * @flags: flags specifying the property type
3645 * @name: name of the property
3646 * @props: enumeration lists with property values
3647 * @num_values: number of pre-defined values
3648 *
3649 * This creates a new generic drm property which can then be attached to a drm
3650 * object with drm_object_attach_property. The returned property object must be
3651 * freed with drm_property_destroy.
3652 *
3653 * Userspace is only allowed to set one of the predefined values for enumeration
3654 * properties.
3655 *
3656 * Returns:
3657 * A pointer to the newly created property on success, NULL on failure.
3658 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003659struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3660 const char *name,
3661 const struct drm_prop_enum_list *props,
3662 int num_values)
3663{
3664 struct drm_property *property;
3665 int i, ret;
3666
3667 flags |= DRM_MODE_PROP_ENUM;
3668
3669 property = drm_property_create(dev, flags, name, num_values);
3670 if (!property)
3671 return NULL;
3672
3673 for (i = 0; i < num_values; i++) {
3674 ret = drm_property_add_enum(property, i,
3675 props[i].type,
3676 props[i].name);
3677 if (ret) {
3678 drm_property_destroy(dev, property);
3679 return NULL;
3680 }
3681 }
3682
3683 return property;
3684}
3685EXPORT_SYMBOL(drm_property_create_enum);
3686
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003687/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003688 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003689 * @dev: drm device
3690 * @flags: flags specifying the property type
3691 * @name: name of the property
3692 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003693 * @num_props: size of the @props array
3694 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003695 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003696 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003697 * object with drm_object_attach_property. The returned property object must be
3698 * freed with drm_property_destroy.
3699 *
3700 * Compared to plain enumeration properties userspace is allowed to set any
3701 * or'ed together combination of the predefined property bitflag values
3702 *
3703 * Returns:
3704 * A pointer to the newly created property on success, NULL on failure.
3705 */
Rob Clark49e27542012-05-17 02:23:26 -06003706struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3707 int flags, const char *name,
3708 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303709 int num_props,
3710 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003711{
3712 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303713 int i, ret, index = 0;
3714 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003715
3716 flags |= DRM_MODE_PROP_BITMASK;
3717
3718 property = drm_property_create(dev, flags, name, num_values);
3719 if (!property)
3720 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303721 for (i = 0; i < num_props; i++) {
3722 if (!(supported_bits & (1ULL << props[i].type)))
3723 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003724
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303725 if (WARN_ON(index >= num_values)) {
3726 drm_property_destroy(dev, property);
3727 return NULL;
3728 }
3729
3730 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003731 props[i].type,
3732 props[i].name);
3733 if (ret) {
3734 drm_property_destroy(dev, property);
3735 return NULL;
3736 }
3737 }
3738
3739 return property;
3740}
3741EXPORT_SYMBOL(drm_property_create_bitmask);
3742
Rob Clarkebc44cf2012-09-12 22:22:31 -05003743static struct drm_property *property_create_range(struct drm_device *dev,
3744 int flags, const char *name,
3745 uint64_t min, uint64_t max)
3746{
3747 struct drm_property *property;
3748
3749 property = drm_property_create(dev, flags, name, 2);
3750 if (!property)
3751 return NULL;
3752
3753 property->values[0] = min;
3754 property->values[1] = max;
3755
3756 return property;
3757}
3758
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003759/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003760 * drm_property_create_range - create a new ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003761 * @dev: drm device
3762 * @flags: flags specifying the property type
3763 * @name: name of the property
3764 * @min: minimum value of the property
3765 * @max: maximum value of the property
3766 *
3767 * This creates a new generic drm property which can then be attached to a drm
3768 * object with drm_object_attach_property. The returned property object must be
3769 * freed with drm_property_destroy.
3770 *
Masanari Iida32197aa2014-10-20 23:53:13 +09003771 * Userspace is allowed to set any integer value in the (min, max) range
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003772 * inclusive.
3773 *
3774 * Returns:
3775 * A pointer to the newly created property on success, NULL on failure.
3776 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003777struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3778 const char *name,
3779 uint64_t min, uint64_t max)
3780{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003781 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3782 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003783}
3784EXPORT_SYMBOL(drm_property_create_range);
3785
Rob Clarkebc44cf2012-09-12 22:22:31 -05003786struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3787 int flags, const char *name,
3788 int64_t min, int64_t max)
3789{
3790 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3791 name, I642U64(min), I642U64(max));
3792}
3793EXPORT_SYMBOL(drm_property_create_signed_range);
3794
Rob Clark98f75de2014-05-30 11:37:03 -04003795struct drm_property *drm_property_create_object(struct drm_device *dev,
3796 int flags, const char *name, uint32_t type)
3797{
3798 struct drm_property *property;
3799
3800 flags |= DRM_MODE_PROP_OBJECT;
3801
3802 property = drm_property_create(dev, flags, name, 1);
3803 if (!property)
3804 return NULL;
3805
3806 property->values[0] = type;
3807
3808 return property;
3809}
3810EXPORT_SYMBOL(drm_property_create_object);
3811
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003812/**
3813 * drm_property_add_enum - add a possible value to an enumeration property
3814 * @property: enumeration property to change
3815 * @index: index of the new enumeration
3816 * @value: value of the new enumeration
3817 * @name: symbolic name of the new enumeration
3818 *
3819 * This functions adds enumerations to a property.
3820 *
3821 * It's use is deprecated, drivers should use one of the more specific helpers
3822 * to directly create the property with all enumerations already attached.
3823 *
3824 * Returns:
3825 * Zero on success, error code on failure.
3826 */
Dave Airlief453ba02008-11-07 14:05:41 -08003827int drm_property_add_enum(struct drm_property *property, int index,
3828 uint64_t value, const char *name)
3829{
3830 struct drm_property_enum *prop_enum;
3831
Rob Clark5ea22f22014-05-30 11:34:01 -04003832 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3833 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003834 return -EINVAL;
3835
3836 /*
3837 * Bitmask enum properties have the additional constraint of values
3838 * from 0 to 63
3839 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003840 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3841 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003842 return -EINVAL;
3843
Daniel Vetter3758b342014-11-19 18:38:10 +01003844 if (!list_empty(&property->enum_list)) {
3845 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003846 if (prop_enum->value == value) {
3847 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3848 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3849 return 0;
3850 }
3851 }
3852 }
3853
3854 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3855 if (!prop_enum)
3856 return -ENOMEM;
3857
3858 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3859 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3860 prop_enum->value = value;
3861
3862 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003863 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003864 return 0;
3865}
3866EXPORT_SYMBOL(drm_property_add_enum);
3867
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003868/**
3869 * drm_property_destroy - destroy a drm property
3870 * @dev: drm device
3871 * @property: property to destry
3872 *
3873 * This function frees a property including any attached resources like
3874 * enumeration values.
3875 */
Dave Airlief453ba02008-11-07 14:05:41 -08003876void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3877{
3878 struct drm_property_enum *prop_enum, *pt;
3879
Daniel Vetter3758b342014-11-19 18:38:10 +01003880 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003881 list_del(&prop_enum->head);
3882 kfree(prop_enum);
3883 }
3884
3885 if (property->num_values)
3886 kfree(property->values);
3887 drm_mode_object_put(dev, &property->base);
3888 list_del(&property->head);
3889 kfree(property);
3890}
3891EXPORT_SYMBOL(drm_property_destroy);
3892
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003893/**
3894 * drm_object_attach_property - attach a property to a modeset object
3895 * @obj: drm modeset object
3896 * @property: property to attach
3897 * @init_val: initial value of the property
3898 *
3899 * This attaches the given property to the modeset object with the given initial
3900 * value. Currently this function cannot fail since the properties are stored in
3901 * a statically sized array.
3902 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003903void drm_object_attach_property(struct drm_mode_object *obj,
3904 struct drm_property *property,
3905 uint64_t init_val)
3906{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003907 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003908
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003909 if (count == DRM_OBJECT_MAX_PROPERTY) {
3910 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3911 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3912 "you see this message on the same object type.\n",
3913 obj->type);
3914 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003915 }
3916
Rob Clarkb17cd752014-12-16 18:05:30 -05003917 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003918 obj->properties->values[count] = init_val;
3919 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05003920 if (property->flags & DRM_MODE_PROP_ATOMIC)
3921 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003922}
3923EXPORT_SYMBOL(drm_object_attach_property);
3924
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003925/**
3926 * drm_object_property_set_value - set the value of a property
3927 * @obj: drm mode object to set property value for
3928 * @property: property to set
3929 * @val: value the property should be set to
3930 *
3931 * This functions sets a given property on a given object. This function only
3932 * changes the software state of the property, it does not call into the
3933 * driver's ->set_property callback.
3934 *
3935 * Returns:
3936 * Zero on success, error code on failure.
3937 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003938int drm_object_property_set_value(struct drm_mode_object *obj,
3939 struct drm_property *property, uint64_t val)
3940{
3941 int i;
3942
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003943 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003944 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003945 obj->properties->values[i] = val;
3946 return 0;
3947 }
3948 }
3949
3950 return -EINVAL;
3951}
3952EXPORT_SYMBOL(drm_object_property_set_value);
3953
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003954/**
3955 * drm_object_property_get_value - retrieve the value of a property
3956 * @obj: drm mode object to get property value from
3957 * @property: property to retrieve
3958 * @val: storage for the property value
3959 *
3960 * This function retrieves the softare state of the given property for the given
3961 * property. Since there is no driver callback to retrieve the current property
3962 * value this might be out of sync with the hardware, depending upon the driver
3963 * and property.
3964 *
3965 * Returns:
3966 * Zero on success, error code on failure.
3967 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003968int drm_object_property_get_value(struct drm_mode_object *obj,
3969 struct drm_property *property, uint64_t *val)
3970{
3971 int i;
3972
Rob Clark88a48e22014-12-18 16:01:50 -05003973 /* read-only properties bypass atomic mechanism and still store
3974 * their value in obj->properties->values[].. mostly to avoid
3975 * having to deal w/ EDID and similar props in atomic paths:
3976 */
3977 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
3978 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
3979 return drm_atomic_get_property(obj, property, val);
3980
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003981 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003982 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003983 *val = obj->properties->values[i];
3984 return 0;
3985 }
3986 }
3987
3988 return -EINVAL;
3989}
3990EXPORT_SYMBOL(drm_object_property_get_value);
3991
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003992/**
Daniel Vetter1a498632014-11-19 18:38:09 +01003993 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003994 * @dev: DRM device
3995 * @data: ioctl data
3996 * @file_priv: DRM file info
3997 *
Daniel Vetter1a498632014-11-19 18:38:09 +01003998 * This function retrieves the metadata for a given property, like the different
3999 * possible values for an enum property or the limits for a range property.
4000 *
4001 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004002 *
4003 * Called by the user via ioctl.
4004 *
4005 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004006 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004007 */
Dave Airlief453ba02008-11-07 14:05:41 -08004008int drm_mode_getproperty_ioctl(struct drm_device *dev,
4009 void *data, struct drm_file *file_priv)
4010{
Dave Airlief453ba02008-11-07 14:05:41 -08004011 struct drm_mode_get_property *out_resp = data;
4012 struct drm_property *property;
4013 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004014 int value_count = 0;
4015 int ret = 0, i;
4016 int copied;
4017 struct drm_property_enum *prop_enum;
4018 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004019 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004020
Dave Airliefb3b06c2011-02-08 13:55:21 +10004021 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4022 return -EINVAL;
4023
Daniel Vetter84849902012-12-02 00:28:11 +01004024 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004025 property = drm_property_find(dev, out_resp->prop_id);
4026 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004027 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004028 goto done;
4029 }
Dave Airlief453ba02008-11-07 14:05:41 -08004030
Rob Clark5ea22f22014-05-30 11:34:01 -04004031 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4032 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004033 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004034 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004035 }
4036
4037 value_count = property->num_values;
4038
4039 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4040 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4041 out_resp->flags = property->flags;
4042
4043 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004044 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004045 for (i = 0; i < value_count; i++) {
4046 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4047 ret = -EFAULT;
4048 goto done;
4049 }
4050 }
4051 }
4052 out_resp->count_values = value_count;
4053
Rob Clark5ea22f22014-05-30 11:34:01 -04004054 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4055 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004056 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4057 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004058 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004059 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004060
4061 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4062 ret = -EFAULT;
4063 goto done;
4064 }
4065
4066 if (copy_to_user(&enum_ptr[copied].name,
4067 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4068 ret = -EFAULT;
4069 goto done;
4070 }
4071 copied++;
4072 }
4073 }
4074 out_resp->count_enum_blobs = enum_count;
4075 }
4076
Daniel Vetter3758b342014-11-19 18:38:10 +01004077 /*
4078 * NOTE: The idea seems to have been to use this to read all the blob
4079 * property values. But nothing ever added them to the corresponding
4080 * list, userspace always used the special-purpose get_blob ioctl to
4081 * read the value for a blob property. It also doesn't make a lot of
4082 * sense to return values here when everything else is just metadata for
4083 * the property itself.
4084 */
4085 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4086 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004087done:
Daniel Vetter84849902012-12-02 00:28:11 +01004088 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004089 return ret;
4090}
4091
Thierry Redingecbbe592014-05-13 11:36:13 +02004092static struct drm_property_blob *
4093drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004094 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004095{
4096 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004097 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004098
4099 if (!length || !data)
4100 return NULL;
4101
4102 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4103 if (!blob)
4104 return NULL;
4105
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004106 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4107 if (ret) {
4108 kfree(blob);
4109 return NULL;
4110 }
4111
Dave Airlief453ba02008-11-07 14:05:41 -08004112 blob->length = length;
4113
4114 memcpy(blob->data, data, length);
4115
Dave Airlief453ba02008-11-07 14:05:41 -08004116 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4117 return blob;
4118}
4119
4120static void drm_property_destroy_blob(struct drm_device *dev,
4121 struct drm_property_blob *blob)
4122{
4123 drm_mode_object_put(dev, &blob->base);
4124 list_del(&blob->head);
4125 kfree(blob);
4126}
4127
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004128/**
4129 * drm_mode_getblob_ioctl - get the contents of a blob property value
4130 * @dev: DRM device
4131 * @data: ioctl data
4132 * @file_priv: DRM file info
4133 *
4134 * This function retrieves the contents of a blob property. The value stored in
4135 * an object's blob property is just a normal modeset object id.
4136 *
4137 * Called by the user via ioctl.
4138 *
4139 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004140 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004141 */
Dave Airlief453ba02008-11-07 14:05:41 -08004142int drm_mode_getblob_ioctl(struct drm_device *dev,
4143 void *data, struct drm_file *file_priv)
4144{
Dave Airlief453ba02008-11-07 14:05:41 -08004145 struct drm_mode_get_blob *out_resp = data;
4146 struct drm_property_blob *blob;
4147 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004148 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004149
Dave Airliefb3b06c2011-02-08 13:55:21 +10004150 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4151 return -EINVAL;
4152
Daniel Vetter84849902012-12-02 00:28:11 +01004153 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004154 blob = drm_property_blob_find(dev, out_resp->blob_id);
4155 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004156 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004157 goto done;
4158 }
Dave Airlief453ba02008-11-07 14:05:41 -08004159
4160 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004161 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004162 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004163 ret = -EFAULT;
4164 goto done;
4165 }
4166 }
4167 out_resp->length = blob->length;
4168
4169done:
Daniel Vetter84849902012-12-02 00:28:11 +01004170 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004171 return ret;
4172}
4173
Dave Airliecc7096f2014-10-22 12:03:04 +10004174/**
4175 * drm_mode_connector_set_path_property - set tile property on connector
4176 * @connector: connector to set property on.
4177 * @path: path to use for property.
4178 *
4179 * This creates a property to expose to userspace to specify a
4180 * connector path. This is mainly used for DisplayPort MST where
4181 * connectors have a topology and we want to allow userspace to give
4182 * them more meaningful names.
4183 *
4184 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004185 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004186 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004187int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004188 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004189{
4190 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004191 size_t size = strlen(path) + 1;
4192 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004193
4194 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4195 size, path);
4196 if (!connector->path_blob_ptr)
4197 return -EINVAL;
4198
4199 ret = drm_object_property_set_value(&connector->base,
4200 dev->mode_config.path_property,
4201 connector->path_blob_ptr->base.id);
4202 return ret;
4203}
4204EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4205
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004206/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004207 * drm_mode_connector_set_tile_property - set tile property on connector
4208 * @connector: connector to set property on.
4209 *
4210 * This looks up the tile information for a connector, and creates a
4211 * property for userspace to parse if it exists. The property is of
4212 * the form of 8 integers using ':' as a separator.
4213 *
4214 * Returns:
4215 * Zero on success, errno on failure.
4216 */
4217int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4218{
4219 struct drm_device *dev = connector->dev;
4220 int ret, size;
4221 char tile[256];
4222
4223 if (connector->tile_blob_ptr)
4224 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4225
4226 if (!connector->has_tile) {
4227 connector->tile_blob_ptr = NULL;
4228 ret = drm_object_property_set_value(&connector->base,
4229 dev->mode_config.tile_property, 0);
4230 return ret;
4231 }
4232
4233 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4234 connector->tile_group->id, connector->tile_is_single_monitor,
4235 connector->num_h_tile, connector->num_v_tile,
4236 connector->tile_h_loc, connector->tile_v_loc,
4237 connector->tile_h_size, connector->tile_v_size);
4238 size = strlen(tile) + 1;
4239
4240 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4241 size, tile);
4242 if (!connector->tile_blob_ptr)
4243 return -EINVAL;
4244
4245 ret = drm_object_property_set_value(&connector->base,
4246 dev->mode_config.tile_property,
4247 connector->tile_blob_ptr->base.id);
4248 return ret;
4249}
4250EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4251
4252/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004253 * drm_mode_connector_update_edid_property - update the edid property of a connector
4254 * @connector: drm connector
4255 * @edid: new value of the edid property
4256 *
4257 * This function creates a new blob modeset object and assigns its id to the
4258 * connector's edid property.
4259 *
4260 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004261 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004262 */
Dave Airlief453ba02008-11-07 14:05:41 -08004263int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004264 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004265{
4266 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004267 size_t size;
4268 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004269
Thomas Wood4cf2b282014-06-18 17:52:33 +01004270 /* ignore requests to set edid when overridden */
4271 if (connector->override_edid)
4272 return 0;
4273
Dave Airlief453ba02008-11-07 14:05:41 -08004274 if (connector->edid_blob_ptr)
4275 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4276
4277 /* Delete edid, when there is none. */
4278 if (!edid) {
4279 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004280 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004281 return ret;
4282 }
4283
Adam Jackson7466f4c2010-03-29 21:43:23 +00004284 size = EDID_LENGTH * (1 + edid->extensions);
4285 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4286 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004287 if (!connector->edid_blob_ptr)
4288 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004289
Rob Clark58495562012-10-11 20:50:56 -05004290 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004291 dev->mode_config.edid_property,
4292 connector->edid_blob_ptr->base.id);
4293
4294 return ret;
4295}
4296EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4297
Rob Clark3843e712014-12-16 18:05:29 -05004298/* Some properties could refer to dynamic refcnt'd objects, or things that
4299 * need special locking to handle lifetime issues (ie. to ensure the prop
4300 * value doesn't become invalid part way through the property update due to
4301 * race). The value returned by reference via 'obj' should be passed back
4302 * to drm_property_change_valid_put() after the property is set (and the
4303 * object to which the property is attached has a chance to take it's own
4304 * reference).
4305 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004306bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004307 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004308{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004309 int i;
4310
Paulo Zanoni26a34812012-05-15 18:08:59 -03004311 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4312 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004313
Rob Clark3843e712014-12-16 18:05:29 -05004314 *ref = NULL;
4315
Rob Clark5ea22f22014-05-30 11:34:01 -04004316 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004317 if (value < property->values[0] || value > property->values[1])
4318 return false;
4319 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004320 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4321 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004322
Rob Clarkebc44cf2012-09-12 22:22:31 -05004323 if (svalue < U642I64(property->values[0]) ||
4324 svalue > U642I64(property->values[1]))
4325 return false;
4326 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004327 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004328 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004329
Rob Clark49e27542012-05-17 02:23:26 -06004330 for (i = 0; i < property->num_values; i++)
4331 valid_mask |= (1ULL << property->values[i]);
4332 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004333 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004334 /* Only the driver knows */
4335 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004336 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004337 /* a zero value for an object property translates to null: */
4338 if (value == 0)
4339 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004340
4341 /* handle refcnt'd objects specially: */
4342 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4343 struct drm_framebuffer *fb;
4344 fb = drm_framebuffer_lookup(property->dev, value);
4345 if (fb) {
4346 *ref = &fb->base;
4347 return true;
4348 } else {
4349 return false;
4350 }
4351 } else {
4352 return _object_find(property->dev, value, property->values[0]) != NULL;
4353 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004354 } else {
4355 int i;
4356 for (i = 0; i < property->num_values; i++)
4357 if (property->values[i] == value)
4358 return true;
4359 return false;
4360 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004361
4362 for (i = 0; i < property->num_values; i++)
4363 if (property->values[i] == value)
4364 return true;
4365 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004366}
4367
Rob Clarkd34f20d2014-12-18 16:01:56 -05004368void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004369 struct drm_mode_object *ref)
4370{
4371 if (!ref)
4372 return;
4373
4374 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4375 if (property->values[0] == DRM_MODE_OBJECT_FB)
4376 drm_framebuffer_unreference(obj_to_fb(ref));
4377 }
4378}
4379
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004380/**
4381 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4382 * @dev: DRM device
4383 * @data: ioctl data
4384 * @file_priv: DRM file info
4385 *
4386 * This function sets the current value for a connectors's property. It also
4387 * calls into a driver's ->set_property callback to update the hardware state
4388 *
4389 * Called by the user via ioctl.
4390 *
4391 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004392 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004393 */
Dave Airlief453ba02008-11-07 14:05:41 -08004394int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4395 void *data, struct drm_file *file_priv)
4396{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004397 struct drm_mode_connector_set_property *conn_set_prop = data;
4398 struct drm_mode_obj_set_property obj_set_prop = {
4399 .value = conn_set_prop->value,
4400 .prop_id = conn_set_prop->prop_id,
4401 .obj_id = conn_set_prop->connector_id,
4402 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4403 };
Dave Airlief453ba02008-11-07 14:05:41 -08004404
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004405 /* It does all the locking and checking we need */
4406 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004407}
4408
Paulo Zanonic5431882012-05-15 18:09:02 -03004409static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4410 struct drm_property *property,
4411 uint64_t value)
4412{
4413 int ret = -EINVAL;
4414 struct drm_connector *connector = obj_to_connector(obj);
4415
4416 /* Do DPMS ourselves */
4417 if (property == connector->dev->mode_config.dpms_property) {
4418 if (connector->funcs->dpms)
4419 (*connector->funcs->dpms)(connector, (int)value);
4420 ret = 0;
4421 } else if (connector->funcs->set_property)
4422 ret = connector->funcs->set_property(connector, property, value);
4423
4424 /* store the property value if successful */
4425 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004426 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004427 return ret;
4428}
4429
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004430static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4431 struct drm_property *property,
4432 uint64_t value)
4433{
4434 int ret = -EINVAL;
4435 struct drm_crtc *crtc = obj_to_crtc(obj);
4436
4437 if (crtc->funcs->set_property)
4438 ret = crtc->funcs->set_property(crtc, property, value);
4439 if (!ret)
4440 drm_object_property_set_value(obj, property, value);
4441
4442 return ret;
4443}
4444
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004445/**
4446 * drm_mode_plane_set_obj_prop - set the value of a property
4447 * @plane: drm plane object to set property value for
4448 * @property: property to set
4449 * @value: value the property should be set to
4450 *
4451 * This functions sets a given property on a given plane object. This function
4452 * calls the driver's ->set_property callback and changes the software state of
4453 * the property if the callback succeeds.
4454 *
4455 * Returns:
4456 * Zero on success, error code on failure.
4457 */
4458int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4459 struct drm_property *property,
4460 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004461{
4462 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004463 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004464
4465 if (plane->funcs->set_property)
4466 ret = plane->funcs->set_property(plane, property, value);
4467 if (!ret)
4468 drm_object_property_set_value(obj, property, value);
4469
4470 return ret;
4471}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004472EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004473
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004474/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004475 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004476 * @dev: DRM device
4477 * @data: ioctl data
4478 * @file_priv: DRM file info
4479 *
4480 * This function retrieves the current value for an object's property. Compared
4481 * to the connector specific ioctl this one is extended to also work on crtc and
4482 * plane objects.
4483 *
4484 * Called by the user via ioctl.
4485 *
4486 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004487 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004488 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004489int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4490 struct drm_file *file_priv)
4491{
4492 struct drm_mode_obj_get_properties *arg = data;
4493 struct drm_mode_object *obj;
4494 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004495
4496 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4497 return -EINVAL;
4498
Daniel Vetter84849902012-12-02 00:28:11 +01004499 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004500
4501 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4502 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004503 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004504 goto out;
4505 }
4506 if (!obj->properties) {
4507 ret = -EINVAL;
4508 goto out;
4509 }
4510
Rob Clark88a48e22014-12-18 16:01:50 -05004511 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004512 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4513 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4514 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004515
Paulo Zanonic5431882012-05-15 18:09:02 -03004516out:
Daniel Vetter84849902012-12-02 00:28:11 +01004517 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004518 return ret;
4519}
4520
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004521/**
4522 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4523 * @dev: DRM device
4524 * @data: ioctl data
4525 * @file_priv: DRM file info
4526 *
4527 * This function sets the current value for an object's property. It also calls
4528 * into a driver's ->set_property callback to update the hardware state.
4529 * Compared to the connector specific ioctl this one is extended to also work on
4530 * crtc and plane objects.
4531 *
4532 * Called by the user via ioctl.
4533 *
4534 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004535 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004536 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004537int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4538 struct drm_file *file_priv)
4539{
4540 struct drm_mode_obj_set_property *arg = data;
4541 struct drm_mode_object *arg_obj;
4542 struct drm_mode_object *prop_obj;
4543 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004544 int i, ret = -EINVAL;
4545 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004546
4547 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4548 return -EINVAL;
4549
Daniel Vetter84849902012-12-02 00:28:11 +01004550 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004551
4552 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004553 if (!arg_obj) {
4554 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004555 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004556 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004557 if (!arg_obj->properties)
4558 goto out;
4559
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004560 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004561 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004562 break;
4563
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004564 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004565 goto out;
4566
4567 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4568 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004569 if (!prop_obj) {
4570 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004571 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004572 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004573 property = obj_to_property(prop_obj);
4574
Rob Clark3843e712014-12-16 18:05:29 -05004575 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004576 goto out;
4577
4578 switch (arg_obj->type) {
4579 case DRM_MODE_OBJECT_CONNECTOR:
4580 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4581 arg->value);
4582 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004583 case DRM_MODE_OBJECT_CRTC:
4584 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4585 break;
Rob Clark4d939142012-05-17 02:23:27 -06004586 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004587 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4588 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004589 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004590 }
4591
Rob Clark3843e712014-12-16 18:05:29 -05004592 drm_property_change_valid_put(property, ref);
4593
Paulo Zanonic5431882012-05-15 18:09:02 -03004594out:
Daniel Vetter84849902012-12-02 00:28:11 +01004595 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004596 return ret;
4597}
4598
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004599/**
4600 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4601 * @connector: connector to attach
4602 * @encoder: encoder to attach @connector to
4603 *
4604 * This function links up a connector to an encoder. Note that the routing
4605 * restrictions between encoders and crtcs are exposed to userspace through the
4606 * possible_clones and possible_crtcs bitmasks.
4607 *
4608 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004609 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004610 */
Dave Airlief453ba02008-11-07 14:05:41 -08004611int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4612 struct drm_encoder *encoder)
4613{
4614 int i;
4615
4616 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4617 if (connector->encoder_ids[i] == 0) {
4618 connector->encoder_ids[i] = encoder->base.id;
4619 return 0;
4620 }
4621 }
4622 return -ENOMEM;
4623}
4624EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4625
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004626/**
4627 * drm_mode_crtc_set_gamma_size - set the gamma table size
4628 * @crtc: CRTC to set the gamma table size for
4629 * @gamma_size: size of the gamma table
4630 *
4631 * Drivers which support gamma tables should set this to the supported gamma
4632 * table size when initializing the CRTC. Currently the drm core only supports a
4633 * fixed gamma table size.
4634 *
4635 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004636 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004637 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004638int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004639 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004640{
4641 crtc->gamma_size = gamma_size;
4642
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004643 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4644 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004645 if (!crtc->gamma_store) {
4646 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004647 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004648 }
4649
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004650 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004651}
4652EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4653
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004654/**
4655 * drm_mode_gamma_set_ioctl - set the gamma table
4656 * @dev: DRM device
4657 * @data: ioctl data
4658 * @file_priv: DRM file info
4659 *
4660 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4661 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4662 *
4663 * Called by the user via ioctl.
4664 *
4665 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004666 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004667 */
Dave Airlief453ba02008-11-07 14:05:41 -08004668int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4669 void *data, struct drm_file *file_priv)
4670{
4671 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004672 struct drm_crtc *crtc;
4673 void *r_base, *g_base, *b_base;
4674 int size;
4675 int ret = 0;
4676
Dave Airliefb3b06c2011-02-08 13:55:21 +10004677 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4678 return -EINVAL;
4679
Daniel Vetter84849902012-12-02 00:28:11 +01004680 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004681 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4682 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004683 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004684 goto out;
4685 }
Dave Airlief453ba02008-11-07 14:05:41 -08004686
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004687 if (crtc->funcs->gamma_set == NULL) {
4688 ret = -ENOSYS;
4689 goto out;
4690 }
4691
Dave Airlief453ba02008-11-07 14:05:41 -08004692 /* memcpy into gamma store */
4693 if (crtc_lut->gamma_size != crtc->gamma_size) {
4694 ret = -EINVAL;
4695 goto out;
4696 }
4697
4698 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4699 r_base = crtc->gamma_store;
4700 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4701 ret = -EFAULT;
4702 goto out;
4703 }
4704
4705 g_base = r_base + size;
4706 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4707 ret = -EFAULT;
4708 goto out;
4709 }
4710
4711 b_base = g_base + size;
4712 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4713 ret = -EFAULT;
4714 goto out;
4715 }
4716
James Simmons72034252010-08-03 01:33:19 +01004717 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004718
4719out:
Daniel Vetter84849902012-12-02 00:28:11 +01004720 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004721 return ret;
4722
4723}
4724
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004725/**
4726 * drm_mode_gamma_get_ioctl - get the gamma table
4727 * @dev: DRM device
4728 * @data: ioctl data
4729 * @file_priv: DRM file info
4730 *
4731 * Copy the current gamma table into the storage provided. This also provides
4732 * the gamma table size the driver expects, which can be used to size the
4733 * allocated storage.
4734 *
4735 * Called by the user via ioctl.
4736 *
4737 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004738 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004739 */
Dave Airlief453ba02008-11-07 14:05:41 -08004740int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4741 void *data, struct drm_file *file_priv)
4742{
4743 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004744 struct drm_crtc *crtc;
4745 void *r_base, *g_base, *b_base;
4746 int size;
4747 int ret = 0;
4748
Dave Airliefb3b06c2011-02-08 13:55:21 +10004749 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4750 return -EINVAL;
4751
Daniel Vetter84849902012-12-02 00:28:11 +01004752 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004753 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4754 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004755 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004756 goto out;
4757 }
Dave Airlief453ba02008-11-07 14:05:41 -08004758
4759 /* memcpy into gamma store */
4760 if (crtc_lut->gamma_size != crtc->gamma_size) {
4761 ret = -EINVAL;
4762 goto out;
4763 }
4764
4765 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4766 r_base = crtc->gamma_store;
4767 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4768 ret = -EFAULT;
4769 goto out;
4770 }
4771
4772 g_base = r_base + size;
4773 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4774 ret = -EFAULT;
4775 goto out;
4776 }
4777
4778 b_base = g_base + size;
4779 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4780 ret = -EFAULT;
4781 goto out;
4782 }
4783out:
Daniel Vetter84849902012-12-02 00:28:11 +01004784 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004785 return ret;
4786}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004787
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004788/**
4789 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4790 * @dev: DRM device
4791 * @data: ioctl data
4792 * @file_priv: DRM file info
4793 *
4794 * This schedules an asynchronous update on a given CRTC, called page flip.
4795 * Optionally a drm event is generated to signal the completion of the event.
4796 * Generic drivers cannot assume that a pageflip with changed framebuffer
4797 * properties (including driver specific metadata like tiling layout) will work,
4798 * but some drivers support e.g. pixel format changes through the pageflip
4799 * ioctl.
4800 *
4801 * Called by the user via ioctl.
4802 *
4803 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004804 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004805 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004806int drm_mode_page_flip_ioctl(struct drm_device *dev,
4807 void *data, struct drm_file *file_priv)
4808{
4809 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004810 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004811 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004812 struct drm_pending_vblank_event *e = NULL;
4813 unsigned long flags;
4814 int ret = -EINVAL;
4815
4816 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4817 page_flip->reserved != 0)
4818 return -EINVAL;
4819
Keith Packard62f21042013-07-22 18:50:00 -07004820 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4821 return -EINVAL;
4822
Rob Clarka2b34e22013-10-05 16:36:52 -04004823 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4824 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004825 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004826
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004827 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004828 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004829 /* The framebuffer is currently unbound, presumably
4830 * due to a hotplug event, that userspace has not
4831 * yet discovered.
4832 */
4833 ret = -EBUSY;
4834 goto out;
4835 }
4836
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004837 if (crtc->funcs->page_flip == NULL)
4838 goto out;
4839
Daniel Vetter786b99e2012-12-02 21:53:40 +01004840 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004841 if (!fb) {
4842 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004843 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004844 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004845
Damien Lespiauc11e9282013-09-25 16:45:30 +01004846 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4847 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004848 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004849
Matt Roperf4510a22014-04-01 15:22:40 -07004850 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004851 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4852 ret = -EINVAL;
4853 goto out;
4854 }
4855
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004856 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4857 ret = -ENOMEM;
4858 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004859 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004860 spin_unlock_irqrestore(&dev->event_lock, flags);
4861 goto out;
4862 }
Thierry Redingf76511b2014-12-10 13:03:40 +01004863 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004864 spin_unlock_irqrestore(&dev->event_lock, flags);
4865
Thierry Redingf76511b2014-12-10 13:03:40 +01004866 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004867 if (e == NULL) {
4868 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004869 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004870 spin_unlock_irqrestore(&dev->event_lock, flags);
4871 goto out;
4872 }
4873
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004874 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01004875 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004876 e->event.user_data = page_flip->user_data;
4877 e->base.event = &e->event.base;
4878 e->base.file_priv = file_priv;
4879 e->base.destroy =
4880 (void (*) (struct drm_pending_event *)) kfree;
4881 }
4882
Daniel Vetter3d30a592014-07-27 13:42:42 +02004883 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004884 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004885 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004886 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4887 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004888 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004889 spin_unlock_irqrestore(&dev->event_lock, flags);
4890 kfree(e);
4891 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004892 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02004893 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004894 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004895 /*
4896 * Warn if the driver hasn't properly updated the crtc->fb
4897 * field to reflect that the new framebuffer is now used.
4898 * Failing to do so will screw with the reference counting
4899 * on framebuffers.
4900 */
Matt Roperf4510a22014-04-01 15:22:40 -07004901 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004902 /* Unref only the old framebuffer. */
4903 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004904 }
4905
4906out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004907 if (fb)
4908 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02004909 if (crtc->primary->old_fb)
4910 drm_framebuffer_unreference(crtc->primary->old_fb);
4911 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02004912 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004913
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004914 return ret;
4915}
Chris Wilsoneb033552011-01-24 15:11:08 +00004916
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004917/**
4918 * drm_mode_config_reset - call ->reset callbacks
4919 * @dev: drm device
4920 *
4921 * This functions calls all the crtc's, encoder's and connector's ->reset
4922 * callback. Drivers can use this in e.g. their driver load or resume code to
4923 * reset hardware and software state.
4924 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004925void drm_mode_config_reset(struct drm_device *dev)
4926{
4927 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004928 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00004929 struct drm_encoder *encoder;
4930 struct drm_connector *connector;
4931
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004932 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4933 if (plane->funcs->reset)
4934 plane->funcs->reset(plane);
4935
Chris Wilsoneb033552011-01-24 15:11:08 +00004936 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4937 if (crtc->funcs->reset)
4938 crtc->funcs->reset(crtc);
4939
4940 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4941 if (encoder->funcs->reset)
4942 encoder->funcs->reset(encoder);
4943
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004944 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4945 connector->status = connector_status_unknown;
4946
Chris Wilsoneb033552011-01-24 15:11:08 +00004947 if (connector->funcs->reset)
4948 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004949 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004950}
4951EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004952
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004953/**
4954 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4955 * @dev: DRM device
4956 * @data: ioctl data
4957 * @file_priv: DRM file info
4958 *
4959 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4960 * TTM or something else entirely) and returns the resulting buffer handle. This
4961 * handle can then be wrapped up into a framebuffer modeset object.
4962 *
4963 * Note that userspace is not allowed to use such objects for render
4964 * acceleration - drivers must create their own private ioctls for such a use
4965 * case.
4966 *
4967 * Called by the user via ioctl.
4968 *
4969 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004970 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004971 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004972int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4973 void *data, struct drm_file *file_priv)
4974{
4975 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004976 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004977
4978 if (!dev->driver->dumb_create)
4979 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004980 if (!args->width || !args->height || !args->bpp)
4981 return -EINVAL;
4982
4983 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02004984 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01004985 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02004986 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01004987 return -EINVAL;
4988 stride = cpp * args->width;
4989 if (args->height > 0xffffffffU / stride)
4990 return -EINVAL;
4991
4992 /* test for wrap-around */
4993 size = args->height * stride;
4994 if (PAGE_ALIGN(size) == 0)
4995 return -EINVAL;
4996
Thierry Redingf6085952014-11-03 11:14:14 +01004997 /*
4998 * handle, pitch and size are output parameters. Zero them out to
4999 * prevent drivers from accidentally using uninitialized data. Since
5000 * not all existing userspace is clearing these fields properly we
5001 * cannot reject IOCTL with garbage in them.
5002 */
5003 args->handle = 0;
5004 args->pitch = 0;
5005 args->size = 0;
5006
Dave Airlieff72145b2011-02-07 12:16:14 +10005007 return dev->driver->dumb_create(file_priv, dev, args);
5008}
5009
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005010/**
5011 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5012 * @dev: DRM device
5013 * @data: ioctl data
5014 * @file_priv: DRM file info
5015 *
5016 * Allocate an offset in the drm device node's address space to be able to
5017 * memory map a dumb buffer.
5018 *
5019 * Called by the user via ioctl.
5020 *
5021 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005022 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005023 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005024int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5025 void *data, struct drm_file *file_priv)
5026{
5027 struct drm_mode_map_dumb *args = data;
5028
5029 /* call driver ioctl to get mmap offset */
5030 if (!dev->driver->dumb_map_offset)
5031 return -ENOSYS;
5032
5033 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5034}
5035
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005036/**
5037 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5038 * @dev: DRM device
5039 * @data: ioctl data
5040 * @file_priv: DRM file info
5041 *
5042 * This destroys the userspace handle for the given dumb backing storage buffer.
5043 * Since buffer objects must be reference counted in the kernel a buffer object
5044 * won't be immediately freed if a framebuffer modeset object still uses it.
5045 *
5046 * Called by the user via ioctl.
5047 *
5048 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005049 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005050 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005051int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5052 void *data, struct drm_file *file_priv)
5053{
5054 struct drm_mode_destroy_dumb *args = data;
5055
5056 if (!dev->driver->dumb_destroy)
5057 return -ENOSYS;
5058
5059 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5060}
Dave Airlie248dbc22011-11-29 20:02:54 +00005061
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005062/**
5063 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5064 * @format: pixel format (DRM_FORMAT_*)
5065 * @depth: storage for the depth value
5066 * @bpp: storage for the bpp value
5067 *
5068 * This only supports RGB formats here for compat with code that doesn't use
5069 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005070 */
5071void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5072 int *bpp)
5073{
5074 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005075 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005076 case DRM_FORMAT_RGB332:
5077 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005078 *depth = 8;
5079 *bpp = 8;
5080 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005081 case DRM_FORMAT_XRGB1555:
5082 case DRM_FORMAT_XBGR1555:
5083 case DRM_FORMAT_RGBX5551:
5084 case DRM_FORMAT_BGRX5551:
5085 case DRM_FORMAT_ARGB1555:
5086 case DRM_FORMAT_ABGR1555:
5087 case DRM_FORMAT_RGBA5551:
5088 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005089 *depth = 15;
5090 *bpp = 16;
5091 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005092 case DRM_FORMAT_RGB565:
5093 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005094 *depth = 16;
5095 *bpp = 16;
5096 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005097 case DRM_FORMAT_RGB888:
5098 case DRM_FORMAT_BGR888:
5099 *depth = 24;
5100 *bpp = 24;
5101 break;
5102 case DRM_FORMAT_XRGB8888:
5103 case DRM_FORMAT_XBGR8888:
5104 case DRM_FORMAT_RGBX8888:
5105 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005106 *depth = 24;
5107 *bpp = 32;
5108 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005109 case DRM_FORMAT_XRGB2101010:
5110 case DRM_FORMAT_XBGR2101010:
5111 case DRM_FORMAT_RGBX1010102:
5112 case DRM_FORMAT_BGRX1010102:
5113 case DRM_FORMAT_ARGB2101010:
5114 case DRM_FORMAT_ABGR2101010:
5115 case DRM_FORMAT_RGBA1010102:
5116 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005117 *depth = 30;
5118 *bpp = 32;
5119 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005120 case DRM_FORMAT_ARGB8888:
5121 case DRM_FORMAT_ABGR8888:
5122 case DRM_FORMAT_RGBA8888:
5123 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005124 *depth = 32;
5125 *bpp = 32;
5126 break;
5127 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005128 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5129 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005130 *depth = 0;
5131 *bpp = 0;
5132 break;
5133 }
5134}
5135EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005136
5137/**
5138 * drm_format_num_planes - get the number of planes for format
5139 * @format: pixel format (DRM_FORMAT_*)
5140 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005141 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005142 * The number of planes used by the specified pixel format.
5143 */
5144int drm_format_num_planes(uint32_t format)
5145{
5146 switch (format) {
5147 case DRM_FORMAT_YUV410:
5148 case DRM_FORMAT_YVU410:
5149 case DRM_FORMAT_YUV411:
5150 case DRM_FORMAT_YVU411:
5151 case DRM_FORMAT_YUV420:
5152 case DRM_FORMAT_YVU420:
5153 case DRM_FORMAT_YUV422:
5154 case DRM_FORMAT_YVU422:
5155 case DRM_FORMAT_YUV444:
5156 case DRM_FORMAT_YVU444:
5157 return 3;
5158 case DRM_FORMAT_NV12:
5159 case DRM_FORMAT_NV21:
5160 case DRM_FORMAT_NV16:
5161 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005162 case DRM_FORMAT_NV24:
5163 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005164 return 2;
5165 default:
5166 return 1;
5167 }
5168}
5169EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005170
5171/**
5172 * drm_format_plane_cpp - determine the bytes per pixel value
5173 * @format: pixel format (DRM_FORMAT_*)
5174 * @plane: plane index
5175 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005176 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005177 * The bytes per pixel value for the specified plane.
5178 */
5179int drm_format_plane_cpp(uint32_t format, int plane)
5180{
5181 unsigned int depth;
5182 int bpp;
5183
5184 if (plane >= drm_format_num_planes(format))
5185 return 0;
5186
5187 switch (format) {
5188 case DRM_FORMAT_YUYV:
5189 case DRM_FORMAT_YVYU:
5190 case DRM_FORMAT_UYVY:
5191 case DRM_FORMAT_VYUY:
5192 return 2;
5193 case DRM_FORMAT_NV12:
5194 case DRM_FORMAT_NV21:
5195 case DRM_FORMAT_NV16:
5196 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005197 case DRM_FORMAT_NV24:
5198 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005199 return plane ? 2 : 1;
5200 case DRM_FORMAT_YUV410:
5201 case DRM_FORMAT_YVU410:
5202 case DRM_FORMAT_YUV411:
5203 case DRM_FORMAT_YVU411:
5204 case DRM_FORMAT_YUV420:
5205 case DRM_FORMAT_YVU420:
5206 case DRM_FORMAT_YUV422:
5207 case DRM_FORMAT_YVU422:
5208 case DRM_FORMAT_YUV444:
5209 case DRM_FORMAT_YVU444:
5210 return 1;
5211 default:
5212 drm_fb_get_bpp_depth(format, &depth, &bpp);
5213 return bpp >> 3;
5214 }
5215}
5216EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005217
5218/**
5219 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5220 * @format: pixel format (DRM_FORMAT_*)
5221 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005222 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005223 * The horizontal chroma subsampling factor for the
5224 * specified pixel format.
5225 */
5226int drm_format_horz_chroma_subsampling(uint32_t format)
5227{
5228 switch (format) {
5229 case DRM_FORMAT_YUV411:
5230 case DRM_FORMAT_YVU411:
5231 case DRM_FORMAT_YUV410:
5232 case DRM_FORMAT_YVU410:
5233 return 4;
5234 case DRM_FORMAT_YUYV:
5235 case DRM_FORMAT_YVYU:
5236 case DRM_FORMAT_UYVY:
5237 case DRM_FORMAT_VYUY:
5238 case DRM_FORMAT_NV12:
5239 case DRM_FORMAT_NV21:
5240 case DRM_FORMAT_NV16:
5241 case DRM_FORMAT_NV61:
5242 case DRM_FORMAT_YUV422:
5243 case DRM_FORMAT_YVU422:
5244 case DRM_FORMAT_YUV420:
5245 case DRM_FORMAT_YVU420:
5246 return 2;
5247 default:
5248 return 1;
5249 }
5250}
5251EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5252
5253/**
5254 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5255 * @format: pixel format (DRM_FORMAT_*)
5256 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005257 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005258 * The vertical chroma subsampling factor for the
5259 * specified pixel format.
5260 */
5261int drm_format_vert_chroma_subsampling(uint32_t format)
5262{
5263 switch (format) {
5264 case DRM_FORMAT_YUV410:
5265 case DRM_FORMAT_YVU410:
5266 return 4;
5267 case DRM_FORMAT_YUV420:
5268 case DRM_FORMAT_YVU420:
5269 case DRM_FORMAT_NV12:
5270 case DRM_FORMAT_NV21:
5271 return 2;
5272 default:
5273 return 1;
5274 }
5275}
5276EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005277
5278/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305279 * drm_rotation_simplify() - Try to simplify the rotation
5280 * @rotation: Rotation to be simplified
5281 * @supported_rotations: Supported rotations
5282 *
5283 * Attempt to simplify the rotation to a form that is supported.
5284 * Eg. if the hardware supports everything except DRM_REFLECT_X
5285 * one could call this function like this:
5286 *
5287 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5288 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5289 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5290 *
5291 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5292 * transforms the hardware supports, this function may not
5293 * be able to produce a supported transform, so the caller should
5294 * check the result afterwards.
5295 */
5296unsigned int drm_rotation_simplify(unsigned int rotation,
5297 unsigned int supported_rotations)
5298{
5299 if (rotation & ~supported_rotations) {
5300 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5301 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5302 }
5303
5304 return rotation;
5305}
5306EXPORT_SYMBOL(drm_rotation_simplify);
5307
5308/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005309 * drm_mode_config_init - initialize DRM mode_configuration structure
5310 * @dev: DRM device
5311 *
5312 * Initialize @dev's mode_config structure, used for tracking the graphics
5313 * configuration of @dev.
5314 *
5315 * Since this initializes the modeset locks, no locking is possible. Which is no
5316 * problem, since this should happen single threaded at init time. It is the
5317 * driver's problem to ensure this guarantee.
5318 *
5319 */
5320void drm_mode_config_init(struct drm_device *dev)
5321{
5322 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005323 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005324 mutex_init(&dev->mode_config.idr_mutex);
5325 mutex_init(&dev->mode_config.fb_lock);
5326 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5327 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5328 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04005329 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005330 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5331 INIT_LIST_HEAD(&dev->mode_config.property_list);
5332 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5333 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5334 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005335 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005336
5337 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005338 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005339 drm_modeset_unlock_all(dev);
5340
5341 /* Just to be sure */
5342 dev->mode_config.num_fb = 0;
5343 dev->mode_config.num_connector = 0;
5344 dev->mode_config.num_crtc = 0;
5345 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005346 dev->mode_config.num_overlay_plane = 0;
5347 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005348}
5349EXPORT_SYMBOL(drm_mode_config_init);
5350
5351/**
5352 * drm_mode_config_cleanup - free up DRM mode_config info
5353 * @dev: DRM device
5354 *
5355 * Free up all the connectors and CRTCs associated with this DRM device, then
5356 * free up the framebuffers and associated buffer objects.
5357 *
5358 * Note that since this /should/ happen single-threaded at driver/device
5359 * teardown time, no locking is required. It's the driver's job to ensure that
5360 * this guarantee actually holds true.
5361 *
5362 * FIXME: cleanup any dangling user buffer objects too
5363 */
5364void drm_mode_config_cleanup(struct drm_device *dev)
5365{
5366 struct drm_connector *connector, *ot;
5367 struct drm_crtc *crtc, *ct;
5368 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04005369 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005370 struct drm_framebuffer *fb, *fbt;
5371 struct drm_property *property, *pt;
5372 struct drm_property_blob *blob, *bt;
5373 struct drm_plane *plane, *plt;
5374
5375 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5376 head) {
5377 encoder->funcs->destroy(encoder);
5378 }
5379
Sean Paul3b336ec2013-08-14 16:47:37 -04005380 list_for_each_entry_safe(bridge, brt,
5381 &dev->mode_config.bridge_list, head) {
5382 bridge->funcs->destroy(bridge);
5383 }
5384
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005385 list_for_each_entry_safe(connector, ot,
5386 &dev->mode_config.connector_list, head) {
5387 connector->funcs->destroy(connector);
5388 }
5389
5390 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5391 head) {
5392 drm_property_destroy(dev, property);
5393 }
5394
5395 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5396 head) {
5397 drm_property_destroy_blob(dev, blob);
5398 }
5399
5400 /*
5401 * Single-threaded teardown context, so it's not required to grab the
5402 * fb_lock to protect against concurrent fb_list access. Contrary, it
5403 * would actually deadlock with the drm_framebuffer_cleanup function.
5404 *
5405 * Also, if there are any framebuffers left, that's a driver leak now,
5406 * so politely WARN about this.
5407 */
5408 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5409 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5410 drm_framebuffer_remove(fb);
5411 }
5412
5413 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5414 head) {
5415 plane->funcs->destroy(plane);
5416 }
5417
5418 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5419 crtc->funcs->destroy(crtc);
5420 }
5421
Dave Airlie138f9eb2014-10-20 16:17:17 +10005422 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005423 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005424 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005425}
5426EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305427
5428struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5429 unsigned int supported_rotations)
5430{
5431 static const struct drm_prop_enum_list props[] = {
5432 { DRM_ROTATE_0, "rotate-0" },
5433 { DRM_ROTATE_90, "rotate-90" },
5434 { DRM_ROTATE_180, "rotate-180" },
5435 { DRM_ROTATE_270, "rotate-270" },
5436 { DRM_REFLECT_X, "reflect-x" },
5437 { DRM_REFLECT_Y, "reflect-y" },
5438 };
5439
5440 return drm_property_create_bitmask(dev, 0, "rotation",
5441 props, ARRAY_SIZE(props),
5442 supported_rotations);
5443}
5444EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005445
5446/**
5447 * DOC: Tile group
5448 *
5449 * Tile groups are used to represent tiled monitors with a unique
5450 * integer identifier. Tiled monitors using DisplayID v1.3 have
5451 * a unique 8-byte handle, we store this in a tile group, so we
5452 * have a common identifier for all tiles in a monitor group.
5453 */
5454static void drm_tile_group_free(struct kref *kref)
5455{
5456 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5457 struct drm_device *dev = tg->dev;
5458 mutex_lock(&dev->mode_config.idr_mutex);
5459 idr_remove(&dev->mode_config.tile_idr, tg->id);
5460 mutex_unlock(&dev->mode_config.idr_mutex);
5461 kfree(tg);
5462}
5463
5464/**
5465 * drm_mode_put_tile_group - drop a reference to a tile group.
5466 * @dev: DRM device
5467 * @tg: tile group to drop reference to.
5468 *
5469 * drop reference to tile group and free if 0.
5470 */
5471void drm_mode_put_tile_group(struct drm_device *dev,
5472 struct drm_tile_group *tg)
5473{
5474 kref_put(&tg->refcount, drm_tile_group_free);
5475}
5476
5477/**
5478 * drm_mode_get_tile_group - get a reference to an existing tile group
5479 * @dev: DRM device
5480 * @topology: 8-bytes unique per monitor.
5481 *
5482 * Use the unique bytes to get a reference to an existing tile group.
5483 *
5484 * RETURNS:
5485 * tile group or NULL if not found.
5486 */
5487struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5488 char topology[8])
5489{
5490 struct drm_tile_group *tg;
5491 int id;
5492 mutex_lock(&dev->mode_config.idr_mutex);
5493 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5494 if (!memcmp(tg->group_data, topology, 8)) {
5495 if (!kref_get_unless_zero(&tg->refcount))
5496 tg = NULL;
5497 mutex_unlock(&dev->mode_config.idr_mutex);
5498 return tg;
5499 }
5500 }
5501 mutex_unlock(&dev->mode_config.idr_mutex);
5502 return NULL;
5503}
5504
5505/**
5506 * drm_mode_create_tile_group - create a tile group from a displayid description
5507 * @dev: DRM device
5508 * @topology: 8-bytes unique per monitor.
5509 *
5510 * Create a tile group for the unique monitor, and get a unique
5511 * identifier for the tile group.
5512 *
5513 * RETURNS:
5514 * new tile group or error.
5515 */
5516struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5517 char topology[8])
5518{
5519 struct drm_tile_group *tg;
5520 int ret;
5521
5522 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5523 if (!tg)
5524 return ERR_PTR(-ENOMEM);
5525
5526 kref_init(&tg->refcount);
5527 memcpy(tg->group_data, topology, 8);
5528 tg->dev = dev;
5529
5530 mutex_lock(&dev->mode_config.idr_mutex);
5531 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5532 if (ret >= 0) {
5533 tg->id = ret;
5534 } else {
5535 kfree(tg);
5536 tg = ERR_PTR(ret);
5537 }
5538
5539 mutex_unlock(&dev->mode_config.idr_mutex);
5540 return tg;
5541}