blob: 6254942141d35cb309d71a8b3d775590df5122ef [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
Chris Wilson9a6f5132015-02-25 13:45:26 +000046static struct drm_framebuffer *
47internal_framebuffer_create(struct drm_device *dev,
48 struct drm_mode_fb_cmd2 *r,
49 struct drm_file *file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -070050
Dave Airlief453ba02008-11-07 14:05:41 -080051/* Avoid boilerplate. I'm tired of typing. */
52#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +000053 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -080054 { \
55 int i; \
56 for (i = 0; i < ARRAY_SIZE(list); i++) { \
57 if (list[i].type == val) \
58 return list[i].name; \
59 } \
60 return "(unknown)"; \
61 }
62
63/*
64 * Global properties
65 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010066static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
67 { DRM_MODE_DPMS_ON, "On" },
Dave Airlief453ba02008-11-07 14:05:41 -080068 { DRM_MODE_DPMS_STANDBY, "Standby" },
69 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
70 { DRM_MODE_DPMS_OFF, "Off" }
71};
72
73DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
74
Thierry Reding4dfd9092014-12-10 13:03:34 +010075static const struct drm_prop_enum_list drm_plane_type_enum_list[] = {
Rob Clark9922ab52014-04-01 20:16:57 -040076 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
77 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
78 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
79};
80
Dave Airlief453ba02008-11-07 14:05:41 -080081/*
82 * Optional properties
83 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010084static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
Jesse Barnes53bd8382009-07-01 10:04:40 -070085 { DRM_MODE_SCALE_NONE, "None" },
86 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
87 { DRM_MODE_SCALE_CENTER, "Center" },
88 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -080089};
90
Vandana Kannanff587e42014-06-11 10:46:48 +053091static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
92 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
93 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
94 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
95};
96
Dave Airlief453ba02008-11-07 14:05:41 -080097/*
98 * Non-global properties, but "required" for certain connectors.
99 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100100static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800101 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
102 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
103 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
104};
105
106DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
107
Thierry Reding4dfd9092014-12-10 13:03:34 +0100108static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800109 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
110 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
111 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
112};
113
114DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
115 drm_dvi_i_subconnector_enum_list)
116
Thierry Reding4dfd9092014-12-10 13:03:34 +0100117static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800118 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
119 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
120 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
121 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200122 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800123};
124
125DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
126
Thierry Reding4dfd9092014-12-10 13:03:34 +0100127static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800128 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
129 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
130 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
131 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200132 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800133};
134
135DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
136 drm_tv_subconnector_enum_list)
137
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000138static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000139 { DRM_MODE_DIRTY_OFF, "Off" },
140 { DRM_MODE_DIRTY_ON, "On" },
141 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
142};
143
Dave Airlief453ba02008-11-07 14:05:41 -0800144struct drm_conn_prop_enum_list {
145 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000146 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400147 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800148};
149
150/*
151 * Connector and encoder types.
152 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100153static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
154 { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400155 { DRM_MODE_CONNECTOR_VGA, "VGA" },
156 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
157 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
158 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
159 { DRM_MODE_CONNECTOR_Composite, "Composite" },
160 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
161 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
162 { DRM_MODE_CONNECTOR_Component, "Component" },
163 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
164 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
165 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
166 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
167 { DRM_MODE_CONNECTOR_TV, "TV" },
168 { DRM_MODE_CONNECTOR_eDP, "eDP" },
169 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300170 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800171};
172
Thierry Reding4dfd9092014-12-10 13:03:34 +0100173static const struct drm_prop_enum_list drm_encoder_enum_list[] = {
174 { DRM_MODE_ENCODER_NONE, "None" },
Dave Airlief453ba02008-11-07 14:05:41 -0800175 { DRM_MODE_ENCODER_DAC, "DAC" },
176 { DRM_MODE_ENCODER_TMDS, "TMDS" },
177 { DRM_MODE_ENCODER_LVDS, "LVDS" },
178 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200179 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300180 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlie182407a2014-05-02 11:09:54 +1000181 { DRM_MODE_ENCODER_DPMST, "DP MST" },
Dave Airlief453ba02008-11-07 14:05:41 -0800182};
183
Thierry Reding4dfd9092014-12-10 13:03:34 +0100184static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
Jesse Barnesac1bb362014-02-10 15:32:44 -0800185 { SubPixelUnknown, "Unknown" },
186 { SubPixelHorizontalRGB, "Horizontal RGB" },
187 { SubPixelHorizontalBGR, "Horizontal BGR" },
188 { SubPixelVerticalRGB, "Vertical RGB" },
189 { SubPixelVerticalBGR, "Vertical BGR" },
190 { SubPixelNone, "None" },
191};
192
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400193void drm_connector_ida_init(void)
194{
195 int i;
196
197 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
198 ida_init(&drm_connector_enum_list[i].ida);
199}
200
201void drm_connector_ida_destroy(void)
202{
203 int i;
204
205 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
206 ida_destroy(&drm_connector_enum_list[i].ida);
207}
208
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100209/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100210 * drm_get_connector_status_name - return a string for connector status
211 * @status: connector status to compute name of
212 *
213 * In contrast to the other drm_get_*_name functions this one here returns a
214 * const pointer and hence is threadsafe.
215 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000216const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800217{
218 if (status == connector_status_connected)
219 return "connected";
220 else if (status == connector_status_disconnected)
221 return "disconnected";
222 else
223 return "unknown";
224}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000225EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800226
Jesse Barnesac1bb362014-02-10 15:32:44 -0800227/**
228 * drm_get_subpixel_order_name - return a string for a given subpixel enum
229 * @order: enum of subpixel_order
230 *
231 * Note you could abuse this and return something out of bounds, but that
232 * would be a caller error. No unscrubbed user data should make it here.
233 */
234const char *drm_get_subpixel_order_name(enum subpixel_order order)
235{
236 return drm_subpixel_enum_list[order].name;
237}
238EXPORT_SYMBOL(drm_get_subpixel_order_name);
239
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300240static char printable_char(int c)
241{
242 return isascii(c) && isprint(c) ? c : '?';
243}
244
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100245/**
246 * drm_get_format_name - return a string for drm fourcc format
247 * @format: format to compute name of
248 *
249 * Note that the buffer used by this function is globally shared and owned by
250 * the function itself.
251 *
252 * FIXME: This isn't really multithreading safe.
253 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000254const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300255{
256 static char buf[32];
257
258 snprintf(buf, sizeof(buf),
259 "%c%c%c%c %s-endian (0x%08x)",
260 printable_char(format & 0xff),
261 printable_char((format >> 8) & 0xff),
262 printable_char((format >> 16) & 0xff),
263 printable_char((format >> 24) & 0x7f),
264 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
265 format);
266
267 return buf;
268}
269EXPORT_SYMBOL(drm_get_format_name);
270
Dave Airlie2ee39452014-07-24 11:53:45 +1000271/*
272 * Internal function to assign a slot in the object idr and optionally
273 * register the object into the idr.
274 */
275static int drm_mode_object_get_reg(struct drm_device *dev,
276 struct drm_mode_object *obj,
277 uint32_t obj_type,
278 bool register_obj)
279{
280 int ret;
281
282 mutex_lock(&dev->mode_config.idr_mutex);
283 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
284 if (ret >= 0) {
285 /*
286 * Set up the object linking under the protection of the idr
287 * lock so that other users can't see inconsistent state.
288 */
289 obj->id = ret;
290 obj->type = obj_type;
291 }
292 mutex_unlock(&dev->mode_config.idr_mutex);
293
294 return ret < 0 ? ret : 0;
295}
296
Dave Airlief453ba02008-11-07 14:05:41 -0800297/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100298 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800299 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100300 * @obj: object pointer, used to generate unique ID
301 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800302 *
Dave Airlief453ba02008-11-07 14:05:41 -0800303 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100304 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
305 * modeset identifiers are _not_ reference counted. Hence don't use this for
306 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800307 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100308 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800309 * New unique (relative to other objects in @dev) integer identifier for the
310 * object.
311 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100312int drm_mode_object_get(struct drm_device *dev,
313 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800314{
Dave Airlie2ee39452014-07-24 11:53:45 +1000315 return drm_mode_object_get_reg(dev, obj, obj_type, true);
316}
Dave Airlief453ba02008-11-07 14:05:41 -0800317
Dave Airlie2ee39452014-07-24 11:53:45 +1000318static void drm_mode_object_register(struct drm_device *dev,
319 struct drm_mode_object *obj)
320{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000321 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlie2ee39452014-07-24 11:53:45 +1000322 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000323 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800324}
325
326/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100327 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800328 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100329 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800330 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100331 * Free @id from @dev's unique identifier pool. Note that despite the _get
332 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
333 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800334 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100335void drm_mode_object_put(struct drm_device *dev,
336 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800337{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000338 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800339 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000340 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800341}
342
Rob Clark98f75de2014-05-30 11:37:03 -0400343static struct drm_mode_object *_object_find(struct drm_device *dev,
344 uint32_t id, uint32_t type)
345{
346 struct drm_mode_object *obj = NULL;
347
348 mutex_lock(&dev->mode_config.idr_mutex);
349 obj = idr_find(&dev->mode_config.crtc_idr, id);
Daniel Vetter168c02e2014-07-24 12:12:45 +0200350 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
351 obj = NULL;
352 if (obj && obj->id != id)
353 obj = NULL;
354 /* don't leak out unref'd fb's */
355 if (obj && (obj->type == DRM_MODE_OBJECT_FB))
Rob Clark98f75de2014-05-30 11:37:03 -0400356 obj = NULL;
357 mutex_unlock(&dev->mode_config.idr_mutex);
358
359 return obj;
360}
361
Daniel Vetter786b99e2012-12-02 21:53:40 +0100362/**
363 * drm_mode_object_find - look up a drm object with static lifetime
364 * @dev: drm device
365 * @id: id of the mode object
366 * @type: type of the mode object
367 *
368 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400369 * are reference counted, they need special treatment. Even with
370 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
371 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100372 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200373struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
374 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800375{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000376 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800377
Daniel Vetter786b99e2012-12-02 21:53:40 +0100378 /* Framebuffers are reference counted and need their own lookup
379 * function.*/
380 WARN_ON(type == DRM_MODE_OBJECT_FB);
Rob Clark98f75de2014-05-30 11:37:03 -0400381 obj = _object_find(dev, id, type);
Dave Airlief453ba02008-11-07 14:05:41 -0800382 return obj;
383}
384EXPORT_SYMBOL(drm_mode_object_find);
385
386/**
Dave Airlief453ba02008-11-07 14:05:41 -0800387 * drm_framebuffer_init - initialize a framebuffer
388 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100389 * @fb: framebuffer to be initialized
390 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800391 *
Dave Airlief453ba02008-11-07 14:05:41 -0800392 * Allocates an ID for the framebuffer's parent mode object, sets its mode
393 * functions & device file and adds it to the master fd list.
394 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100395 * IMPORTANT:
396 * This functions publishes the fb and makes it available for concurrent access
397 * by other users. Which means by this point the fb _must_ be fully set up -
398 * since all the fb attributes are invariant over its lifetime, no further
399 * locking but only correct reference counting is required.
400 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100401 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200402 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800403 */
404int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
405 const struct drm_framebuffer_funcs *funcs)
406{
407 int ret;
408
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100409 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000410 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100411 INIT_LIST_HEAD(&fb->filp_head);
412 fb->dev = dev;
413 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000414
Dave Airlief453ba02008-11-07 14:05:41 -0800415 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200416 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100417 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800418
Dave Airlief453ba02008-11-07 14:05:41 -0800419 dev->mode_config.num_fb++;
420 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100421out:
422 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800423
424 return 0;
425}
426EXPORT_SYMBOL(drm_framebuffer_init);
427
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200428/* dev->mode_config.fb_lock must be held! */
429static void __drm_framebuffer_unregister(struct drm_device *dev,
430 struct drm_framebuffer *fb)
431{
432 mutex_lock(&dev->mode_config.idr_mutex);
433 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
434 mutex_unlock(&dev->mode_config.idr_mutex);
435
436 fb->base.id = 0;
437}
438
Rob Clarkf7eff602012-09-05 21:48:38 +0000439static void drm_framebuffer_free(struct kref *kref)
440{
441 struct drm_framebuffer *fb =
442 container_of(kref, struct drm_framebuffer, refcount);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200443 struct drm_device *dev = fb->dev;
444
445 /*
446 * The lookup idr holds a weak reference, which has not necessarily been
447 * removed at this point. Check for that.
448 */
449 mutex_lock(&dev->mode_config.fb_lock);
450 if (fb->base.id) {
451 /* Mark fb as reaped and drop idr ref. */
452 __drm_framebuffer_unregister(dev, fb);
453 }
454 mutex_unlock(&dev->mode_config.fb_lock);
455
Rob Clarkf7eff602012-09-05 21:48:38 +0000456 fb->funcs->destroy(fb);
457}
458
Daniel Vetter2b677e82012-12-10 21:16:05 +0100459static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
460 uint32_t id)
461{
462 struct drm_mode_object *obj = NULL;
463 struct drm_framebuffer *fb;
464
465 mutex_lock(&dev->mode_config.idr_mutex);
466 obj = idr_find(&dev->mode_config.crtc_idr, id);
467 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
468 fb = NULL;
469 else
470 fb = obj_to_fb(obj);
471 mutex_unlock(&dev->mode_config.idr_mutex);
472
473 return fb;
474}
475
Rob Clarkf7eff602012-09-05 21:48:38 +0000476/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100477 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
478 * @dev: drm device
479 * @id: id of the fb object
480 *
481 * If successful, this grabs an additional reference to the framebuffer -
482 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100483 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100484 */
485struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
486 uint32_t id)
487{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100488 struct drm_framebuffer *fb;
489
490 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100491 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200492 if (fb) {
493 if (!kref_get_unless_zero(&fb->refcount))
494 fb = NULL;
495 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100496 mutex_unlock(&dev->mode_config.fb_lock);
497
498 return fb;
499}
500EXPORT_SYMBOL(drm_framebuffer_lookup);
501
502/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000503 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100504 * @fb: framebuffer to unref
505 *
506 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000507 */
508void drm_framebuffer_unreference(struct drm_framebuffer *fb)
509{
Rob Clark82912722014-03-18 10:07:08 -0400510 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000511 kref_put(&fb->refcount, drm_framebuffer_free);
512}
513EXPORT_SYMBOL(drm_framebuffer_unreference);
514
515/**
516 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100517 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100518 *
519 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000520 */
521void drm_framebuffer_reference(struct drm_framebuffer *fb)
522{
Rob Clark82912722014-03-18 10:07:08 -0400523 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000524 kref_get(&fb->refcount);
525}
526EXPORT_SYMBOL(drm_framebuffer_reference);
527
Dave Airlief453ba02008-11-07 14:05:41 -0800528/**
Daniel Vetter36206362012-12-10 20:42:17 +0100529 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
530 * @fb: fb to unregister
531 *
532 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
533 * those used for fbdev. Note that the caller must hold a reference of it's own,
534 * i.e. the object may not be destroyed through this call (since it'll lead to a
535 * locking inversion).
536 */
537void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
538{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100539 struct drm_device *dev = fb->dev;
540
541 mutex_lock(&dev->mode_config.fb_lock);
542 /* Mark fb as reaped and drop idr ref. */
543 __drm_framebuffer_unregister(dev, fb);
544 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100545}
546EXPORT_SYMBOL(drm_framebuffer_unregister_private);
547
548/**
Dave Airlief453ba02008-11-07 14:05:41 -0800549 * drm_framebuffer_cleanup - remove a framebuffer object
550 * @fb: framebuffer to remove
551 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100552 * Cleanup framebuffer. This function is intended to be used from the drivers
553 * ->destroy callback. It can also be used to clean up driver private
554 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100555 *
556 * Note that this function does not remove the fb from active usuage - if it is
557 * still used anywhere, hilarity can ensue since userspace could call getfb on
558 * the id and get back -EINVAL. Obviously no concern at driver unload time.
559 *
560 * Also, the framebuffer will not be removed from the lookup idr - for
561 * user-created framebuffers this will happen in in the rmfb ioctl. For
562 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
563 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800564 */
565void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
566{
567 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100568
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100569 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000570 list_del(&fb->head);
571 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100572 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000573}
574EXPORT_SYMBOL(drm_framebuffer_cleanup);
575
576/**
577 * drm_framebuffer_remove - remove and unreference a framebuffer object
578 * @fb: framebuffer to remove
579 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000580 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100581 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100582 * passed-in framebuffer. Might take the modeset locks.
583 *
584 * Note that this function optimizes the cleanup away if the caller holds the
585 * last reference to the framebuffer. It is also guaranteed to not take the
586 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000587 */
588void drm_framebuffer_remove(struct drm_framebuffer *fb)
589{
590 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800591 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800592 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000593 struct drm_mode_set set;
594 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800595
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100596 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100597
Daniel Vetterb62584e2012-12-11 16:51:35 +0100598 /*
599 * drm ABI mandates that we remove any deleted framebuffers from active
600 * useage. But since most sane clients only remove framebuffers they no
601 * longer need, try to optimize this away.
602 *
603 * Since we're holding a reference ourselves, observing a refcount of 1
604 * means that we're the last holder and can skip it. Also, the refcount
605 * can never increase from 1 again, so we don't need any barriers or
606 * locks.
607 *
608 * Note that userspace could try to race with use and instate a new
609 * usage _after_ we've cleared all current ones. End result will be an
610 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
611 * in this manner.
612 */
613 if (atomic_read(&fb->refcount.refcount) > 1) {
614 drm_modeset_lock_all(dev);
615 /* remove from any CRTC */
616 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700617 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100618 /* should turn off the crtc */
619 memset(&set, 0, sizeof(struct drm_mode_set));
620 set.crtc = crtc;
621 set.fb = NULL;
622 ret = drm_mode_set_config_internal(&set);
623 if (ret)
624 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
625 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000626 }
Dave Airlief453ba02008-11-07 14:05:41 -0800627
Daniel Vetterb62584e2012-12-11 16:51:35 +0100628 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300629 if (plane->fb == fb)
630 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800631 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100632 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800633 }
634
Rob Clarkf7eff602012-09-05 21:48:38 +0000635 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800636}
Rob Clarkf7eff602012-09-05 21:48:38 +0000637EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800638
Rob Clark51fd3712013-11-19 12:10:12 -0500639DEFINE_WW_CLASS(crtc_ww_class);
640
Dave Airlief453ba02008-11-07 14:05:41 -0800641/**
Matt Ropere13161a2014-04-01 15:22:38 -0700642 * drm_crtc_init_with_planes - Initialise a new CRTC object with
643 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800644 * @dev: DRM device
645 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700646 * @primary: Primary plane for CRTC
647 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800648 * @funcs: callbacks for the new CRTC
649 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000650 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200651 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100652 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200653 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800654 */
Matt Ropere13161a2014-04-01 15:22:38 -0700655int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
656 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700657 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700658 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800659{
Rob Clark51fd3712013-11-19 12:10:12 -0500660 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200661 int ret;
662
Dave Airlief453ba02008-11-07 14:05:41 -0800663 crtc->dev = dev;
664 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000665 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800666
Rob Clark51fd3712013-11-19 12:10:12 -0500667 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200668 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
669 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100670 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800671
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300672 crtc->base.properties = &crtc->properties;
673
Rob Clark51fd3712013-11-19 12:10:12 -0500674 list_add_tail(&crtc->head, &config->crtc_list);
675 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200676
Matt Ropere13161a2014-04-01 15:22:38 -0700677 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700678 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700679 if (primary)
680 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700681 if (cursor)
682 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700683
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100684 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
685 drm_object_attach_property(&crtc->base, config->prop_active, 0);
686 }
687
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100688 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800689}
Matt Ropere13161a2014-04-01 15:22:38 -0700690EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800691
692/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000693 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800694 * @crtc: CRTC to cleanup
695 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000696 * This function cleans up @crtc and removes it from the DRM mode setting
697 * core. Note that the function does *not* free the crtc structure itself,
698 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800699 */
700void drm_crtc_cleanup(struct drm_crtc *crtc)
701{
702 struct drm_device *dev = crtc->dev;
703
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000704 kfree(crtc->gamma_store);
705 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800706
Rob Clark51fd3712013-11-19 12:10:12 -0500707 drm_modeset_lock_fini(&crtc->mutex);
708
Dave Airlief453ba02008-11-07 14:05:41 -0800709 drm_mode_object_put(dev, &crtc->base);
710 list_del(&crtc->head);
711 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100712
713 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
714 if (crtc->state && crtc->funcs->atomic_destroy_state)
715 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100716
717 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800718}
719EXPORT_SYMBOL(drm_crtc_cleanup);
720
721/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000722 * drm_crtc_index - find the index of a registered CRTC
723 * @crtc: CRTC to find index for
724 *
725 * Given a registered CRTC, return the index of that CRTC within a DRM
726 * device's list of CRTCs.
727 */
728unsigned int drm_crtc_index(struct drm_crtc *crtc)
729{
730 unsigned int index = 0;
731 struct drm_crtc *tmp;
732
733 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
734 if (tmp == crtc)
735 return index;
736
737 index++;
738 }
739
740 BUG();
741}
742EXPORT_SYMBOL(drm_crtc_index);
743
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100744/*
Dave Airlief453ba02008-11-07 14:05:41 -0800745 * drm_mode_remove - remove and free a mode
746 * @connector: connector list to modify
747 * @mode: mode to remove
748 *
Dave Airlief453ba02008-11-07 14:05:41 -0800749 * Remove @mode from @connector's mode list, then free it.
750 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100751static void drm_mode_remove(struct drm_connector *connector,
752 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800753{
754 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100755 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800756}
Dave Airlief453ba02008-11-07 14:05:41 -0800757
758/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200759 * drm_display_info_set_bus_formats - set the supported bus formats
760 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100761 * @formats: array containing the supported bus formats
762 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200763 *
764 * Store the supported bus formats in display info structure.
765 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
766 * a full list of available formats.
767 */
768int drm_display_info_set_bus_formats(struct drm_display_info *info,
769 const u32 *formats,
770 unsigned int num_formats)
771{
772 u32 *fmts = NULL;
773
774 if (!formats && num_formats)
775 return -EINVAL;
776
777 if (formats && num_formats) {
778 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
779 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300780 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200781 return -ENOMEM;
782 }
783
784 kfree(info->bus_formats);
785 info->bus_formats = fmts;
786 info->num_bus_formats = num_formats;
787
788 return 0;
789}
790EXPORT_SYMBOL(drm_display_info_set_bus_formats);
791
792/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200793 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
794 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200795 *
796 * The kernel supports per-connector configration of its consoles through
797 * use of the video= parameter. This function parses that option and
798 * extracts the user's specified mode (or enable/disable status) for a
799 * particular connector. This is typically only used during the early fbdev
800 * setup.
801 */
802static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
803{
804 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
805 char *option = NULL;
806
807 if (fb_get_options(connector->name, &option))
808 return;
809
810 if (!drm_mode_parse_command_line_for_connector(option,
811 connector,
812 mode))
813 return;
814
815 if (mode->force) {
816 const char *s;
817
818 switch (mode->force) {
819 case DRM_FORCE_OFF:
820 s = "OFF";
821 break;
822 case DRM_FORCE_ON_DIGITAL:
823 s = "ON - dig";
824 break;
825 default:
826 case DRM_FORCE_ON:
827 s = "ON";
828 break;
829 }
830
831 DRM_INFO("forcing %s connector %s\n", connector->name, s);
832 connector->force = mode->force;
833 }
834
835 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
836 connector->name,
837 mode->xres, mode->yres,
838 mode->refresh_specified ? mode->refresh : 60,
839 mode->rb ? " reduced blanking" : "",
840 mode->margins ? " with margins" : "",
841 mode->interlace ? " interlaced" : "");
842}
843
844/**
Dave Airlief453ba02008-11-07 14:05:41 -0800845 * drm_connector_init - Init a preallocated connector
846 * @dev: DRM device
847 * @connector: the connector to init
848 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100849 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800850 *
Dave Airlief453ba02008-11-07 14:05:41 -0800851 * Initialises a preallocated connector. Connectors should be
852 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200853 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100854 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200855 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800856 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200857int drm_connector_init(struct drm_device *dev,
858 struct drm_connector *connector,
859 const struct drm_connector_funcs *funcs,
860 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800861{
Rob Clarkae16c592014-12-18 16:01:54 -0500862 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200863 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400864 struct ida *connector_ida =
865 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200866
Daniel Vetter84849902012-12-02 00:28:11 +0100867 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800868
Dave Airlie2ee39452014-07-24 11:53:45 +1000869 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200870 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300871 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200872
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300873 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800874 connector->dev = dev;
875 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800876 connector->connector_type = connector_type;
877 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400878 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
879 if (connector->connector_type_id < 0) {
880 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300881 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400882 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300883 connector->name =
884 kasprintf(GFP_KERNEL, "%s-%d",
885 drm_connector_enum_list[connector_type].name,
886 connector->connector_type_id);
887 if (!connector->name) {
888 ret = -ENOMEM;
889 goto out_put;
890 }
891
Dave Airlief453ba02008-11-07 14:05:41 -0800892 INIT_LIST_HEAD(&connector->probed_modes);
893 INIT_LIST_HEAD(&connector->modes);
894 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000895 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800896
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200897 drm_connector_get_cmdline_mode(connector);
898
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100899 /* We should add connectors at the end to avoid upsetting the connector
900 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500901 list_add_tail(&connector->head, &config->connector_list);
902 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800903
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200904 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500905 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500906 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200907 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800908
Rob Clark58495562012-10-11 20:50:56 -0500909 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500910 config->dpms_property, 0);
911
912 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
913 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
914 }
Dave Airlief453ba02008-11-07 14:05:41 -0800915
Thomas Wood30f65702014-06-18 17:52:32 +0100916 connector->debugfs_entry = NULL;
917
Jani Nikula2abdd312014-05-14 16:58:19 +0300918out_put:
919 if (ret)
920 drm_mode_object_put(dev, &connector->base);
921
922out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100923 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200924
925 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800926}
927EXPORT_SYMBOL(drm_connector_init);
928
929/**
930 * drm_connector_cleanup - cleans up an initialised connector
931 * @connector: connector to cleanup
932 *
Dave Airlief453ba02008-11-07 14:05:41 -0800933 * Cleans up the connector but doesn't free the object.
934 */
935void drm_connector_cleanup(struct drm_connector *connector)
936{
937 struct drm_device *dev = connector->dev;
938 struct drm_display_mode *mode, *t;
939
Dave Airlie40d9b042014-10-20 16:29:33 +1000940 if (connector->tile_group) {
941 drm_mode_put_tile_group(dev, connector->tile_group);
942 connector->tile_group = NULL;
943 }
944
Dave Airlief453ba02008-11-07 14:05:41 -0800945 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
946 drm_mode_remove(connector, mode);
947
948 list_for_each_entry_safe(mode, t, &connector->modes, head)
949 drm_mode_remove(connector, mode);
950
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400951 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
952 connector->connector_type_id);
953
Boris Brezillonb5571e92014-07-22 12:09:10 +0200954 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800955 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300956 kfree(connector->name);
957 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800958 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000959 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100960
961 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
962 if (connector->state && connector->funcs->atomic_destroy_state)
963 connector->funcs->atomic_destroy_state(connector,
964 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100965
966 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800967}
968EXPORT_SYMBOL(drm_connector_cleanup);
969
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100970/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200971 * drm_connector_index - find the index of a registered connector
972 * @connector: connector to find index for
973 *
974 * Given a registered connector, return the index of that connector within a DRM
975 * device's list of connectors.
976 */
977unsigned int drm_connector_index(struct drm_connector *connector)
978{
979 unsigned int index = 0;
980 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100981 struct drm_mode_config *config = &connector->dev->mode_config;
982
983 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200984
985 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
986 if (tmp == connector)
987 return index;
988
989 index++;
990 }
991
992 BUG();
993}
994EXPORT_SYMBOL(drm_connector_index);
995
996/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100997 * drm_connector_register - register a connector
998 * @connector: the connector to register
999 *
1000 * Register userspace interfaces for a connector
1001 *
1002 * Returns:
1003 * Zero on success, error code on failure.
1004 */
1005int drm_connector_register(struct drm_connector *connector)
1006{
Thomas Wood30f65702014-06-18 17:52:32 +01001007 int ret;
1008
Dave Airlie2ee39452014-07-24 11:53:45 +10001009 drm_mode_object_register(connector->dev, &connector->base);
1010
Thomas Wood30f65702014-06-18 17:52:32 +01001011 ret = drm_sysfs_connector_add(connector);
1012 if (ret)
1013 return ret;
1014
1015 ret = drm_debugfs_connector_add(connector);
1016 if (ret) {
1017 drm_sysfs_connector_remove(connector);
1018 return ret;
1019 }
1020
1021 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001022}
1023EXPORT_SYMBOL(drm_connector_register);
1024
1025/**
1026 * drm_connector_unregister - unregister a connector
1027 * @connector: the connector to unregister
1028 *
1029 * Unregister userspace interfaces for a connector
1030 */
1031void drm_connector_unregister(struct drm_connector *connector)
1032{
1033 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001034 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001035}
1036EXPORT_SYMBOL(drm_connector_unregister);
1037
1038
1039/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001040 * drm_connector_unplug_all - unregister connector userspace interfaces
1041 * @dev: drm device
1042 *
1043 * This function unregisters all connector userspace interfaces in sysfs. Should
1044 * be call when the device is disconnected, e.g. from an usb driver's
1045 * ->disconnect callback.
1046 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001047void drm_connector_unplug_all(struct drm_device *dev)
1048{
1049 struct drm_connector *connector;
1050
1051 /* taking the mode config mutex ends up in a clash with sysfs */
1052 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001053 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001054
1055}
1056EXPORT_SYMBOL(drm_connector_unplug_all);
1057
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001058/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001059 * drm_encoder_init - Init a preallocated encoder
1060 * @dev: drm device
1061 * @encoder: the encoder to init
1062 * @funcs: callbacks for this encoder
1063 * @encoder_type: user visible type of the encoder
1064 *
1065 * Initialises a preallocated encoder. Encoder should be
1066 * subclassed as part of driver encoder objects.
1067 *
1068 * Returns:
1069 * Zero on success, error code on failure.
1070 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001071int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001072 struct drm_encoder *encoder,
1073 const struct drm_encoder_funcs *funcs,
1074 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001075{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001076 int ret;
1077
Daniel Vetter84849902012-12-02 00:28:11 +01001078 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001079
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001080 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1081 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001082 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001083
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001084 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001085 encoder->encoder_type = encoder_type;
1086 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001087 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1088 drm_encoder_enum_list[encoder_type].name,
1089 encoder->base.id);
1090 if (!encoder->name) {
1091 ret = -ENOMEM;
1092 goto out_put;
1093 }
Dave Airlief453ba02008-11-07 14:05:41 -08001094
1095 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1096 dev->mode_config.num_encoder++;
1097
Jani Nikulae5748942014-05-14 16:58:20 +03001098out_put:
1099 if (ret)
1100 drm_mode_object_put(dev, &encoder->base);
1101
1102out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001103 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001104
1105 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001106}
1107EXPORT_SYMBOL(drm_encoder_init);
1108
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001109/**
1110 * drm_encoder_cleanup - cleans up an initialised encoder
1111 * @encoder: encoder to cleanup
1112 *
1113 * Cleans up the encoder but doesn't free the object.
1114 */
Dave Airlief453ba02008-11-07 14:05:41 -08001115void drm_encoder_cleanup(struct drm_encoder *encoder)
1116{
1117 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001118
Daniel Vetter84849902012-12-02 00:28:11 +01001119 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001120 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001121 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001122 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001123 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001124 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001125
1126 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001127}
1128EXPORT_SYMBOL(drm_encoder_cleanup);
1129
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001130/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001131 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001132 * @dev: DRM device
1133 * @plane: plane object to init
1134 * @possible_crtcs: bitmask of possible CRTCs
1135 * @funcs: callbacks for the new plane
1136 * @formats: array of supported formats (%DRM_FORMAT_*)
1137 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001138 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001139 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001140 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001141 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001142 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001143 * Zero on success, error code on failure.
1144 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001145int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1146 unsigned long possible_crtcs,
1147 const struct drm_plane_funcs *funcs,
1148 const uint32_t *formats, uint32_t format_count,
1149 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001150{
Rob Clark6b4959f2014-12-18 16:01:53 -05001151 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001152 int ret;
1153
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001154 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1155 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001156 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001157
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001158 drm_modeset_lock_init(&plane->mutex);
1159
Rob Clark4d939142012-05-17 02:23:27 -06001160 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001161 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001162 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001163 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1164 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001165 if (!plane->format_types) {
1166 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1167 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001168 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001169 }
1170
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001171 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001172 plane->format_count = format_count;
1173 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001174 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001175
Rob Clark6b4959f2014-12-18 16:01:53 -05001176 list_add_tail(&plane->head, &config->plane_list);
1177 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001178 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001179 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001180
Rob Clark9922ab52014-04-01 20:16:57 -04001181 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001182 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001183 plane->type);
1184
Rob Clark6b4959f2014-12-18 16:01:53 -05001185 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1186 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1187 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1188 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1189 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1190 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1191 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1192 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1193 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1194 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1195 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1196 }
1197
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001198 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001199}
Matt Roperdc415ff2014-04-01 15:22:36 -07001200EXPORT_SYMBOL(drm_universal_plane_init);
1201
1202/**
1203 * drm_plane_init - Initialize a legacy plane
1204 * @dev: DRM device
1205 * @plane: plane object to init
1206 * @possible_crtcs: bitmask of possible CRTCs
1207 * @funcs: callbacks for the new plane
1208 * @formats: array of supported formats (%DRM_FORMAT_*)
1209 * @format_count: number of elements in @formats
1210 * @is_primary: plane type (primary vs overlay)
1211 *
1212 * Legacy API to initialize a DRM plane.
1213 *
1214 * New drivers should call drm_universal_plane_init() instead.
1215 *
1216 * Returns:
1217 * Zero on success, error code on failure.
1218 */
1219int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1220 unsigned long possible_crtcs,
1221 const struct drm_plane_funcs *funcs,
1222 const uint32_t *formats, uint32_t format_count,
1223 bool is_primary)
1224{
1225 enum drm_plane_type type;
1226
1227 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1228 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1229 formats, format_count, type);
1230}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001231EXPORT_SYMBOL(drm_plane_init);
1232
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001233/**
1234 * drm_plane_cleanup - Clean up the core plane usage
1235 * @plane: plane to cleanup
1236 *
1237 * This function cleans up @plane and removes it from the DRM mode setting
1238 * core. Note that the function does *not* free the plane structure itself,
1239 * this is the responsibility of the caller.
1240 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001241void drm_plane_cleanup(struct drm_plane *plane)
1242{
1243 struct drm_device *dev = plane->dev;
1244
Daniel Vetter84849902012-12-02 00:28:11 +01001245 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001246 kfree(plane->format_types);
1247 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001248
1249 BUG_ON(list_empty(&plane->head));
1250
1251 list_del(&plane->head);
1252 dev->mode_config.num_total_plane--;
1253 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1254 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001255 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001256
1257 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1258 if (plane->state && plane->funcs->atomic_destroy_state)
1259 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001260
1261 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001262}
1263EXPORT_SYMBOL(drm_plane_cleanup);
1264
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001265/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001266 * drm_plane_index - find the index of a registered plane
1267 * @plane: plane to find index for
1268 *
1269 * Given a registered plane, return the index of that CRTC within a DRM
1270 * device's list of planes.
1271 */
1272unsigned int drm_plane_index(struct drm_plane *plane)
1273{
1274 unsigned int index = 0;
1275 struct drm_plane *tmp;
1276
1277 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1278 if (tmp == plane)
1279 return index;
1280
1281 index++;
1282 }
1283
1284 BUG();
1285}
1286EXPORT_SYMBOL(drm_plane_index);
1287
1288/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001289 * drm_plane_from_index - find the registered plane at an index
1290 * @dev: DRM device
1291 * @idx: index of registered plane to find for
1292 *
1293 * Given a plane index, return the registered plane from DRM device's
1294 * list of planes with matching index.
1295 */
1296struct drm_plane *
1297drm_plane_from_index(struct drm_device *dev, int idx)
1298{
1299 struct drm_plane *plane;
1300 unsigned int i = 0;
1301
1302 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
1303 if (i == idx)
1304 return plane;
1305 i++;
1306 }
1307 return NULL;
1308}
1309EXPORT_SYMBOL(drm_plane_from_index);
1310
1311/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001312 * drm_plane_force_disable - Forcibly disable a plane
1313 * @plane: plane to disable
1314 *
1315 * Forces the plane to be disabled.
1316 *
1317 * Used when the plane's current framebuffer is destroyed,
1318 * and when restoring fbdev mode.
1319 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001320void drm_plane_force_disable(struct drm_plane *plane)
1321{
1322 int ret;
1323
Daniel Vetter3d30a592014-07-27 13:42:42 +02001324 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001325 return;
1326
Daniel Vetter3d30a592014-07-27 13:42:42 +02001327 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001328 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001329 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001330 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001331 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001332 return;
1333 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001334 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001335 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001336 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001337 plane->fb = NULL;
1338 plane->crtc = NULL;
1339}
1340EXPORT_SYMBOL(drm_plane_force_disable);
1341
Rob Clark6b4959f2014-12-18 16:01:53 -05001342static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001343{
Rob Clark356af0e2014-12-18 16:01:52 -05001344 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001345
1346 /*
1347 * Standard properties (apply to all connectors)
1348 */
Rob Clark356af0e2014-12-18 16:01:52 -05001349 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001350 DRM_MODE_PROP_IMMUTABLE,
1351 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001352 if (!prop)
1353 return -ENOMEM;
1354 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001355
Rob Clark356af0e2014-12-18 16:01:52 -05001356 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001357 "DPMS", drm_dpms_enum_list,
1358 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001359 if (!prop)
1360 return -ENOMEM;
1361 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001362
Rob Clark356af0e2014-12-18 16:01:52 -05001363 prop = drm_property_create(dev,
1364 DRM_MODE_PROP_BLOB |
1365 DRM_MODE_PROP_IMMUTABLE,
1366 "PATH", 0);
1367 if (!prop)
1368 return -ENOMEM;
1369 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001370
Rob Clark356af0e2014-12-18 16:01:52 -05001371 prop = drm_property_create(dev,
1372 DRM_MODE_PROP_BLOB |
1373 DRM_MODE_PROP_IMMUTABLE,
1374 "TILE", 0);
1375 if (!prop)
1376 return -ENOMEM;
1377 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001378
Rob Clark6b4959f2014-12-18 16:01:53 -05001379 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001380 "type", drm_plane_type_enum_list,
1381 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001382 if (!prop)
1383 return -ENOMEM;
1384 dev->mode_config.plane_type_property = prop;
1385
1386 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1387 "SRC_X", 0, UINT_MAX);
1388 if (!prop)
1389 return -ENOMEM;
1390 dev->mode_config.prop_src_x = prop;
1391
1392 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1393 "SRC_Y", 0, UINT_MAX);
1394 if (!prop)
1395 return -ENOMEM;
1396 dev->mode_config.prop_src_y = prop;
1397
1398 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1399 "SRC_W", 0, UINT_MAX);
1400 if (!prop)
1401 return -ENOMEM;
1402 dev->mode_config.prop_src_w = prop;
1403
1404 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1405 "SRC_H", 0, UINT_MAX);
1406 if (!prop)
1407 return -ENOMEM;
1408 dev->mode_config.prop_src_h = prop;
1409
1410 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1411 "CRTC_X", INT_MIN, INT_MAX);
1412 if (!prop)
1413 return -ENOMEM;
1414 dev->mode_config.prop_crtc_x = prop;
1415
1416 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1417 "CRTC_Y", INT_MIN, INT_MAX);
1418 if (!prop)
1419 return -ENOMEM;
1420 dev->mode_config.prop_crtc_y = prop;
1421
1422 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1423 "CRTC_W", 0, INT_MAX);
1424 if (!prop)
1425 return -ENOMEM;
1426 dev->mode_config.prop_crtc_w = prop;
1427
1428 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1429 "CRTC_H", 0, INT_MAX);
1430 if (!prop)
1431 return -ENOMEM;
1432 dev->mode_config.prop_crtc_h = prop;
1433
1434 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1435 "FB_ID", DRM_MODE_OBJECT_FB);
1436 if (!prop)
1437 return -ENOMEM;
1438 dev->mode_config.prop_fb_id = prop;
1439
1440 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1441 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1442 if (!prop)
1443 return -ENOMEM;
1444 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001445
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001446 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1447 "ACTIVE");
1448 if (!prop)
1449 return -ENOMEM;
1450 dev->mode_config.prop_active = prop;
1451
Rob Clark9922ab52014-04-01 20:16:57 -04001452 return 0;
1453}
1454
Dave Airlief453ba02008-11-07 14:05:41 -08001455/**
1456 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1457 * @dev: DRM device
1458 *
1459 * Called by a driver the first time a DVI-I connector is made.
1460 */
1461int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1462{
1463 struct drm_property *dvi_i_selector;
1464 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001465
1466 if (dev->mode_config.dvi_i_select_subconnector_property)
1467 return 0;
1468
1469 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001470 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001471 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001472 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001473 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001474 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1475
Sascha Hauer4a67d392012-02-06 10:58:17 +01001476 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001477 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001478 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001479 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001480 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1481
1482 return 0;
1483}
1484EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1485
1486/**
1487 * drm_create_tv_properties - create TV specific connector properties
1488 * @dev: DRM device
1489 * @num_modes: number of different TV formats (modes) supported
1490 * @modes: array of pointers to strings containing name of each format
1491 *
1492 * Called by a driver's TV initialization routine, this function creates
1493 * the TV specific connector properties for a given device. Caller is
1494 * responsible for allocating a list of format names and passing them to
1495 * this routine.
1496 */
Thierry Reding2f763312014-10-13 12:45:57 +02001497int drm_mode_create_tv_properties(struct drm_device *dev,
1498 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001499 char *modes[])
1500{
1501 struct drm_property *tv_selector;
1502 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001503 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001504
1505 if (dev->mode_config.tv_select_subconnector_property)
1506 return 0;
1507
1508 /*
1509 * Basic connector properties
1510 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001511 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001512 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001513 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001514 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001515 dev->mode_config.tv_select_subconnector_property = tv_selector;
1516
1517 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001518 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1519 "subconnector",
1520 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001521 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001522 dev->mode_config.tv_subconnector_property = tv_subconnector;
1523
1524 /*
1525 * Other, TV specific properties: margins & TV modes.
1526 */
1527 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001528 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001529
1530 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001531 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001532
1533 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001534 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001535
1536 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001537 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001538
1539 dev->mode_config.tv_mode_property =
1540 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1541 "mode", num_modes);
1542 for (i = 0; i < num_modes; i++)
1543 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1544 i, modes[i]);
1545
Francisco Jerezb6b79022009-08-02 04:19:20 +02001546 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001547 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001548
1549 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001550 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001551
1552 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001553 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001554
Francisco Jereza75f0232009-08-12 02:30:10 +02001555 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001556 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001557
1558 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001559 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001560
1561 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001562 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001563
Dave Airlief453ba02008-11-07 14:05:41 -08001564 return 0;
1565}
1566EXPORT_SYMBOL(drm_mode_create_tv_properties);
1567
1568/**
1569 * drm_mode_create_scaling_mode_property - create scaling mode property
1570 * @dev: DRM device
1571 *
1572 * Called by a driver the first time it's needed, must be attached to desired
1573 * connectors.
1574 */
1575int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1576{
1577 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001578
1579 if (dev->mode_config.scaling_mode_property)
1580 return 0;
1581
1582 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001583 drm_property_create_enum(dev, 0, "scaling mode",
1584 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001585 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001586
1587 dev->mode_config.scaling_mode_property = scaling_mode;
1588
1589 return 0;
1590}
1591EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1592
1593/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301594 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1595 * @dev: DRM device
1596 *
1597 * Called by a driver the first time it's needed, must be attached to desired
1598 * connectors.
1599 *
1600 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001601 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301602 */
1603int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1604{
1605 if (dev->mode_config.aspect_ratio_property)
1606 return 0;
1607
1608 dev->mode_config.aspect_ratio_property =
1609 drm_property_create_enum(dev, 0, "aspect ratio",
1610 drm_aspect_ratio_enum_list,
1611 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1612
1613 if (dev->mode_config.aspect_ratio_property == NULL)
1614 return -ENOMEM;
1615
1616 return 0;
1617}
1618EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1619
1620/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001621 * drm_mode_create_dirty_property - create dirty property
1622 * @dev: DRM device
1623 *
1624 * Called by a driver the first time it's needed, must be attached to desired
1625 * connectors.
1626 */
1627int drm_mode_create_dirty_info_property(struct drm_device *dev)
1628{
1629 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001630
1631 if (dev->mode_config.dirty_info_property)
1632 return 0;
1633
1634 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001635 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001636 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001637 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001638 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001639 dev->mode_config.dirty_info_property = dirty_info;
1640
1641 return 0;
1642}
1643EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1644
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001645/**
1646 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1647 * @dev: DRM device
1648 *
1649 * Create the the suggested x/y offset property for connectors.
1650 */
1651int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1652{
1653 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1654 return 0;
1655
1656 dev->mode_config.suggested_x_property =
1657 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1658
1659 dev->mode_config.suggested_y_property =
1660 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1661
1662 if (dev->mode_config.suggested_x_property == NULL ||
1663 dev->mode_config.suggested_y_property == NULL)
1664 return -ENOMEM;
1665 return 0;
1666}
1667EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1668
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001669static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001670{
1671 uint32_t total_objects = 0;
1672
1673 total_objects += dev->mode_config.num_crtc;
1674 total_objects += dev->mode_config.num_connector;
1675 total_objects += dev->mode_config.num_encoder;
1676
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001677 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001678 if (!group->id_list)
1679 return -ENOMEM;
1680
1681 group->num_crtcs = 0;
1682 group->num_connectors = 0;
1683 group->num_encoders = 0;
1684 return 0;
1685}
1686
Dave Airliead222792014-05-02 13:22:19 +10001687void drm_mode_group_destroy(struct drm_mode_group *group)
1688{
1689 kfree(group->id_list);
1690 group->id_list = NULL;
1691}
1692
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001693/*
1694 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1695 * the drm core's responsibility to set up mode control groups.
1696 */
Dave Airlief453ba02008-11-07 14:05:41 -08001697int drm_mode_group_init_legacy_group(struct drm_device *dev,
1698 struct drm_mode_group *group)
1699{
1700 struct drm_crtc *crtc;
1701 struct drm_encoder *encoder;
1702 struct drm_connector *connector;
1703 int ret;
1704
Thierry Reding0cc0b222014-12-10 13:03:37 +01001705 ret = drm_mode_group_init(dev, group);
1706 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001707 return ret;
1708
1709 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1710 group->id_list[group->num_crtcs++] = crtc->base.id;
1711
1712 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1713 group->id_list[group->num_crtcs + group->num_encoders++] =
1714 encoder->base.id;
1715
1716 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1717 group->id_list[group->num_crtcs + group->num_encoders +
1718 group->num_connectors++] = connector->base.id;
1719
1720 return 0;
1721}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001722EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001723
Dave Airlie2390cd12014-06-05 14:01:29 +10001724void drm_reinit_primary_mode_group(struct drm_device *dev)
1725{
1726 drm_modeset_lock_all(dev);
1727 drm_mode_group_destroy(&dev->primary->mode_group);
1728 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1729 drm_modeset_unlock_all(dev);
1730}
1731EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1732
Dave Airlief453ba02008-11-07 14:05:41 -08001733/**
Dave Airlief453ba02008-11-07 14:05:41 -08001734 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1735 * @out: drm_mode_modeinfo struct to return to the user
1736 * @in: drm_display_mode to use
1737 *
Dave Airlief453ba02008-11-07 14:05:41 -08001738 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1739 * the user.
1740 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001741static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1742 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001743{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001744 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1745 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1746 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1747 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1748 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1749 "timing values too large for mode info\n");
1750
Dave Airlief453ba02008-11-07 14:05:41 -08001751 out->clock = in->clock;
1752 out->hdisplay = in->hdisplay;
1753 out->hsync_start = in->hsync_start;
1754 out->hsync_end = in->hsync_end;
1755 out->htotal = in->htotal;
1756 out->hskew = in->hskew;
1757 out->vdisplay = in->vdisplay;
1758 out->vsync_start = in->vsync_start;
1759 out->vsync_end = in->vsync_end;
1760 out->vtotal = in->vtotal;
1761 out->vscan = in->vscan;
1762 out->vrefresh = in->vrefresh;
1763 out->flags = in->flags;
1764 out->type = in->type;
1765 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1766 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1767}
1768
1769/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001770 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001771 * @out: drm_display_mode to return to the user
1772 * @in: drm_mode_modeinfo to use
1773 *
Dave Airlief453ba02008-11-07 14:05:41 -08001774 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1775 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001776 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001777 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001778 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001779 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001780static int drm_crtc_convert_umode(struct drm_display_mode *out,
1781 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001782{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001783 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1784 return -ERANGE;
1785
Damien Lespiau5848ad42013-09-27 12:11:50 +01001786 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1787 return -EINVAL;
1788
Dave Airlief453ba02008-11-07 14:05:41 -08001789 out->clock = in->clock;
1790 out->hdisplay = in->hdisplay;
1791 out->hsync_start = in->hsync_start;
1792 out->hsync_end = in->hsync_end;
1793 out->htotal = in->htotal;
1794 out->hskew = in->hskew;
1795 out->vdisplay = in->vdisplay;
1796 out->vsync_start = in->vsync_start;
1797 out->vsync_end = in->vsync_end;
1798 out->vtotal = in->vtotal;
1799 out->vscan = in->vscan;
1800 out->vrefresh = in->vrefresh;
1801 out->flags = in->flags;
1802 out->type = in->type;
1803 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1804 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001805
1806 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001807}
1808
1809/**
1810 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001811 * @dev: drm device for the ioctl
1812 * @data: data pointer for the ioctl
1813 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001814 *
Dave Airlief453ba02008-11-07 14:05:41 -08001815 * Construct a set of configuration description structures and return
1816 * them to the user, including CRTC, connector and framebuffer configuration.
1817 *
1818 * Called by the user via ioctl.
1819 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001820 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001821 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001822 */
1823int drm_mode_getresources(struct drm_device *dev, void *data,
1824 struct drm_file *file_priv)
1825{
1826 struct drm_mode_card_res *card_res = data;
1827 struct list_head *lh;
1828 struct drm_framebuffer *fb;
1829 struct drm_connector *connector;
1830 struct drm_crtc *crtc;
1831 struct drm_encoder *encoder;
1832 int ret = 0;
1833 int connector_count = 0;
1834 int crtc_count = 0;
1835 int fb_count = 0;
1836 int encoder_count = 0;
1837 int copied = 0, i;
1838 uint32_t __user *fb_id;
1839 uint32_t __user *crtc_id;
1840 uint32_t __user *connector_id;
1841 uint32_t __user *encoder_id;
1842 struct drm_mode_group *mode_group;
1843
Dave Airliefb3b06c2011-02-08 13:55:21 +10001844 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1845 return -EINVAL;
1846
Dave Airlief453ba02008-11-07 14:05:41 -08001847
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001848 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001849 /*
1850 * For the non-control nodes we need to limit the list of resources
1851 * by IDs in the group list for this node
1852 */
1853 list_for_each(lh, &file_priv->fbs)
1854 fb_count++;
1855
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001856 /* handle this in 4 parts */
1857 /* FBs */
1858 if (card_res->count_fbs >= fb_count) {
1859 copied = 0;
1860 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1861 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1862 if (put_user(fb->base.id, fb_id + copied)) {
1863 mutex_unlock(&file_priv->fbs_lock);
1864 return -EFAULT;
1865 }
1866 copied++;
1867 }
1868 }
1869 card_res->count_fbs = fb_count;
1870 mutex_unlock(&file_priv->fbs_lock);
1871
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001872 /* mode_config.mutex protects the connector list against e.g. DP MST
1873 * connector hot-adding. CRTC/Plane lists are invariant. */
1874 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001875 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001876
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001877 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001878 list_for_each(lh, &dev->mode_config.crtc_list)
1879 crtc_count++;
1880
1881 list_for_each(lh, &dev->mode_config.connector_list)
1882 connector_count++;
1883
1884 list_for_each(lh, &dev->mode_config.encoder_list)
1885 encoder_count++;
1886 } else {
1887
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001888 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001889 crtc_count = mode_group->num_crtcs;
1890 connector_count = mode_group->num_connectors;
1891 encoder_count = mode_group->num_encoders;
1892 }
1893
1894 card_res->max_height = dev->mode_config.max_height;
1895 card_res->min_height = dev->mode_config.min_height;
1896 card_res->max_width = dev->mode_config.max_width;
1897 card_res->min_width = dev->mode_config.min_width;
1898
Dave Airlief453ba02008-11-07 14:05:41 -08001899 /* CRTCs */
1900 if (card_res->count_crtcs >= crtc_count) {
1901 copied = 0;
1902 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001903 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001904 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1905 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001906 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001907 if (put_user(crtc->base.id, crtc_id + copied)) {
1908 ret = -EFAULT;
1909 goto out;
1910 }
1911 copied++;
1912 }
1913 } else {
1914 for (i = 0; i < mode_group->num_crtcs; i++) {
1915 if (put_user(mode_group->id_list[i],
1916 crtc_id + copied)) {
1917 ret = -EFAULT;
1918 goto out;
1919 }
1920 copied++;
1921 }
1922 }
1923 }
1924 card_res->count_crtcs = crtc_count;
1925
1926 /* Encoders */
1927 if (card_res->count_encoders >= encoder_count) {
1928 copied = 0;
1929 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001930 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001931 list_for_each_entry(encoder,
1932 &dev->mode_config.encoder_list,
1933 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001934 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001935 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001936 if (put_user(encoder->base.id, encoder_id +
1937 copied)) {
1938 ret = -EFAULT;
1939 goto out;
1940 }
1941 copied++;
1942 }
1943 } else {
1944 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1945 if (put_user(mode_group->id_list[i],
1946 encoder_id + copied)) {
1947 ret = -EFAULT;
1948 goto out;
1949 }
1950 copied++;
1951 }
1952
1953 }
1954 }
1955 card_res->count_encoders = encoder_count;
1956
1957 /* Connectors */
1958 if (card_res->count_connectors >= connector_count) {
1959 copied = 0;
1960 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001961 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001962 list_for_each_entry(connector,
1963 &dev->mode_config.connector_list,
1964 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001965 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1966 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001967 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001968 if (put_user(connector->base.id,
1969 connector_id + copied)) {
1970 ret = -EFAULT;
1971 goto out;
1972 }
1973 copied++;
1974 }
1975 } else {
1976 int start = mode_group->num_crtcs +
1977 mode_group->num_encoders;
1978 for (i = start; i < start + mode_group->num_connectors; i++) {
1979 if (put_user(mode_group->id_list[i],
1980 connector_id + copied)) {
1981 ret = -EFAULT;
1982 goto out;
1983 }
1984 copied++;
1985 }
1986 }
1987 }
1988 card_res->count_connectors = connector_count;
1989
Jerome Glisse94401062010-07-15 15:43:25 -04001990 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001991 card_res->count_connectors, card_res->count_encoders);
1992
1993out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001994 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001995 return ret;
1996}
1997
1998/**
1999 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002000 * @dev: drm device for the ioctl
2001 * @data: data pointer for the ioctl
2002 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002003 *
Dave Airlief453ba02008-11-07 14:05:41 -08002004 * Construct a CRTC configuration structure to return to the user.
2005 *
2006 * Called by the user via ioctl.
2007 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002008 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002009 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002010 */
2011int drm_mode_getcrtc(struct drm_device *dev,
2012 void *data, struct drm_file *file_priv)
2013{
2014 struct drm_mode_crtc *crtc_resp = data;
2015 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002016
Dave Airliefb3b06c2011-02-08 13:55:21 +10002017 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2018 return -EINVAL;
2019
Rob Clarka2b34e22013-10-05 16:36:52 -04002020 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002021 if (!crtc)
2022 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002023
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002024 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08002025 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07002026 if (crtc->primary->fb)
2027 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002028 else
2029 crtc_resp->fb_id = 0;
2030
Daniel Vetter31c946e2015-02-22 12:24:17 +01002031 if (crtc->state) {
2032 crtc_resp->x = crtc->primary->state->src_x >> 16;
2033 crtc_resp->y = crtc->primary->state->src_y >> 16;
2034 if (crtc->state->enable) {
2035 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
2036 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08002037
Daniel Vetter31c946e2015-02-22 12:24:17 +01002038 } else {
2039 crtc_resp->mode_valid = 0;
2040 }
Dave Airlief453ba02008-11-07 14:05:41 -08002041 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01002042 crtc_resp->x = crtc->x;
2043 crtc_resp->y = crtc->y;
2044 if (crtc->enabled) {
2045 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
2046 crtc_resp->mode_valid = 1;
2047
2048 } else {
2049 crtc_resp->mode_valid = 0;
2050 }
Dave Airlief453ba02008-11-07 14:05:41 -08002051 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002052 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08002053
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002054 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002055}
2056
Damien Lespiau61d8e322013-09-25 16:45:22 +01002057static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2058 const struct drm_file *file_priv)
2059{
2060 /*
2061 * If user-space hasn't configured the driver to expose the stereo 3D
2062 * modes, don't expose them.
2063 */
2064 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2065 return false;
2066
2067 return true;
2068}
2069
Daniel Vetterabd69c52014-11-25 23:50:05 +01002070static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2071{
2072 /* For atomic drivers only state objects are synchronously updated and
2073 * protected by modeset locks, so check those first. */
2074 if (connector->state)
2075 return connector->state->best_encoder;
2076 return connector->encoder;
2077}
2078
Rob Clark95cbf112014-12-18 16:01:49 -05002079/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002080static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002081 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2082 uint32_t *arg_count_props)
2083{
Rob Clark88a48e22014-12-18 16:01:50 -05002084 int props_count;
2085 int i, ret, copied;
2086
2087 props_count = obj->properties->count;
2088 if (!atomic)
2089 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002090
2091 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002092 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002093 struct drm_property *prop = obj->properties->properties[i];
2094 uint64_t val;
2095
Rob Clark88a48e22014-12-18 16:01:50 -05002096 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2097 continue;
2098
Rob Clark95cbf112014-12-18 16:01:49 -05002099 ret = drm_object_property_get_value(obj, prop, &val);
2100 if (ret)
2101 return ret;
2102
2103 if (put_user(prop->base.id, prop_ptr + copied))
2104 return -EFAULT;
2105
2106 if (put_user(val, prop_values + copied))
2107 return -EFAULT;
2108
2109 copied++;
2110 }
2111 }
2112 *arg_count_props = props_count;
2113
2114 return 0;
2115}
2116
Dave Airlief453ba02008-11-07 14:05:41 -08002117/**
2118 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002119 * @dev: drm device for the ioctl
2120 * @data: data pointer for the ioctl
2121 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002122 *
Dave Airlief453ba02008-11-07 14:05:41 -08002123 * Construct a connector configuration structure to return to the user.
2124 *
2125 * Called by the user via ioctl.
2126 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002127 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002128 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002129 */
2130int drm_mode_getconnector(struct drm_device *dev, void *data,
2131 struct drm_file *file_priv)
2132{
2133 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002134 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002135 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002136 struct drm_display_mode *mode;
2137 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002138 int encoders_count = 0;
2139 int ret = 0;
2140 int copied = 0;
2141 int i;
2142 struct drm_mode_modeinfo u_mode;
2143 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002144 uint32_t __user *encoder_ptr;
2145
Dave Airliefb3b06c2011-02-08 13:55:21 +10002146 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2147 return -EINVAL;
2148
Dave Airlief453ba02008-11-07 14:05:41 -08002149 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2150
Jerome Glisse94401062010-07-15 15:43:25 -04002151 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002152
Daniel Vetter7b240562012-12-12 00:35:33 +01002153 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002154
Rob Clarka2b34e22013-10-05 16:36:52 -04002155 connector = drm_connector_find(dev, out_resp->connector_id);
2156 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002157 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002158 goto out;
2159 }
Dave Airlief453ba02008-11-07 14:05:41 -08002160
Thierry Reding01073b02014-12-10 13:03:38 +01002161 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2162 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002163 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002164
2165 if (out_resp->count_modes == 0) {
2166 connector->funcs->fill_modes(connector,
2167 dev->mode_config.max_width,
2168 dev->mode_config.max_height);
2169 }
2170
2171 /* delayed so we get modes regardless of pre-fill_modes state */
2172 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002173 if (drm_mode_expose_to_userspace(mode, file_priv))
2174 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002175
2176 out_resp->connector_id = connector->base.id;
2177 out_resp->connector_type = connector->connector_type;
2178 out_resp->connector_type_id = connector->connector_type_id;
2179 out_resp->mm_width = connector->display_info.width_mm;
2180 out_resp->mm_height = connector->display_info.height_mm;
2181 out_resp->subpixel = connector->display_info.subpixel_order;
2182 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002183
2184 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002185 encoder = drm_connector_get_encoder(connector);
2186 if (encoder)
2187 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002188 else
2189 out_resp->encoder_id = 0;
2190
2191 /*
2192 * This ioctl is called twice, once to determine how much space is
2193 * needed, and the 2nd time to fill it.
2194 */
2195 if ((out_resp->count_modes >= mode_count) && mode_count) {
2196 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002197 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002198 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002199 if (!drm_mode_expose_to_userspace(mode, file_priv))
2200 continue;
2201
Dave Airlief453ba02008-11-07 14:05:41 -08002202 drm_crtc_convert_to_umode(&u_mode, mode);
2203 if (copy_to_user(mode_ptr + copied,
2204 &u_mode, sizeof(u_mode))) {
2205 ret = -EFAULT;
2206 goto out;
2207 }
2208 copied++;
2209 }
2210 }
2211 out_resp->count_modes = mode_count;
2212
Rob Clark88a48e22014-12-18 16:01:50 -05002213 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002214 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2215 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2216 &out_resp->count_props);
2217 if (ret)
2218 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002219
2220 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2221 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002222 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002223 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2224 if (connector->encoder_ids[i] != 0) {
2225 if (put_user(connector->encoder_ids[i],
2226 encoder_ptr + copied)) {
2227 ret = -EFAULT;
2228 goto out;
2229 }
2230 copied++;
2231 }
2232 }
2233 }
2234 out_resp->count_encoders = encoders_count;
2235
2236out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002237 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Daniel Vetter7b240562012-12-12 00:35:33 +01002238 mutex_unlock(&dev->mode_config.mutex);
2239
Dave Airlief453ba02008-11-07 14:05:41 -08002240 return ret;
2241}
2242
Daniel Vetterabd69c52014-11-25 23:50:05 +01002243static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2244{
2245 struct drm_connector *connector;
2246 struct drm_device *dev = encoder->dev;
2247 bool uses_atomic = false;
2248
2249 /* For atomic drivers only state objects are synchronously updated and
2250 * protected by modeset locks, so check those first. */
2251 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2252 if (!connector->state)
2253 continue;
2254
2255 uses_atomic = true;
2256
2257 if (connector->state->best_encoder != encoder)
2258 continue;
2259
2260 return connector->state->crtc;
2261 }
2262
2263 /* Don't return stale data (e.g. pending async disable). */
2264 if (uses_atomic)
2265 return NULL;
2266
2267 return encoder->crtc;
2268}
2269
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002270/**
2271 * drm_mode_getencoder - get encoder configuration
2272 * @dev: drm device for the ioctl
2273 * @data: data pointer for the ioctl
2274 * @file_priv: drm file for the ioctl call
2275 *
2276 * Construct a encoder configuration structure to return to the user.
2277 *
2278 * Called by the user via ioctl.
2279 *
2280 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002281 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002282 */
Dave Airlief453ba02008-11-07 14:05:41 -08002283int drm_mode_getencoder(struct drm_device *dev, void *data,
2284 struct drm_file *file_priv)
2285{
2286 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002287 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002288 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002289
Dave Airliefb3b06c2011-02-08 13:55:21 +10002290 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2291 return -EINVAL;
2292
Rob Clarka2b34e22013-10-05 16:36:52 -04002293 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002294 if (!encoder)
2295 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002296
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002297 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002298 crtc = drm_encoder_get_crtc(encoder);
2299 if (crtc)
2300 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002301 else
2302 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002303 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2304
Dave Airlief453ba02008-11-07 14:05:41 -08002305 enc_resp->encoder_type = encoder->encoder_type;
2306 enc_resp->encoder_id = encoder->base.id;
2307 enc_resp->possible_crtcs = encoder->possible_crtcs;
2308 enc_resp->possible_clones = encoder->possible_clones;
2309
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002310 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002311}
2312
2313/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002314 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002315 * @dev: DRM device
2316 * @data: ioctl data
2317 * @file_priv: DRM file info
2318 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002319 * Construct a list of plane ids to return to the user.
2320 *
2321 * Called by the user via ioctl.
2322 *
2323 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002324 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002325 */
2326int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002327 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002328{
2329 struct drm_mode_get_plane_res *plane_resp = data;
2330 struct drm_mode_config *config;
2331 struct drm_plane *plane;
2332 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002333 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002334 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002335
2336 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2337 return -EINVAL;
2338
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002339 config = &dev->mode_config;
2340
Matt Roper681e7ec2014-04-01 15:22:42 -07002341 if (file_priv->universal_planes)
2342 num_planes = config->num_total_plane;
2343 else
2344 num_planes = config->num_overlay_plane;
2345
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002346 /*
2347 * This ioctl is called twice, once to determine how much space is
2348 * needed, and the 2nd time to fill it.
2349 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002350 if (num_planes &&
2351 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002352 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002353
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002354 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002355 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002356 /*
2357 * Unless userspace set the 'universal planes'
2358 * capability bit, only advertise overlays.
2359 */
2360 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2361 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002362 continue;
2363
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002364 if (put_user(plane->base.id, plane_ptr + copied))
2365 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002366 copied++;
2367 }
2368 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002369 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002370
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002371 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002372}
2373
2374/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002375 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002376 * @dev: DRM device
2377 * @data: ioctl data
2378 * @file_priv: DRM file info
2379 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002380 * Construct a plane configuration structure to return to the user.
2381 *
2382 * Called by the user via ioctl.
2383 *
2384 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002385 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002386 */
2387int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002388 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002389{
2390 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002391 struct drm_plane *plane;
2392 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002393
2394 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2395 return -EINVAL;
2396
Rob Clarka2b34e22013-10-05 16:36:52 -04002397 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002398 if (!plane)
2399 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002400
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002401 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002402 if (plane->crtc)
2403 plane_resp->crtc_id = plane->crtc->base.id;
2404 else
2405 plane_resp->crtc_id = 0;
2406
2407 if (plane->fb)
2408 plane_resp->fb_id = plane->fb->base.id;
2409 else
2410 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002411 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002412
2413 plane_resp->plane_id = plane->base.id;
2414 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002415 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002416
2417 /*
2418 * This ioctl is called twice, once to determine how much space is
2419 * needed, and the 2nd time to fill it.
2420 */
2421 if (plane->format_count &&
2422 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002423 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002424 if (copy_to_user(format_ptr,
2425 plane->format_types,
2426 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002427 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002428 }
2429 }
2430 plane_resp->count_format_types = plane->format_count;
2431
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002432 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002433}
2434
Laurent Pinchartead86102015-03-05 02:25:43 +02002435/**
2436 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2437 * @plane: plane to check for format support
2438 * @format: the pixel format
2439 *
2440 * Returns:
2441 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2442 * otherwise.
2443 */
2444int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2445{
2446 unsigned int i;
2447
2448 for (i = 0; i < plane->format_count; i++) {
2449 if (format == plane->format_types[i])
2450 return 0;
2451 }
2452
2453 return -EINVAL;
2454}
2455
Matt Roperb36552b2014-06-10 08:28:09 -07002456/*
2457 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002458 *
Matt Roperb36552b2014-06-10 08:28:09 -07002459 * Note that we assume an extra reference has already been taken on fb. If the
2460 * update fails, this reference will be dropped before return; if it succeeds,
2461 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002462 *
Matt Roperb36552b2014-06-10 08:28:09 -07002463 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002464 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002465static int __setplane_internal(struct drm_plane *plane,
2466 struct drm_crtc *crtc,
2467 struct drm_framebuffer *fb,
2468 int32_t crtc_x, int32_t crtc_y,
2469 uint32_t crtc_w, uint32_t crtc_h,
2470 /* src_{x,y,w,h} values are 16.16 fixed point */
2471 uint32_t src_x, uint32_t src_y,
2472 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002473{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002474 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002475 unsigned int fb_width, fb_height;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002476
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002477 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002478 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002479 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002480 ret = plane->funcs->disable_plane(plane);
2481 if (!ret) {
2482 plane->crtc = NULL;
2483 plane->fb = NULL;
2484 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002485 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002486 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002487 goto out;
2488 }
2489
Matt Roper7f994f32014-05-29 08:06:51 -07002490 /* Check whether this plane is usable on this CRTC */
2491 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2492 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2493 ret = -EINVAL;
2494 goto out;
2495 }
2496
Ville Syrjälä62443be2011-12-20 00:06:47 +02002497 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002498 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2499 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002500 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2501 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002502 goto out;
2503 }
2504
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002505 fb_width = fb->width << 16;
2506 fb_height = fb->height << 16;
2507
2508 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002509 if (src_w > fb_width ||
2510 src_x > fb_width - src_w ||
2511 src_h > fb_height ||
2512 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002513 DRM_DEBUG_KMS("Invalid source coordinates "
2514 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002515 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2516 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2517 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2518 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002519 ret = -ENOSPC;
2520 goto out;
2521 }
2522
Daniel Vetter3d30a592014-07-27 13:42:42 +02002523 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002524 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002525 crtc_x, crtc_y, crtc_w, crtc_h,
2526 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002527 if (!ret) {
2528 plane->crtc = crtc;
2529 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002530 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002531 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002532 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002533 }
2534
2535out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002536 if (fb)
2537 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002538 if (plane->old_fb)
2539 drm_framebuffer_unreference(plane->old_fb);
2540 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002541
2542 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002543}
Matt Roperb36552b2014-06-10 08:28:09 -07002544
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002545static int setplane_internal(struct drm_plane *plane,
2546 struct drm_crtc *crtc,
2547 struct drm_framebuffer *fb,
2548 int32_t crtc_x, int32_t crtc_y,
2549 uint32_t crtc_w, uint32_t crtc_h,
2550 /* src_{x,y,w,h} values are 16.16 fixed point */
2551 uint32_t src_x, uint32_t src_y,
2552 uint32_t src_w, uint32_t src_h)
2553{
2554 int ret;
2555
2556 drm_modeset_lock_all(plane->dev);
2557 ret = __setplane_internal(plane, crtc, fb,
2558 crtc_x, crtc_y, crtc_w, crtc_h,
2559 src_x, src_y, src_w, src_h);
2560 drm_modeset_unlock_all(plane->dev);
2561
2562 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002563}
2564
2565/**
2566 * drm_mode_setplane - configure a plane's configuration
2567 * @dev: DRM device
2568 * @data: ioctl data*
2569 * @file_priv: DRM file info
2570 *
2571 * Set plane configuration, including placement, fb, scaling, and other factors.
2572 * Or pass a NULL fb to disable (planes may be disabled without providing a
2573 * valid crtc).
2574 *
2575 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002576 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002577 */
2578int drm_mode_setplane(struct drm_device *dev, void *data,
2579 struct drm_file *file_priv)
2580{
2581 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002582 struct drm_plane *plane;
2583 struct drm_crtc *crtc = NULL;
2584 struct drm_framebuffer *fb = NULL;
2585
2586 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2587 return -EINVAL;
2588
2589 /* Give drivers some help against integer overflows */
2590 if (plane_req->crtc_w > INT_MAX ||
2591 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2592 plane_req->crtc_h > INT_MAX ||
2593 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2594 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2595 plane_req->crtc_w, plane_req->crtc_h,
2596 plane_req->crtc_x, plane_req->crtc_y);
2597 return -ERANGE;
2598 }
2599
2600 /*
2601 * First, find the plane, crtc, and fb objects. If not available,
2602 * we don't bother to call the driver.
2603 */
Rob Clark933f6222014-11-25 20:33:11 -05002604 plane = drm_plane_find(dev, plane_req->plane_id);
2605 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002606 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2607 plane_req->plane_id);
2608 return -ENOENT;
2609 }
Matt Roperb36552b2014-06-10 08:28:09 -07002610
2611 if (plane_req->fb_id) {
2612 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2613 if (!fb) {
2614 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2615 plane_req->fb_id);
2616 return -ENOENT;
2617 }
2618
Rob Clark933f6222014-11-25 20:33:11 -05002619 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2620 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002621 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2622 plane_req->crtc_id);
2623 return -ENOENT;
2624 }
Matt Roperb36552b2014-06-10 08:28:09 -07002625 }
2626
Matt Roper161d0dc2014-06-10 08:28:10 -07002627 /*
2628 * setplane_internal will take care of deref'ing either the old or new
2629 * framebuffer depending on success.
2630 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002631 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002632 plane_req->crtc_x, plane_req->crtc_y,
2633 plane_req->crtc_w, plane_req->crtc_h,
2634 plane_req->src_x, plane_req->src_y,
2635 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002636}
2637
2638/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002639 * drm_mode_set_config_internal - helper to call ->set_config
2640 * @set: modeset config to set
2641 *
2642 * This is a little helper to wrap internal calls to the ->set_config driver
2643 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002644 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002645 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002646 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002647 */
2648int drm_mode_set_config_internal(struct drm_mode_set *set)
2649{
2650 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002651 struct drm_framebuffer *fb;
2652 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002653 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002654
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002655 /*
2656 * NOTE: ->set_config can also disable other crtcs (if we steal all
2657 * connectors from it), hence we need to refcount the fbs across all
2658 * crtcs. Atomic modeset will have saner semantics ...
2659 */
2660 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002661 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002662
Daniel Vetterb0d12322012-12-11 01:07:12 +01002663 fb = set->fb;
2664
2665 ret = crtc->funcs->set_config(set);
2666 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002667 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002668 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002669 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002670
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002671 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002672 if (tmp->primary->fb)
2673 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002674 if (tmp->primary->old_fb)
2675 drm_framebuffer_unreference(tmp->primary->old_fb);
2676 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002677 }
2678
2679 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002680}
2681EXPORT_SYMBOL(drm_mode_set_config_internal);
2682
Matt Roperaf936292014-04-01 15:22:34 -07002683/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002684 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2685 * @mode: mode to query
2686 * @hdisplay: hdisplay value to fill in
2687 * @vdisplay: vdisplay value to fill in
2688 *
2689 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2690 * the appropriate layout.
2691 */
2692void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2693 int *hdisplay, int *vdisplay)
2694{
2695 struct drm_display_mode adjusted;
2696
2697 drm_mode_copy(&adjusted, mode);
2698 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2699 *hdisplay = adjusted.crtc_hdisplay;
2700 *vdisplay = adjusted.crtc_vdisplay;
2701}
2702EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2703
2704/**
Matt Roperaf936292014-04-01 15:22:34 -07002705 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2706 * CRTC viewport
2707 * @crtc: CRTC that framebuffer will be displayed on
2708 * @x: x panning
2709 * @y: y panning
2710 * @mode: mode that framebuffer will be displayed under
2711 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002712 */
Matt Roperaf936292014-04-01 15:22:34 -07002713int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2714 int x, int y,
2715 const struct drm_display_mode *mode,
2716 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002717
2718{
2719 int hdisplay, vdisplay;
2720
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002721 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002722
Damien Lespiauc11e9282013-09-25 16:45:30 +01002723 if (crtc->invert_dimensions)
2724 swap(hdisplay, vdisplay);
2725
2726 if (hdisplay > fb->width ||
2727 vdisplay > fb->height ||
2728 x > fb->width - hdisplay ||
2729 y > fb->height - vdisplay) {
2730 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2731 fb->width, fb->height, hdisplay, vdisplay, x, y,
2732 crtc->invert_dimensions ? " (inverted)" : "");
2733 return -ENOSPC;
2734 }
2735
2736 return 0;
2737}
Matt Roperaf936292014-04-01 15:22:34 -07002738EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002739
Daniel Vetter2d13b672012-12-11 13:47:23 +01002740/**
Dave Airlief453ba02008-11-07 14:05:41 -08002741 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002742 * @dev: drm device for the ioctl
2743 * @data: data pointer for the ioctl
2744 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002745 *
Dave Airlief453ba02008-11-07 14:05:41 -08002746 * Build a new CRTC configuration based on user request.
2747 *
2748 * Called by the user via ioctl.
2749 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002750 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002751 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002752 */
2753int drm_mode_setcrtc(struct drm_device *dev, void *data,
2754 struct drm_file *file_priv)
2755{
2756 struct drm_mode_config *config = &dev->mode_config;
2757 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002758 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002759 struct drm_connector **connector_set = NULL, *connector;
2760 struct drm_framebuffer *fb = NULL;
2761 struct drm_display_mode *mode = NULL;
2762 struct drm_mode_set set;
2763 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002764 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002765 int i;
2766
Dave Airliefb3b06c2011-02-08 13:55:21 +10002767 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2768 return -EINVAL;
2769
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002770 /* For some reason crtc x/y offsets are signed internally. */
2771 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2772 return -ERANGE;
2773
Daniel Vetter84849902012-12-02 00:28:11 +01002774 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002775 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2776 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002777 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002778 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002779 goto out;
2780 }
Jerome Glisse94401062010-07-15 15:43:25 -04002781 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002782
2783 if (crtc_req->mode_valid) {
2784 /* If we have a mode we need a framebuffer. */
2785 /* If we pass -1, set the mode with the currently bound fb */
2786 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002787 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002788 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2789 ret = -EINVAL;
2790 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002791 }
Matt Roperf4510a22014-04-01 15:22:40 -07002792 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002793 /* Make refcounting symmetric with the lookup path. */
2794 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002795 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002796 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2797 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002798 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2799 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002800 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002801 goto out;
2802 }
Dave Airlief453ba02008-11-07 14:05:41 -08002803 }
2804
2805 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002806 if (!mode) {
2807 ret = -ENOMEM;
2808 goto out;
2809 }
2810
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002811 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2812 if (ret) {
2813 DRM_DEBUG_KMS("Invalid mode\n");
2814 goto out;
2815 }
2816
Ville Syrjälä23e1ce82014-12-17 13:56:24 +02002817 mode->status = drm_mode_validate_basic(mode);
2818 if (mode->status != MODE_OK) {
2819 ret = -EINVAL;
2820 goto out;
2821 }
2822
Dave Airlief453ba02008-11-07 14:05:41 -08002823 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002824
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002825 /*
2826 * Check whether the primary plane supports the fb pixel format.
2827 * Drivers not implementing the universal planes API use a
2828 * default formats list provided by the DRM core which doesn't
2829 * match real hardware capabilities. Skip the check in that
2830 * case.
2831 */
2832 if (!crtc->primary->format_default) {
2833 ret = drm_plane_check_pixel_format(crtc->primary,
2834 fb->pixel_format);
2835 if (ret) {
2836 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2837 drm_get_format_name(fb->pixel_format));
2838 goto out;
2839 }
2840 }
2841
Damien Lespiauc11e9282013-09-25 16:45:30 +01002842 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2843 mode, fb);
2844 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002845 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002846
Dave Airlief453ba02008-11-07 14:05:41 -08002847 }
2848
2849 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002850 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002851 ret = -EINVAL;
2852 goto out;
2853 }
2854
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002855 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002856 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002857 crtc_req->count_connectors);
2858 ret = -EINVAL;
2859 goto out;
2860 }
2861
2862 if (crtc_req->count_connectors > 0) {
2863 u32 out_id;
2864
2865 /* Avoid unbounded kernel memory allocation */
2866 if (crtc_req->count_connectors > config->num_connector) {
2867 ret = -EINVAL;
2868 goto out;
2869 }
2870
Thierry Reding2f6c5382014-12-10 13:03:36 +01002871 connector_set = kmalloc_array(crtc_req->count_connectors,
2872 sizeof(struct drm_connector *),
2873 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002874 if (!connector_set) {
2875 ret = -ENOMEM;
2876 goto out;
2877 }
2878
2879 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002880 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002881 if (get_user(out_id, &set_connectors_ptr[i])) {
2882 ret = -EFAULT;
2883 goto out;
2884 }
2885
Rob Clarka2b34e22013-10-05 16:36:52 -04002886 connector = drm_connector_find(dev, out_id);
2887 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002888 DRM_DEBUG_KMS("Connector id %d unknown\n",
2889 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002890 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002891 goto out;
2892 }
Jerome Glisse94401062010-07-15 15:43:25 -04002893 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2894 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002895 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002896
2897 connector_set[i] = connector;
2898 }
2899 }
2900
2901 set.crtc = crtc;
2902 set.x = crtc_req->x;
2903 set.y = crtc_req->y;
2904 set.mode = mode;
2905 set.connectors = connector_set;
2906 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002907 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002908 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002909
2910out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002911 if (fb)
2912 drm_framebuffer_unreference(fb);
2913
Dave Airlief453ba02008-11-07 14:05:41 -08002914 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002915 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002916 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002917 return ret;
2918}
2919
Matt Roper161d0dc2014-06-10 08:28:10 -07002920/**
2921 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2922 * universal plane handler call
2923 * @crtc: crtc to update cursor for
2924 * @req: data pointer for the ioctl
2925 * @file_priv: drm file for the ioctl call
2926 *
2927 * Legacy cursor ioctl's work directly with driver buffer handles. To
2928 * translate legacy ioctl calls into universal plane handler calls, we need to
2929 * wrap the native buffer handle in a drm_framebuffer.
2930 *
2931 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2932 * buffer with a pitch of 4*width; the universal plane interface should be used
2933 * directly in cases where the hardware can support other buffer settings and
2934 * userspace wants to make use of these capabilities.
2935 *
2936 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002937 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002938 */
2939static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2940 struct drm_mode_cursor2 *req,
2941 struct drm_file *file_priv)
2942{
2943 struct drm_device *dev = crtc->dev;
2944 struct drm_framebuffer *fb = NULL;
2945 struct drm_mode_fb_cmd2 fbreq = {
2946 .width = req->width,
2947 .height = req->height,
2948 .pixel_format = DRM_FORMAT_ARGB8888,
2949 .pitches = { req->width * 4 },
2950 .handles = { req->handle },
2951 };
2952 int32_t crtc_x, crtc_y;
2953 uint32_t crtc_w = 0, crtc_h = 0;
2954 uint32_t src_w = 0, src_h = 0;
2955 int ret = 0;
2956
2957 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002958 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002959
2960 /*
2961 * Obtain fb we'll be using (either new or existing) and take an extra
2962 * reference to it if fb != null. setplane will take care of dropping
2963 * the reference if the plane update fails.
2964 */
2965 if (req->flags & DRM_MODE_CURSOR_BO) {
2966 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002967 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002968 if (IS_ERR(fb)) {
2969 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2970 return PTR_ERR(fb);
2971 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002972 } else {
2973 fb = NULL;
2974 }
2975 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002976 fb = crtc->cursor->fb;
2977 if (fb)
2978 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002979 }
2980
2981 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2982 crtc_x = req->x;
2983 crtc_y = req->y;
2984 } else {
2985 crtc_x = crtc->cursor_x;
2986 crtc_y = crtc->cursor_y;
2987 }
2988
2989 if (fb) {
2990 crtc_w = fb->width;
2991 crtc_h = fb->height;
2992 src_w = fb->width << 16;
2993 src_h = fb->height << 16;
2994 }
2995
2996 /*
2997 * setplane_internal will take care of deref'ing either the old or new
2998 * framebuffer depending on success.
2999 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02003000 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07003001 crtc_x, crtc_y, crtc_w, crtc_h,
3002 0, 0, src_w, src_h);
3003
3004 /* Update successful; save new cursor position, if necessary */
3005 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
3006 crtc->cursor_x = req->x;
3007 crtc->cursor_y = req->y;
3008 }
3009
3010 return ret;
3011}
3012
Dave Airlie4c813d42013-06-20 11:48:52 +10003013static int drm_mode_cursor_common(struct drm_device *dev,
3014 struct drm_mode_cursor2 *req,
3015 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003016{
Dave Airlief453ba02008-11-07 14:05:41 -08003017 struct drm_crtc *crtc;
3018 int ret = 0;
3019
Dave Airliefb3b06c2011-02-08 13:55:21 +10003020 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3021 return -EINVAL;
3022
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00003023 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08003024 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003025
Rob Clarka2b34e22013-10-05 16:36:52 -04003026 crtc = drm_crtc_find(dev, req->crtc_id);
3027 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08003028 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003029 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003030 }
Dave Airlief453ba02008-11-07 14:05:41 -08003031
Matt Roper161d0dc2014-06-10 08:28:10 -07003032 /*
3033 * If this crtc has a universal cursor plane, call that plane's update
3034 * handler rather than using legacy cursor handlers.
3035 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01003036 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02003037 if (crtc->cursor) {
3038 ret = drm_mode_cursor_universal(crtc, req, file_priv);
3039 goto out;
3040 }
3041
Dave Airlief453ba02008-11-07 14:05:41 -08003042 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10003043 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08003044 ret = -ENXIO;
3045 goto out;
3046 }
3047 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003048 if (crtc->funcs->cursor_set2)
3049 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
3050 req->width, req->height, req->hot_x, req->hot_y);
3051 else
3052 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
3053 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08003054 }
3055
3056 if (req->flags & DRM_MODE_CURSOR_MOVE) {
3057 if (crtc->funcs->cursor_move) {
3058 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
3059 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08003060 ret = -EFAULT;
3061 goto out;
3062 }
3063 }
3064out:
Daniel Vetterd059f652014-07-25 18:07:40 +02003065 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01003066
Dave Airlief453ba02008-11-07 14:05:41 -08003067 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10003068
3069}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003070
3071
3072/**
3073 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3074 * @dev: drm device for the ioctl
3075 * @data: data pointer for the ioctl
3076 * @file_priv: drm file for the ioctl call
3077 *
3078 * Set the cursor configuration based on user request.
3079 *
3080 * Called by the user via ioctl.
3081 *
3082 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003083 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003084 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003085int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003086 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003087{
3088 struct drm_mode_cursor *req = data;
3089 struct drm_mode_cursor2 new_req;
3090
3091 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3092 new_req.hot_x = new_req.hot_y = 0;
3093
3094 return drm_mode_cursor_common(dev, &new_req, file_priv);
3095}
3096
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003097/**
3098 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3099 * @dev: drm device for the ioctl
3100 * @data: data pointer for the ioctl
3101 * @file_priv: drm file for the ioctl call
3102 *
3103 * Set the cursor configuration based on user request. This implements the 2nd
3104 * version of the cursor ioctl, which allows userspace to additionally specify
3105 * the hotspot of the pointer.
3106 *
3107 * Called by the user via ioctl.
3108 *
3109 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003110 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003111 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003112int drm_mode_cursor2_ioctl(struct drm_device *dev,
3113 void *data, struct drm_file *file_priv)
3114{
3115 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003116
Dave Airlie4c813d42013-06-20 11:48:52 +10003117 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003118}
3119
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003120/**
3121 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3122 * @bpp: bits per pixels
3123 * @depth: bit depth per pixel
3124 *
3125 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3126 * Useful in fbdev emulation code, since that deals in those values.
3127 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003128uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3129{
3130 uint32_t fmt;
3131
3132 switch (bpp) {
3133 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003134 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003135 break;
3136 case 16:
3137 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003138 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003139 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003140 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003141 break;
3142 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003143 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003144 break;
3145 case 32:
3146 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003147 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003148 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003149 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003150 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003151 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003152 break;
3153 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003154 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3155 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003156 break;
3157 }
3158
3159 return fmt;
3160}
3161EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3162
Dave Airlief453ba02008-11-07 14:05:41 -08003163/**
3164 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003165 * @dev: drm device for the ioctl
3166 * @data: data pointer for the ioctl
3167 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003168 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003169 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003170 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003171 *
3172 * Called by the user via ioctl.
3173 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003174 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003175 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003176 */
3177int drm_mode_addfb(struct drm_device *dev,
3178 void *data, struct drm_file *file_priv)
3179{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003180 struct drm_mode_fb_cmd *or = data;
3181 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003182 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003183
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003184 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003185 r.fb_id = or->fb_id;
3186 r.width = or->width;
3187 r.height = or->height;
3188 r.pitches[0] = or->pitch;
3189 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3190 r.handles[0] = or->handle;
3191
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003192 ret = drm_mode_addfb2(dev, &r, file_priv);
3193 if (ret)
3194 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003195
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003196 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003197
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003198 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003199}
3200
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003201static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003202{
3203 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3204
3205 switch (format) {
3206 case DRM_FORMAT_C8:
3207 case DRM_FORMAT_RGB332:
3208 case DRM_FORMAT_BGR233:
3209 case DRM_FORMAT_XRGB4444:
3210 case DRM_FORMAT_XBGR4444:
3211 case DRM_FORMAT_RGBX4444:
3212 case DRM_FORMAT_BGRX4444:
3213 case DRM_FORMAT_ARGB4444:
3214 case DRM_FORMAT_ABGR4444:
3215 case DRM_FORMAT_RGBA4444:
3216 case DRM_FORMAT_BGRA4444:
3217 case DRM_FORMAT_XRGB1555:
3218 case DRM_FORMAT_XBGR1555:
3219 case DRM_FORMAT_RGBX5551:
3220 case DRM_FORMAT_BGRX5551:
3221 case DRM_FORMAT_ARGB1555:
3222 case DRM_FORMAT_ABGR1555:
3223 case DRM_FORMAT_RGBA5551:
3224 case DRM_FORMAT_BGRA5551:
3225 case DRM_FORMAT_RGB565:
3226 case DRM_FORMAT_BGR565:
3227 case DRM_FORMAT_RGB888:
3228 case DRM_FORMAT_BGR888:
3229 case DRM_FORMAT_XRGB8888:
3230 case DRM_FORMAT_XBGR8888:
3231 case DRM_FORMAT_RGBX8888:
3232 case DRM_FORMAT_BGRX8888:
3233 case DRM_FORMAT_ARGB8888:
3234 case DRM_FORMAT_ABGR8888:
3235 case DRM_FORMAT_RGBA8888:
3236 case DRM_FORMAT_BGRA8888:
3237 case DRM_FORMAT_XRGB2101010:
3238 case DRM_FORMAT_XBGR2101010:
3239 case DRM_FORMAT_RGBX1010102:
3240 case DRM_FORMAT_BGRX1010102:
3241 case DRM_FORMAT_ARGB2101010:
3242 case DRM_FORMAT_ABGR2101010:
3243 case DRM_FORMAT_RGBA1010102:
3244 case DRM_FORMAT_BGRA1010102:
3245 case DRM_FORMAT_YUYV:
3246 case DRM_FORMAT_YVYU:
3247 case DRM_FORMAT_UYVY:
3248 case DRM_FORMAT_VYUY:
3249 case DRM_FORMAT_AYUV:
3250 case DRM_FORMAT_NV12:
3251 case DRM_FORMAT_NV21:
3252 case DRM_FORMAT_NV16:
3253 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003254 case DRM_FORMAT_NV24:
3255 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003256 case DRM_FORMAT_YUV410:
3257 case DRM_FORMAT_YVU410:
3258 case DRM_FORMAT_YUV411:
3259 case DRM_FORMAT_YVU411:
3260 case DRM_FORMAT_YUV420:
3261 case DRM_FORMAT_YVU420:
3262 case DRM_FORMAT_YUV422:
3263 case DRM_FORMAT_YVU422:
3264 case DRM_FORMAT_YUV444:
3265 case DRM_FORMAT_YVU444:
3266 return 0;
3267 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003268 DRM_DEBUG_KMS("invalid pixel format %s\n",
3269 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003270 return -EINVAL;
3271 }
3272}
3273
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003274static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003275{
3276 int ret, hsub, vsub, num_planes, i;
3277
3278 ret = format_check(r);
3279 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003280 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3281 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003282 return ret;
3283 }
3284
3285 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3286 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3287 num_planes = drm_format_num_planes(r->pixel_format);
3288
3289 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003290 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003291 return -EINVAL;
3292 }
3293
3294 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003295 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003296 return -EINVAL;
3297 }
3298
3299 for (i = 0; i < num_planes; i++) {
3300 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003301 unsigned int height = r->height / (i != 0 ? vsub : 1);
3302 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003303
3304 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003305 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003306 return -EINVAL;
3307 }
3308
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003309 if ((uint64_t) width * cpp > UINT_MAX)
3310 return -ERANGE;
3311
3312 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3313 return -ERANGE;
3314
3315 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003316 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003317 return -EINVAL;
3318 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003319
3320 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3321 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3322 r->modifier[i], i);
3323 return -EINVAL;
3324 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003325 }
3326
3327 return 0;
3328}
3329
Chris Wilson9a6f5132015-02-25 13:45:26 +00003330static struct drm_framebuffer *
3331internal_framebuffer_create(struct drm_device *dev,
3332 struct drm_mode_fb_cmd2 *r,
3333 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003334{
3335 struct drm_mode_config *config = &dev->mode_config;
3336 struct drm_framebuffer *fb;
3337 int ret;
3338
Rob Clarke3eb3252015-02-05 14:41:52 +00003339 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003340 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3341 return ERR_PTR(-EINVAL);
3342 }
3343
3344 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3345 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3346 r->width, config->min_width, config->max_width);
3347 return ERR_PTR(-EINVAL);
3348 }
3349 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3350 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3351 r->height, config->min_height, config->max_height);
3352 return ERR_PTR(-EINVAL);
3353 }
3354
Rob Clarke3eb3252015-02-05 14:41:52 +00003355 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3356 !dev->mode_config.allow_fb_modifiers) {
3357 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3358 return ERR_PTR(-EINVAL);
3359 }
3360
Matt Roperc394c2b2014-06-10 08:28:08 -07003361 ret = framebuffer_check(r);
3362 if (ret)
3363 return ERR_PTR(ret);
3364
3365 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3366 if (IS_ERR(fb)) {
3367 DRM_DEBUG_KMS("could not create framebuffer\n");
3368 return fb;
3369 }
3370
Matt Roperc394c2b2014-06-10 08:28:08 -07003371 return fb;
3372}
3373
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003374/**
3375 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003376 * @dev: drm device for the ioctl
3377 * @data: data pointer for the ioctl
3378 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003379 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003380 * Add a new FB to the specified CRTC, given a user request with format. This is
3381 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3382 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003383 *
3384 * Called by the user via ioctl.
3385 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003386 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003387 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003388 */
3389int drm_mode_addfb2(struct drm_device *dev,
3390 void *data, struct drm_file *file_priv)
3391{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003392 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003393 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003394
Dave Airliefb3b06c2011-02-08 13:55:21 +10003395 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3396 return -EINVAL;
3397
Chris Wilson9a6f5132015-02-25 13:45:26 +00003398 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003399 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003400 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003401
Chris Wilson9a6f5132015-02-25 13:45:26 +00003402 /* Transfer ownership to the filp for reaping on close */
3403
3404 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3405 mutex_lock(&file_priv->fbs_lock);
3406 r->fb_id = fb->base.id;
3407 list_add(&fb->filp_head, &file_priv->fbs);
3408 mutex_unlock(&file_priv->fbs_lock);
3409
Matt Roperc394c2b2014-06-10 08:28:08 -07003410 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003411}
3412
3413/**
3414 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003415 * @dev: drm device for the ioctl
3416 * @data: data pointer for the ioctl
3417 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003418 *
Dave Airlief453ba02008-11-07 14:05:41 -08003419 * Remove the FB specified by the user.
3420 *
3421 * Called by the user via ioctl.
3422 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003423 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003424 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003425 */
3426int drm_mode_rmfb(struct drm_device *dev,
3427 void *data, struct drm_file *file_priv)
3428{
Dave Airlief453ba02008-11-07 14:05:41 -08003429 struct drm_framebuffer *fb = NULL;
3430 struct drm_framebuffer *fbl = NULL;
3431 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003432 int found = 0;
3433
Dave Airliefb3b06c2011-02-08 13:55:21 +10003434 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3435 return -EINVAL;
3436
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003437 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003438 mutex_lock(&dev->mode_config.fb_lock);
3439 fb = __drm_framebuffer_lookup(dev, *id);
3440 if (!fb)
3441 goto fail_lookup;
3442
Dave Airlief453ba02008-11-07 14:05:41 -08003443 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3444 if (fb == fbl)
3445 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003446 if (!found)
3447 goto fail_lookup;
3448
3449 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3450 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003451
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003452 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003453 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003454 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003455
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003456 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003457
Daniel Vetter2b677e82012-12-10 21:16:05 +01003458 return 0;
3459
3460fail_lookup:
3461 mutex_unlock(&dev->mode_config.fb_lock);
3462 mutex_unlock(&file_priv->fbs_lock);
3463
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003464 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003465}
3466
3467/**
3468 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003469 * @dev: drm device for the ioctl
3470 * @data: data pointer for the ioctl
3471 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003472 *
Dave Airlief453ba02008-11-07 14:05:41 -08003473 * Lookup the FB given its ID and return info about it.
3474 *
3475 * Called by the user via ioctl.
3476 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003477 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003478 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003479 */
3480int drm_mode_getfb(struct drm_device *dev,
3481 void *data, struct drm_file *file_priv)
3482{
3483 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003484 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003485 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003486
Dave Airliefb3b06c2011-02-08 13:55:21 +10003487 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3488 return -EINVAL;
3489
Daniel Vetter786b99e2012-12-02 21:53:40 +01003490 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003491 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003492 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003493
3494 r->height = fb->height;
3495 r->width = fb->width;
3496 r->depth = fb->depth;
3497 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003498 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003499 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003500 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003501 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003502 ret = fb->funcs->create_handle(fb, file_priv,
3503 &r->handle);
3504 } else {
3505 /* GET_FB() is an unprivileged ioctl so we must not
3506 * return a buffer-handle to non-master processes! For
3507 * backwards-compatibility reasons, we cannot make
3508 * GET_FB() privileged, so just return an invalid handle
3509 * for non-masters. */
3510 r->handle = 0;
3511 ret = 0;
3512 }
3513 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003514 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003515 }
Dave Airlief453ba02008-11-07 14:05:41 -08003516
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003517 drm_framebuffer_unreference(fb);
3518
Dave Airlief453ba02008-11-07 14:05:41 -08003519 return ret;
3520}
3521
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003522/**
3523 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3524 * @dev: drm device for the ioctl
3525 * @data: data pointer for the ioctl
3526 * @file_priv: drm file for the ioctl call
3527 *
3528 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3529 * rectangle list. Generic userspace which does frontbuffer rendering must call
3530 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3531 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3532 *
3533 * Modesetting drivers which always update the frontbuffer do not need to
3534 * implement the corresponding ->dirty framebuffer callback.
3535 *
3536 * Called by the user via ioctl.
3537 *
3538 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003539 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003540 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003541int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3542 void *data, struct drm_file *file_priv)
3543{
3544 struct drm_clip_rect __user *clips_ptr;
3545 struct drm_clip_rect *clips = NULL;
3546 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003547 struct drm_framebuffer *fb;
3548 unsigned flags;
3549 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003550 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003551
Dave Airliefb3b06c2011-02-08 13:55:21 +10003552 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3553 return -EINVAL;
3554
Daniel Vetter786b99e2012-12-02 21:53:40 +01003555 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003556 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003557 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003558
3559 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003560 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003561
3562 if (!num_clips != !clips_ptr) {
3563 ret = -EINVAL;
3564 goto out_err1;
3565 }
3566
3567 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3568
3569 /* If userspace annotates copy, clips must come in pairs */
3570 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3571 ret = -EINVAL;
3572 goto out_err1;
3573 }
3574
3575 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003576 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3577 ret = -EINVAL;
3578 goto out_err1;
3579 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003580 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003581 if (!clips) {
3582 ret = -ENOMEM;
3583 goto out_err1;
3584 }
3585
3586 ret = copy_from_user(clips, clips_ptr,
3587 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003588 if (ret) {
3589 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003590 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003591 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003592 }
3593
3594 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003595 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3596 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003597 } else {
3598 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003599 }
3600
3601out_err2:
3602 kfree(clips);
3603out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003604 drm_framebuffer_unreference(fb);
3605
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003606 return ret;
3607}
3608
3609
Dave Airlief453ba02008-11-07 14:05:41 -08003610/**
3611 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003612 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003613 *
Dave Airlief453ba02008-11-07 14:05:41 -08003614 * Destroy all the FBs associated with @filp.
3615 *
3616 * Called by the user via ioctl.
3617 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003618 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003619 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003620 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003621void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003622{
Dave Airlief453ba02008-11-07 14:05:41 -08003623 struct drm_device *dev = priv->minor->dev;
3624 struct drm_framebuffer *fb, *tfb;
3625
Daniel Vetter1b116292014-09-24 21:51:06 +02003626 /*
3627 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003628 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003629 * avoid upsetting lockdep since the universal cursor code adds a
3630 * framebuffer while holding mutex locks.
3631 *
3632 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3633 * locks is impossible here since no one else but this function can get
3634 * at it any more.
3635 */
Dave Airlief453ba02008-11-07 14:05:41 -08003636 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003637
3638 mutex_lock(&dev->mode_config.fb_lock);
3639 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3640 __drm_framebuffer_unregister(dev, fb);
3641 mutex_unlock(&dev->mode_config.fb_lock);
3642
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003643 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003644
3645 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003646 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003647 }
Dave Airlief453ba02008-11-07 14:05:41 -08003648}
3649
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003650/**
3651 * drm_property_create - create a new property type
3652 * @dev: drm device
3653 * @flags: flags specifying the property type
3654 * @name: name of the property
3655 * @num_values: number of pre-defined values
3656 *
3657 * This creates a new generic drm property which can then be attached to a drm
3658 * object with drm_object_attach_property. The returned property object must be
3659 * freed with drm_property_destroy.
3660 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003661 * Note that the DRM core keeps a per-device list of properties and that, if
3662 * drm_mode_config_cleanup() is called, it will destroy all properties created
3663 * by the driver.
3664 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003665 * Returns:
3666 * A pointer to the newly created property on success, NULL on failure.
3667 */
Dave Airlief453ba02008-11-07 14:05:41 -08003668struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3669 const char *name, int num_values)
3670{
3671 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003672 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003673
3674 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3675 if (!property)
3676 return NULL;
3677
Rob Clark98f75de2014-05-30 11:37:03 -04003678 property->dev = dev;
3679
Dave Airlief453ba02008-11-07 14:05:41 -08003680 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003681 property->values = kcalloc(num_values, sizeof(uint64_t),
3682 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003683 if (!property->values)
3684 goto fail;
3685 }
3686
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003687 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3688 if (ret)
3689 goto fail;
3690
Dave Airlief453ba02008-11-07 14:05:41 -08003691 property->flags = flags;
3692 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003693 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003694
Vinson Lee471dd2e2011-11-10 11:55:40 -08003695 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003696 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003697 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3698 }
Dave Airlief453ba02008-11-07 14:05:41 -08003699
3700 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003701
3702 WARN_ON(!drm_property_type_valid(property));
3703
Dave Airlief453ba02008-11-07 14:05:41 -08003704 return property;
3705fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003706 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003707 kfree(property);
3708 return NULL;
3709}
3710EXPORT_SYMBOL(drm_property_create);
3711
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003712/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003713 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003714 * @dev: drm device
3715 * @flags: flags specifying the property type
3716 * @name: name of the property
3717 * @props: enumeration lists with property values
3718 * @num_values: number of pre-defined values
3719 *
3720 * This creates a new generic drm property which can then be attached to a drm
3721 * object with drm_object_attach_property. The returned property object must be
3722 * freed with drm_property_destroy.
3723 *
3724 * Userspace is only allowed to set one of the predefined values for enumeration
3725 * properties.
3726 *
3727 * Returns:
3728 * A pointer to the newly created property on success, NULL on failure.
3729 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003730struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3731 const char *name,
3732 const struct drm_prop_enum_list *props,
3733 int num_values)
3734{
3735 struct drm_property *property;
3736 int i, ret;
3737
3738 flags |= DRM_MODE_PROP_ENUM;
3739
3740 property = drm_property_create(dev, flags, name, num_values);
3741 if (!property)
3742 return NULL;
3743
3744 for (i = 0; i < num_values; i++) {
3745 ret = drm_property_add_enum(property, i,
3746 props[i].type,
3747 props[i].name);
3748 if (ret) {
3749 drm_property_destroy(dev, property);
3750 return NULL;
3751 }
3752 }
3753
3754 return property;
3755}
3756EXPORT_SYMBOL(drm_property_create_enum);
3757
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003758/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003759 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003760 * @dev: drm device
3761 * @flags: flags specifying the property type
3762 * @name: name of the property
3763 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003764 * @num_props: size of the @props array
3765 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003766 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003767 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003768 * object with drm_object_attach_property. The returned property object must be
3769 * freed with drm_property_destroy.
3770 *
3771 * Compared to plain enumeration properties userspace is allowed to set any
3772 * or'ed together combination of the predefined property bitflag values
3773 *
3774 * Returns:
3775 * A pointer to the newly created property on success, NULL on failure.
3776 */
Rob Clark49e27542012-05-17 02:23:26 -06003777struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3778 int flags, const char *name,
3779 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303780 int num_props,
3781 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003782{
3783 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303784 int i, ret, index = 0;
3785 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003786
3787 flags |= DRM_MODE_PROP_BITMASK;
3788
3789 property = drm_property_create(dev, flags, name, num_values);
3790 if (!property)
3791 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303792 for (i = 0; i < num_props; i++) {
3793 if (!(supported_bits & (1ULL << props[i].type)))
3794 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003795
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303796 if (WARN_ON(index >= num_values)) {
3797 drm_property_destroy(dev, property);
3798 return NULL;
3799 }
3800
3801 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003802 props[i].type,
3803 props[i].name);
3804 if (ret) {
3805 drm_property_destroy(dev, property);
3806 return NULL;
3807 }
3808 }
3809
3810 return property;
3811}
3812EXPORT_SYMBOL(drm_property_create_bitmask);
3813
Rob Clarkebc44cf2012-09-12 22:22:31 -05003814static struct drm_property *property_create_range(struct drm_device *dev,
3815 int flags, const char *name,
3816 uint64_t min, uint64_t max)
3817{
3818 struct drm_property *property;
3819
3820 property = drm_property_create(dev, flags, name, 2);
3821 if (!property)
3822 return NULL;
3823
3824 property->values[0] = min;
3825 property->values[1] = max;
3826
3827 return property;
3828}
3829
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003830/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003831 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003832 * @dev: drm device
3833 * @flags: flags specifying the property type
3834 * @name: name of the property
3835 * @min: minimum value of the property
3836 * @max: maximum value of the property
3837 *
3838 * This creates a new generic drm property which can then be attached to a drm
3839 * object with drm_object_attach_property. The returned property object must be
3840 * freed with drm_property_destroy.
3841 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003842 * Userspace is allowed to set any unsigned integer value in the (min, max)
3843 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003844 *
3845 * Returns:
3846 * A pointer to the newly created property on success, NULL on failure.
3847 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003848struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3849 const char *name,
3850 uint64_t min, uint64_t max)
3851{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003852 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3853 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003854}
3855EXPORT_SYMBOL(drm_property_create_range);
3856
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003857/**
3858 * drm_property_create_signed_range - create a new signed ranged property type
3859 * @dev: drm device
3860 * @flags: flags specifying the property type
3861 * @name: name of the property
3862 * @min: minimum value of the property
3863 * @max: maximum value of the property
3864 *
3865 * This creates a new generic drm property which can then be attached to a drm
3866 * object with drm_object_attach_property. The returned property object must be
3867 * freed with drm_property_destroy.
3868 *
3869 * Userspace is allowed to set any signed integer value in the (min, max)
3870 * range inclusive.
3871 *
3872 * Returns:
3873 * A pointer to the newly created property on success, NULL on failure.
3874 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003875struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3876 int flags, const char *name,
3877 int64_t min, int64_t max)
3878{
3879 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3880 name, I642U64(min), I642U64(max));
3881}
3882EXPORT_SYMBOL(drm_property_create_signed_range);
3883
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003884/**
3885 * drm_property_create_object - create a new object property type
3886 * @dev: drm device
3887 * @flags: flags specifying the property type
3888 * @name: name of the property
3889 * @type: object type from DRM_MODE_OBJECT_* defines
3890 *
3891 * This creates a new generic drm property which can then be attached to a drm
3892 * object with drm_object_attach_property. The returned property object must be
3893 * freed with drm_property_destroy.
3894 *
3895 * Userspace is only allowed to set this to any property value of the given
3896 * @type. Only useful for atomic properties, which is enforced.
3897 *
3898 * Returns:
3899 * A pointer to the newly created property on success, NULL on failure.
3900 */
Rob Clark98f75de2014-05-30 11:37:03 -04003901struct drm_property *drm_property_create_object(struct drm_device *dev,
3902 int flags, const char *name, uint32_t type)
3903{
3904 struct drm_property *property;
3905
3906 flags |= DRM_MODE_PROP_OBJECT;
3907
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003908 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3909 return NULL;
3910
Rob Clark98f75de2014-05-30 11:37:03 -04003911 property = drm_property_create(dev, flags, name, 1);
3912 if (!property)
3913 return NULL;
3914
3915 property->values[0] = type;
3916
3917 return property;
3918}
3919EXPORT_SYMBOL(drm_property_create_object);
3920
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003921/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003922 * drm_property_create_bool - create a new boolean property type
3923 * @dev: drm device
3924 * @flags: flags specifying the property type
3925 * @name: name of the property
3926 *
3927 * This creates a new generic drm property which can then be attached to a drm
3928 * object with drm_object_attach_property. The returned property object must be
3929 * freed with drm_property_destroy.
3930 *
3931 * This is implemented as a ranged property with only {0, 1} as valid values.
3932 *
3933 * Returns:
3934 * A pointer to the newly created property on success, NULL on failure.
3935 */
3936struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3937 const char *name)
3938{
3939 return drm_property_create_range(dev, flags, name, 0, 1);
3940}
3941EXPORT_SYMBOL(drm_property_create_bool);
3942
3943/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003944 * drm_property_add_enum - add a possible value to an enumeration property
3945 * @property: enumeration property to change
3946 * @index: index of the new enumeration
3947 * @value: value of the new enumeration
3948 * @name: symbolic name of the new enumeration
3949 *
3950 * This functions adds enumerations to a property.
3951 *
3952 * It's use is deprecated, drivers should use one of the more specific helpers
3953 * to directly create the property with all enumerations already attached.
3954 *
3955 * Returns:
3956 * Zero on success, error code on failure.
3957 */
Dave Airlief453ba02008-11-07 14:05:41 -08003958int drm_property_add_enum(struct drm_property *property, int index,
3959 uint64_t value, const char *name)
3960{
3961 struct drm_property_enum *prop_enum;
3962
Rob Clark5ea22f22014-05-30 11:34:01 -04003963 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3964 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003965 return -EINVAL;
3966
3967 /*
3968 * Bitmask enum properties have the additional constraint of values
3969 * from 0 to 63
3970 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003971 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3972 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003973 return -EINVAL;
3974
Daniel Vetter3758b342014-11-19 18:38:10 +01003975 if (!list_empty(&property->enum_list)) {
3976 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003977 if (prop_enum->value == value) {
3978 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3979 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3980 return 0;
3981 }
3982 }
3983 }
3984
3985 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3986 if (!prop_enum)
3987 return -ENOMEM;
3988
3989 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3990 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3991 prop_enum->value = value;
3992
3993 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003994 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003995 return 0;
3996}
3997EXPORT_SYMBOL(drm_property_add_enum);
3998
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003999/**
4000 * drm_property_destroy - destroy a drm property
4001 * @dev: drm device
4002 * @property: property to destry
4003 *
4004 * This function frees a property including any attached resources like
4005 * enumeration values.
4006 */
Dave Airlief453ba02008-11-07 14:05:41 -08004007void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
4008{
4009 struct drm_property_enum *prop_enum, *pt;
4010
Daniel Vetter3758b342014-11-19 18:38:10 +01004011 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004012 list_del(&prop_enum->head);
4013 kfree(prop_enum);
4014 }
4015
4016 if (property->num_values)
4017 kfree(property->values);
4018 drm_mode_object_put(dev, &property->base);
4019 list_del(&property->head);
4020 kfree(property);
4021}
4022EXPORT_SYMBOL(drm_property_destroy);
4023
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004024/**
4025 * drm_object_attach_property - attach a property to a modeset object
4026 * @obj: drm modeset object
4027 * @property: property to attach
4028 * @init_val: initial value of the property
4029 *
4030 * This attaches the given property to the modeset object with the given initial
4031 * value. Currently this function cannot fail since the properties are stored in
4032 * a statically sized array.
4033 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004034void drm_object_attach_property(struct drm_mode_object *obj,
4035 struct drm_property *property,
4036 uint64_t init_val)
4037{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004038 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004039
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004040 if (count == DRM_OBJECT_MAX_PROPERTY) {
4041 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4042 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4043 "you see this message on the same object type.\n",
4044 obj->type);
4045 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03004046 }
4047
Rob Clarkb17cd752014-12-16 18:05:30 -05004048 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004049 obj->properties->values[count] = init_val;
4050 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05004051 if (property->flags & DRM_MODE_PROP_ATOMIC)
4052 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03004053}
4054EXPORT_SYMBOL(drm_object_attach_property);
4055
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004056/**
4057 * drm_object_property_set_value - set the value of a property
4058 * @obj: drm mode object to set property value for
4059 * @property: property to set
4060 * @val: value the property should be set to
4061 *
4062 * This functions sets a given property on a given object. This function only
4063 * changes the software state of the property, it does not call into the
4064 * driver's ->set_property callback.
4065 *
4066 * Returns:
4067 * Zero on success, error code on failure.
4068 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004069int drm_object_property_set_value(struct drm_mode_object *obj,
4070 struct drm_property *property, uint64_t val)
4071{
4072 int i;
4073
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004074 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004075 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004076 obj->properties->values[i] = val;
4077 return 0;
4078 }
4079 }
4080
4081 return -EINVAL;
4082}
4083EXPORT_SYMBOL(drm_object_property_set_value);
4084
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004085/**
4086 * drm_object_property_get_value - retrieve the value of a property
4087 * @obj: drm mode object to get property value from
4088 * @property: property to retrieve
4089 * @val: storage for the property value
4090 *
4091 * This function retrieves the softare state of the given property for the given
4092 * property. Since there is no driver callback to retrieve the current property
4093 * value this might be out of sync with the hardware, depending upon the driver
4094 * and property.
4095 *
4096 * Returns:
4097 * Zero on success, error code on failure.
4098 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004099int drm_object_property_get_value(struct drm_mode_object *obj,
4100 struct drm_property *property, uint64_t *val)
4101{
4102 int i;
4103
Rob Clark88a48e22014-12-18 16:01:50 -05004104 /* read-only properties bypass atomic mechanism and still store
4105 * their value in obj->properties->values[].. mostly to avoid
4106 * having to deal w/ EDID and similar props in atomic paths:
4107 */
4108 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4109 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4110 return drm_atomic_get_property(obj, property, val);
4111
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004112 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004113 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004114 *val = obj->properties->values[i];
4115 return 0;
4116 }
4117 }
4118
4119 return -EINVAL;
4120}
4121EXPORT_SYMBOL(drm_object_property_get_value);
4122
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004123/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004124 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004125 * @dev: DRM device
4126 * @data: ioctl data
4127 * @file_priv: DRM file info
4128 *
Daniel Vetter1a498632014-11-19 18:38:09 +01004129 * This function retrieves the metadata for a given property, like the different
4130 * possible values for an enum property or the limits for a range property.
4131 *
4132 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004133 *
4134 * Called by the user via ioctl.
4135 *
4136 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004137 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004138 */
Dave Airlief453ba02008-11-07 14:05:41 -08004139int drm_mode_getproperty_ioctl(struct drm_device *dev,
4140 void *data, struct drm_file *file_priv)
4141{
Dave Airlief453ba02008-11-07 14:05:41 -08004142 struct drm_mode_get_property *out_resp = data;
4143 struct drm_property *property;
4144 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004145 int value_count = 0;
4146 int ret = 0, i;
4147 int copied;
4148 struct drm_property_enum *prop_enum;
4149 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004150 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004151
Dave Airliefb3b06c2011-02-08 13:55:21 +10004152 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4153 return -EINVAL;
4154
Daniel Vetter84849902012-12-02 00:28:11 +01004155 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004156 property = drm_property_find(dev, out_resp->prop_id);
4157 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004158 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004159 goto done;
4160 }
Dave Airlief453ba02008-11-07 14:05:41 -08004161
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)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004164 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004165 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004166 }
4167
4168 value_count = property->num_values;
4169
4170 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4171 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4172 out_resp->flags = property->flags;
4173
4174 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004175 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004176 for (i = 0; i < value_count; i++) {
4177 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4178 ret = -EFAULT;
4179 goto done;
4180 }
4181 }
4182 }
4183 out_resp->count_values = value_count;
4184
Rob Clark5ea22f22014-05-30 11:34:01 -04004185 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4186 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004187 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4188 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004189 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004190 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004191
4192 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4193 ret = -EFAULT;
4194 goto done;
4195 }
4196
4197 if (copy_to_user(&enum_ptr[copied].name,
4198 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4199 ret = -EFAULT;
4200 goto done;
4201 }
4202 copied++;
4203 }
4204 }
4205 out_resp->count_enum_blobs = enum_count;
4206 }
4207
Daniel Vetter3758b342014-11-19 18:38:10 +01004208 /*
4209 * NOTE: The idea seems to have been to use this to read all the blob
4210 * property values. But nothing ever added them to the corresponding
4211 * list, userspace always used the special-purpose get_blob ioctl to
4212 * read the value for a blob property. It also doesn't make a lot of
4213 * sense to return values here when everything else is just metadata for
4214 * the property itself.
4215 */
4216 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4217 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004218done:
Daniel Vetter84849902012-12-02 00:28:11 +01004219 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004220 return ret;
4221}
4222
Thierry Redingecbbe592014-05-13 11:36:13 +02004223static struct drm_property_blob *
4224drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004225 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004226{
4227 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004228 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004229
4230 if (!length || !data)
4231 return NULL;
4232
4233 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4234 if (!blob)
4235 return NULL;
4236
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004237 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4238 if (ret) {
4239 kfree(blob);
4240 return NULL;
4241 }
4242
Dave Airlief453ba02008-11-07 14:05:41 -08004243 blob->length = length;
4244
4245 memcpy(blob->data, data, length);
4246
Dave Airlief453ba02008-11-07 14:05:41 -08004247 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4248 return blob;
4249}
4250
4251static void drm_property_destroy_blob(struct drm_device *dev,
4252 struct drm_property_blob *blob)
4253{
4254 drm_mode_object_put(dev, &blob->base);
4255 list_del(&blob->head);
4256 kfree(blob);
4257}
4258
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004259/**
4260 * drm_mode_getblob_ioctl - get the contents of a blob property value
4261 * @dev: DRM device
4262 * @data: ioctl data
4263 * @file_priv: DRM file info
4264 *
4265 * This function retrieves the contents of a blob property. The value stored in
4266 * an object's blob property is just a normal modeset object id.
4267 *
4268 * Called by the user via ioctl.
4269 *
4270 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004271 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004272 */
Dave Airlief453ba02008-11-07 14:05:41 -08004273int drm_mode_getblob_ioctl(struct drm_device *dev,
4274 void *data, struct drm_file *file_priv)
4275{
Dave Airlief453ba02008-11-07 14:05:41 -08004276 struct drm_mode_get_blob *out_resp = data;
4277 struct drm_property_blob *blob;
4278 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004279 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004280
Dave Airliefb3b06c2011-02-08 13:55:21 +10004281 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4282 return -EINVAL;
4283
Daniel Vetter84849902012-12-02 00:28:11 +01004284 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004285 blob = drm_property_blob_find(dev, out_resp->blob_id);
4286 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004287 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004288 goto done;
4289 }
Dave Airlief453ba02008-11-07 14:05:41 -08004290
4291 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004292 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004293 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004294 ret = -EFAULT;
4295 goto done;
4296 }
4297 }
4298 out_resp->length = blob->length;
4299
4300done:
Daniel Vetter84849902012-12-02 00:28:11 +01004301 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004302 return ret;
4303}
4304
Dave Airliecc7096f2014-10-22 12:03:04 +10004305/**
4306 * drm_mode_connector_set_path_property - set tile property on connector
4307 * @connector: connector to set property on.
4308 * @path: path to use for property.
4309 *
4310 * This creates a property to expose to userspace to specify a
4311 * connector path. This is mainly used for DisplayPort MST where
4312 * connectors have a topology and we want to allow userspace to give
4313 * them more meaningful names.
4314 *
4315 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004316 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004317 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004318int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004319 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004320{
4321 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004322 size_t size = strlen(path) + 1;
4323 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004324
4325 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4326 size, path);
4327 if (!connector->path_blob_ptr)
4328 return -EINVAL;
4329
4330 ret = drm_object_property_set_value(&connector->base,
4331 dev->mode_config.path_property,
4332 connector->path_blob_ptr->base.id);
4333 return ret;
4334}
4335EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4336
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004337/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004338 * drm_mode_connector_set_tile_property - set tile property on connector
4339 * @connector: connector to set property on.
4340 *
4341 * This looks up the tile information for a connector, and creates a
4342 * property for userspace to parse if it exists. The property is of
4343 * the form of 8 integers using ':' as a separator.
4344 *
4345 * Returns:
4346 * Zero on success, errno on failure.
4347 */
4348int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4349{
4350 struct drm_device *dev = connector->dev;
4351 int ret, size;
4352 char tile[256];
4353
4354 if (connector->tile_blob_ptr)
4355 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4356
4357 if (!connector->has_tile) {
4358 connector->tile_blob_ptr = NULL;
4359 ret = drm_object_property_set_value(&connector->base,
4360 dev->mode_config.tile_property, 0);
4361 return ret;
4362 }
4363
4364 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4365 connector->tile_group->id, connector->tile_is_single_monitor,
4366 connector->num_h_tile, connector->num_v_tile,
4367 connector->tile_h_loc, connector->tile_v_loc,
4368 connector->tile_h_size, connector->tile_v_size);
4369 size = strlen(tile) + 1;
4370
4371 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4372 size, tile);
4373 if (!connector->tile_blob_ptr)
4374 return -EINVAL;
4375
4376 ret = drm_object_property_set_value(&connector->base,
4377 dev->mode_config.tile_property,
4378 connector->tile_blob_ptr->base.id);
4379 return ret;
4380}
4381EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4382
4383/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004384 * drm_mode_connector_update_edid_property - update the edid property of a connector
4385 * @connector: drm connector
4386 * @edid: new value of the edid property
4387 *
4388 * This function creates a new blob modeset object and assigns its id to the
4389 * connector's edid property.
4390 *
4391 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004392 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004393 */
Dave Airlief453ba02008-11-07 14:05:41 -08004394int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004395 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004396{
4397 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004398 size_t size;
4399 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004400
Thomas Wood4cf2b282014-06-18 17:52:33 +01004401 /* ignore requests to set edid when overridden */
4402 if (connector->override_edid)
4403 return 0;
4404
Dave Airlief453ba02008-11-07 14:05:41 -08004405 if (connector->edid_blob_ptr)
4406 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4407
4408 /* Delete edid, when there is none. */
4409 if (!edid) {
4410 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004411 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004412 return ret;
4413 }
4414
Adam Jackson7466f4c2010-03-29 21:43:23 +00004415 size = EDID_LENGTH * (1 + edid->extensions);
4416 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4417 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004418 if (!connector->edid_blob_ptr)
4419 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004420
Rob Clark58495562012-10-11 20:50:56 -05004421 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004422 dev->mode_config.edid_property,
4423 connector->edid_blob_ptr->base.id);
4424
4425 return ret;
4426}
4427EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4428
Rob Clark3843e712014-12-16 18:05:29 -05004429/* Some properties could refer to dynamic refcnt'd objects, or things that
4430 * need special locking to handle lifetime issues (ie. to ensure the prop
4431 * value doesn't become invalid part way through the property update due to
4432 * race). The value returned by reference via 'obj' should be passed back
4433 * to drm_property_change_valid_put() after the property is set (and the
4434 * object to which the property is attached has a chance to take it's own
4435 * reference).
4436 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004437bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004438 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004439{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004440 int i;
4441
Paulo Zanoni26a34812012-05-15 18:08:59 -03004442 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4443 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004444
Rob Clark3843e712014-12-16 18:05:29 -05004445 *ref = NULL;
4446
Rob Clark5ea22f22014-05-30 11:34:01 -04004447 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004448 if (value < property->values[0] || value > property->values[1])
4449 return false;
4450 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004451 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4452 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004453
Rob Clarkebc44cf2012-09-12 22:22:31 -05004454 if (svalue < U642I64(property->values[0]) ||
4455 svalue > U642I64(property->values[1]))
4456 return false;
4457 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004458 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004459 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004460
Rob Clark49e27542012-05-17 02:23:26 -06004461 for (i = 0; i < property->num_values; i++)
4462 valid_mask |= (1ULL << property->values[i]);
4463 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004464 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004465 /* Only the driver knows */
4466 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004467 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004468 /* a zero value for an object property translates to null: */
4469 if (value == 0)
4470 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004471
4472 /* handle refcnt'd objects specially: */
4473 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4474 struct drm_framebuffer *fb;
4475 fb = drm_framebuffer_lookup(property->dev, value);
4476 if (fb) {
4477 *ref = &fb->base;
4478 return true;
4479 } else {
4480 return false;
4481 }
4482 } else {
4483 return _object_find(property->dev, value, property->values[0]) != NULL;
4484 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004485 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004486
4487 for (i = 0; i < property->num_values; i++)
4488 if (property->values[i] == value)
4489 return true;
4490 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004491}
4492
Rob Clarkd34f20d2014-12-18 16:01:56 -05004493void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004494 struct drm_mode_object *ref)
4495{
4496 if (!ref)
4497 return;
4498
4499 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4500 if (property->values[0] == DRM_MODE_OBJECT_FB)
4501 drm_framebuffer_unreference(obj_to_fb(ref));
4502 }
4503}
4504
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004505/**
4506 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4507 * @dev: DRM device
4508 * @data: ioctl data
4509 * @file_priv: DRM file info
4510 *
4511 * This function sets the current value for a connectors's property. It also
4512 * calls into a driver's ->set_property callback to update the hardware state
4513 *
4514 * Called by the user via ioctl.
4515 *
4516 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004517 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004518 */
Dave Airlief453ba02008-11-07 14:05:41 -08004519int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4520 void *data, struct drm_file *file_priv)
4521{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004522 struct drm_mode_connector_set_property *conn_set_prop = data;
4523 struct drm_mode_obj_set_property obj_set_prop = {
4524 .value = conn_set_prop->value,
4525 .prop_id = conn_set_prop->prop_id,
4526 .obj_id = conn_set_prop->connector_id,
4527 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4528 };
Dave Airlief453ba02008-11-07 14:05:41 -08004529
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004530 /* It does all the locking and checking we need */
4531 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004532}
4533
Paulo Zanonic5431882012-05-15 18:09:02 -03004534static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4535 struct drm_property *property,
4536 uint64_t value)
4537{
4538 int ret = -EINVAL;
4539 struct drm_connector *connector = obj_to_connector(obj);
4540
4541 /* Do DPMS ourselves */
4542 if (property == connector->dev->mode_config.dpms_property) {
4543 if (connector->funcs->dpms)
4544 (*connector->funcs->dpms)(connector, (int)value);
4545 ret = 0;
4546 } else if (connector->funcs->set_property)
4547 ret = connector->funcs->set_property(connector, property, value);
4548
4549 /* store the property value if successful */
4550 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004551 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004552 return ret;
4553}
4554
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004555static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4556 struct drm_property *property,
4557 uint64_t value)
4558{
4559 int ret = -EINVAL;
4560 struct drm_crtc *crtc = obj_to_crtc(obj);
4561
4562 if (crtc->funcs->set_property)
4563 ret = crtc->funcs->set_property(crtc, property, value);
4564 if (!ret)
4565 drm_object_property_set_value(obj, property, value);
4566
4567 return ret;
4568}
4569
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004570/**
4571 * drm_mode_plane_set_obj_prop - set the value of a property
4572 * @plane: drm plane object to set property value for
4573 * @property: property to set
4574 * @value: value the property should be set to
4575 *
4576 * This functions sets a given property on a given plane object. This function
4577 * calls the driver's ->set_property callback and changes the software state of
4578 * the property if the callback succeeds.
4579 *
4580 * Returns:
4581 * Zero on success, error code on failure.
4582 */
4583int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4584 struct drm_property *property,
4585 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004586{
4587 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004588 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004589
4590 if (plane->funcs->set_property)
4591 ret = plane->funcs->set_property(plane, property, value);
4592 if (!ret)
4593 drm_object_property_set_value(obj, property, value);
4594
4595 return ret;
4596}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004597EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004598
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004599/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004600 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004601 * @dev: DRM device
4602 * @data: ioctl data
4603 * @file_priv: DRM file info
4604 *
4605 * This function retrieves the current value for an object's property. Compared
4606 * to the connector specific ioctl this one is extended to also work on crtc and
4607 * plane objects.
4608 *
4609 * Called by the user via ioctl.
4610 *
4611 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004612 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004613 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004614int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4615 struct drm_file *file_priv)
4616{
4617 struct drm_mode_obj_get_properties *arg = data;
4618 struct drm_mode_object *obj;
4619 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004620
4621 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4622 return -EINVAL;
4623
Daniel Vetter84849902012-12-02 00:28:11 +01004624 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004625
4626 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4627 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004628 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004629 goto out;
4630 }
4631 if (!obj->properties) {
4632 ret = -EINVAL;
4633 goto out;
4634 }
4635
Rob Clark88a48e22014-12-18 16:01:50 -05004636 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004637 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4638 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4639 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004640
Paulo Zanonic5431882012-05-15 18:09:02 -03004641out:
Daniel Vetter84849902012-12-02 00:28:11 +01004642 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004643 return ret;
4644}
4645
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004646/**
4647 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4648 * @dev: DRM device
4649 * @data: ioctl data
4650 * @file_priv: DRM file info
4651 *
4652 * This function sets the current value for an object's property. It also calls
4653 * into a driver's ->set_property callback to update the hardware state.
4654 * Compared to the connector specific ioctl this one is extended to also work on
4655 * crtc and plane objects.
4656 *
4657 * Called by the user via ioctl.
4658 *
4659 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004660 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004661 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004662int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4663 struct drm_file *file_priv)
4664{
4665 struct drm_mode_obj_set_property *arg = data;
4666 struct drm_mode_object *arg_obj;
4667 struct drm_mode_object *prop_obj;
4668 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004669 int i, ret = -EINVAL;
4670 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004671
4672 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4673 return -EINVAL;
4674
Daniel Vetter84849902012-12-02 00:28:11 +01004675 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004676
4677 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004678 if (!arg_obj) {
4679 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004680 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004681 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004682 if (!arg_obj->properties)
4683 goto out;
4684
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004685 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004686 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004687 break;
4688
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004689 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004690 goto out;
4691
4692 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4693 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004694 if (!prop_obj) {
4695 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004696 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004697 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004698 property = obj_to_property(prop_obj);
4699
Rob Clark3843e712014-12-16 18:05:29 -05004700 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004701 goto out;
4702
4703 switch (arg_obj->type) {
4704 case DRM_MODE_OBJECT_CONNECTOR:
4705 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4706 arg->value);
4707 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004708 case DRM_MODE_OBJECT_CRTC:
4709 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4710 break;
Rob Clark4d939142012-05-17 02:23:27 -06004711 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004712 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4713 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004714 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004715 }
4716
Rob Clark3843e712014-12-16 18:05:29 -05004717 drm_property_change_valid_put(property, ref);
4718
Paulo Zanonic5431882012-05-15 18:09:02 -03004719out:
Daniel Vetter84849902012-12-02 00:28:11 +01004720 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004721 return ret;
4722}
4723
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004724/**
4725 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4726 * @connector: connector to attach
4727 * @encoder: encoder to attach @connector to
4728 *
4729 * This function links up a connector to an encoder. Note that the routing
4730 * restrictions between encoders and crtcs are exposed to userspace through the
4731 * possible_clones and possible_crtcs bitmasks.
4732 *
4733 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004734 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004735 */
Dave Airlief453ba02008-11-07 14:05:41 -08004736int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4737 struct drm_encoder *encoder)
4738{
4739 int i;
4740
4741 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4742 if (connector->encoder_ids[i] == 0) {
4743 connector->encoder_ids[i] = encoder->base.id;
4744 return 0;
4745 }
4746 }
4747 return -ENOMEM;
4748}
4749EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4750
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004751/**
4752 * drm_mode_crtc_set_gamma_size - set the gamma table size
4753 * @crtc: CRTC to set the gamma table size for
4754 * @gamma_size: size of the gamma table
4755 *
4756 * Drivers which support gamma tables should set this to the supported gamma
4757 * table size when initializing the CRTC. Currently the drm core only supports a
4758 * fixed gamma table size.
4759 *
4760 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004761 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004762 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004763int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004764 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004765{
4766 crtc->gamma_size = gamma_size;
4767
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004768 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4769 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004770 if (!crtc->gamma_store) {
4771 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004772 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004773 }
4774
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004775 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004776}
4777EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4778
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004779/**
4780 * drm_mode_gamma_set_ioctl - set the gamma table
4781 * @dev: DRM device
4782 * @data: ioctl data
4783 * @file_priv: DRM file info
4784 *
4785 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4786 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4787 *
4788 * Called by the user via ioctl.
4789 *
4790 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004791 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004792 */
Dave Airlief453ba02008-11-07 14:05:41 -08004793int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4794 void *data, struct drm_file *file_priv)
4795{
4796 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004797 struct drm_crtc *crtc;
4798 void *r_base, *g_base, *b_base;
4799 int size;
4800 int ret = 0;
4801
Dave Airliefb3b06c2011-02-08 13:55:21 +10004802 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4803 return -EINVAL;
4804
Daniel Vetter84849902012-12-02 00:28:11 +01004805 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004806 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4807 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004808 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004809 goto out;
4810 }
Dave Airlief453ba02008-11-07 14:05:41 -08004811
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004812 if (crtc->funcs->gamma_set == NULL) {
4813 ret = -ENOSYS;
4814 goto out;
4815 }
4816
Dave Airlief453ba02008-11-07 14:05:41 -08004817 /* memcpy into gamma store */
4818 if (crtc_lut->gamma_size != crtc->gamma_size) {
4819 ret = -EINVAL;
4820 goto out;
4821 }
4822
4823 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4824 r_base = crtc->gamma_store;
4825 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4826 ret = -EFAULT;
4827 goto out;
4828 }
4829
4830 g_base = r_base + size;
4831 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4832 ret = -EFAULT;
4833 goto out;
4834 }
4835
4836 b_base = g_base + size;
4837 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4838 ret = -EFAULT;
4839 goto out;
4840 }
4841
James Simmons72034252010-08-03 01:33:19 +01004842 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004843
4844out:
Daniel Vetter84849902012-12-02 00:28:11 +01004845 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004846 return ret;
4847
4848}
4849
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004850/**
4851 * drm_mode_gamma_get_ioctl - get the gamma table
4852 * @dev: DRM device
4853 * @data: ioctl data
4854 * @file_priv: DRM file info
4855 *
4856 * Copy the current gamma table into the storage provided. This also provides
4857 * the gamma table size the driver expects, which can be used to size the
4858 * allocated storage.
4859 *
4860 * Called by the user via ioctl.
4861 *
4862 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004863 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004864 */
Dave Airlief453ba02008-11-07 14:05:41 -08004865int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4866 void *data, struct drm_file *file_priv)
4867{
4868 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004869 struct drm_crtc *crtc;
4870 void *r_base, *g_base, *b_base;
4871 int size;
4872 int ret = 0;
4873
Dave Airliefb3b06c2011-02-08 13:55:21 +10004874 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4875 return -EINVAL;
4876
Daniel Vetter84849902012-12-02 00:28:11 +01004877 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004878 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4879 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004880 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004881 goto out;
4882 }
Dave Airlief453ba02008-11-07 14:05:41 -08004883
4884 /* memcpy into gamma store */
4885 if (crtc_lut->gamma_size != crtc->gamma_size) {
4886 ret = -EINVAL;
4887 goto out;
4888 }
4889
4890 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4891 r_base = crtc->gamma_store;
4892 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4893 ret = -EFAULT;
4894 goto out;
4895 }
4896
4897 g_base = r_base + size;
4898 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4899 ret = -EFAULT;
4900 goto out;
4901 }
4902
4903 b_base = g_base + size;
4904 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4905 ret = -EFAULT;
4906 goto out;
4907 }
4908out:
Daniel Vetter84849902012-12-02 00:28:11 +01004909 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004910 return ret;
4911}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004912
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004913/**
4914 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4915 * @dev: DRM device
4916 * @data: ioctl data
4917 * @file_priv: DRM file info
4918 *
4919 * This schedules an asynchronous update on a given CRTC, called page flip.
4920 * Optionally a drm event is generated to signal the completion of the event.
4921 * Generic drivers cannot assume that a pageflip with changed framebuffer
4922 * properties (including driver specific metadata like tiling layout) will work,
4923 * but some drivers support e.g. pixel format changes through the pageflip
4924 * ioctl.
4925 *
4926 * Called by the user via ioctl.
4927 *
4928 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004929 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004930 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004931int drm_mode_page_flip_ioctl(struct drm_device *dev,
4932 void *data, struct drm_file *file_priv)
4933{
4934 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004935 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004936 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004937 struct drm_pending_vblank_event *e = NULL;
4938 unsigned long flags;
4939 int ret = -EINVAL;
4940
4941 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4942 page_flip->reserved != 0)
4943 return -EINVAL;
4944
Keith Packard62f21042013-07-22 18:50:00 -07004945 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4946 return -EINVAL;
4947
Rob Clarka2b34e22013-10-05 16:36:52 -04004948 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4949 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004950 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004951
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004952 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004953 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004954 /* The framebuffer is currently unbound, presumably
4955 * due to a hotplug event, that userspace has not
4956 * yet discovered.
4957 */
4958 ret = -EBUSY;
4959 goto out;
4960 }
4961
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004962 if (crtc->funcs->page_flip == NULL)
4963 goto out;
4964
Daniel Vetter786b99e2012-12-02 21:53:40 +01004965 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004966 if (!fb) {
4967 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004968 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004969 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004970
Damien Lespiauc11e9282013-09-25 16:45:30 +01004971 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4972 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004973 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004974
Matt Roperf4510a22014-04-01 15:22:40 -07004975 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004976 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4977 ret = -EINVAL;
4978 goto out;
4979 }
4980
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004981 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4982 ret = -ENOMEM;
4983 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004984 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004985 spin_unlock_irqrestore(&dev->event_lock, flags);
4986 goto out;
4987 }
Thierry Redingf76511b2014-12-10 13:03:40 +01004988 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004989 spin_unlock_irqrestore(&dev->event_lock, flags);
4990
Thierry Redingf76511b2014-12-10 13:03:40 +01004991 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004992 if (e == NULL) {
4993 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004994 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004995 spin_unlock_irqrestore(&dev->event_lock, flags);
4996 goto out;
4997 }
4998
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004999 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005000 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005001 e->event.user_data = page_flip->user_data;
5002 e->base.event = &e->event.base;
5003 e->base.file_priv = file_priv;
5004 e->base.destroy =
5005 (void (*) (struct drm_pending_event *)) kfree;
5006 }
5007
Daniel Vetter3d30a592014-07-27 13:42:42 +02005008 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005009 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005010 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005011 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5012 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005013 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005014 spin_unlock_irqrestore(&dev->event_lock, flags);
5015 kfree(e);
5016 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01005017 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005018 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005019 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01005020 /*
5021 * Warn if the driver hasn't properly updated the crtc->fb
5022 * field to reflect that the new framebuffer is now used.
5023 * Failing to do so will screw with the reference counting
5024 * on framebuffers.
5025 */
Matt Roperf4510a22014-04-01 15:22:40 -07005026 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01005027 /* Unref only the old framebuffer. */
5028 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005029 }
5030
5031out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005032 if (fb)
5033 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005034 if (crtc->primary->old_fb)
5035 drm_framebuffer_unreference(crtc->primary->old_fb);
5036 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005037 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005038
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005039 return ret;
5040}
Chris Wilsoneb033552011-01-24 15:11:08 +00005041
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005042/**
5043 * drm_mode_config_reset - call ->reset callbacks
5044 * @dev: drm device
5045 *
5046 * This functions calls all the crtc's, encoder's and connector's ->reset
5047 * callback. Drivers can use this in e.g. their driver load or resume code to
5048 * reset hardware and software state.
5049 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005050void drm_mode_config_reset(struct drm_device *dev)
5051{
5052 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005053 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005054 struct drm_encoder *encoder;
5055 struct drm_connector *connector;
5056
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005057 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
5058 if (plane->funcs->reset)
5059 plane->funcs->reset(plane);
5060
Chris Wilsoneb033552011-01-24 15:11:08 +00005061 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
5062 if (crtc->funcs->reset)
5063 crtc->funcs->reset(crtc);
5064
5065 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
5066 if (encoder->funcs->reset)
5067 encoder->funcs->reset(encoder);
5068
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005069 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5070 connector->status = connector_status_unknown;
5071
Chris Wilsoneb033552011-01-24 15:11:08 +00005072 if (connector->funcs->reset)
5073 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005074 }
Chris Wilsoneb033552011-01-24 15:11:08 +00005075}
5076EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005077
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005078/**
5079 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5080 * @dev: DRM device
5081 * @data: ioctl data
5082 * @file_priv: DRM file info
5083 *
5084 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5085 * TTM or something else entirely) and returns the resulting buffer handle. This
5086 * handle can then be wrapped up into a framebuffer modeset object.
5087 *
5088 * Note that userspace is not allowed to use such objects for render
5089 * acceleration - drivers must create their own private ioctls for such a use
5090 * case.
5091 *
5092 * Called by the user via ioctl.
5093 *
5094 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005095 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005096 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005097int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5098 void *data, struct drm_file *file_priv)
5099{
5100 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005101 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005102
5103 if (!dev->driver->dumb_create)
5104 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005105 if (!args->width || !args->height || !args->bpp)
5106 return -EINVAL;
5107
5108 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005109 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005110 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005111 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005112 return -EINVAL;
5113 stride = cpp * args->width;
5114 if (args->height > 0xffffffffU / stride)
5115 return -EINVAL;
5116
5117 /* test for wrap-around */
5118 size = args->height * stride;
5119 if (PAGE_ALIGN(size) == 0)
5120 return -EINVAL;
5121
Thierry Redingf6085952014-11-03 11:14:14 +01005122 /*
5123 * handle, pitch and size are output parameters. Zero them out to
5124 * prevent drivers from accidentally using uninitialized data. Since
5125 * not all existing userspace is clearing these fields properly we
5126 * cannot reject IOCTL with garbage in them.
5127 */
5128 args->handle = 0;
5129 args->pitch = 0;
5130 args->size = 0;
5131
Dave Airlieff72145b2011-02-07 12:16:14 +10005132 return dev->driver->dumb_create(file_priv, dev, args);
5133}
5134
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005135/**
5136 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5137 * @dev: DRM device
5138 * @data: ioctl data
5139 * @file_priv: DRM file info
5140 *
5141 * Allocate an offset in the drm device node's address space to be able to
5142 * memory map a dumb buffer.
5143 *
5144 * Called by the user via ioctl.
5145 *
5146 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005147 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005148 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005149int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5150 void *data, struct drm_file *file_priv)
5151{
5152 struct drm_mode_map_dumb *args = data;
5153
5154 /* call driver ioctl to get mmap offset */
5155 if (!dev->driver->dumb_map_offset)
5156 return -ENOSYS;
5157
5158 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5159}
5160
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005161/**
5162 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5163 * @dev: DRM device
5164 * @data: ioctl data
5165 * @file_priv: DRM file info
5166 *
5167 * This destroys the userspace handle for the given dumb backing storage buffer.
5168 * Since buffer objects must be reference counted in the kernel a buffer object
5169 * won't be immediately freed if a framebuffer modeset object still uses it.
5170 *
5171 * Called by the user via ioctl.
5172 *
5173 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005174 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005175 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005176int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5177 void *data, struct drm_file *file_priv)
5178{
5179 struct drm_mode_destroy_dumb *args = data;
5180
5181 if (!dev->driver->dumb_destroy)
5182 return -ENOSYS;
5183
5184 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5185}
Dave Airlie248dbc22011-11-29 20:02:54 +00005186
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005187/**
5188 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5189 * @format: pixel format (DRM_FORMAT_*)
5190 * @depth: storage for the depth value
5191 * @bpp: storage for the bpp value
5192 *
5193 * This only supports RGB formats here for compat with code that doesn't use
5194 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005195 */
5196void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5197 int *bpp)
5198{
5199 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005200 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005201 case DRM_FORMAT_RGB332:
5202 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005203 *depth = 8;
5204 *bpp = 8;
5205 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005206 case DRM_FORMAT_XRGB1555:
5207 case DRM_FORMAT_XBGR1555:
5208 case DRM_FORMAT_RGBX5551:
5209 case DRM_FORMAT_BGRX5551:
5210 case DRM_FORMAT_ARGB1555:
5211 case DRM_FORMAT_ABGR1555:
5212 case DRM_FORMAT_RGBA5551:
5213 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005214 *depth = 15;
5215 *bpp = 16;
5216 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005217 case DRM_FORMAT_RGB565:
5218 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005219 *depth = 16;
5220 *bpp = 16;
5221 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005222 case DRM_FORMAT_RGB888:
5223 case DRM_FORMAT_BGR888:
5224 *depth = 24;
5225 *bpp = 24;
5226 break;
5227 case DRM_FORMAT_XRGB8888:
5228 case DRM_FORMAT_XBGR8888:
5229 case DRM_FORMAT_RGBX8888:
5230 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005231 *depth = 24;
5232 *bpp = 32;
5233 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005234 case DRM_FORMAT_XRGB2101010:
5235 case DRM_FORMAT_XBGR2101010:
5236 case DRM_FORMAT_RGBX1010102:
5237 case DRM_FORMAT_BGRX1010102:
5238 case DRM_FORMAT_ARGB2101010:
5239 case DRM_FORMAT_ABGR2101010:
5240 case DRM_FORMAT_RGBA1010102:
5241 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005242 *depth = 30;
5243 *bpp = 32;
5244 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005245 case DRM_FORMAT_ARGB8888:
5246 case DRM_FORMAT_ABGR8888:
5247 case DRM_FORMAT_RGBA8888:
5248 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005249 *depth = 32;
5250 *bpp = 32;
5251 break;
5252 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005253 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5254 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005255 *depth = 0;
5256 *bpp = 0;
5257 break;
5258 }
5259}
5260EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005261
5262/**
5263 * drm_format_num_planes - get the number of planes for format
5264 * @format: pixel format (DRM_FORMAT_*)
5265 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005266 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005267 * The number of planes used by the specified pixel format.
5268 */
5269int drm_format_num_planes(uint32_t format)
5270{
5271 switch (format) {
5272 case DRM_FORMAT_YUV410:
5273 case DRM_FORMAT_YVU410:
5274 case DRM_FORMAT_YUV411:
5275 case DRM_FORMAT_YVU411:
5276 case DRM_FORMAT_YUV420:
5277 case DRM_FORMAT_YVU420:
5278 case DRM_FORMAT_YUV422:
5279 case DRM_FORMAT_YVU422:
5280 case DRM_FORMAT_YUV444:
5281 case DRM_FORMAT_YVU444:
5282 return 3;
5283 case DRM_FORMAT_NV12:
5284 case DRM_FORMAT_NV21:
5285 case DRM_FORMAT_NV16:
5286 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005287 case DRM_FORMAT_NV24:
5288 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005289 return 2;
5290 default:
5291 return 1;
5292 }
5293}
5294EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005295
5296/**
5297 * drm_format_plane_cpp - determine the bytes per pixel value
5298 * @format: pixel format (DRM_FORMAT_*)
5299 * @plane: plane index
5300 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005301 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005302 * The bytes per pixel value for the specified plane.
5303 */
5304int drm_format_plane_cpp(uint32_t format, int plane)
5305{
5306 unsigned int depth;
5307 int bpp;
5308
5309 if (plane >= drm_format_num_planes(format))
5310 return 0;
5311
5312 switch (format) {
5313 case DRM_FORMAT_YUYV:
5314 case DRM_FORMAT_YVYU:
5315 case DRM_FORMAT_UYVY:
5316 case DRM_FORMAT_VYUY:
5317 return 2;
5318 case DRM_FORMAT_NV12:
5319 case DRM_FORMAT_NV21:
5320 case DRM_FORMAT_NV16:
5321 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005322 case DRM_FORMAT_NV24:
5323 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005324 return plane ? 2 : 1;
5325 case DRM_FORMAT_YUV410:
5326 case DRM_FORMAT_YVU410:
5327 case DRM_FORMAT_YUV411:
5328 case DRM_FORMAT_YVU411:
5329 case DRM_FORMAT_YUV420:
5330 case DRM_FORMAT_YVU420:
5331 case DRM_FORMAT_YUV422:
5332 case DRM_FORMAT_YVU422:
5333 case DRM_FORMAT_YUV444:
5334 case DRM_FORMAT_YVU444:
5335 return 1;
5336 default:
5337 drm_fb_get_bpp_depth(format, &depth, &bpp);
5338 return bpp >> 3;
5339 }
5340}
5341EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005342
5343/**
5344 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5345 * @format: pixel format (DRM_FORMAT_*)
5346 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005347 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005348 * The horizontal chroma subsampling factor for the
5349 * specified pixel format.
5350 */
5351int drm_format_horz_chroma_subsampling(uint32_t format)
5352{
5353 switch (format) {
5354 case DRM_FORMAT_YUV411:
5355 case DRM_FORMAT_YVU411:
5356 case DRM_FORMAT_YUV410:
5357 case DRM_FORMAT_YVU410:
5358 return 4;
5359 case DRM_FORMAT_YUYV:
5360 case DRM_FORMAT_YVYU:
5361 case DRM_FORMAT_UYVY:
5362 case DRM_FORMAT_VYUY:
5363 case DRM_FORMAT_NV12:
5364 case DRM_FORMAT_NV21:
5365 case DRM_FORMAT_NV16:
5366 case DRM_FORMAT_NV61:
5367 case DRM_FORMAT_YUV422:
5368 case DRM_FORMAT_YVU422:
5369 case DRM_FORMAT_YUV420:
5370 case DRM_FORMAT_YVU420:
5371 return 2;
5372 default:
5373 return 1;
5374 }
5375}
5376EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5377
5378/**
5379 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5380 * @format: pixel format (DRM_FORMAT_*)
5381 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005382 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005383 * The vertical chroma subsampling factor for the
5384 * specified pixel format.
5385 */
5386int drm_format_vert_chroma_subsampling(uint32_t format)
5387{
5388 switch (format) {
5389 case DRM_FORMAT_YUV410:
5390 case DRM_FORMAT_YVU410:
5391 return 4;
5392 case DRM_FORMAT_YUV420:
5393 case DRM_FORMAT_YVU420:
5394 case DRM_FORMAT_NV12:
5395 case DRM_FORMAT_NV21:
5396 return 2;
5397 default:
5398 return 1;
5399 }
5400}
5401EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005402
5403/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305404 * drm_rotation_simplify() - Try to simplify the rotation
5405 * @rotation: Rotation to be simplified
5406 * @supported_rotations: Supported rotations
5407 *
5408 * Attempt to simplify the rotation to a form that is supported.
5409 * Eg. if the hardware supports everything except DRM_REFLECT_X
5410 * one could call this function like this:
5411 *
5412 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5413 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5414 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5415 *
5416 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5417 * transforms the hardware supports, this function may not
5418 * be able to produce a supported transform, so the caller should
5419 * check the result afterwards.
5420 */
5421unsigned int drm_rotation_simplify(unsigned int rotation,
5422 unsigned int supported_rotations)
5423{
5424 if (rotation & ~supported_rotations) {
5425 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5426 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5427 }
5428
5429 return rotation;
5430}
5431EXPORT_SYMBOL(drm_rotation_simplify);
5432
5433/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005434 * drm_mode_config_init - initialize DRM mode_configuration structure
5435 * @dev: DRM device
5436 *
5437 * Initialize @dev's mode_config structure, used for tracking the graphics
5438 * configuration of @dev.
5439 *
5440 * Since this initializes the modeset locks, no locking is possible. Which is no
5441 * problem, since this should happen single threaded at init time. It is the
5442 * driver's problem to ensure this guarantee.
5443 *
5444 */
5445void drm_mode_config_init(struct drm_device *dev)
5446{
5447 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005448 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005449 mutex_init(&dev->mode_config.idr_mutex);
5450 mutex_init(&dev->mode_config.fb_lock);
5451 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5452 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5453 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5454 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5455 INIT_LIST_HEAD(&dev->mode_config.property_list);
5456 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5457 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5458 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005459 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005460
5461 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005462 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005463 drm_modeset_unlock_all(dev);
5464
5465 /* Just to be sure */
5466 dev->mode_config.num_fb = 0;
5467 dev->mode_config.num_connector = 0;
5468 dev->mode_config.num_crtc = 0;
5469 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005470 dev->mode_config.num_overlay_plane = 0;
5471 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005472}
5473EXPORT_SYMBOL(drm_mode_config_init);
5474
5475/**
5476 * drm_mode_config_cleanup - free up DRM mode_config info
5477 * @dev: DRM device
5478 *
5479 * Free up all the connectors and CRTCs associated with this DRM device, then
5480 * free up the framebuffers and associated buffer objects.
5481 *
5482 * Note that since this /should/ happen single-threaded at driver/device
5483 * teardown time, no locking is required. It's the driver's job to ensure that
5484 * this guarantee actually holds true.
5485 *
5486 * FIXME: cleanup any dangling user buffer objects too
5487 */
5488void drm_mode_config_cleanup(struct drm_device *dev)
5489{
5490 struct drm_connector *connector, *ot;
5491 struct drm_crtc *crtc, *ct;
5492 struct drm_encoder *encoder, *enct;
5493 struct drm_framebuffer *fb, *fbt;
5494 struct drm_property *property, *pt;
5495 struct drm_property_blob *blob, *bt;
5496 struct drm_plane *plane, *plt;
5497
5498 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5499 head) {
5500 encoder->funcs->destroy(encoder);
5501 }
5502
5503 list_for_each_entry_safe(connector, ot,
5504 &dev->mode_config.connector_list, head) {
5505 connector->funcs->destroy(connector);
5506 }
5507
5508 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5509 head) {
5510 drm_property_destroy(dev, property);
5511 }
5512
5513 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5514 head) {
5515 drm_property_destroy_blob(dev, blob);
5516 }
5517
5518 /*
5519 * Single-threaded teardown context, so it's not required to grab the
5520 * fb_lock to protect against concurrent fb_list access. Contrary, it
5521 * would actually deadlock with the drm_framebuffer_cleanup function.
5522 *
5523 * Also, if there are any framebuffers left, that's a driver leak now,
5524 * so politely WARN about this.
5525 */
5526 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5527 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5528 drm_framebuffer_remove(fb);
5529 }
5530
5531 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5532 head) {
5533 plane->funcs->destroy(plane);
5534 }
5535
5536 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5537 crtc->funcs->destroy(crtc);
5538 }
5539
Dave Airlie138f9eb2014-10-20 16:17:17 +10005540 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005541 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005542 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005543}
5544EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305545
5546struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5547 unsigned int supported_rotations)
5548{
5549 static const struct drm_prop_enum_list props[] = {
5550 { DRM_ROTATE_0, "rotate-0" },
5551 { DRM_ROTATE_90, "rotate-90" },
5552 { DRM_ROTATE_180, "rotate-180" },
5553 { DRM_ROTATE_270, "rotate-270" },
5554 { DRM_REFLECT_X, "reflect-x" },
5555 { DRM_REFLECT_Y, "reflect-y" },
5556 };
5557
5558 return drm_property_create_bitmask(dev, 0, "rotation",
5559 props, ARRAY_SIZE(props),
5560 supported_rotations);
5561}
5562EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005563
5564/**
5565 * DOC: Tile group
5566 *
5567 * Tile groups are used to represent tiled monitors with a unique
5568 * integer identifier. Tiled monitors using DisplayID v1.3 have
5569 * a unique 8-byte handle, we store this in a tile group, so we
5570 * have a common identifier for all tiles in a monitor group.
5571 */
5572static void drm_tile_group_free(struct kref *kref)
5573{
5574 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5575 struct drm_device *dev = tg->dev;
5576 mutex_lock(&dev->mode_config.idr_mutex);
5577 idr_remove(&dev->mode_config.tile_idr, tg->id);
5578 mutex_unlock(&dev->mode_config.idr_mutex);
5579 kfree(tg);
5580}
5581
5582/**
5583 * drm_mode_put_tile_group - drop a reference to a tile group.
5584 * @dev: DRM device
5585 * @tg: tile group to drop reference to.
5586 *
5587 * drop reference to tile group and free if 0.
5588 */
5589void drm_mode_put_tile_group(struct drm_device *dev,
5590 struct drm_tile_group *tg)
5591{
5592 kref_put(&tg->refcount, drm_tile_group_free);
5593}
5594
5595/**
5596 * drm_mode_get_tile_group - get a reference to an existing tile group
5597 * @dev: DRM device
5598 * @topology: 8-bytes unique per monitor.
5599 *
5600 * Use the unique bytes to get a reference to an existing tile group.
5601 *
5602 * RETURNS:
5603 * tile group or NULL if not found.
5604 */
5605struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5606 char topology[8])
5607{
5608 struct drm_tile_group *tg;
5609 int id;
5610 mutex_lock(&dev->mode_config.idr_mutex);
5611 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5612 if (!memcmp(tg->group_data, topology, 8)) {
5613 if (!kref_get_unless_zero(&tg->refcount))
5614 tg = NULL;
5615 mutex_unlock(&dev->mode_config.idr_mutex);
5616 return tg;
5617 }
5618 }
5619 mutex_unlock(&dev->mode_config.idr_mutex);
5620 return NULL;
5621}
5622
5623/**
5624 * drm_mode_create_tile_group - create a tile group from a displayid description
5625 * @dev: DRM device
5626 * @topology: 8-bytes unique per monitor.
5627 *
5628 * Create a tile group for the unique monitor, and get a unique
5629 * identifier for the tile group.
5630 *
5631 * RETURNS:
5632 * new tile group or error.
5633 */
5634struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5635 char topology[8])
5636{
5637 struct drm_tile_group *tg;
5638 int ret;
5639
5640 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5641 if (!tg)
5642 return ERR_PTR(-ENOMEM);
5643
5644 kref_init(&tg->refcount);
5645 memcpy(tg->group_data, topology, 8);
5646 tg->dev = dev;
5647
5648 mutex_lock(&dev->mode_config.idr_mutex);
5649 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5650 if (ret >= 0) {
5651 tg->id = ret;
5652 } else {
5653 kfree(tg);
5654 tg = ERR_PTR(ret);
5655 }
5656
5657 mutex_unlock(&dev->mode_config.idr_mutex);
5658 return tg;
5659}