blob: 111849c4c8c2925f6fb4e3e845c685f3e74437c9 [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
Dave Airlief453ba02008-11-07 14:05:41 -0800527/**
Daniel Vetter36206362012-12-10 20:42:17 +0100528 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
529 * @fb: fb to unregister
530 *
531 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
532 * those used for fbdev. Note that the caller must hold a reference of it's own,
533 * i.e. the object may not be destroyed through this call (since it'll lead to a
534 * locking inversion).
535 */
536void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
537{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100538 struct drm_device *dev = fb->dev;
539
540 mutex_lock(&dev->mode_config.fb_lock);
541 /* Mark fb as reaped and drop idr ref. */
542 __drm_framebuffer_unregister(dev, fb);
543 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100544}
545EXPORT_SYMBOL(drm_framebuffer_unregister_private);
546
547/**
Dave Airlief453ba02008-11-07 14:05:41 -0800548 * drm_framebuffer_cleanup - remove a framebuffer object
549 * @fb: framebuffer to remove
550 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100551 * Cleanup framebuffer. This function is intended to be used from the drivers
552 * ->destroy callback. It can also be used to clean up driver private
553 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100554 *
555 * Note that this function does not remove the fb from active usuage - if it is
556 * still used anywhere, hilarity can ensue since userspace could call getfb on
557 * the id and get back -EINVAL. Obviously no concern at driver unload time.
558 *
559 * Also, the framebuffer will not be removed from the lookup idr - for
560 * user-created framebuffers this will happen in in the rmfb ioctl. For
561 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
562 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800563 */
564void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
565{
566 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100567
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100568 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000569 list_del(&fb->head);
570 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100571 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000572}
573EXPORT_SYMBOL(drm_framebuffer_cleanup);
574
575/**
576 * drm_framebuffer_remove - remove and unreference a framebuffer object
577 * @fb: framebuffer to remove
578 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000579 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100580 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100581 * passed-in framebuffer. Might take the modeset locks.
582 *
583 * Note that this function optimizes the cleanup away if the caller holds the
584 * last reference to the framebuffer. It is also guaranteed to not take the
585 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000586 */
587void drm_framebuffer_remove(struct drm_framebuffer *fb)
588{
589 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800590 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800591 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000592 struct drm_mode_set set;
593 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800594
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100595 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100596
Daniel Vetterb62584e2012-12-11 16:51:35 +0100597 /*
598 * drm ABI mandates that we remove any deleted framebuffers from active
599 * useage. But since most sane clients only remove framebuffers they no
600 * longer need, try to optimize this away.
601 *
602 * Since we're holding a reference ourselves, observing a refcount of 1
603 * means that we're the last holder and can skip it. Also, the refcount
604 * can never increase from 1 again, so we don't need any barriers or
605 * locks.
606 *
607 * Note that userspace could try to race with use and instate a new
608 * usage _after_ we've cleared all current ones. End result will be an
609 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
610 * in this manner.
611 */
612 if (atomic_read(&fb->refcount.refcount) > 1) {
613 drm_modeset_lock_all(dev);
614 /* remove from any CRTC */
615 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700616 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100617 /* should turn off the crtc */
618 memset(&set, 0, sizeof(struct drm_mode_set));
619 set.crtc = crtc;
620 set.fb = NULL;
621 ret = drm_mode_set_config_internal(&set);
622 if (ret)
623 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
624 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000625 }
Dave Airlief453ba02008-11-07 14:05:41 -0800626
Daniel Vetterb62584e2012-12-11 16:51:35 +0100627 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300628 if (plane->fb == fb)
629 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800630 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100631 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800632 }
633
Rob Clarkf7eff602012-09-05 21:48:38 +0000634 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800635}
Rob Clarkf7eff602012-09-05 21:48:38 +0000636EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800637
Rob Clark51fd3712013-11-19 12:10:12 -0500638DEFINE_WW_CLASS(crtc_ww_class);
639
Dave Airlief453ba02008-11-07 14:05:41 -0800640/**
Matt Ropere13161a2014-04-01 15:22:38 -0700641 * drm_crtc_init_with_planes - Initialise a new CRTC object with
642 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800643 * @dev: DRM device
644 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700645 * @primary: Primary plane for CRTC
646 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800647 * @funcs: callbacks for the new CRTC
648 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000649 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200650 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100651 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200652 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800653 */
Matt Ropere13161a2014-04-01 15:22:38 -0700654int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
655 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700656 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700657 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800658{
Rob Clark51fd3712013-11-19 12:10:12 -0500659 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200660 int ret;
661
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100662 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
663 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
664
Dave Airlief453ba02008-11-07 14:05:41 -0800665 crtc->dev = dev;
666 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000667 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800668
Rob Clark51fd3712013-11-19 12:10:12 -0500669 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200670 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
671 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100672 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800673
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300674 crtc->base.properties = &crtc->properties;
675
Rob Clark51fd3712013-11-19 12:10:12 -0500676 list_add_tail(&crtc->head, &config->crtc_list);
677 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200678
Matt Ropere13161a2014-04-01 15:22:38 -0700679 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700680 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700681 if (primary)
682 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700683 if (cursor)
684 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700685
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100686 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
687 drm_object_attach_property(&crtc->base, config->prop_active, 0);
688 }
689
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100690 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800691}
Matt Ropere13161a2014-04-01 15:22:38 -0700692EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800693
694/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000695 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800696 * @crtc: CRTC to cleanup
697 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000698 * This function cleans up @crtc and removes it from the DRM mode setting
699 * core. Note that the function does *not* free the crtc structure itself,
700 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800701 */
702void drm_crtc_cleanup(struct drm_crtc *crtc)
703{
704 struct drm_device *dev = crtc->dev;
705
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000706 kfree(crtc->gamma_store);
707 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800708
Rob Clark51fd3712013-11-19 12:10:12 -0500709 drm_modeset_lock_fini(&crtc->mutex);
710
Dave Airlief453ba02008-11-07 14:05:41 -0800711 drm_mode_object_put(dev, &crtc->base);
712 list_del(&crtc->head);
713 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100714
715 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
716 if (crtc->state && crtc->funcs->atomic_destroy_state)
717 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100718
719 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800720}
721EXPORT_SYMBOL(drm_crtc_cleanup);
722
723/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000724 * drm_crtc_index - find the index of a registered CRTC
725 * @crtc: CRTC to find index for
726 *
727 * Given a registered CRTC, return the index of that CRTC within a DRM
728 * device's list of CRTCs.
729 */
730unsigned int drm_crtc_index(struct drm_crtc *crtc)
731{
732 unsigned int index = 0;
733 struct drm_crtc *tmp;
734
735 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
736 if (tmp == crtc)
737 return index;
738
739 index++;
740 }
741
742 BUG();
743}
744EXPORT_SYMBOL(drm_crtc_index);
745
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100746/*
Dave Airlief453ba02008-11-07 14:05:41 -0800747 * drm_mode_remove - remove and free a mode
748 * @connector: connector list to modify
749 * @mode: mode to remove
750 *
Dave Airlief453ba02008-11-07 14:05:41 -0800751 * Remove @mode from @connector's mode list, then free it.
752 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100753static void drm_mode_remove(struct drm_connector *connector,
754 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800755{
756 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100757 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800758}
Dave Airlief453ba02008-11-07 14:05:41 -0800759
760/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200761 * drm_display_info_set_bus_formats - set the supported bus formats
762 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100763 * @formats: array containing the supported bus formats
764 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200765 *
766 * Store the supported bus formats in display info structure.
767 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
768 * a full list of available formats.
769 */
770int drm_display_info_set_bus_formats(struct drm_display_info *info,
771 const u32 *formats,
772 unsigned int num_formats)
773{
774 u32 *fmts = NULL;
775
776 if (!formats && num_formats)
777 return -EINVAL;
778
779 if (formats && num_formats) {
780 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
781 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300782 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200783 return -ENOMEM;
784 }
785
786 kfree(info->bus_formats);
787 info->bus_formats = fmts;
788 info->num_bus_formats = num_formats;
789
790 return 0;
791}
792EXPORT_SYMBOL(drm_display_info_set_bus_formats);
793
794/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200795 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
796 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200797 *
798 * The kernel supports per-connector configration of its consoles through
799 * use of the video= parameter. This function parses that option and
800 * extracts the user's specified mode (or enable/disable status) for a
801 * particular connector. This is typically only used during the early fbdev
802 * setup.
803 */
804static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
805{
806 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
807 char *option = NULL;
808
809 if (fb_get_options(connector->name, &option))
810 return;
811
812 if (!drm_mode_parse_command_line_for_connector(option,
813 connector,
814 mode))
815 return;
816
817 if (mode->force) {
818 const char *s;
819
820 switch (mode->force) {
821 case DRM_FORCE_OFF:
822 s = "OFF";
823 break;
824 case DRM_FORCE_ON_DIGITAL:
825 s = "ON - dig";
826 break;
827 default:
828 case DRM_FORCE_ON:
829 s = "ON";
830 break;
831 }
832
833 DRM_INFO("forcing %s connector %s\n", connector->name, s);
834 connector->force = mode->force;
835 }
836
837 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
838 connector->name,
839 mode->xres, mode->yres,
840 mode->refresh_specified ? mode->refresh : 60,
841 mode->rb ? " reduced blanking" : "",
842 mode->margins ? " with margins" : "",
843 mode->interlace ? " interlaced" : "");
844}
845
846/**
Dave Airlief453ba02008-11-07 14:05:41 -0800847 * drm_connector_init - Init a preallocated connector
848 * @dev: DRM device
849 * @connector: the connector to init
850 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100851 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800852 *
Dave Airlief453ba02008-11-07 14:05:41 -0800853 * Initialises a preallocated connector. Connectors should be
854 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200855 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100856 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200857 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800858 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200859int drm_connector_init(struct drm_device *dev,
860 struct drm_connector *connector,
861 const struct drm_connector_funcs *funcs,
862 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800863{
Rob Clarkae16c592014-12-18 16:01:54 -0500864 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200865 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400866 struct ida *connector_ida =
867 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200868
Daniel Vetter84849902012-12-02 00:28:11 +0100869 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800870
Dave Airlie2ee39452014-07-24 11:53:45 +1000871 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200872 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300873 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200874
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300875 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800876 connector->dev = dev;
877 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800878 connector->connector_type = connector_type;
879 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400880 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
881 if (connector->connector_type_id < 0) {
882 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300883 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400884 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300885 connector->name =
886 kasprintf(GFP_KERNEL, "%s-%d",
887 drm_connector_enum_list[connector_type].name,
888 connector->connector_type_id);
889 if (!connector->name) {
890 ret = -ENOMEM;
891 goto out_put;
892 }
893
Dave Airlief453ba02008-11-07 14:05:41 -0800894 INIT_LIST_HEAD(&connector->probed_modes);
895 INIT_LIST_HEAD(&connector->modes);
896 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000897 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800898
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200899 drm_connector_get_cmdline_mode(connector);
900
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100901 /* We should add connectors at the end to avoid upsetting the connector
902 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500903 list_add_tail(&connector->head, &config->connector_list);
904 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800905
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200906 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500907 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500908 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200909 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800910
Rob Clark58495562012-10-11 20:50:56 -0500911 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500912 config->dpms_property, 0);
913
914 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
915 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
916 }
Dave Airlief453ba02008-11-07 14:05:41 -0800917
Thomas Wood30f65702014-06-18 17:52:32 +0100918 connector->debugfs_entry = NULL;
919
Jani Nikula2abdd312014-05-14 16:58:19 +0300920out_put:
921 if (ret)
922 drm_mode_object_put(dev, &connector->base);
923
924out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100925 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200926
927 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800928}
929EXPORT_SYMBOL(drm_connector_init);
930
931/**
932 * drm_connector_cleanup - cleans up an initialised connector
933 * @connector: connector to cleanup
934 *
Dave Airlief453ba02008-11-07 14:05:41 -0800935 * Cleans up the connector but doesn't free the object.
936 */
937void drm_connector_cleanup(struct drm_connector *connector)
938{
939 struct drm_device *dev = connector->dev;
940 struct drm_display_mode *mode, *t;
941
Dave Airlie40d9b042014-10-20 16:29:33 +1000942 if (connector->tile_group) {
943 drm_mode_put_tile_group(dev, connector->tile_group);
944 connector->tile_group = NULL;
945 }
946
Dave Airlief453ba02008-11-07 14:05:41 -0800947 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
948 drm_mode_remove(connector, mode);
949
950 list_for_each_entry_safe(mode, t, &connector->modes, head)
951 drm_mode_remove(connector, mode);
952
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400953 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
954 connector->connector_type_id);
955
Boris Brezillonb5571e92014-07-22 12:09:10 +0200956 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800957 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300958 kfree(connector->name);
959 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800960 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000961 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100962
963 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
964 if (connector->state && connector->funcs->atomic_destroy_state)
965 connector->funcs->atomic_destroy_state(connector,
966 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100967
968 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800969}
970EXPORT_SYMBOL(drm_connector_cleanup);
971
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100972/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200973 * drm_connector_index - find the index of a registered connector
974 * @connector: connector to find index for
975 *
976 * Given a registered connector, return the index of that connector within a DRM
977 * device's list of connectors.
978 */
979unsigned int drm_connector_index(struct drm_connector *connector)
980{
981 unsigned int index = 0;
982 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100983 struct drm_mode_config *config = &connector->dev->mode_config;
984
985 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200986
987 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
988 if (tmp == connector)
989 return index;
990
991 index++;
992 }
993
994 BUG();
995}
996EXPORT_SYMBOL(drm_connector_index);
997
998/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100999 * drm_connector_register - register a connector
1000 * @connector: the connector to register
1001 *
1002 * Register userspace interfaces for a connector
1003 *
1004 * Returns:
1005 * Zero on success, error code on failure.
1006 */
1007int drm_connector_register(struct drm_connector *connector)
1008{
Thomas Wood30f65702014-06-18 17:52:32 +01001009 int ret;
1010
Dave Airlie2ee39452014-07-24 11:53:45 +10001011 drm_mode_object_register(connector->dev, &connector->base);
1012
Thomas Wood30f65702014-06-18 17:52:32 +01001013 ret = drm_sysfs_connector_add(connector);
1014 if (ret)
1015 return ret;
1016
1017 ret = drm_debugfs_connector_add(connector);
1018 if (ret) {
1019 drm_sysfs_connector_remove(connector);
1020 return ret;
1021 }
1022
1023 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001024}
1025EXPORT_SYMBOL(drm_connector_register);
1026
1027/**
1028 * drm_connector_unregister - unregister a connector
1029 * @connector: the connector to unregister
1030 *
1031 * Unregister userspace interfaces for a connector
1032 */
1033void drm_connector_unregister(struct drm_connector *connector)
1034{
1035 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001036 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001037}
1038EXPORT_SYMBOL(drm_connector_unregister);
1039
1040
1041/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001042 * drm_connector_unplug_all - unregister connector userspace interfaces
1043 * @dev: drm device
1044 *
1045 * This function unregisters all connector userspace interfaces in sysfs. Should
1046 * be call when the device is disconnected, e.g. from an usb driver's
1047 * ->disconnect callback.
1048 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001049void drm_connector_unplug_all(struct drm_device *dev)
1050{
1051 struct drm_connector *connector;
1052
1053 /* taking the mode config mutex ends up in a clash with sysfs */
1054 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001055 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001056
1057}
1058EXPORT_SYMBOL(drm_connector_unplug_all);
1059
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001060/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001061 * drm_encoder_init - Init a preallocated encoder
1062 * @dev: drm device
1063 * @encoder: the encoder to init
1064 * @funcs: callbacks for this encoder
1065 * @encoder_type: user visible type of the encoder
1066 *
1067 * Initialises a preallocated encoder. Encoder should be
1068 * subclassed as part of driver encoder objects.
1069 *
1070 * Returns:
1071 * Zero on success, error code on failure.
1072 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001073int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001074 struct drm_encoder *encoder,
1075 const struct drm_encoder_funcs *funcs,
1076 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001077{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001078 int ret;
1079
Daniel Vetter84849902012-12-02 00:28:11 +01001080 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001081
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001082 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1083 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001084 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001085
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001086 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001087 encoder->encoder_type = encoder_type;
1088 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001089 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1090 drm_encoder_enum_list[encoder_type].name,
1091 encoder->base.id);
1092 if (!encoder->name) {
1093 ret = -ENOMEM;
1094 goto out_put;
1095 }
Dave Airlief453ba02008-11-07 14:05:41 -08001096
1097 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1098 dev->mode_config.num_encoder++;
1099
Jani Nikulae5748942014-05-14 16:58:20 +03001100out_put:
1101 if (ret)
1102 drm_mode_object_put(dev, &encoder->base);
1103
1104out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001105 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001106
1107 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001108}
1109EXPORT_SYMBOL(drm_encoder_init);
1110
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001111/**
1112 * drm_encoder_cleanup - cleans up an initialised encoder
1113 * @encoder: encoder to cleanup
1114 *
1115 * Cleans up the encoder but doesn't free the object.
1116 */
Dave Airlief453ba02008-11-07 14:05:41 -08001117void drm_encoder_cleanup(struct drm_encoder *encoder)
1118{
1119 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001120
Daniel Vetter84849902012-12-02 00:28:11 +01001121 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001122 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001123 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001124 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001125 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001126 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001127
1128 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001129}
1130EXPORT_SYMBOL(drm_encoder_cleanup);
1131
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001132/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001133 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001134 * @dev: DRM device
1135 * @plane: plane object to init
1136 * @possible_crtcs: bitmask of possible CRTCs
1137 * @funcs: callbacks for the new plane
1138 * @formats: array of supported formats (%DRM_FORMAT_*)
1139 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001140 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001141 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001142 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001143 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001144 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001145 * Zero on success, error code on failure.
1146 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001147int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1148 unsigned long possible_crtcs,
1149 const struct drm_plane_funcs *funcs,
1150 const uint32_t *formats, uint32_t format_count,
1151 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001152{
Rob Clark6b4959f2014-12-18 16:01:53 -05001153 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001154 int ret;
1155
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001156 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1157 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001158 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001159
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001160 drm_modeset_lock_init(&plane->mutex);
1161
Rob Clark4d939142012-05-17 02:23:27 -06001162 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001163 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001164 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001165 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1166 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001167 if (!plane->format_types) {
1168 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1169 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001170 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001171 }
1172
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001173 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001174 plane->format_count = format_count;
1175 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001176 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001177
Rob Clark6b4959f2014-12-18 16:01:53 -05001178 list_add_tail(&plane->head, &config->plane_list);
1179 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001180 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001181 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001182
Rob Clark9922ab52014-04-01 20:16:57 -04001183 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001184 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001185 plane->type);
1186
Rob Clark6b4959f2014-12-18 16:01:53 -05001187 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1188 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1189 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1190 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1191 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1192 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1193 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1194 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1195 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1196 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1197 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1198 }
1199
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001200 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001201}
Matt Roperdc415ff2014-04-01 15:22:36 -07001202EXPORT_SYMBOL(drm_universal_plane_init);
1203
1204/**
1205 * drm_plane_init - Initialize a legacy plane
1206 * @dev: DRM device
1207 * @plane: plane object to init
1208 * @possible_crtcs: bitmask of possible CRTCs
1209 * @funcs: callbacks for the new plane
1210 * @formats: array of supported formats (%DRM_FORMAT_*)
1211 * @format_count: number of elements in @formats
1212 * @is_primary: plane type (primary vs overlay)
1213 *
1214 * Legacy API to initialize a DRM plane.
1215 *
1216 * New drivers should call drm_universal_plane_init() instead.
1217 *
1218 * Returns:
1219 * Zero on success, error code on failure.
1220 */
1221int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1222 unsigned long possible_crtcs,
1223 const struct drm_plane_funcs *funcs,
1224 const uint32_t *formats, uint32_t format_count,
1225 bool is_primary)
1226{
1227 enum drm_plane_type type;
1228
1229 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1230 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1231 formats, format_count, type);
1232}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001233EXPORT_SYMBOL(drm_plane_init);
1234
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001235/**
1236 * drm_plane_cleanup - Clean up the core plane usage
1237 * @plane: plane to cleanup
1238 *
1239 * This function cleans up @plane and removes it from the DRM mode setting
1240 * core. Note that the function does *not* free the plane structure itself,
1241 * this is the responsibility of the caller.
1242 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001243void drm_plane_cleanup(struct drm_plane *plane)
1244{
1245 struct drm_device *dev = plane->dev;
1246
Daniel Vetter84849902012-12-02 00:28:11 +01001247 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001248 kfree(plane->format_types);
1249 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001250
1251 BUG_ON(list_empty(&plane->head));
1252
1253 list_del(&plane->head);
1254 dev->mode_config.num_total_plane--;
1255 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1256 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001257 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001258
1259 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1260 if (plane->state && plane->funcs->atomic_destroy_state)
1261 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001262
1263 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001264}
1265EXPORT_SYMBOL(drm_plane_cleanup);
1266
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001267/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001268 * drm_plane_index - find the index of a registered plane
1269 * @plane: plane to find index for
1270 *
1271 * Given a registered plane, return the index of that CRTC within a DRM
1272 * device's list of planes.
1273 */
1274unsigned int drm_plane_index(struct drm_plane *plane)
1275{
1276 unsigned int index = 0;
1277 struct drm_plane *tmp;
1278
1279 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1280 if (tmp == plane)
1281 return index;
1282
1283 index++;
1284 }
1285
1286 BUG();
1287}
1288EXPORT_SYMBOL(drm_plane_index);
1289
1290/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001291 * drm_plane_force_disable - Forcibly disable a plane
1292 * @plane: plane to disable
1293 *
1294 * Forces the plane to be disabled.
1295 *
1296 * Used when the plane's current framebuffer is destroyed,
1297 * and when restoring fbdev mode.
1298 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001299void drm_plane_force_disable(struct drm_plane *plane)
1300{
1301 int ret;
1302
Daniel Vetter3d30a592014-07-27 13:42:42 +02001303 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001304 return;
1305
Daniel Vetter3d30a592014-07-27 13:42:42 +02001306 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001307 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001308 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001309 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001310 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001311 return;
1312 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001313 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001314 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001315 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001316 plane->fb = NULL;
1317 plane->crtc = NULL;
1318}
1319EXPORT_SYMBOL(drm_plane_force_disable);
1320
Rob Clark6b4959f2014-12-18 16:01:53 -05001321static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001322{
Rob Clark356af0e2014-12-18 16:01:52 -05001323 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001324
1325 /*
1326 * Standard properties (apply to all connectors)
1327 */
Rob Clark356af0e2014-12-18 16:01:52 -05001328 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001329 DRM_MODE_PROP_IMMUTABLE,
1330 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001331 if (!prop)
1332 return -ENOMEM;
1333 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001334
Rob Clark356af0e2014-12-18 16:01:52 -05001335 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001336 "DPMS", drm_dpms_enum_list,
1337 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001338 if (!prop)
1339 return -ENOMEM;
1340 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001341
Rob Clark356af0e2014-12-18 16:01:52 -05001342 prop = drm_property_create(dev,
1343 DRM_MODE_PROP_BLOB |
1344 DRM_MODE_PROP_IMMUTABLE,
1345 "PATH", 0);
1346 if (!prop)
1347 return -ENOMEM;
1348 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001349
Rob Clark356af0e2014-12-18 16:01:52 -05001350 prop = drm_property_create(dev,
1351 DRM_MODE_PROP_BLOB |
1352 DRM_MODE_PROP_IMMUTABLE,
1353 "TILE", 0);
1354 if (!prop)
1355 return -ENOMEM;
1356 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001357
Rob Clark6b4959f2014-12-18 16:01:53 -05001358 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001359 "type", drm_plane_type_enum_list,
1360 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001361 if (!prop)
1362 return -ENOMEM;
1363 dev->mode_config.plane_type_property = prop;
1364
1365 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1366 "SRC_X", 0, UINT_MAX);
1367 if (!prop)
1368 return -ENOMEM;
1369 dev->mode_config.prop_src_x = prop;
1370
1371 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1372 "SRC_Y", 0, UINT_MAX);
1373 if (!prop)
1374 return -ENOMEM;
1375 dev->mode_config.prop_src_y = prop;
1376
1377 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1378 "SRC_W", 0, UINT_MAX);
1379 if (!prop)
1380 return -ENOMEM;
1381 dev->mode_config.prop_src_w = prop;
1382
1383 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1384 "SRC_H", 0, UINT_MAX);
1385 if (!prop)
1386 return -ENOMEM;
1387 dev->mode_config.prop_src_h = prop;
1388
1389 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1390 "CRTC_X", INT_MIN, INT_MAX);
1391 if (!prop)
1392 return -ENOMEM;
1393 dev->mode_config.prop_crtc_x = prop;
1394
1395 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1396 "CRTC_Y", INT_MIN, INT_MAX);
1397 if (!prop)
1398 return -ENOMEM;
1399 dev->mode_config.prop_crtc_y = prop;
1400
1401 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1402 "CRTC_W", 0, INT_MAX);
1403 if (!prop)
1404 return -ENOMEM;
1405 dev->mode_config.prop_crtc_w = prop;
1406
1407 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1408 "CRTC_H", 0, INT_MAX);
1409 if (!prop)
1410 return -ENOMEM;
1411 dev->mode_config.prop_crtc_h = prop;
1412
1413 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1414 "FB_ID", DRM_MODE_OBJECT_FB);
1415 if (!prop)
1416 return -ENOMEM;
1417 dev->mode_config.prop_fb_id = prop;
1418
1419 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1420 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1421 if (!prop)
1422 return -ENOMEM;
1423 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001424
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001425 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1426 "ACTIVE");
1427 if (!prop)
1428 return -ENOMEM;
1429 dev->mode_config.prop_active = prop;
1430
Rob Clark9922ab52014-04-01 20:16:57 -04001431 return 0;
1432}
1433
Dave Airlief453ba02008-11-07 14:05:41 -08001434/**
1435 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1436 * @dev: DRM device
1437 *
1438 * Called by a driver the first time a DVI-I connector is made.
1439 */
1440int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1441{
1442 struct drm_property *dvi_i_selector;
1443 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001444
1445 if (dev->mode_config.dvi_i_select_subconnector_property)
1446 return 0;
1447
1448 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001449 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001450 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001451 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001452 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001453 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1454
Sascha Hauer4a67d392012-02-06 10:58:17 +01001455 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001456 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001457 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001458 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001459 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1460
1461 return 0;
1462}
1463EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1464
1465/**
1466 * drm_create_tv_properties - create TV specific connector properties
1467 * @dev: DRM device
1468 * @num_modes: number of different TV formats (modes) supported
1469 * @modes: array of pointers to strings containing name of each format
1470 *
1471 * Called by a driver's TV initialization routine, this function creates
1472 * the TV specific connector properties for a given device. Caller is
1473 * responsible for allocating a list of format names and passing them to
1474 * this routine.
1475 */
Thierry Reding2f763312014-10-13 12:45:57 +02001476int drm_mode_create_tv_properties(struct drm_device *dev,
1477 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001478 char *modes[])
1479{
1480 struct drm_property *tv_selector;
1481 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001482 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001483
1484 if (dev->mode_config.tv_select_subconnector_property)
1485 return 0;
1486
1487 /*
1488 * Basic connector properties
1489 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001490 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001491 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001492 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001493 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001494 dev->mode_config.tv_select_subconnector_property = tv_selector;
1495
1496 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001497 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1498 "subconnector",
1499 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001500 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001501 dev->mode_config.tv_subconnector_property = tv_subconnector;
1502
1503 /*
1504 * Other, TV specific properties: margins & TV modes.
1505 */
1506 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001507 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001508
1509 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001510 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001511
1512 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001513 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001514
1515 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001516 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001517
1518 dev->mode_config.tv_mode_property =
1519 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1520 "mode", num_modes);
1521 for (i = 0; i < num_modes; i++)
1522 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1523 i, modes[i]);
1524
Francisco Jerezb6b79022009-08-02 04:19:20 +02001525 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001526 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001527
1528 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001529 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001530
1531 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001532 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001533
Francisco Jereza75f0232009-08-12 02:30:10 +02001534 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001535 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001536
1537 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001538 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001539
1540 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001541 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001542
Dave Airlief453ba02008-11-07 14:05:41 -08001543 return 0;
1544}
1545EXPORT_SYMBOL(drm_mode_create_tv_properties);
1546
1547/**
1548 * drm_mode_create_scaling_mode_property - create scaling mode property
1549 * @dev: DRM device
1550 *
1551 * Called by a driver the first time it's needed, must be attached to desired
1552 * connectors.
1553 */
1554int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1555{
1556 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001557
1558 if (dev->mode_config.scaling_mode_property)
1559 return 0;
1560
1561 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001562 drm_property_create_enum(dev, 0, "scaling mode",
1563 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001564 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001565
1566 dev->mode_config.scaling_mode_property = scaling_mode;
1567
1568 return 0;
1569}
1570EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1571
1572/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301573 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1574 * @dev: DRM device
1575 *
1576 * Called by a driver the first time it's needed, must be attached to desired
1577 * connectors.
1578 *
1579 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001580 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301581 */
1582int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1583{
1584 if (dev->mode_config.aspect_ratio_property)
1585 return 0;
1586
1587 dev->mode_config.aspect_ratio_property =
1588 drm_property_create_enum(dev, 0, "aspect ratio",
1589 drm_aspect_ratio_enum_list,
1590 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1591
1592 if (dev->mode_config.aspect_ratio_property == NULL)
1593 return -ENOMEM;
1594
1595 return 0;
1596}
1597EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1598
1599/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001600 * drm_mode_create_dirty_property - create dirty property
1601 * @dev: DRM device
1602 *
1603 * Called by a driver the first time it's needed, must be attached to desired
1604 * connectors.
1605 */
1606int drm_mode_create_dirty_info_property(struct drm_device *dev)
1607{
1608 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001609
1610 if (dev->mode_config.dirty_info_property)
1611 return 0;
1612
1613 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001614 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001615 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001616 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001617 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001618 dev->mode_config.dirty_info_property = dirty_info;
1619
1620 return 0;
1621}
1622EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1623
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001624/**
1625 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1626 * @dev: DRM device
1627 *
1628 * Create the the suggested x/y offset property for connectors.
1629 */
1630int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1631{
1632 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1633 return 0;
1634
1635 dev->mode_config.suggested_x_property =
1636 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1637
1638 dev->mode_config.suggested_y_property =
1639 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1640
1641 if (dev->mode_config.suggested_x_property == NULL ||
1642 dev->mode_config.suggested_y_property == NULL)
1643 return -ENOMEM;
1644 return 0;
1645}
1646EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1647
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001648static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001649{
1650 uint32_t total_objects = 0;
1651
1652 total_objects += dev->mode_config.num_crtc;
1653 total_objects += dev->mode_config.num_connector;
1654 total_objects += dev->mode_config.num_encoder;
1655
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001656 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001657 if (!group->id_list)
1658 return -ENOMEM;
1659
1660 group->num_crtcs = 0;
1661 group->num_connectors = 0;
1662 group->num_encoders = 0;
1663 return 0;
1664}
1665
Dave Airliead222792014-05-02 13:22:19 +10001666void drm_mode_group_destroy(struct drm_mode_group *group)
1667{
1668 kfree(group->id_list);
1669 group->id_list = NULL;
1670}
1671
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001672/*
1673 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1674 * the drm core's responsibility to set up mode control groups.
1675 */
Dave Airlief453ba02008-11-07 14:05:41 -08001676int drm_mode_group_init_legacy_group(struct drm_device *dev,
1677 struct drm_mode_group *group)
1678{
1679 struct drm_crtc *crtc;
1680 struct drm_encoder *encoder;
1681 struct drm_connector *connector;
1682 int ret;
1683
Thierry Reding0cc0b222014-12-10 13:03:37 +01001684 ret = drm_mode_group_init(dev, group);
1685 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001686 return ret;
1687
1688 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1689 group->id_list[group->num_crtcs++] = crtc->base.id;
1690
1691 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1692 group->id_list[group->num_crtcs + group->num_encoders++] =
1693 encoder->base.id;
1694
1695 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1696 group->id_list[group->num_crtcs + group->num_encoders +
1697 group->num_connectors++] = connector->base.id;
1698
1699 return 0;
1700}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001701EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001702
Dave Airlie2390cd12014-06-05 14:01:29 +10001703void drm_reinit_primary_mode_group(struct drm_device *dev)
1704{
1705 drm_modeset_lock_all(dev);
1706 drm_mode_group_destroy(&dev->primary->mode_group);
1707 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1708 drm_modeset_unlock_all(dev);
1709}
1710EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1711
Dave Airlief453ba02008-11-07 14:05:41 -08001712/**
Dave Airlief453ba02008-11-07 14:05:41 -08001713 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1714 * @out: drm_mode_modeinfo struct to return to the user
1715 * @in: drm_display_mode to use
1716 *
Dave Airlief453ba02008-11-07 14:05:41 -08001717 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1718 * the user.
1719 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001720static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1721 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001722{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001723 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1724 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1725 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1726 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1727 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1728 "timing values too large for mode info\n");
1729
Dave Airlief453ba02008-11-07 14:05:41 -08001730 out->clock = in->clock;
1731 out->hdisplay = in->hdisplay;
1732 out->hsync_start = in->hsync_start;
1733 out->hsync_end = in->hsync_end;
1734 out->htotal = in->htotal;
1735 out->hskew = in->hskew;
1736 out->vdisplay = in->vdisplay;
1737 out->vsync_start = in->vsync_start;
1738 out->vsync_end = in->vsync_end;
1739 out->vtotal = in->vtotal;
1740 out->vscan = in->vscan;
1741 out->vrefresh = in->vrefresh;
1742 out->flags = in->flags;
1743 out->type = in->type;
1744 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1745 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1746}
1747
1748/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001749 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001750 * @out: drm_display_mode to return to the user
1751 * @in: drm_mode_modeinfo to use
1752 *
Dave Airlief453ba02008-11-07 14:05:41 -08001753 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1754 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001755 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001756 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001757 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001758 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001759static int drm_crtc_convert_umode(struct drm_display_mode *out,
1760 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001761{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001762 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1763 return -ERANGE;
1764
Damien Lespiau5848ad42013-09-27 12:11:50 +01001765 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1766 return -EINVAL;
1767
Dave Airlief453ba02008-11-07 14:05:41 -08001768 out->clock = in->clock;
1769 out->hdisplay = in->hdisplay;
1770 out->hsync_start = in->hsync_start;
1771 out->hsync_end = in->hsync_end;
1772 out->htotal = in->htotal;
1773 out->hskew = in->hskew;
1774 out->vdisplay = in->vdisplay;
1775 out->vsync_start = in->vsync_start;
1776 out->vsync_end = in->vsync_end;
1777 out->vtotal = in->vtotal;
1778 out->vscan = in->vscan;
1779 out->vrefresh = in->vrefresh;
1780 out->flags = in->flags;
1781 out->type = in->type;
1782 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1783 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001784
1785 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001786}
1787
1788/**
1789 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001790 * @dev: drm device for the ioctl
1791 * @data: data pointer for the ioctl
1792 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001793 *
Dave Airlief453ba02008-11-07 14:05:41 -08001794 * Construct a set of configuration description structures and return
1795 * them to the user, including CRTC, connector and framebuffer configuration.
1796 *
1797 * Called by the user via ioctl.
1798 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001799 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001800 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001801 */
1802int drm_mode_getresources(struct drm_device *dev, void *data,
1803 struct drm_file *file_priv)
1804{
1805 struct drm_mode_card_res *card_res = data;
1806 struct list_head *lh;
1807 struct drm_framebuffer *fb;
1808 struct drm_connector *connector;
1809 struct drm_crtc *crtc;
1810 struct drm_encoder *encoder;
1811 int ret = 0;
1812 int connector_count = 0;
1813 int crtc_count = 0;
1814 int fb_count = 0;
1815 int encoder_count = 0;
1816 int copied = 0, i;
1817 uint32_t __user *fb_id;
1818 uint32_t __user *crtc_id;
1819 uint32_t __user *connector_id;
1820 uint32_t __user *encoder_id;
1821 struct drm_mode_group *mode_group;
1822
Dave Airliefb3b06c2011-02-08 13:55:21 +10001823 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1824 return -EINVAL;
1825
Dave Airlief453ba02008-11-07 14:05:41 -08001826
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001827 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001828 /*
1829 * For the non-control nodes we need to limit the list of resources
1830 * by IDs in the group list for this node
1831 */
1832 list_for_each(lh, &file_priv->fbs)
1833 fb_count++;
1834
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001835 /* handle this in 4 parts */
1836 /* FBs */
1837 if (card_res->count_fbs >= fb_count) {
1838 copied = 0;
1839 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1840 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1841 if (put_user(fb->base.id, fb_id + copied)) {
1842 mutex_unlock(&file_priv->fbs_lock);
1843 return -EFAULT;
1844 }
1845 copied++;
1846 }
1847 }
1848 card_res->count_fbs = fb_count;
1849 mutex_unlock(&file_priv->fbs_lock);
1850
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001851 /* mode_config.mutex protects the connector list against e.g. DP MST
1852 * connector hot-adding. CRTC/Plane lists are invariant. */
1853 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001854 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001855
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001856 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001857 list_for_each(lh, &dev->mode_config.crtc_list)
1858 crtc_count++;
1859
1860 list_for_each(lh, &dev->mode_config.connector_list)
1861 connector_count++;
1862
1863 list_for_each(lh, &dev->mode_config.encoder_list)
1864 encoder_count++;
1865 } else {
1866
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001867 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001868 crtc_count = mode_group->num_crtcs;
1869 connector_count = mode_group->num_connectors;
1870 encoder_count = mode_group->num_encoders;
1871 }
1872
1873 card_res->max_height = dev->mode_config.max_height;
1874 card_res->min_height = dev->mode_config.min_height;
1875 card_res->max_width = dev->mode_config.max_width;
1876 card_res->min_width = dev->mode_config.min_width;
1877
Dave Airlief453ba02008-11-07 14:05:41 -08001878 /* CRTCs */
1879 if (card_res->count_crtcs >= crtc_count) {
1880 copied = 0;
1881 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001882 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001883 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1884 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001885 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001886 if (put_user(crtc->base.id, crtc_id + copied)) {
1887 ret = -EFAULT;
1888 goto out;
1889 }
1890 copied++;
1891 }
1892 } else {
1893 for (i = 0; i < mode_group->num_crtcs; i++) {
1894 if (put_user(mode_group->id_list[i],
1895 crtc_id + copied)) {
1896 ret = -EFAULT;
1897 goto out;
1898 }
1899 copied++;
1900 }
1901 }
1902 }
1903 card_res->count_crtcs = crtc_count;
1904
1905 /* Encoders */
1906 if (card_res->count_encoders >= encoder_count) {
1907 copied = 0;
1908 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001909 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001910 list_for_each_entry(encoder,
1911 &dev->mode_config.encoder_list,
1912 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001913 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001914 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001915 if (put_user(encoder->base.id, encoder_id +
1916 copied)) {
1917 ret = -EFAULT;
1918 goto out;
1919 }
1920 copied++;
1921 }
1922 } else {
1923 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1924 if (put_user(mode_group->id_list[i],
1925 encoder_id + copied)) {
1926 ret = -EFAULT;
1927 goto out;
1928 }
1929 copied++;
1930 }
1931
1932 }
1933 }
1934 card_res->count_encoders = encoder_count;
1935
1936 /* Connectors */
1937 if (card_res->count_connectors >= connector_count) {
1938 copied = 0;
1939 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001940 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001941 list_for_each_entry(connector,
1942 &dev->mode_config.connector_list,
1943 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001944 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1945 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001946 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001947 if (put_user(connector->base.id,
1948 connector_id + copied)) {
1949 ret = -EFAULT;
1950 goto out;
1951 }
1952 copied++;
1953 }
1954 } else {
1955 int start = mode_group->num_crtcs +
1956 mode_group->num_encoders;
1957 for (i = start; i < start + mode_group->num_connectors; i++) {
1958 if (put_user(mode_group->id_list[i],
1959 connector_id + copied)) {
1960 ret = -EFAULT;
1961 goto out;
1962 }
1963 copied++;
1964 }
1965 }
1966 }
1967 card_res->count_connectors = connector_count;
1968
Jerome Glisse94401062010-07-15 15:43:25 -04001969 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001970 card_res->count_connectors, card_res->count_encoders);
1971
1972out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001973 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001974 return ret;
1975}
1976
1977/**
1978 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001979 * @dev: drm device for the ioctl
1980 * @data: data pointer for the ioctl
1981 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001982 *
Dave Airlief453ba02008-11-07 14:05:41 -08001983 * Construct a CRTC configuration structure to return to the user.
1984 *
1985 * Called by the user via ioctl.
1986 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001987 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001988 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001989 */
1990int drm_mode_getcrtc(struct drm_device *dev,
1991 void *data, struct drm_file *file_priv)
1992{
1993 struct drm_mode_crtc *crtc_resp = data;
1994 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001995
Dave Airliefb3b06c2011-02-08 13:55:21 +10001996 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1997 return -EINVAL;
1998
Rob Clarka2b34e22013-10-05 16:36:52 -04001999 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002000 if (!crtc)
2001 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002002
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002003 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08002004 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07002005 if (crtc->primary->fb)
2006 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002007 else
2008 crtc_resp->fb_id = 0;
2009
Daniel Vetter31c946e2015-02-22 12:24:17 +01002010 if (crtc->state) {
2011 crtc_resp->x = crtc->primary->state->src_x >> 16;
2012 crtc_resp->y = crtc->primary->state->src_y >> 16;
2013 if (crtc->state->enable) {
2014 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
2015 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08002016
Daniel Vetter31c946e2015-02-22 12:24:17 +01002017 } else {
2018 crtc_resp->mode_valid = 0;
2019 }
Dave Airlief453ba02008-11-07 14:05:41 -08002020 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01002021 crtc_resp->x = crtc->x;
2022 crtc_resp->y = crtc->y;
2023 if (crtc->enabled) {
2024 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
2025 crtc_resp->mode_valid = 1;
2026
2027 } else {
2028 crtc_resp->mode_valid = 0;
2029 }
Dave Airlief453ba02008-11-07 14:05:41 -08002030 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002031 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08002032
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002033 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002034}
2035
Damien Lespiau61d8e322013-09-25 16:45:22 +01002036static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2037 const struct drm_file *file_priv)
2038{
2039 /*
2040 * If user-space hasn't configured the driver to expose the stereo 3D
2041 * modes, don't expose them.
2042 */
2043 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2044 return false;
2045
2046 return true;
2047}
2048
Daniel Vetterabd69c52014-11-25 23:50:05 +01002049static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2050{
2051 /* For atomic drivers only state objects are synchronously updated and
2052 * protected by modeset locks, so check those first. */
2053 if (connector->state)
2054 return connector->state->best_encoder;
2055 return connector->encoder;
2056}
2057
Rob Clark95cbf112014-12-18 16:01:49 -05002058/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002059static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002060 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2061 uint32_t *arg_count_props)
2062{
Rob Clark88a48e22014-12-18 16:01:50 -05002063 int props_count;
2064 int i, ret, copied;
2065
2066 props_count = obj->properties->count;
2067 if (!atomic)
2068 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002069
2070 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002071 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002072 struct drm_property *prop = obj->properties->properties[i];
2073 uint64_t val;
2074
Rob Clark88a48e22014-12-18 16:01:50 -05002075 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2076 continue;
2077
Rob Clark95cbf112014-12-18 16:01:49 -05002078 ret = drm_object_property_get_value(obj, prop, &val);
2079 if (ret)
2080 return ret;
2081
2082 if (put_user(prop->base.id, prop_ptr + copied))
2083 return -EFAULT;
2084
2085 if (put_user(val, prop_values + copied))
2086 return -EFAULT;
2087
2088 copied++;
2089 }
2090 }
2091 *arg_count_props = props_count;
2092
2093 return 0;
2094}
2095
Dave Airlief453ba02008-11-07 14:05:41 -08002096/**
2097 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002098 * @dev: drm device for the ioctl
2099 * @data: data pointer for the ioctl
2100 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002101 *
Dave Airlief453ba02008-11-07 14:05:41 -08002102 * Construct a connector configuration structure to return to the user.
2103 *
2104 * Called by the user via ioctl.
2105 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002106 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002107 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002108 */
2109int drm_mode_getconnector(struct drm_device *dev, void *data,
2110 struct drm_file *file_priv)
2111{
2112 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002113 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002114 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002115 struct drm_display_mode *mode;
2116 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002117 int encoders_count = 0;
2118 int ret = 0;
2119 int copied = 0;
2120 int i;
2121 struct drm_mode_modeinfo u_mode;
2122 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002123 uint32_t __user *encoder_ptr;
2124
Dave Airliefb3b06c2011-02-08 13:55:21 +10002125 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2126 return -EINVAL;
2127
Dave Airlief453ba02008-11-07 14:05:41 -08002128 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2129
Jerome Glisse94401062010-07-15 15:43:25 -04002130 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002131
Daniel Vetter7b240562012-12-12 00:35:33 +01002132 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002133
Rob Clarka2b34e22013-10-05 16:36:52 -04002134 connector = drm_connector_find(dev, out_resp->connector_id);
2135 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002136 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002137 goto out;
2138 }
Dave Airlief453ba02008-11-07 14:05:41 -08002139
Thierry Reding01073b02014-12-10 13:03:38 +01002140 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2141 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002142 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002143
2144 if (out_resp->count_modes == 0) {
2145 connector->funcs->fill_modes(connector,
2146 dev->mode_config.max_width,
2147 dev->mode_config.max_height);
2148 }
2149
2150 /* delayed so we get modes regardless of pre-fill_modes state */
2151 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002152 if (drm_mode_expose_to_userspace(mode, file_priv))
2153 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002154
2155 out_resp->connector_id = connector->base.id;
2156 out_resp->connector_type = connector->connector_type;
2157 out_resp->connector_type_id = connector->connector_type_id;
2158 out_resp->mm_width = connector->display_info.width_mm;
2159 out_resp->mm_height = connector->display_info.height_mm;
2160 out_resp->subpixel = connector->display_info.subpixel_order;
2161 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002162
2163 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002164 encoder = drm_connector_get_encoder(connector);
2165 if (encoder)
2166 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002167 else
2168 out_resp->encoder_id = 0;
2169
2170 /*
2171 * This ioctl is called twice, once to determine how much space is
2172 * needed, and the 2nd time to fill it.
2173 */
2174 if ((out_resp->count_modes >= mode_count) && mode_count) {
2175 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002176 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002177 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002178 if (!drm_mode_expose_to_userspace(mode, file_priv))
2179 continue;
2180
Dave Airlief453ba02008-11-07 14:05:41 -08002181 drm_crtc_convert_to_umode(&u_mode, mode);
2182 if (copy_to_user(mode_ptr + copied,
2183 &u_mode, sizeof(u_mode))) {
2184 ret = -EFAULT;
2185 goto out;
2186 }
2187 copied++;
2188 }
2189 }
2190 out_resp->count_modes = mode_count;
2191
Rob Clark88a48e22014-12-18 16:01:50 -05002192 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002193 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2194 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2195 &out_resp->count_props);
2196 if (ret)
2197 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002198
2199 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2200 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002201 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002202 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2203 if (connector->encoder_ids[i] != 0) {
2204 if (put_user(connector->encoder_ids[i],
2205 encoder_ptr + copied)) {
2206 ret = -EFAULT;
2207 goto out;
2208 }
2209 copied++;
2210 }
2211 }
2212 }
2213 out_resp->count_encoders = encoders_count;
2214
2215out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002216 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Daniel Vetter7b240562012-12-12 00:35:33 +01002217 mutex_unlock(&dev->mode_config.mutex);
2218
Dave Airlief453ba02008-11-07 14:05:41 -08002219 return ret;
2220}
2221
Daniel Vetterabd69c52014-11-25 23:50:05 +01002222static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2223{
2224 struct drm_connector *connector;
2225 struct drm_device *dev = encoder->dev;
2226 bool uses_atomic = false;
2227
2228 /* For atomic drivers only state objects are synchronously updated and
2229 * protected by modeset locks, so check those first. */
2230 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2231 if (!connector->state)
2232 continue;
2233
2234 uses_atomic = true;
2235
2236 if (connector->state->best_encoder != encoder)
2237 continue;
2238
2239 return connector->state->crtc;
2240 }
2241
2242 /* Don't return stale data (e.g. pending async disable). */
2243 if (uses_atomic)
2244 return NULL;
2245
2246 return encoder->crtc;
2247}
2248
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002249/**
2250 * drm_mode_getencoder - get encoder configuration
2251 * @dev: drm device for the ioctl
2252 * @data: data pointer for the ioctl
2253 * @file_priv: drm file for the ioctl call
2254 *
2255 * Construct a encoder configuration structure to return to the user.
2256 *
2257 * Called by the user via ioctl.
2258 *
2259 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002260 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002261 */
Dave Airlief453ba02008-11-07 14:05:41 -08002262int drm_mode_getencoder(struct drm_device *dev, void *data,
2263 struct drm_file *file_priv)
2264{
2265 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002266 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002267 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002268
Dave Airliefb3b06c2011-02-08 13:55:21 +10002269 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2270 return -EINVAL;
2271
Rob Clarka2b34e22013-10-05 16:36:52 -04002272 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002273 if (!encoder)
2274 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002275
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002276 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002277 crtc = drm_encoder_get_crtc(encoder);
2278 if (crtc)
2279 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002280 else
2281 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002282 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2283
Dave Airlief453ba02008-11-07 14:05:41 -08002284 enc_resp->encoder_type = encoder->encoder_type;
2285 enc_resp->encoder_id = encoder->base.id;
2286 enc_resp->possible_crtcs = encoder->possible_crtcs;
2287 enc_resp->possible_clones = encoder->possible_clones;
2288
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002289 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002290}
2291
2292/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002293 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002294 * @dev: DRM device
2295 * @data: ioctl data
2296 * @file_priv: DRM file info
2297 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002298 * Construct a list of plane ids to return to the user.
2299 *
2300 * Called by the user via ioctl.
2301 *
2302 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002303 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002304 */
2305int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002306 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002307{
2308 struct drm_mode_get_plane_res *plane_resp = data;
2309 struct drm_mode_config *config;
2310 struct drm_plane *plane;
2311 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002312 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002313 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002314
2315 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2316 return -EINVAL;
2317
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002318 config = &dev->mode_config;
2319
Matt Roper681e7ec2014-04-01 15:22:42 -07002320 if (file_priv->universal_planes)
2321 num_planes = config->num_total_plane;
2322 else
2323 num_planes = config->num_overlay_plane;
2324
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002325 /*
2326 * This ioctl is called twice, once to determine how much space is
2327 * needed, and the 2nd time to fill it.
2328 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002329 if (num_planes &&
2330 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002331 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002332
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002333 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002334 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002335 /*
2336 * Unless userspace set the 'universal planes'
2337 * capability bit, only advertise overlays.
2338 */
2339 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2340 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002341 continue;
2342
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002343 if (put_user(plane->base.id, plane_ptr + copied))
2344 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002345 copied++;
2346 }
2347 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002348 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002349
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002350 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002351}
2352
2353/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002354 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002355 * @dev: DRM device
2356 * @data: ioctl data
2357 * @file_priv: DRM file info
2358 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002359 * Construct a plane configuration structure to return to the user.
2360 *
2361 * Called by the user via ioctl.
2362 *
2363 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002364 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002365 */
2366int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002367 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002368{
2369 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002370 struct drm_plane *plane;
2371 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002372
2373 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2374 return -EINVAL;
2375
Rob Clarka2b34e22013-10-05 16:36:52 -04002376 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002377 if (!plane)
2378 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002379
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002380 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002381 if (plane->crtc)
2382 plane_resp->crtc_id = plane->crtc->base.id;
2383 else
2384 plane_resp->crtc_id = 0;
2385
2386 if (plane->fb)
2387 plane_resp->fb_id = plane->fb->base.id;
2388 else
2389 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002390 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002391
2392 plane_resp->plane_id = plane->base.id;
2393 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002394 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002395
2396 /*
2397 * This ioctl is called twice, once to determine how much space is
2398 * needed, and the 2nd time to fill it.
2399 */
2400 if (plane->format_count &&
2401 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002402 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002403 if (copy_to_user(format_ptr,
2404 plane->format_types,
2405 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002406 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002407 }
2408 }
2409 plane_resp->count_format_types = plane->format_count;
2410
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002411 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002412}
2413
Laurent Pinchartead86102015-03-05 02:25:43 +02002414/**
2415 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2416 * @plane: plane to check for format support
2417 * @format: the pixel format
2418 *
2419 * Returns:
2420 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2421 * otherwise.
2422 */
2423int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2424{
2425 unsigned int i;
2426
2427 for (i = 0; i < plane->format_count; i++) {
2428 if (format == plane->format_types[i])
2429 return 0;
2430 }
2431
2432 return -EINVAL;
2433}
2434
Matt Roperb36552b2014-06-10 08:28:09 -07002435/*
2436 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002437 *
Matt Roperb36552b2014-06-10 08:28:09 -07002438 * Note that we assume an extra reference has already been taken on fb. If the
2439 * update fails, this reference will be dropped before return; if it succeeds,
2440 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002441 *
Matt Roperb36552b2014-06-10 08:28:09 -07002442 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002443 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002444static int __setplane_internal(struct drm_plane *plane,
2445 struct drm_crtc *crtc,
2446 struct drm_framebuffer *fb,
2447 int32_t crtc_x, int32_t crtc_y,
2448 uint32_t crtc_w, uint32_t crtc_h,
2449 /* src_{x,y,w,h} values are 16.16 fixed point */
2450 uint32_t src_x, uint32_t src_y,
2451 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002452{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002453 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002454 unsigned int fb_width, fb_height;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002455
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002456 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002457 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002458 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002459 ret = plane->funcs->disable_plane(plane);
2460 if (!ret) {
2461 plane->crtc = NULL;
2462 plane->fb = NULL;
2463 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002464 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002465 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002466 goto out;
2467 }
2468
Matt Roper7f994f32014-05-29 08:06:51 -07002469 /* Check whether this plane is usable on this CRTC */
2470 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2471 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2472 ret = -EINVAL;
2473 goto out;
2474 }
2475
Ville Syrjälä62443be2011-12-20 00:06:47 +02002476 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002477 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2478 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002479 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2480 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002481 goto out;
2482 }
2483
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002484 fb_width = fb->width << 16;
2485 fb_height = fb->height << 16;
2486
2487 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002488 if (src_w > fb_width ||
2489 src_x > fb_width - src_w ||
2490 src_h > fb_height ||
2491 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002492 DRM_DEBUG_KMS("Invalid source coordinates "
2493 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002494 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2495 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2496 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2497 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002498 ret = -ENOSPC;
2499 goto out;
2500 }
2501
Daniel Vetter3d30a592014-07-27 13:42:42 +02002502 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002503 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002504 crtc_x, crtc_y, crtc_w, crtc_h,
2505 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002506 if (!ret) {
2507 plane->crtc = crtc;
2508 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002509 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002510 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002511 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002512 }
2513
2514out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002515 if (fb)
2516 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002517 if (plane->old_fb)
2518 drm_framebuffer_unreference(plane->old_fb);
2519 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002520
2521 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002522}
Matt Roperb36552b2014-06-10 08:28:09 -07002523
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002524static int setplane_internal(struct drm_plane *plane,
2525 struct drm_crtc *crtc,
2526 struct drm_framebuffer *fb,
2527 int32_t crtc_x, int32_t crtc_y,
2528 uint32_t crtc_w, uint32_t crtc_h,
2529 /* src_{x,y,w,h} values are 16.16 fixed point */
2530 uint32_t src_x, uint32_t src_y,
2531 uint32_t src_w, uint32_t src_h)
2532{
2533 int ret;
2534
2535 drm_modeset_lock_all(plane->dev);
2536 ret = __setplane_internal(plane, crtc, fb,
2537 crtc_x, crtc_y, crtc_w, crtc_h,
2538 src_x, src_y, src_w, src_h);
2539 drm_modeset_unlock_all(plane->dev);
2540
2541 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002542}
2543
2544/**
2545 * drm_mode_setplane - configure a plane's configuration
2546 * @dev: DRM device
2547 * @data: ioctl data*
2548 * @file_priv: DRM file info
2549 *
2550 * Set plane configuration, including placement, fb, scaling, and other factors.
2551 * Or pass a NULL fb to disable (planes may be disabled without providing a
2552 * valid crtc).
2553 *
2554 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002555 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002556 */
2557int drm_mode_setplane(struct drm_device *dev, void *data,
2558 struct drm_file *file_priv)
2559{
2560 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002561 struct drm_plane *plane;
2562 struct drm_crtc *crtc = NULL;
2563 struct drm_framebuffer *fb = NULL;
2564
2565 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2566 return -EINVAL;
2567
2568 /* Give drivers some help against integer overflows */
2569 if (plane_req->crtc_w > INT_MAX ||
2570 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2571 plane_req->crtc_h > INT_MAX ||
2572 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2573 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2574 plane_req->crtc_w, plane_req->crtc_h,
2575 plane_req->crtc_x, plane_req->crtc_y);
2576 return -ERANGE;
2577 }
2578
2579 /*
2580 * First, find the plane, crtc, and fb objects. If not available,
2581 * we don't bother to call the driver.
2582 */
Rob Clark933f6222014-11-25 20:33:11 -05002583 plane = drm_plane_find(dev, plane_req->plane_id);
2584 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002585 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2586 plane_req->plane_id);
2587 return -ENOENT;
2588 }
Matt Roperb36552b2014-06-10 08:28:09 -07002589
2590 if (plane_req->fb_id) {
2591 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2592 if (!fb) {
2593 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2594 plane_req->fb_id);
2595 return -ENOENT;
2596 }
2597
Rob Clark933f6222014-11-25 20:33:11 -05002598 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2599 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002600 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2601 plane_req->crtc_id);
2602 return -ENOENT;
2603 }
Matt Roperb36552b2014-06-10 08:28:09 -07002604 }
2605
Matt Roper161d0dc2014-06-10 08:28:10 -07002606 /*
2607 * setplane_internal will take care of deref'ing either the old or new
2608 * framebuffer depending on success.
2609 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002610 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002611 plane_req->crtc_x, plane_req->crtc_y,
2612 plane_req->crtc_w, plane_req->crtc_h,
2613 plane_req->src_x, plane_req->src_y,
2614 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002615}
2616
2617/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002618 * drm_mode_set_config_internal - helper to call ->set_config
2619 * @set: modeset config to set
2620 *
2621 * This is a little helper to wrap internal calls to the ->set_config driver
2622 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002623 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002624 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002625 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002626 */
2627int drm_mode_set_config_internal(struct drm_mode_set *set)
2628{
2629 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002630 struct drm_framebuffer *fb;
2631 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002632 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002633
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002634 /*
2635 * NOTE: ->set_config can also disable other crtcs (if we steal all
2636 * connectors from it), hence we need to refcount the fbs across all
2637 * crtcs. Atomic modeset will have saner semantics ...
2638 */
2639 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002640 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002641
Daniel Vetterb0d12322012-12-11 01:07:12 +01002642 fb = set->fb;
2643
2644 ret = crtc->funcs->set_config(set);
2645 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002646 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002647 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002648 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002649
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002650 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002651 if (tmp->primary->fb)
2652 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002653 if (tmp->primary->old_fb)
2654 drm_framebuffer_unreference(tmp->primary->old_fb);
2655 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002656 }
2657
2658 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002659}
2660EXPORT_SYMBOL(drm_mode_set_config_internal);
2661
Matt Roperaf936292014-04-01 15:22:34 -07002662/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002663 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2664 * @mode: mode to query
2665 * @hdisplay: hdisplay value to fill in
2666 * @vdisplay: vdisplay value to fill in
2667 *
2668 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2669 * the appropriate layout.
2670 */
2671void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2672 int *hdisplay, int *vdisplay)
2673{
2674 struct drm_display_mode adjusted;
2675
2676 drm_mode_copy(&adjusted, mode);
2677 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2678 *hdisplay = adjusted.crtc_hdisplay;
2679 *vdisplay = adjusted.crtc_vdisplay;
2680}
2681EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2682
2683/**
Matt Roperaf936292014-04-01 15:22:34 -07002684 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2685 * CRTC viewport
2686 * @crtc: CRTC that framebuffer will be displayed on
2687 * @x: x panning
2688 * @y: y panning
2689 * @mode: mode that framebuffer will be displayed under
2690 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002691 */
Matt Roperaf936292014-04-01 15:22:34 -07002692int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2693 int x, int y,
2694 const struct drm_display_mode *mode,
2695 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002696
2697{
2698 int hdisplay, vdisplay;
2699
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002700 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002701
Damien Lespiauc11e9282013-09-25 16:45:30 +01002702 if (crtc->invert_dimensions)
2703 swap(hdisplay, vdisplay);
2704
2705 if (hdisplay > fb->width ||
2706 vdisplay > fb->height ||
2707 x > fb->width - hdisplay ||
2708 y > fb->height - vdisplay) {
2709 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2710 fb->width, fb->height, hdisplay, vdisplay, x, y,
2711 crtc->invert_dimensions ? " (inverted)" : "");
2712 return -ENOSPC;
2713 }
2714
2715 return 0;
2716}
Matt Roperaf936292014-04-01 15:22:34 -07002717EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002718
Daniel Vetter2d13b672012-12-11 13:47:23 +01002719/**
Dave Airlief453ba02008-11-07 14:05:41 -08002720 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002721 * @dev: drm device for the ioctl
2722 * @data: data pointer for the ioctl
2723 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002724 *
Dave Airlief453ba02008-11-07 14:05:41 -08002725 * Build a new CRTC configuration based on user request.
2726 *
2727 * Called by the user via ioctl.
2728 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002729 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002730 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002731 */
2732int drm_mode_setcrtc(struct drm_device *dev, void *data,
2733 struct drm_file *file_priv)
2734{
2735 struct drm_mode_config *config = &dev->mode_config;
2736 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002737 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002738 struct drm_connector **connector_set = NULL, *connector;
2739 struct drm_framebuffer *fb = NULL;
2740 struct drm_display_mode *mode = NULL;
2741 struct drm_mode_set set;
2742 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002743 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002744 int i;
2745
Dave Airliefb3b06c2011-02-08 13:55:21 +10002746 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2747 return -EINVAL;
2748
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002749 /* For some reason crtc x/y offsets are signed internally. */
2750 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2751 return -ERANGE;
2752
Daniel Vetter84849902012-12-02 00:28:11 +01002753 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002754 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2755 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002756 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002757 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002758 goto out;
2759 }
Jerome Glisse94401062010-07-15 15:43:25 -04002760 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002761
2762 if (crtc_req->mode_valid) {
2763 /* If we have a mode we need a framebuffer. */
2764 /* If we pass -1, set the mode with the currently bound fb */
2765 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002766 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002767 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2768 ret = -EINVAL;
2769 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002770 }
Matt Roperf4510a22014-04-01 15:22:40 -07002771 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002772 /* Make refcounting symmetric with the lookup path. */
2773 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002774 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002775 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2776 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002777 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2778 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002779 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002780 goto out;
2781 }
Dave Airlief453ba02008-11-07 14:05:41 -08002782 }
2783
2784 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002785 if (!mode) {
2786 ret = -ENOMEM;
2787 goto out;
2788 }
2789
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002790 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2791 if (ret) {
2792 DRM_DEBUG_KMS("Invalid mode\n");
2793 goto out;
2794 }
2795
Ville Syrjälä23e1ce82014-12-17 13:56:24 +02002796 mode->status = drm_mode_validate_basic(mode);
2797 if (mode->status != MODE_OK) {
2798 ret = -EINVAL;
2799 goto out;
2800 }
2801
Dave Airlief453ba02008-11-07 14:05:41 -08002802 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002803
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002804 /*
2805 * Check whether the primary plane supports the fb pixel format.
2806 * Drivers not implementing the universal planes API use a
2807 * default formats list provided by the DRM core which doesn't
2808 * match real hardware capabilities. Skip the check in that
2809 * case.
2810 */
2811 if (!crtc->primary->format_default) {
2812 ret = drm_plane_check_pixel_format(crtc->primary,
2813 fb->pixel_format);
2814 if (ret) {
2815 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2816 drm_get_format_name(fb->pixel_format));
2817 goto out;
2818 }
2819 }
2820
Damien Lespiauc11e9282013-09-25 16:45:30 +01002821 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2822 mode, fb);
2823 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002824 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002825
Dave Airlief453ba02008-11-07 14:05:41 -08002826 }
2827
2828 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002829 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002830 ret = -EINVAL;
2831 goto out;
2832 }
2833
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002834 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002835 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002836 crtc_req->count_connectors);
2837 ret = -EINVAL;
2838 goto out;
2839 }
2840
2841 if (crtc_req->count_connectors > 0) {
2842 u32 out_id;
2843
2844 /* Avoid unbounded kernel memory allocation */
2845 if (crtc_req->count_connectors > config->num_connector) {
2846 ret = -EINVAL;
2847 goto out;
2848 }
2849
Thierry Reding2f6c5382014-12-10 13:03:36 +01002850 connector_set = kmalloc_array(crtc_req->count_connectors,
2851 sizeof(struct drm_connector *),
2852 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002853 if (!connector_set) {
2854 ret = -ENOMEM;
2855 goto out;
2856 }
2857
2858 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002859 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002860 if (get_user(out_id, &set_connectors_ptr[i])) {
2861 ret = -EFAULT;
2862 goto out;
2863 }
2864
Rob Clarka2b34e22013-10-05 16:36:52 -04002865 connector = drm_connector_find(dev, out_id);
2866 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002867 DRM_DEBUG_KMS("Connector id %d unknown\n",
2868 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002869 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002870 goto out;
2871 }
Jerome Glisse94401062010-07-15 15:43:25 -04002872 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2873 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002874 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002875
2876 connector_set[i] = connector;
2877 }
2878 }
2879
2880 set.crtc = crtc;
2881 set.x = crtc_req->x;
2882 set.y = crtc_req->y;
2883 set.mode = mode;
2884 set.connectors = connector_set;
2885 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002886 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002887 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002888
2889out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002890 if (fb)
2891 drm_framebuffer_unreference(fb);
2892
Dave Airlief453ba02008-11-07 14:05:41 -08002893 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002894 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002895 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002896 return ret;
2897}
2898
Matt Roper161d0dc2014-06-10 08:28:10 -07002899/**
2900 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2901 * universal plane handler call
2902 * @crtc: crtc to update cursor for
2903 * @req: data pointer for the ioctl
2904 * @file_priv: drm file for the ioctl call
2905 *
2906 * Legacy cursor ioctl's work directly with driver buffer handles. To
2907 * translate legacy ioctl calls into universal plane handler calls, we need to
2908 * wrap the native buffer handle in a drm_framebuffer.
2909 *
2910 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2911 * buffer with a pitch of 4*width; the universal plane interface should be used
2912 * directly in cases where the hardware can support other buffer settings and
2913 * userspace wants to make use of these capabilities.
2914 *
2915 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002916 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002917 */
2918static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2919 struct drm_mode_cursor2 *req,
2920 struct drm_file *file_priv)
2921{
2922 struct drm_device *dev = crtc->dev;
2923 struct drm_framebuffer *fb = NULL;
2924 struct drm_mode_fb_cmd2 fbreq = {
2925 .width = req->width,
2926 .height = req->height,
2927 .pixel_format = DRM_FORMAT_ARGB8888,
2928 .pitches = { req->width * 4 },
2929 .handles = { req->handle },
2930 };
2931 int32_t crtc_x, crtc_y;
2932 uint32_t crtc_w = 0, crtc_h = 0;
2933 uint32_t src_w = 0, src_h = 0;
2934 int ret = 0;
2935
2936 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002937 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002938
2939 /*
2940 * Obtain fb we'll be using (either new or existing) and take an extra
2941 * reference to it if fb != null. setplane will take care of dropping
2942 * the reference if the plane update fails.
2943 */
2944 if (req->flags & DRM_MODE_CURSOR_BO) {
2945 if (req->handle) {
2946 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2947 if (IS_ERR(fb)) {
2948 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2949 return PTR_ERR(fb);
2950 }
2951
2952 drm_framebuffer_reference(fb);
2953 } else {
2954 fb = NULL;
2955 }
2956 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002957 fb = crtc->cursor->fb;
2958 if (fb)
2959 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002960 }
2961
2962 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2963 crtc_x = req->x;
2964 crtc_y = req->y;
2965 } else {
2966 crtc_x = crtc->cursor_x;
2967 crtc_y = crtc->cursor_y;
2968 }
2969
2970 if (fb) {
2971 crtc_w = fb->width;
2972 crtc_h = fb->height;
2973 src_w = fb->width << 16;
2974 src_h = fb->height << 16;
2975 }
2976
2977 /*
2978 * setplane_internal will take care of deref'ing either the old or new
2979 * framebuffer depending on success.
2980 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002981 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002982 crtc_x, crtc_y, crtc_w, crtc_h,
2983 0, 0, src_w, src_h);
2984
2985 /* Update successful; save new cursor position, if necessary */
2986 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2987 crtc->cursor_x = req->x;
2988 crtc->cursor_y = req->y;
2989 }
2990
2991 return ret;
2992}
2993
Dave Airlie4c813d42013-06-20 11:48:52 +10002994static int drm_mode_cursor_common(struct drm_device *dev,
2995 struct drm_mode_cursor2 *req,
2996 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002997{
Dave Airlief453ba02008-11-07 14:05:41 -08002998 struct drm_crtc *crtc;
2999 int ret = 0;
3000
Dave Airliefb3b06c2011-02-08 13:55:21 +10003001 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3002 return -EINVAL;
3003
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00003004 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08003005 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003006
Rob Clarka2b34e22013-10-05 16:36:52 -04003007 crtc = drm_crtc_find(dev, req->crtc_id);
3008 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08003009 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003010 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003011 }
Dave Airlief453ba02008-11-07 14:05:41 -08003012
Matt Roper161d0dc2014-06-10 08:28:10 -07003013 /*
3014 * If this crtc has a universal cursor plane, call that plane's update
3015 * handler rather than using legacy cursor handlers.
3016 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01003017 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02003018 if (crtc->cursor) {
3019 ret = drm_mode_cursor_universal(crtc, req, file_priv);
3020 goto out;
3021 }
3022
Dave Airlief453ba02008-11-07 14:05:41 -08003023 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10003024 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08003025 ret = -ENXIO;
3026 goto out;
3027 }
3028 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003029 if (crtc->funcs->cursor_set2)
3030 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
3031 req->width, req->height, req->hot_x, req->hot_y);
3032 else
3033 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
3034 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08003035 }
3036
3037 if (req->flags & DRM_MODE_CURSOR_MOVE) {
3038 if (crtc->funcs->cursor_move) {
3039 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
3040 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08003041 ret = -EFAULT;
3042 goto out;
3043 }
3044 }
3045out:
Daniel Vetterd059f652014-07-25 18:07:40 +02003046 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01003047
Dave Airlief453ba02008-11-07 14:05:41 -08003048 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10003049
3050}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003051
3052
3053/**
3054 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3055 * @dev: drm device for the ioctl
3056 * @data: data pointer for the ioctl
3057 * @file_priv: drm file for the ioctl call
3058 *
3059 * Set the cursor configuration based on user request.
3060 *
3061 * Called by the user via ioctl.
3062 *
3063 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003064 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003065 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003066int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003067 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003068{
3069 struct drm_mode_cursor *req = data;
3070 struct drm_mode_cursor2 new_req;
3071
3072 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3073 new_req.hot_x = new_req.hot_y = 0;
3074
3075 return drm_mode_cursor_common(dev, &new_req, file_priv);
3076}
3077
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003078/**
3079 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3080 * @dev: drm device for the ioctl
3081 * @data: data pointer for the ioctl
3082 * @file_priv: drm file for the ioctl call
3083 *
3084 * Set the cursor configuration based on user request. This implements the 2nd
3085 * version of the cursor ioctl, which allows userspace to additionally specify
3086 * the hotspot of the pointer.
3087 *
3088 * Called by the user via ioctl.
3089 *
3090 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003091 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003092 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003093int drm_mode_cursor2_ioctl(struct drm_device *dev,
3094 void *data, struct drm_file *file_priv)
3095{
3096 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003097
Dave Airlie4c813d42013-06-20 11:48:52 +10003098 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003099}
3100
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003101/**
3102 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3103 * @bpp: bits per pixels
3104 * @depth: bit depth per pixel
3105 *
3106 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3107 * Useful in fbdev emulation code, since that deals in those values.
3108 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003109uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3110{
3111 uint32_t fmt;
3112
3113 switch (bpp) {
3114 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003115 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003116 break;
3117 case 16:
3118 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003119 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003120 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003121 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003122 break;
3123 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003124 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003125 break;
3126 case 32:
3127 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003128 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003129 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003130 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003131 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003132 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003133 break;
3134 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003135 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3136 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003137 break;
3138 }
3139
3140 return fmt;
3141}
3142EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3143
Dave Airlief453ba02008-11-07 14:05:41 -08003144/**
3145 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003146 * @dev: drm device for the ioctl
3147 * @data: data pointer for the ioctl
3148 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003149 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003150 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003151 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003152 *
3153 * Called by the user via ioctl.
3154 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003155 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003156 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003157 */
3158int drm_mode_addfb(struct drm_device *dev,
3159 void *data, struct drm_file *file_priv)
3160{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003161 struct drm_mode_fb_cmd *or = data;
3162 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003163 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003164
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003165 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003166 r.fb_id = or->fb_id;
3167 r.width = or->width;
3168 r.height = or->height;
3169 r.pitches[0] = or->pitch;
3170 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3171 r.handles[0] = or->handle;
3172
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003173 ret = drm_mode_addfb2(dev, &r, file_priv);
3174 if (ret)
3175 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003176
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003177 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003178
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003179 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003180}
3181
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003182static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003183{
3184 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3185
3186 switch (format) {
3187 case DRM_FORMAT_C8:
3188 case DRM_FORMAT_RGB332:
3189 case DRM_FORMAT_BGR233:
3190 case DRM_FORMAT_XRGB4444:
3191 case DRM_FORMAT_XBGR4444:
3192 case DRM_FORMAT_RGBX4444:
3193 case DRM_FORMAT_BGRX4444:
3194 case DRM_FORMAT_ARGB4444:
3195 case DRM_FORMAT_ABGR4444:
3196 case DRM_FORMAT_RGBA4444:
3197 case DRM_FORMAT_BGRA4444:
3198 case DRM_FORMAT_XRGB1555:
3199 case DRM_FORMAT_XBGR1555:
3200 case DRM_FORMAT_RGBX5551:
3201 case DRM_FORMAT_BGRX5551:
3202 case DRM_FORMAT_ARGB1555:
3203 case DRM_FORMAT_ABGR1555:
3204 case DRM_FORMAT_RGBA5551:
3205 case DRM_FORMAT_BGRA5551:
3206 case DRM_FORMAT_RGB565:
3207 case DRM_FORMAT_BGR565:
3208 case DRM_FORMAT_RGB888:
3209 case DRM_FORMAT_BGR888:
3210 case DRM_FORMAT_XRGB8888:
3211 case DRM_FORMAT_XBGR8888:
3212 case DRM_FORMAT_RGBX8888:
3213 case DRM_FORMAT_BGRX8888:
3214 case DRM_FORMAT_ARGB8888:
3215 case DRM_FORMAT_ABGR8888:
3216 case DRM_FORMAT_RGBA8888:
3217 case DRM_FORMAT_BGRA8888:
3218 case DRM_FORMAT_XRGB2101010:
3219 case DRM_FORMAT_XBGR2101010:
3220 case DRM_FORMAT_RGBX1010102:
3221 case DRM_FORMAT_BGRX1010102:
3222 case DRM_FORMAT_ARGB2101010:
3223 case DRM_FORMAT_ABGR2101010:
3224 case DRM_FORMAT_RGBA1010102:
3225 case DRM_FORMAT_BGRA1010102:
3226 case DRM_FORMAT_YUYV:
3227 case DRM_FORMAT_YVYU:
3228 case DRM_FORMAT_UYVY:
3229 case DRM_FORMAT_VYUY:
3230 case DRM_FORMAT_AYUV:
3231 case DRM_FORMAT_NV12:
3232 case DRM_FORMAT_NV21:
3233 case DRM_FORMAT_NV16:
3234 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003235 case DRM_FORMAT_NV24:
3236 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003237 case DRM_FORMAT_YUV410:
3238 case DRM_FORMAT_YVU410:
3239 case DRM_FORMAT_YUV411:
3240 case DRM_FORMAT_YVU411:
3241 case DRM_FORMAT_YUV420:
3242 case DRM_FORMAT_YVU420:
3243 case DRM_FORMAT_YUV422:
3244 case DRM_FORMAT_YVU422:
3245 case DRM_FORMAT_YUV444:
3246 case DRM_FORMAT_YVU444:
3247 return 0;
3248 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003249 DRM_DEBUG_KMS("invalid pixel format %s\n",
3250 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003251 return -EINVAL;
3252 }
3253}
3254
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003255static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003256{
3257 int ret, hsub, vsub, num_planes, i;
3258
3259 ret = format_check(r);
3260 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003261 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3262 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003263 return ret;
3264 }
3265
3266 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3267 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3268 num_planes = drm_format_num_planes(r->pixel_format);
3269
3270 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003271 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003272 return -EINVAL;
3273 }
3274
3275 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003276 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003277 return -EINVAL;
3278 }
3279
3280 for (i = 0; i < num_planes; i++) {
3281 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003282 unsigned int height = r->height / (i != 0 ? vsub : 1);
3283 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003284
3285 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003286 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003287 return -EINVAL;
3288 }
3289
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003290 if ((uint64_t) width * cpp > UINT_MAX)
3291 return -ERANGE;
3292
3293 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3294 return -ERANGE;
3295
3296 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003297 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003298 return -EINVAL;
3299 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003300
3301 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3302 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3303 r->modifier[i], i);
3304 return -EINVAL;
3305 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003306 }
3307
3308 return 0;
3309}
3310
Matt Roperc394c2b2014-06-10 08:28:08 -07003311static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3312 struct drm_mode_fb_cmd2 *r,
3313 struct drm_file *file_priv)
3314{
3315 struct drm_mode_config *config = &dev->mode_config;
3316 struct drm_framebuffer *fb;
3317 int ret;
3318
Rob Clarke3eb3252015-02-05 14:41:52 +00003319 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003320 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3321 return ERR_PTR(-EINVAL);
3322 }
3323
3324 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3325 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3326 r->width, config->min_width, config->max_width);
3327 return ERR_PTR(-EINVAL);
3328 }
3329 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3330 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3331 r->height, config->min_height, config->max_height);
3332 return ERR_PTR(-EINVAL);
3333 }
3334
Rob Clarke3eb3252015-02-05 14:41:52 +00003335 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3336 !dev->mode_config.allow_fb_modifiers) {
3337 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3338 return ERR_PTR(-EINVAL);
3339 }
3340
Matt Roperc394c2b2014-06-10 08:28:08 -07003341 ret = framebuffer_check(r);
3342 if (ret)
3343 return ERR_PTR(ret);
3344
3345 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3346 if (IS_ERR(fb)) {
3347 DRM_DEBUG_KMS("could not create framebuffer\n");
3348 return fb;
3349 }
3350
3351 mutex_lock(&file_priv->fbs_lock);
3352 r->fb_id = fb->base.id;
3353 list_add(&fb->filp_head, &file_priv->fbs);
3354 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3355 mutex_unlock(&file_priv->fbs_lock);
3356
3357 return fb;
3358}
3359
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003360/**
3361 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003362 * @dev: drm device for the ioctl
3363 * @data: data pointer for the ioctl
3364 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003365 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003366 * Add a new FB to the specified CRTC, given a user request with format. This is
3367 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3368 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003369 *
3370 * Called by the user via ioctl.
3371 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003372 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003373 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003374 */
3375int drm_mode_addfb2(struct drm_device *dev,
3376 void *data, struct drm_file *file_priv)
3377{
Dave Airlief453ba02008-11-07 14:05:41 -08003378 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003379
Dave Airliefb3b06c2011-02-08 13:55:21 +10003380 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3381 return -EINVAL;
3382
Matt Roperc394c2b2014-06-10 08:28:08 -07003383 fb = add_framebuffer_internal(dev, data, file_priv);
3384 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003385 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003386
Matt Roperc394c2b2014-06-10 08:28:08 -07003387 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003388}
3389
3390/**
3391 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003392 * @dev: drm device for the ioctl
3393 * @data: data pointer for the ioctl
3394 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003395 *
Dave Airlief453ba02008-11-07 14:05:41 -08003396 * Remove the FB specified by the user.
3397 *
3398 * Called by the user via ioctl.
3399 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003400 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003401 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003402 */
3403int drm_mode_rmfb(struct drm_device *dev,
3404 void *data, struct drm_file *file_priv)
3405{
Dave Airlief453ba02008-11-07 14:05:41 -08003406 struct drm_framebuffer *fb = NULL;
3407 struct drm_framebuffer *fbl = NULL;
3408 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003409 int found = 0;
3410
Dave Airliefb3b06c2011-02-08 13:55:21 +10003411 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3412 return -EINVAL;
3413
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003414 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003415 mutex_lock(&dev->mode_config.fb_lock);
3416 fb = __drm_framebuffer_lookup(dev, *id);
3417 if (!fb)
3418 goto fail_lookup;
3419
Dave Airlief453ba02008-11-07 14:05:41 -08003420 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3421 if (fb == fbl)
3422 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003423 if (!found)
3424 goto fail_lookup;
3425
3426 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3427 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003428
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003429 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003430 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003431 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003432
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003433 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003434
Daniel Vetter2b677e82012-12-10 21:16:05 +01003435 return 0;
3436
3437fail_lookup:
3438 mutex_unlock(&dev->mode_config.fb_lock);
3439 mutex_unlock(&file_priv->fbs_lock);
3440
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003441 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003442}
3443
3444/**
3445 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003446 * @dev: drm device for the ioctl
3447 * @data: data pointer for the ioctl
3448 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003449 *
Dave Airlief453ba02008-11-07 14:05:41 -08003450 * Lookup the FB given its ID and return info about it.
3451 *
3452 * Called by the user via ioctl.
3453 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003454 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003455 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003456 */
3457int drm_mode_getfb(struct drm_device *dev,
3458 void *data, struct drm_file *file_priv)
3459{
3460 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003461 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003462 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003463
Dave Airliefb3b06c2011-02-08 13:55:21 +10003464 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3465 return -EINVAL;
3466
Daniel Vetter786b99e2012-12-02 21:53:40 +01003467 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003468 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003469 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003470
3471 r->height = fb->height;
3472 r->width = fb->width;
3473 r->depth = fb->depth;
3474 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003475 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003476 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003477 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003478 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003479 ret = fb->funcs->create_handle(fb, file_priv,
3480 &r->handle);
3481 } else {
3482 /* GET_FB() is an unprivileged ioctl so we must not
3483 * return a buffer-handle to non-master processes! For
3484 * backwards-compatibility reasons, we cannot make
3485 * GET_FB() privileged, so just return an invalid handle
3486 * for non-masters. */
3487 r->handle = 0;
3488 ret = 0;
3489 }
3490 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003491 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003492 }
Dave Airlief453ba02008-11-07 14:05:41 -08003493
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003494 drm_framebuffer_unreference(fb);
3495
Dave Airlief453ba02008-11-07 14:05:41 -08003496 return ret;
3497}
3498
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003499/**
3500 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3501 * @dev: drm device for the ioctl
3502 * @data: data pointer for the ioctl
3503 * @file_priv: drm file for the ioctl call
3504 *
3505 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3506 * rectangle list. Generic userspace which does frontbuffer rendering must call
3507 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3508 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3509 *
3510 * Modesetting drivers which always update the frontbuffer do not need to
3511 * implement the corresponding ->dirty framebuffer callback.
3512 *
3513 * Called by the user via ioctl.
3514 *
3515 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003516 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003517 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003518int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3519 void *data, struct drm_file *file_priv)
3520{
3521 struct drm_clip_rect __user *clips_ptr;
3522 struct drm_clip_rect *clips = NULL;
3523 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003524 struct drm_framebuffer *fb;
3525 unsigned flags;
3526 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003527 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003528
Dave Airliefb3b06c2011-02-08 13:55:21 +10003529 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3530 return -EINVAL;
3531
Daniel Vetter786b99e2012-12-02 21:53:40 +01003532 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003533 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003534 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003535
3536 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003537 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003538
3539 if (!num_clips != !clips_ptr) {
3540 ret = -EINVAL;
3541 goto out_err1;
3542 }
3543
3544 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3545
3546 /* If userspace annotates copy, clips must come in pairs */
3547 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3548 ret = -EINVAL;
3549 goto out_err1;
3550 }
3551
3552 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003553 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3554 ret = -EINVAL;
3555 goto out_err1;
3556 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003557 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003558 if (!clips) {
3559 ret = -ENOMEM;
3560 goto out_err1;
3561 }
3562
3563 ret = copy_from_user(clips, clips_ptr,
3564 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003565 if (ret) {
3566 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003567 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003568 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003569 }
3570
3571 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003572 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3573 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003574 } else {
3575 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003576 }
3577
3578out_err2:
3579 kfree(clips);
3580out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003581 drm_framebuffer_unreference(fb);
3582
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003583 return ret;
3584}
3585
3586
Dave Airlief453ba02008-11-07 14:05:41 -08003587/**
3588 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003589 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003590 *
Dave Airlief453ba02008-11-07 14:05:41 -08003591 * Destroy all the FBs associated with @filp.
3592 *
3593 * Called by the user via ioctl.
3594 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003595 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003596 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003597 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003598void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003599{
Dave Airlief453ba02008-11-07 14:05:41 -08003600 struct drm_device *dev = priv->minor->dev;
3601 struct drm_framebuffer *fb, *tfb;
3602
Daniel Vetter1b116292014-09-24 21:51:06 +02003603 /*
3604 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003605 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003606 * avoid upsetting lockdep since the universal cursor code adds a
3607 * framebuffer while holding mutex locks.
3608 *
3609 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3610 * locks is impossible here since no one else but this function can get
3611 * at it any more.
3612 */
Dave Airlief453ba02008-11-07 14:05:41 -08003613 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003614
3615 mutex_lock(&dev->mode_config.fb_lock);
3616 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3617 __drm_framebuffer_unregister(dev, fb);
3618 mutex_unlock(&dev->mode_config.fb_lock);
3619
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003620 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003621
3622 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003623 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003624 }
Dave Airlief453ba02008-11-07 14:05:41 -08003625}
3626
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003627/**
3628 * drm_property_create - create a new property type
3629 * @dev: drm device
3630 * @flags: flags specifying the property type
3631 * @name: name of the property
3632 * @num_values: number of pre-defined values
3633 *
3634 * This creates a new generic drm property which can then be attached to a drm
3635 * object with drm_object_attach_property. The returned property object must be
3636 * freed with drm_property_destroy.
3637 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003638 * Note that the DRM core keeps a per-device list of properties and that, if
3639 * drm_mode_config_cleanup() is called, it will destroy all properties created
3640 * by the driver.
3641 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003642 * Returns:
3643 * A pointer to the newly created property on success, NULL on failure.
3644 */
Dave Airlief453ba02008-11-07 14:05:41 -08003645struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3646 const char *name, int num_values)
3647{
3648 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003649 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003650
3651 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3652 if (!property)
3653 return NULL;
3654
Rob Clark98f75de2014-05-30 11:37:03 -04003655 property->dev = dev;
3656
Dave Airlief453ba02008-11-07 14:05:41 -08003657 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003658 property->values = kcalloc(num_values, sizeof(uint64_t),
3659 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003660 if (!property->values)
3661 goto fail;
3662 }
3663
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003664 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3665 if (ret)
3666 goto fail;
3667
Dave Airlief453ba02008-11-07 14:05:41 -08003668 property->flags = flags;
3669 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003670 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003671
Vinson Lee471dd2e2011-11-10 11:55:40 -08003672 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003673 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003674 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3675 }
Dave Airlief453ba02008-11-07 14:05:41 -08003676
3677 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003678
3679 WARN_ON(!drm_property_type_valid(property));
3680
Dave Airlief453ba02008-11-07 14:05:41 -08003681 return property;
3682fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003683 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003684 kfree(property);
3685 return NULL;
3686}
3687EXPORT_SYMBOL(drm_property_create);
3688
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003689/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003690 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003691 * @dev: drm device
3692 * @flags: flags specifying the property type
3693 * @name: name of the property
3694 * @props: enumeration lists with property values
3695 * @num_values: number of pre-defined values
3696 *
3697 * This creates a new generic drm property which can then be attached to a drm
3698 * object with drm_object_attach_property. The returned property object must be
3699 * freed with drm_property_destroy.
3700 *
3701 * Userspace is only allowed to set one of the predefined values for enumeration
3702 * properties.
3703 *
3704 * Returns:
3705 * A pointer to the newly created property on success, NULL on failure.
3706 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003707struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3708 const char *name,
3709 const struct drm_prop_enum_list *props,
3710 int num_values)
3711{
3712 struct drm_property *property;
3713 int i, ret;
3714
3715 flags |= DRM_MODE_PROP_ENUM;
3716
3717 property = drm_property_create(dev, flags, name, num_values);
3718 if (!property)
3719 return NULL;
3720
3721 for (i = 0; i < num_values; i++) {
3722 ret = drm_property_add_enum(property, i,
3723 props[i].type,
3724 props[i].name);
3725 if (ret) {
3726 drm_property_destroy(dev, property);
3727 return NULL;
3728 }
3729 }
3730
3731 return property;
3732}
3733EXPORT_SYMBOL(drm_property_create_enum);
3734
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003735/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003736 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003737 * @dev: drm device
3738 * @flags: flags specifying the property type
3739 * @name: name of the property
3740 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003741 * @num_props: size of the @props array
3742 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003743 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003744 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003745 * object with drm_object_attach_property. The returned property object must be
3746 * freed with drm_property_destroy.
3747 *
3748 * Compared to plain enumeration properties userspace is allowed to set any
3749 * or'ed together combination of the predefined property bitflag values
3750 *
3751 * Returns:
3752 * A pointer to the newly created property on success, NULL on failure.
3753 */
Rob Clark49e27542012-05-17 02:23:26 -06003754struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3755 int flags, const char *name,
3756 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303757 int num_props,
3758 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003759{
3760 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303761 int i, ret, index = 0;
3762 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003763
3764 flags |= DRM_MODE_PROP_BITMASK;
3765
3766 property = drm_property_create(dev, flags, name, num_values);
3767 if (!property)
3768 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303769 for (i = 0; i < num_props; i++) {
3770 if (!(supported_bits & (1ULL << props[i].type)))
3771 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003772
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303773 if (WARN_ON(index >= num_values)) {
3774 drm_property_destroy(dev, property);
3775 return NULL;
3776 }
3777
3778 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003779 props[i].type,
3780 props[i].name);
3781 if (ret) {
3782 drm_property_destroy(dev, property);
3783 return NULL;
3784 }
3785 }
3786
3787 return property;
3788}
3789EXPORT_SYMBOL(drm_property_create_bitmask);
3790
Rob Clarkebc44cf2012-09-12 22:22:31 -05003791static struct drm_property *property_create_range(struct drm_device *dev,
3792 int flags, const char *name,
3793 uint64_t min, uint64_t max)
3794{
3795 struct drm_property *property;
3796
3797 property = drm_property_create(dev, flags, name, 2);
3798 if (!property)
3799 return NULL;
3800
3801 property->values[0] = min;
3802 property->values[1] = max;
3803
3804 return property;
3805}
3806
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003807/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003808 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003809 * @dev: drm device
3810 * @flags: flags specifying the property type
3811 * @name: name of the property
3812 * @min: minimum value of the property
3813 * @max: maximum value of the property
3814 *
3815 * This creates a new generic drm property which can then be attached to a drm
3816 * object with drm_object_attach_property. The returned property object must be
3817 * freed with drm_property_destroy.
3818 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003819 * Userspace is allowed to set any unsigned integer value in the (min, max)
3820 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003821 *
3822 * Returns:
3823 * A pointer to the newly created property on success, NULL on failure.
3824 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003825struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3826 const char *name,
3827 uint64_t min, uint64_t max)
3828{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003829 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3830 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003831}
3832EXPORT_SYMBOL(drm_property_create_range);
3833
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003834/**
3835 * drm_property_create_signed_range - create a new signed ranged property type
3836 * @dev: drm device
3837 * @flags: flags specifying the property type
3838 * @name: name of the property
3839 * @min: minimum value of the property
3840 * @max: maximum value of the property
3841 *
3842 * This creates a new generic drm property which can then be attached to a drm
3843 * object with drm_object_attach_property. The returned property object must be
3844 * freed with drm_property_destroy.
3845 *
3846 * Userspace is allowed to set any signed integer value in the (min, max)
3847 * range inclusive.
3848 *
3849 * Returns:
3850 * A pointer to the newly created property on success, NULL on failure.
3851 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003852struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3853 int flags, const char *name,
3854 int64_t min, int64_t max)
3855{
3856 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3857 name, I642U64(min), I642U64(max));
3858}
3859EXPORT_SYMBOL(drm_property_create_signed_range);
3860
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003861/**
3862 * drm_property_create_object - create a new object property type
3863 * @dev: drm device
3864 * @flags: flags specifying the property type
3865 * @name: name of the property
3866 * @type: object type from DRM_MODE_OBJECT_* defines
3867 *
3868 * This creates a new generic drm property which can then be attached to a drm
3869 * object with drm_object_attach_property. The returned property object must be
3870 * freed with drm_property_destroy.
3871 *
3872 * Userspace is only allowed to set this to any property value of the given
3873 * @type. Only useful for atomic properties, which is enforced.
3874 *
3875 * Returns:
3876 * A pointer to the newly created property on success, NULL on failure.
3877 */
Rob Clark98f75de2014-05-30 11:37:03 -04003878struct drm_property *drm_property_create_object(struct drm_device *dev,
3879 int flags, const char *name, uint32_t type)
3880{
3881 struct drm_property *property;
3882
3883 flags |= DRM_MODE_PROP_OBJECT;
3884
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003885 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3886 return NULL;
3887
Rob Clark98f75de2014-05-30 11:37:03 -04003888 property = drm_property_create(dev, flags, name, 1);
3889 if (!property)
3890 return NULL;
3891
3892 property->values[0] = type;
3893
3894 return property;
3895}
3896EXPORT_SYMBOL(drm_property_create_object);
3897
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003898/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003899 * drm_property_create_bool - create a new boolean property type
3900 * @dev: drm device
3901 * @flags: flags specifying the property type
3902 * @name: name of the property
3903 *
3904 * This creates a new generic drm property which can then be attached to a drm
3905 * object with drm_object_attach_property. The returned property object must be
3906 * freed with drm_property_destroy.
3907 *
3908 * This is implemented as a ranged property with only {0, 1} as valid values.
3909 *
3910 * Returns:
3911 * A pointer to the newly created property on success, NULL on failure.
3912 */
3913struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3914 const char *name)
3915{
3916 return drm_property_create_range(dev, flags, name, 0, 1);
3917}
3918EXPORT_SYMBOL(drm_property_create_bool);
3919
3920/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003921 * drm_property_add_enum - add a possible value to an enumeration property
3922 * @property: enumeration property to change
3923 * @index: index of the new enumeration
3924 * @value: value of the new enumeration
3925 * @name: symbolic name of the new enumeration
3926 *
3927 * This functions adds enumerations to a property.
3928 *
3929 * It's use is deprecated, drivers should use one of the more specific helpers
3930 * to directly create the property with all enumerations already attached.
3931 *
3932 * Returns:
3933 * Zero on success, error code on failure.
3934 */
Dave Airlief453ba02008-11-07 14:05:41 -08003935int drm_property_add_enum(struct drm_property *property, int index,
3936 uint64_t value, const char *name)
3937{
3938 struct drm_property_enum *prop_enum;
3939
Rob Clark5ea22f22014-05-30 11:34:01 -04003940 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3941 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003942 return -EINVAL;
3943
3944 /*
3945 * Bitmask enum properties have the additional constraint of values
3946 * from 0 to 63
3947 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003948 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3949 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003950 return -EINVAL;
3951
Daniel Vetter3758b342014-11-19 18:38:10 +01003952 if (!list_empty(&property->enum_list)) {
3953 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003954 if (prop_enum->value == value) {
3955 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3956 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3957 return 0;
3958 }
3959 }
3960 }
3961
3962 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3963 if (!prop_enum)
3964 return -ENOMEM;
3965
3966 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3967 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3968 prop_enum->value = value;
3969
3970 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003971 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003972 return 0;
3973}
3974EXPORT_SYMBOL(drm_property_add_enum);
3975
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003976/**
3977 * drm_property_destroy - destroy a drm property
3978 * @dev: drm device
3979 * @property: property to destry
3980 *
3981 * This function frees a property including any attached resources like
3982 * enumeration values.
3983 */
Dave Airlief453ba02008-11-07 14:05:41 -08003984void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3985{
3986 struct drm_property_enum *prop_enum, *pt;
3987
Daniel Vetter3758b342014-11-19 18:38:10 +01003988 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003989 list_del(&prop_enum->head);
3990 kfree(prop_enum);
3991 }
3992
3993 if (property->num_values)
3994 kfree(property->values);
3995 drm_mode_object_put(dev, &property->base);
3996 list_del(&property->head);
3997 kfree(property);
3998}
3999EXPORT_SYMBOL(drm_property_destroy);
4000
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004001/**
4002 * drm_object_attach_property - attach a property to a modeset object
4003 * @obj: drm modeset object
4004 * @property: property to attach
4005 * @init_val: initial value of the property
4006 *
4007 * This attaches the given property to the modeset object with the given initial
4008 * value. Currently this function cannot fail since the properties are stored in
4009 * a statically sized array.
4010 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004011void drm_object_attach_property(struct drm_mode_object *obj,
4012 struct drm_property *property,
4013 uint64_t init_val)
4014{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004015 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004016
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004017 if (count == DRM_OBJECT_MAX_PROPERTY) {
4018 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4019 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4020 "you see this message on the same object type.\n",
4021 obj->type);
4022 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03004023 }
4024
Rob Clarkb17cd752014-12-16 18:05:30 -05004025 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004026 obj->properties->values[count] = init_val;
4027 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05004028 if (property->flags & DRM_MODE_PROP_ATOMIC)
4029 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03004030}
4031EXPORT_SYMBOL(drm_object_attach_property);
4032
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004033/**
4034 * drm_object_property_set_value - set the value of a property
4035 * @obj: drm mode object to set property value for
4036 * @property: property to set
4037 * @val: value the property should be set to
4038 *
4039 * This functions sets a given property on a given object. This function only
4040 * changes the software state of the property, it does not call into the
4041 * driver's ->set_property callback.
4042 *
4043 * Returns:
4044 * Zero on success, error code on failure.
4045 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004046int drm_object_property_set_value(struct drm_mode_object *obj,
4047 struct drm_property *property, uint64_t val)
4048{
4049 int i;
4050
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004051 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004052 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004053 obj->properties->values[i] = val;
4054 return 0;
4055 }
4056 }
4057
4058 return -EINVAL;
4059}
4060EXPORT_SYMBOL(drm_object_property_set_value);
4061
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004062/**
4063 * drm_object_property_get_value - retrieve the value of a property
4064 * @obj: drm mode object to get property value from
4065 * @property: property to retrieve
4066 * @val: storage for the property value
4067 *
4068 * This function retrieves the softare state of the given property for the given
4069 * property. Since there is no driver callback to retrieve the current property
4070 * value this might be out of sync with the hardware, depending upon the driver
4071 * and property.
4072 *
4073 * Returns:
4074 * Zero on success, error code on failure.
4075 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004076int drm_object_property_get_value(struct drm_mode_object *obj,
4077 struct drm_property *property, uint64_t *val)
4078{
4079 int i;
4080
Rob Clark88a48e22014-12-18 16:01:50 -05004081 /* read-only properties bypass atomic mechanism and still store
4082 * their value in obj->properties->values[].. mostly to avoid
4083 * having to deal w/ EDID and similar props in atomic paths:
4084 */
4085 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4086 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4087 return drm_atomic_get_property(obj, property, val);
4088
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004089 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004090 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004091 *val = obj->properties->values[i];
4092 return 0;
4093 }
4094 }
4095
4096 return -EINVAL;
4097}
4098EXPORT_SYMBOL(drm_object_property_get_value);
4099
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004100/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004101 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004102 * @dev: DRM device
4103 * @data: ioctl data
4104 * @file_priv: DRM file info
4105 *
Daniel Vetter1a498632014-11-19 18:38:09 +01004106 * This function retrieves the metadata for a given property, like the different
4107 * possible values for an enum property or the limits for a range property.
4108 *
4109 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004110 *
4111 * Called by the user via ioctl.
4112 *
4113 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004114 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004115 */
Dave Airlief453ba02008-11-07 14:05:41 -08004116int drm_mode_getproperty_ioctl(struct drm_device *dev,
4117 void *data, struct drm_file *file_priv)
4118{
Dave Airlief453ba02008-11-07 14:05:41 -08004119 struct drm_mode_get_property *out_resp = data;
4120 struct drm_property *property;
4121 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004122 int value_count = 0;
4123 int ret = 0, i;
4124 int copied;
4125 struct drm_property_enum *prop_enum;
4126 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004127 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004128
Dave Airliefb3b06c2011-02-08 13:55:21 +10004129 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4130 return -EINVAL;
4131
Daniel Vetter84849902012-12-02 00:28:11 +01004132 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004133 property = drm_property_find(dev, out_resp->prop_id);
4134 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004135 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004136 goto done;
4137 }
Dave Airlief453ba02008-11-07 14:05:41 -08004138
Rob Clark5ea22f22014-05-30 11:34:01 -04004139 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4140 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004141 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004142 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004143 }
4144
4145 value_count = property->num_values;
4146
4147 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4148 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4149 out_resp->flags = property->flags;
4150
4151 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004152 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004153 for (i = 0; i < value_count; i++) {
4154 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4155 ret = -EFAULT;
4156 goto done;
4157 }
4158 }
4159 }
4160 out_resp->count_values = value_count;
4161
Rob Clark5ea22f22014-05-30 11:34:01 -04004162 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4163 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004164 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4165 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004166 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004167 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004168
4169 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4170 ret = -EFAULT;
4171 goto done;
4172 }
4173
4174 if (copy_to_user(&enum_ptr[copied].name,
4175 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4176 ret = -EFAULT;
4177 goto done;
4178 }
4179 copied++;
4180 }
4181 }
4182 out_resp->count_enum_blobs = enum_count;
4183 }
4184
Daniel Vetter3758b342014-11-19 18:38:10 +01004185 /*
4186 * NOTE: The idea seems to have been to use this to read all the blob
4187 * property values. But nothing ever added them to the corresponding
4188 * list, userspace always used the special-purpose get_blob ioctl to
4189 * read the value for a blob property. It also doesn't make a lot of
4190 * sense to return values here when everything else is just metadata for
4191 * the property itself.
4192 */
4193 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4194 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004195done:
Daniel Vetter84849902012-12-02 00:28:11 +01004196 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004197 return ret;
4198}
4199
Thierry Redingecbbe592014-05-13 11:36:13 +02004200static struct drm_property_blob *
4201drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004202 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004203{
4204 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004205 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004206
4207 if (!length || !data)
4208 return NULL;
4209
4210 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4211 if (!blob)
4212 return NULL;
4213
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004214 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4215 if (ret) {
4216 kfree(blob);
4217 return NULL;
4218 }
4219
Dave Airlief453ba02008-11-07 14:05:41 -08004220 blob->length = length;
4221
4222 memcpy(blob->data, data, length);
4223
Dave Airlief453ba02008-11-07 14:05:41 -08004224 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4225 return blob;
4226}
4227
4228static void drm_property_destroy_blob(struct drm_device *dev,
4229 struct drm_property_blob *blob)
4230{
4231 drm_mode_object_put(dev, &blob->base);
4232 list_del(&blob->head);
4233 kfree(blob);
4234}
4235
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004236/**
4237 * drm_mode_getblob_ioctl - get the contents of a blob property value
4238 * @dev: DRM device
4239 * @data: ioctl data
4240 * @file_priv: DRM file info
4241 *
4242 * This function retrieves the contents of a blob property. The value stored in
4243 * an object's blob property is just a normal modeset object id.
4244 *
4245 * Called by the user via ioctl.
4246 *
4247 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004248 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004249 */
Dave Airlief453ba02008-11-07 14:05:41 -08004250int drm_mode_getblob_ioctl(struct drm_device *dev,
4251 void *data, struct drm_file *file_priv)
4252{
Dave Airlief453ba02008-11-07 14:05:41 -08004253 struct drm_mode_get_blob *out_resp = data;
4254 struct drm_property_blob *blob;
4255 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004256 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004257
Dave Airliefb3b06c2011-02-08 13:55:21 +10004258 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4259 return -EINVAL;
4260
Daniel Vetter84849902012-12-02 00:28:11 +01004261 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004262 blob = drm_property_blob_find(dev, out_resp->blob_id);
4263 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004264 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004265 goto done;
4266 }
Dave Airlief453ba02008-11-07 14:05:41 -08004267
4268 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004269 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004270 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004271 ret = -EFAULT;
4272 goto done;
4273 }
4274 }
4275 out_resp->length = blob->length;
4276
4277done:
Daniel Vetter84849902012-12-02 00:28:11 +01004278 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004279 return ret;
4280}
4281
Dave Airliecc7096f2014-10-22 12:03:04 +10004282/**
4283 * drm_mode_connector_set_path_property - set tile property on connector
4284 * @connector: connector to set property on.
4285 * @path: path to use for property.
4286 *
4287 * This creates a property to expose to userspace to specify a
4288 * connector path. This is mainly used for DisplayPort MST where
4289 * connectors have a topology and we want to allow userspace to give
4290 * them more meaningful names.
4291 *
4292 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004293 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004294 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004295int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004296 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004297{
4298 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004299 size_t size = strlen(path) + 1;
4300 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004301
4302 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4303 size, path);
4304 if (!connector->path_blob_ptr)
4305 return -EINVAL;
4306
4307 ret = drm_object_property_set_value(&connector->base,
4308 dev->mode_config.path_property,
4309 connector->path_blob_ptr->base.id);
4310 return ret;
4311}
4312EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4313
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004314/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004315 * drm_mode_connector_set_tile_property - set tile property on connector
4316 * @connector: connector to set property on.
4317 *
4318 * This looks up the tile information for a connector, and creates a
4319 * property for userspace to parse if it exists. The property is of
4320 * the form of 8 integers using ':' as a separator.
4321 *
4322 * Returns:
4323 * Zero on success, errno on failure.
4324 */
4325int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4326{
4327 struct drm_device *dev = connector->dev;
4328 int ret, size;
4329 char tile[256];
4330
4331 if (connector->tile_blob_ptr)
4332 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4333
4334 if (!connector->has_tile) {
4335 connector->tile_blob_ptr = NULL;
4336 ret = drm_object_property_set_value(&connector->base,
4337 dev->mode_config.tile_property, 0);
4338 return ret;
4339 }
4340
4341 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4342 connector->tile_group->id, connector->tile_is_single_monitor,
4343 connector->num_h_tile, connector->num_v_tile,
4344 connector->tile_h_loc, connector->tile_v_loc,
4345 connector->tile_h_size, connector->tile_v_size);
4346 size = strlen(tile) + 1;
4347
4348 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4349 size, tile);
4350 if (!connector->tile_blob_ptr)
4351 return -EINVAL;
4352
4353 ret = drm_object_property_set_value(&connector->base,
4354 dev->mode_config.tile_property,
4355 connector->tile_blob_ptr->base.id);
4356 return ret;
4357}
4358EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4359
4360/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004361 * drm_mode_connector_update_edid_property - update the edid property of a connector
4362 * @connector: drm connector
4363 * @edid: new value of the edid property
4364 *
4365 * This function creates a new blob modeset object and assigns its id to the
4366 * connector's edid property.
4367 *
4368 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004369 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004370 */
Dave Airlief453ba02008-11-07 14:05:41 -08004371int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004372 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004373{
4374 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004375 size_t size;
4376 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004377
Thomas Wood4cf2b282014-06-18 17:52:33 +01004378 /* ignore requests to set edid when overridden */
4379 if (connector->override_edid)
4380 return 0;
4381
Dave Airlief453ba02008-11-07 14:05:41 -08004382 if (connector->edid_blob_ptr)
4383 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4384
4385 /* Delete edid, when there is none. */
4386 if (!edid) {
4387 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004388 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004389 return ret;
4390 }
4391
Adam Jackson7466f4c2010-03-29 21:43:23 +00004392 size = EDID_LENGTH * (1 + edid->extensions);
4393 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4394 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004395 if (!connector->edid_blob_ptr)
4396 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004397
Rob Clark58495562012-10-11 20:50:56 -05004398 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004399 dev->mode_config.edid_property,
4400 connector->edid_blob_ptr->base.id);
4401
4402 return ret;
4403}
4404EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4405
Rob Clark3843e712014-12-16 18:05:29 -05004406/* Some properties could refer to dynamic refcnt'd objects, or things that
4407 * need special locking to handle lifetime issues (ie. to ensure the prop
4408 * value doesn't become invalid part way through the property update due to
4409 * race). The value returned by reference via 'obj' should be passed back
4410 * to drm_property_change_valid_put() after the property is set (and the
4411 * object to which the property is attached has a chance to take it's own
4412 * reference).
4413 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004414bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004415 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004416{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004417 int i;
4418
Paulo Zanoni26a34812012-05-15 18:08:59 -03004419 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4420 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004421
Rob Clark3843e712014-12-16 18:05:29 -05004422 *ref = NULL;
4423
Rob Clark5ea22f22014-05-30 11:34:01 -04004424 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004425 if (value < property->values[0] || value > property->values[1])
4426 return false;
4427 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004428 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4429 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004430
Rob Clarkebc44cf2012-09-12 22:22:31 -05004431 if (svalue < U642I64(property->values[0]) ||
4432 svalue > U642I64(property->values[1]))
4433 return false;
4434 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004435 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004436 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004437
Rob Clark49e27542012-05-17 02:23:26 -06004438 for (i = 0; i < property->num_values; i++)
4439 valid_mask |= (1ULL << property->values[i]);
4440 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004441 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004442 /* Only the driver knows */
4443 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004444 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004445 /* a zero value for an object property translates to null: */
4446 if (value == 0)
4447 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004448
4449 /* handle refcnt'd objects specially: */
4450 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4451 struct drm_framebuffer *fb;
4452 fb = drm_framebuffer_lookup(property->dev, value);
4453 if (fb) {
4454 *ref = &fb->base;
4455 return true;
4456 } else {
4457 return false;
4458 }
4459 } else {
4460 return _object_find(property->dev, value, property->values[0]) != NULL;
4461 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004462 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004463
4464 for (i = 0; i < property->num_values; i++)
4465 if (property->values[i] == value)
4466 return true;
4467 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004468}
4469
Rob Clarkd34f20d2014-12-18 16:01:56 -05004470void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004471 struct drm_mode_object *ref)
4472{
4473 if (!ref)
4474 return;
4475
4476 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4477 if (property->values[0] == DRM_MODE_OBJECT_FB)
4478 drm_framebuffer_unreference(obj_to_fb(ref));
4479 }
4480}
4481
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004482/**
4483 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4484 * @dev: DRM device
4485 * @data: ioctl data
4486 * @file_priv: DRM file info
4487 *
4488 * This function sets the current value for a connectors's property. It also
4489 * calls into a driver's ->set_property callback to update the hardware state
4490 *
4491 * Called by the user via ioctl.
4492 *
4493 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004494 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004495 */
Dave Airlief453ba02008-11-07 14:05:41 -08004496int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4497 void *data, struct drm_file *file_priv)
4498{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004499 struct drm_mode_connector_set_property *conn_set_prop = data;
4500 struct drm_mode_obj_set_property obj_set_prop = {
4501 .value = conn_set_prop->value,
4502 .prop_id = conn_set_prop->prop_id,
4503 .obj_id = conn_set_prop->connector_id,
4504 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4505 };
Dave Airlief453ba02008-11-07 14:05:41 -08004506
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004507 /* It does all the locking and checking we need */
4508 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004509}
4510
Paulo Zanonic5431882012-05-15 18:09:02 -03004511static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4512 struct drm_property *property,
4513 uint64_t value)
4514{
4515 int ret = -EINVAL;
4516 struct drm_connector *connector = obj_to_connector(obj);
4517
4518 /* Do DPMS ourselves */
4519 if (property == connector->dev->mode_config.dpms_property) {
4520 if (connector->funcs->dpms)
4521 (*connector->funcs->dpms)(connector, (int)value);
4522 ret = 0;
4523 } else if (connector->funcs->set_property)
4524 ret = connector->funcs->set_property(connector, property, value);
4525
4526 /* store the property value if successful */
4527 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004528 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004529 return ret;
4530}
4531
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004532static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4533 struct drm_property *property,
4534 uint64_t value)
4535{
4536 int ret = -EINVAL;
4537 struct drm_crtc *crtc = obj_to_crtc(obj);
4538
4539 if (crtc->funcs->set_property)
4540 ret = crtc->funcs->set_property(crtc, property, value);
4541 if (!ret)
4542 drm_object_property_set_value(obj, property, value);
4543
4544 return ret;
4545}
4546
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004547/**
4548 * drm_mode_plane_set_obj_prop - set the value of a property
4549 * @plane: drm plane object to set property value for
4550 * @property: property to set
4551 * @value: value the property should be set to
4552 *
4553 * This functions sets a given property on a given plane object. This function
4554 * calls the driver's ->set_property callback and changes the software state of
4555 * the property if the callback succeeds.
4556 *
4557 * Returns:
4558 * Zero on success, error code on failure.
4559 */
4560int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4561 struct drm_property *property,
4562 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004563{
4564 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004565 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004566
4567 if (plane->funcs->set_property)
4568 ret = plane->funcs->set_property(plane, property, value);
4569 if (!ret)
4570 drm_object_property_set_value(obj, property, value);
4571
4572 return ret;
4573}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004574EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004575
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004576/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004577 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004578 * @dev: DRM device
4579 * @data: ioctl data
4580 * @file_priv: DRM file info
4581 *
4582 * This function retrieves the current value for an object's property. Compared
4583 * to the connector specific ioctl this one is extended to also work on crtc and
4584 * plane objects.
4585 *
4586 * Called by the user via ioctl.
4587 *
4588 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004589 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004590 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004591int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4592 struct drm_file *file_priv)
4593{
4594 struct drm_mode_obj_get_properties *arg = data;
4595 struct drm_mode_object *obj;
4596 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004597
4598 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4599 return -EINVAL;
4600
Daniel Vetter84849902012-12-02 00:28:11 +01004601 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004602
4603 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4604 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004605 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004606 goto out;
4607 }
4608 if (!obj->properties) {
4609 ret = -EINVAL;
4610 goto out;
4611 }
4612
Rob Clark88a48e22014-12-18 16:01:50 -05004613 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004614 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4615 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4616 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004617
Paulo Zanonic5431882012-05-15 18:09:02 -03004618out:
Daniel Vetter84849902012-12-02 00:28:11 +01004619 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004620 return ret;
4621}
4622
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004623/**
4624 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4625 * @dev: DRM device
4626 * @data: ioctl data
4627 * @file_priv: DRM file info
4628 *
4629 * This function sets the current value for an object's property. It also calls
4630 * into a driver's ->set_property callback to update the hardware state.
4631 * Compared to the connector specific ioctl this one is extended to also work on
4632 * crtc and plane objects.
4633 *
4634 * Called by the user via ioctl.
4635 *
4636 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004637 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004638 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004639int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4640 struct drm_file *file_priv)
4641{
4642 struct drm_mode_obj_set_property *arg = data;
4643 struct drm_mode_object *arg_obj;
4644 struct drm_mode_object *prop_obj;
4645 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004646 int i, ret = -EINVAL;
4647 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004648
4649 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4650 return -EINVAL;
4651
Daniel Vetter84849902012-12-02 00:28:11 +01004652 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004653
4654 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004655 if (!arg_obj) {
4656 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004657 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004658 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004659 if (!arg_obj->properties)
4660 goto out;
4661
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004662 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004663 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004664 break;
4665
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004666 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004667 goto out;
4668
4669 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4670 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004671 if (!prop_obj) {
4672 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004673 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004674 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004675 property = obj_to_property(prop_obj);
4676
Rob Clark3843e712014-12-16 18:05:29 -05004677 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004678 goto out;
4679
4680 switch (arg_obj->type) {
4681 case DRM_MODE_OBJECT_CONNECTOR:
4682 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4683 arg->value);
4684 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004685 case DRM_MODE_OBJECT_CRTC:
4686 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4687 break;
Rob Clark4d939142012-05-17 02:23:27 -06004688 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004689 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4690 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004691 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004692 }
4693
Rob Clark3843e712014-12-16 18:05:29 -05004694 drm_property_change_valid_put(property, ref);
4695
Paulo Zanonic5431882012-05-15 18:09:02 -03004696out:
Daniel Vetter84849902012-12-02 00:28:11 +01004697 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004698 return ret;
4699}
4700
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004701/**
4702 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4703 * @connector: connector to attach
4704 * @encoder: encoder to attach @connector to
4705 *
4706 * This function links up a connector to an encoder. Note that the routing
4707 * restrictions between encoders and crtcs are exposed to userspace through the
4708 * possible_clones and possible_crtcs bitmasks.
4709 *
4710 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004711 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004712 */
Dave Airlief453ba02008-11-07 14:05:41 -08004713int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4714 struct drm_encoder *encoder)
4715{
4716 int i;
4717
4718 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4719 if (connector->encoder_ids[i] == 0) {
4720 connector->encoder_ids[i] = encoder->base.id;
4721 return 0;
4722 }
4723 }
4724 return -ENOMEM;
4725}
4726EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4727
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004728/**
4729 * drm_mode_crtc_set_gamma_size - set the gamma table size
4730 * @crtc: CRTC to set the gamma table size for
4731 * @gamma_size: size of the gamma table
4732 *
4733 * Drivers which support gamma tables should set this to the supported gamma
4734 * table size when initializing the CRTC. Currently the drm core only supports a
4735 * fixed gamma table size.
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 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004740int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004741 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004742{
4743 crtc->gamma_size = gamma_size;
4744
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004745 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4746 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004747 if (!crtc->gamma_store) {
4748 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004749 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004750 }
4751
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004752 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004753}
4754EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4755
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004756/**
4757 * drm_mode_gamma_set_ioctl - set the gamma table
4758 * @dev: DRM device
4759 * @data: ioctl data
4760 * @file_priv: DRM file info
4761 *
4762 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4763 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4764 *
4765 * Called by the user via ioctl.
4766 *
4767 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004768 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004769 */
Dave Airlief453ba02008-11-07 14:05:41 -08004770int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4771 void *data, struct drm_file *file_priv)
4772{
4773 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004774 struct drm_crtc *crtc;
4775 void *r_base, *g_base, *b_base;
4776 int size;
4777 int ret = 0;
4778
Dave Airliefb3b06c2011-02-08 13:55:21 +10004779 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4780 return -EINVAL;
4781
Daniel Vetter84849902012-12-02 00:28:11 +01004782 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004783 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4784 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004785 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004786 goto out;
4787 }
Dave Airlief453ba02008-11-07 14:05:41 -08004788
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004789 if (crtc->funcs->gamma_set == NULL) {
4790 ret = -ENOSYS;
4791 goto out;
4792 }
4793
Dave Airlief453ba02008-11-07 14:05:41 -08004794 /* memcpy into gamma store */
4795 if (crtc_lut->gamma_size != crtc->gamma_size) {
4796 ret = -EINVAL;
4797 goto out;
4798 }
4799
4800 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4801 r_base = crtc->gamma_store;
4802 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4803 ret = -EFAULT;
4804 goto out;
4805 }
4806
4807 g_base = r_base + size;
4808 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4809 ret = -EFAULT;
4810 goto out;
4811 }
4812
4813 b_base = g_base + size;
4814 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4815 ret = -EFAULT;
4816 goto out;
4817 }
4818
James Simmons72034252010-08-03 01:33:19 +01004819 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004820
4821out:
Daniel Vetter84849902012-12-02 00:28:11 +01004822 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004823 return ret;
4824
4825}
4826
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004827/**
4828 * drm_mode_gamma_get_ioctl - get the gamma table
4829 * @dev: DRM device
4830 * @data: ioctl data
4831 * @file_priv: DRM file info
4832 *
4833 * Copy the current gamma table into the storage provided. This also provides
4834 * the gamma table size the driver expects, which can be used to size the
4835 * allocated storage.
4836 *
4837 * Called by the user via ioctl.
4838 *
4839 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004840 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004841 */
Dave Airlief453ba02008-11-07 14:05:41 -08004842int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4843 void *data, struct drm_file *file_priv)
4844{
4845 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004846 struct drm_crtc *crtc;
4847 void *r_base, *g_base, *b_base;
4848 int size;
4849 int ret = 0;
4850
Dave Airliefb3b06c2011-02-08 13:55:21 +10004851 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4852 return -EINVAL;
4853
Daniel Vetter84849902012-12-02 00:28:11 +01004854 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004855 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4856 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004857 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004858 goto out;
4859 }
Dave Airlief453ba02008-11-07 14:05:41 -08004860
4861 /* memcpy into gamma store */
4862 if (crtc_lut->gamma_size != crtc->gamma_size) {
4863 ret = -EINVAL;
4864 goto out;
4865 }
4866
4867 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4868 r_base = crtc->gamma_store;
4869 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4870 ret = -EFAULT;
4871 goto out;
4872 }
4873
4874 g_base = r_base + size;
4875 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4876 ret = -EFAULT;
4877 goto out;
4878 }
4879
4880 b_base = g_base + size;
4881 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4882 ret = -EFAULT;
4883 goto out;
4884 }
4885out:
Daniel Vetter84849902012-12-02 00:28:11 +01004886 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004887 return ret;
4888}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004889
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004890/**
4891 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4892 * @dev: DRM device
4893 * @data: ioctl data
4894 * @file_priv: DRM file info
4895 *
4896 * This schedules an asynchronous update on a given CRTC, called page flip.
4897 * Optionally a drm event is generated to signal the completion of the event.
4898 * Generic drivers cannot assume that a pageflip with changed framebuffer
4899 * properties (including driver specific metadata like tiling layout) will work,
4900 * but some drivers support e.g. pixel format changes through the pageflip
4901 * ioctl.
4902 *
4903 * Called by the user via ioctl.
4904 *
4905 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004906 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004907 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004908int drm_mode_page_flip_ioctl(struct drm_device *dev,
4909 void *data, struct drm_file *file_priv)
4910{
4911 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004912 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004913 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004914 struct drm_pending_vblank_event *e = NULL;
4915 unsigned long flags;
4916 int ret = -EINVAL;
4917
4918 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4919 page_flip->reserved != 0)
4920 return -EINVAL;
4921
Keith Packard62f21042013-07-22 18:50:00 -07004922 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4923 return -EINVAL;
4924
Rob Clarka2b34e22013-10-05 16:36:52 -04004925 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4926 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004927 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004928
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004929 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004930 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004931 /* The framebuffer is currently unbound, presumably
4932 * due to a hotplug event, that userspace has not
4933 * yet discovered.
4934 */
4935 ret = -EBUSY;
4936 goto out;
4937 }
4938
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004939 if (crtc->funcs->page_flip == NULL)
4940 goto out;
4941
Daniel Vetter786b99e2012-12-02 21:53:40 +01004942 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004943 if (!fb) {
4944 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004945 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004946 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004947
Damien Lespiauc11e9282013-09-25 16:45:30 +01004948 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4949 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004950 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004951
Matt Roperf4510a22014-04-01 15:22:40 -07004952 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004953 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4954 ret = -EINVAL;
4955 goto out;
4956 }
4957
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004958 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4959 ret = -ENOMEM;
4960 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004961 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004962 spin_unlock_irqrestore(&dev->event_lock, flags);
4963 goto out;
4964 }
Thierry Redingf76511b2014-12-10 13:03:40 +01004965 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004966 spin_unlock_irqrestore(&dev->event_lock, flags);
4967
Thierry Redingf76511b2014-12-10 13:03:40 +01004968 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004969 if (e == NULL) {
4970 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004971 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004972 spin_unlock_irqrestore(&dev->event_lock, flags);
4973 goto out;
4974 }
4975
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004976 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01004977 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004978 e->event.user_data = page_flip->user_data;
4979 e->base.event = &e->event.base;
4980 e->base.file_priv = file_priv;
4981 e->base.destroy =
4982 (void (*) (struct drm_pending_event *)) kfree;
4983 }
4984
Daniel Vetter3d30a592014-07-27 13:42:42 +02004985 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004986 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004987 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004988 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4989 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004990 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004991 spin_unlock_irqrestore(&dev->event_lock, flags);
4992 kfree(e);
4993 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004994 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02004995 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004996 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004997 /*
4998 * Warn if the driver hasn't properly updated the crtc->fb
4999 * field to reflect that the new framebuffer is now used.
5000 * Failing to do so will screw with the reference counting
5001 * on framebuffers.
5002 */
Matt Roperf4510a22014-04-01 15:22:40 -07005003 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01005004 /* Unref only the old framebuffer. */
5005 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005006 }
5007
5008out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005009 if (fb)
5010 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005011 if (crtc->primary->old_fb)
5012 drm_framebuffer_unreference(crtc->primary->old_fb);
5013 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005014 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005015
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005016 return ret;
5017}
Chris Wilsoneb033552011-01-24 15:11:08 +00005018
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005019/**
5020 * drm_mode_config_reset - call ->reset callbacks
5021 * @dev: drm device
5022 *
5023 * This functions calls all the crtc's, encoder's and connector's ->reset
5024 * callback. Drivers can use this in e.g. their driver load or resume code to
5025 * reset hardware and software state.
5026 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005027void drm_mode_config_reset(struct drm_device *dev)
5028{
5029 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005030 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005031 struct drm_encoder *encoder;
5032 struct drm_connector *connector;
5033
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005034 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
5035 if (plane->funcs->reset)
5036 plane->funcs->reset(plane);
5037
Chris Wilsoneb033552011-01-24 15:11:08 +00005038 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
5039 if (crtc->funcs->reset)
5040 crtc->funcs->reset(crtc);
5041
5042 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
5043 if (encoder->funcs->reset)
5044 encoder->funcs->reset(encoder);
5045
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005046 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5047 connector->status = connector_status_unknown;
5048
Chris Wilsoneb033552011-01-24 15:11:08 +00005049 if (connector->funcs->reset)
5050 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005051 }
Chris Wilsoneb033552011-01-24 15:11:08 +00005052}
5053EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005054
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005055/**
5056 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5057 * @dev: DRM device
5058 * @data: ioctl data
5059 * @file_priv: DRM file info
5060 *
5061 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5062 * TTM or something else entirely) and returns the resulting buffer handle. This
5063 * handle can then be wrapped up into a framebuffer modeset object.
5064 *
5065 * Note that userspace is not allowed to use such objects for render
5066 * acceleration - drivers must create their own private ioctls for such a use
5067 * case.
5068 *
5069 * Called by the user via ioctl.
5070 *
5071 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005072 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005073 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005074int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5075 void *data, struct drm_file *file_priv)
5076{
5077 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005078 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005079
5080 if (!dev->driver->dumb_create)
5081 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005082 if (!args->width || !args->height || !args->bpp)
5083 return -EINVAL;
5084
5085 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005086 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005087 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005088 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005089 return -EINVAL;
5090 stride = cpp * args->width;
5091 if (args->height > 0xffffffffU / stride)
5092 return -EINVAL;
5093
5094 /* test for wrap-around */
5095 size = args->height * stride;
5096 if (PAGE_ALIGN(size) == 0)
5097 return -EINVAL;
5098
Thierry Redingf6085952014-11-03 11:14:14 +01005099 /*
5100 * handle, pitch and size are output parameters. Zero them out to
5101 * prevent drivers from accidentally using uninitialized data. Since
5102 * not all existing userspace is clearing these fields properly we
5103 * cannot reject IOCTL with garbage in them.
5104 */
5105 args->handle = 0;
5106 args->pitch = 0;
5107 args->size = 0;
5108
Dave Airlieff72145b2011-02-07 12:16:14 +10005109 return dev->driver->dumb_create(file_priv, dev, args);
5110}
5111
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005112/**
5113 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5114 * @dev: DRM device
5115 * @data: ioctl data
5116 * @file_priv: DRM file info
5117 *
5118 * Allocate an offset in the drm device node's address space to be able to
5119 * memory map a dumb buffer.
5120 *
5121 * Called by the user via ioctl.
5122 *
5123 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005124 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005125 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005126int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5127 void *data, struct drm_file *file_priv)
5128{
5129 struct drm_mode_map_dumb *args = data;
5130
5131 /* call driver ioctl to get mmap offset */
5132 if (!dev->driver->dumb_map_offset)
5133 return -ENOSYS;
5134
5135 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5136}
5137
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005138/**
5139 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5140 * @dev: DRM device
5141 * @data: ioctl data
5142 * @file_priv: DRM file info
5143 *
5144 * This destroys the userspace handle for the given dumb backing storage buffer.
5145 * Since buffer objects must be reference counted in the kernel a buffer object
5146 * won't be immediately freed if a framebuffer modeset object still uses it.
5147 *
5148 * Called by the user via ioctl.
5149 *
5150 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005151 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005152 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005153int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5154 void *data, struct drm_file *file_priv)
5155{
5156 struct drm_mode_destroy_dumb *args = data;
5157
5158 if (!dev->driver->dumb_destroy)
5159 return -ENOSYS;
5160
5161 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5162}
Dave Airlie248dbc22011-11-29 20:02:54 +00005163
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005164/**
5165 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5166 * @format: pixel format (DRM_FORMAT_*)
5167 * @depth: storage for the depth value
5168 * @bpp: storage for the bpp value
5169 *
5170 * This only supports RGB formats here for compat with code that doesn't use
5171 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005172 */
5173void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5174 int *bpp)
5175{
5176 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005177 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005178 case DRM_FORMAT_RGB332:
5179 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005180 *depth = 8;
5181 *bpp = 8;
5182 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005183 case DRM_FORMAT_XRGB1555:
5184 case DRM_FORMAT_XBGR1555:
5185 case DRM_FORMAT_RGBX5551:
5186 case DRM_FORMAT_BGRX5551:
5187 case DRM_FORMAT_ARGB1555:
5188 case DRM_FORMAT_ABGR1555:
5189 case DRM_FORMAT_RGBA5551:
5190 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005191 *depth = 15;
5192 *bpp = 16;
5193 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005194 case DRM_FORMAT_RGB565:
5195 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005196 *depth = 16;
5197 *bpp = 16;
5198 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005199 case DRM_FORMAT_RGB888:
5200 case DRM_FORMAT_BGR888:
5201 *depth = 24;
5202 *bpp = 24;
5203 break;
5204 case DRM_FORMAT_XRGB8888:
5205 case DRM_FORMAT_XBGR8888:
5206 case DRM_FORMAT_RGBX8888:
5207 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005208 *depth = 24;
5209 *bpp = 32;
5210 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005211 case DRM_FORMAT_XRGB2101010:
5212 case DRM_FORMAT_XBGR2101010:
5213 case DRM_FORMAT_RGBX1010102:
5214 case DRM_FORMAT_BGRX1010102:
5215 case DRM_FORMAT_ARGB2101010:
5216 case DRM_FORMAT_ABGR2101010:
5217 case DRM_FORMAT_RGBA1010102:
5218 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005219 *depth = 30;
5220 *bpp = 32;
5221 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005222 case DRM_FORMAT_ARGB8888:
5223 case DRM_FORMAT_ABGR8888:
5224 case DRM_FORMAT_RGBA8888:
5225 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005226 *depth = 32;
5227 *bpp = 32;
5228 break;
5229 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005230 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5231 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005232 *depth = 0;
5233 *bpp = 0;
5234 break;
5235 }
5236}
5237EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005238
5239/**
5240 * drm_format_num_planes - get the number of planes for format
5241 * @format: pixel format (DRM_FORMAT_*)
5242 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005243 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005244 * The number of planes used by the specified pixel format.
5245 */
5246int drm_format_num_planes(uint32_t format)
5247{
5248 switch (format) {
5249 case DRM_FORMAT_YUV410:
5250 case DRM_FORMAT_YVU410:
5251 case DRM_FORMAT_YUV411:
5252 case DRM_FORMAT_YVU411:
5253 case DRM_FORMAT_YUV420:
5254 case DRM_FORMAT_YVU420:
5255 case DRM_FORMAT_YUV422:
5256 case DRM_FORMAT_YVU422:
5257 case DRM_FORMAT_YUV444:
5258 case DRM_FORMAT_YVU444:
5259 return 3;
5260 case DRM_FORMAT_NV12:
5261 case DRM_FORMAT_NV21:
5262 case DRM_FORMAT_NV16:
5263 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005264 case DRM_FORMAT_NV24:
5265 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005266 return 2;
5267 default:
5268 return 1;
5269 }
5270}
5271EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005272
5273/**
5274 * drm_format_plane_cpp - determine the bytes per pixel value
5275 * @format: pixel format (DRM_FORMAT_*)
5276 * @plane: plane index
5277 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005278 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005279 * The bytes per pixel value for the specified plane.
5280 */
5281int drm_format_plane_cpp(uint32_t format, int plane)
5282{
5283 unsigned int depth;
5284 int bpp;
5285
5286 if (plane >= drm_format_num_planes(format))
5287 return 0;
5288
5289 switch (format) {
5290 case DRM_FORMAT_YUYV:
5291 case DRM_FORMAT_YVYU:
5292 case DRM_FORMAT_UYVY:
5293 case DRM_FORMAT_VYUY:
5294 return 2;
5295 case DRM_FORMAT_NV12:
5296 case DRM_FORMAT_NV21:
5297 case DRM_FORMAT_NV16:
5298 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005299 case DRM_FORMAT_NV24:
5300 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005301 return plane ? 2 : 1;
5302 case DRM_FORMAT_YUV410:
5303 case DRM_FORMAT_YVU410:
5304 case DRM_FORMAT_YUV411:
5305 case DRM_FORMAT_YVU411:
5306 case DRM_FORMAT_YUV420:
5307 case DRM_FORMAT_YVU420:
5308 case DRM_FORMAT_YUV422:
5309 case DRM_FORMAT_YVU422:
5310 case DRM_FORMAT_YUV444:
5311 case DRM_FORMAT_YVU444:
5312 return 1;
5313 default:
5314 drm_fb_get_bpp_depth(format, &depth, &bpp);
5315 return bpp >> 3;
5316 }
5317}
5318EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005319
5320/**
5321 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5322 * @format: pixel format (DRM_FORMAT_*)
5323 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005324 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005325 * The horizontal chroma subsampling factor for the
5326 * specified pixel format.
5327 */
5328int drm_format_horz_chroma_subsampling(uint32_t format)
5329{
5330 switch (format) {
5331 case DRM_FORMAT_YUV411:
5332 case DRM_FORMAT_YVU411:
5333 case DRM_FORMAT_YUV410:
5334 case DRM_FORMAT_YVU410:
5335 return 4;
5336 case DRM_FORMAT_YUYV:
5337 case DRM_FORMAT_YVYU:
5338 case DRM_FORMAT_UYVY:
5339 case DRM_FORMAT_VYUY:
5340 case DRM_FORMAT_NV12:
5341 case DRM_FORMAT_NV21:
5342 case DRM_FORMAT_NV16:
5343 case DRM_FORMAT_NV61:
5344 case DRM_FORMAT_YUV422:
5345 case DRM_FORMAT_YVU422:
5346 case DRM_FORMAT_YUV420:
5347 case DRM_FORMAT_YVU420:
5348 return 2;
5349 default:
5350 return 1;
5351 }
5352}
5353EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5354
5355/**
5356 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5357 * @format: pixel format (DRM_FORMAT_*)
5358 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005359 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005360 * The vertical chroma subsampling factor for the
5361 * specified pixel format.
5362 */
5363int drm_format_vert_chroma_subsampling(uint32_t format)
5364{
5365 switch (format) {
5366 case DRM_FORMAT_YUV410:
5367 case DRM_FORMAT_YVU410:
5368 return 4;
5369 case DRM_FORMAT_YUV420:
5370 case DRM_FORMAT_YVU420:
5371 case DRM_FORMAT_NV12:
5372 case DRM_FORMAT_NV21:
5373 return 2;
5374 default:
5375 return 1;
5376 }
5377}
5378EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005379
5380/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305381 * drm_rotation_simplify() - Try to simplify the rotation
5382 * @rotation: Rotation to be simplified
5383 * @supported_rotations: Supported rotations
5384 *
5385 * Attempt to simplify the rotation to a form that is supported.
5386 * Eg. if the hardware supports everything except DRM_REFLECT_X
5387 * one could call this function like this:
5388 *
5389 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5390 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5391 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5392 *
5393 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5394 * transforms the hardware supports, this function may not
5395 * be able to produce a supported transform, so the caller should
5396 * check the result afterwards.
5397 */
5398unsigned int drm_rotation_simplify(unsigned int rotation,
5399 unsigned int supported_rotations)
5400{
5401 if (rotation & ~supported_rotations) {
5402 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5403 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5404 }
5405
5406 return rotation;
5407}
5408EXPORT_SYMBOL(drm_rotation_simplify);
5409
5410/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005411 * drm_mode_config_init - initialize DRM mode_configuration structure
5412 * @dev: DRM device
5413 *
5414 * Initialize @dev's mode_config structure, used for tracking the graphics
5415 * configuration of @dev.
5416 *
5417 * Since this initializes the modeset locks, no locking is possible. Which is no
5418 * problem, since this should happen single threaded at init time. It is the
5419 * driver's problem to ensure this guarantee.
5420 *
5421 */
5422void drm_mode_config_init(struct drm_device *dev)
5423{
5424 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005425 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005426 mutex_init(&dev->mode_config.idr_mutex);
5427 mutex_init(&dev->mode_config.fb_lock);
5428 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5429 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5430 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5431 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5432 INIT_LIST_HEAD(&dev->mode_config.property_list);
5433 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5434 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5435 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005436 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005437
5438 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005439 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005440 drm_modeset_unlock_all(dev);
5441
5442 /* Just to be sure */
5443 dev->mode_config.num_fb = 0;
5444 dev->mode_config.num_connector = 0;
5445 dev->mode_config.num_crtc = 0;
5446 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005447 dev->mode_config.num_overlay_plane = 0;
5448 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005449}
5450EXPORT_SYMBOL(drm_mode_config_init);
5451
5452/**
5453 * drm_mode_config_cleanup - free up DRM mode_config info
5454 * @dev: DRM device
5455 *
5456 * Free up all the connectors and CRTCs associated with this DRM device, then
5457 * free up the framebuffers and associated buffer objects.
5458 *
5459 * Note that since this /should/ happen single-threaded at driver/device
5460 * teardown time, no locking is required. It's the driver's job to ensure that
5461 * this guarantee actually holds true.
5462 *
5463 * FIXME: cleanup any dangling user buffer objects too
5464 */
5465void drm_mode_config_cleanup(struct drm_device *dev)
5466{
5467 struct drm_connector *connector, *ot;
5468 struct drm_crtc *crtc, *ct;
5469 struct drm_encoder *encoder, *enct;
5470 struct drm_framebuffer *fb, *fbt;
5471 struct drm_property *property, *pt;
5472 struct drm_property_blob *blob, *bt;
5473 struct drm_plane *plane, *plt;
5474
5475 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5476 head) {
5477 encoder->funcs->destroy(encoder);
5478 }
5479
5480 list_for_each_entry_safe(connector, ot,
5481 &dev->mode_config.connector_list, head) {
5482 connector->funcs->destroy(connector);
5483 }
5484
5485 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5486 head) {
5487 drm_property_destroy(dev, property);
5488 }
5489
5490 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5491 head) {
5492 drm_property_destroy_blob(dev, blob);
5493 }
5494
5495 /*
5496 * Single-threaded teardown context, so it's not required to grab the
5497 * fb_lock to protect against concurrent fb_list access. Contrary, it
5498 * would actually deadlock with the drm_framebuffer_cleanup function.
5499 *
5500 * Also, if there are any framebuffers left, that's a driver leak now,
5501 * so politely WARN about this.
5502 */
5503 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5504 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5505 drm_framebuffer_remove(fb);
5506 }
5507
5508 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5509 head) {
5510 plane->funcs->destroy(plane);
5511 }
5512
5513 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5514 crtc->funcs->destroy(crtc);
5515 }
5516
Dave Airlie138f9eb2014-10-20 16:17:17 +10005517 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005518 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005519 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005520}
5521EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305522
5523struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5524 unsigned int supported_rotations)
5525{
5526 static const struct drm_prop_enum_list props[] = {
5527 { DRM_ROTATE_0, "rotate-0" },
5528 { DRM_ROTATE_90, "rotate-90" },
5529 { DRM_ROTATE_180, "rotate-180" },
5530 { DRM_ROTATE_270, "rotate-270" },
5531 { DRM_REFLECT_X, "reflect-x" },
5532 { DRM_REFLECT_Y, "reflect-y" },
5533 };
5534
5535 return drm_property_create_bitmask(dev, 0, "rotation",
5536 props, ARRAY_SIZE(props),
5537 supported_rotations);
5538}
5539EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005540
5541/**
5542 * DOC: Tile group
5543 *
5544 * Tile groups are used to represent tiled monitors with a unique
5545 * integer identifier. Tiled monitors using DisplayID v1.3 have
5546 * a unique 8-byte handle, we store this in a tile group, so we
5547 * have a common identifier for all tiles in a monitor group.
5548 */
5549static void drm_tile_group_free(struct kref *kref)
5550{
5551 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5552 struct drm_device *dev = tg->dev;
5553 mutex_lock(&dev->mode_config.idr_mutex);
5554 idr_remove(&dev->mode_config.tile_idr, tg->id);
5555 mutex_unlock(&dev->mode_config.idr_mutex);
5556 kfree(tg);
5557}
5558
5559/**
5560 * drm_mode_put_tile_group - drop a reference to a tile group.
5561 * @dev: DRM device
5562 * @tg: tile group to drop reference to.
5563 *
5564 * drop reference to tile group and free if 0.
5565 */
5566void drm_mode_put_tile_group(struct drm_device *dev,
5567 struct drm_tile_group *tg)
5568{
5569 kref_put(&tg->refcount, drm_tile_group_free);
5570}
5571
5572/**
5573 * drm_mode_get_tile_group - get a reference to an existing tile group
5574 * @dev: DRM device
5575 * @topology: 8-bytes unique per monitor.
5576 *
5577 * Use the unique bytes to get a reference to an existing tile group.
5578 *
5579 * RETURNS:
5580 * tile group or NULL if not found.
5581 */
5582struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5583 char topology[8])
5584{
5585 struct drm_tile_group *tg;
5586 int id;
5587 mutex_lock(&dev->mode_config.idr_mutex);
5588 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5589 if (!memcmp(tg->group_data, topology, 8)) {
5590 if (!kref_get_unless_zero(&tg->refcount))
5591 tg = NULL;
5592 mutex_unlock(&dev->mode_config.idr_mutex);
5593 return tg;
5594 }
5595 }
5596 mutex_unlock(&dev->mode_config.idr_mutex);
5597 return NULL;
5598}
5599
5600/**
5601 * drm_mode_create_tile_group - create a tile group from a displayid description
5602 * @dev: DRM device
5603 * @topology: 8-bytes unique per monitor.
5604 *
5605 * Create a tile group for the unique monitor, and get a unique
5606 * identifier for the tile group.
5607 *
5608 * RETURNS:
5609 * new tile group or error.
5610 */
5611struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5612 char topology[8])
5613{
5614 struct drm_tile_group *tg;
5615 int ret;
5616
5617 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5618 if (!tg)
5619 return ERR_PTR(-ENOMEM);
5620
5621 kref_init(&tg->refcount);
5622 memcpy(tg->group_data, topology, 8);
5623 tg->dev = dev;
5624
5625 mutex_lock(&dev->mode_config.idr_mutex);
5626 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5627 if (ret >= 0) {
5628 tg->id = ret;
5629 } else {
5630 kfree(tg);
5631 tg = ERR_PTR(ret);
5632 }
5633
5634 mutex_unlock(&dev->mode_config.idr_mutex);
5635 return tg;
5636}