blob: 160647a1c584b1cf13385c82e88e76458500a211 [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
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100663 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
664 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
665
Dave Airlief453ba02008-11-07 14:05:41 -0800666 crtc->dev = dev;
667 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000668 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800669
Rob Clark51fd3712013-11-19 12:10:12 -0500670 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200671 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
672 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100673 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800674
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300675 crtc->base.properties = &crtc->properties;
676
Rob Clark51fd3712013-11-19 12:10:12 -0500677 list_add_tail(&crtc->head, &config->crtc_list);
678 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200679
Matt Ropere13161a2014-04-01 15:22:38 -0700680 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700681 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700682 if (primary)
683 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700684 if (cursor)
685 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700686
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100687 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
688 drm_object_attach_property(&crtc->base, config->prop_active, 0);
689 }
690
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100691 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800692}
Matt Ropere13161a2014-04-01 15:22:38 -0700693EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800694
695/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000696 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800697 * @crtc: CRTC to cleanup
698 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000699 * This function cleans up @crtc and removes it from the DRM mode setting
700 * core. Note that the function does *not* free the crtc structure itself,
701 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800702 */
703void drm_crtc_cleanup(struct drm_crtc *crtc)
704{
705 struct drm_device *dev = crtc->dev;
706
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000707 kfree(crtc->gamma_store);
708 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800709
Rob Clark51fd3712013-11-19 12:10:12 -0500710 drm_modeset_lock_fini(&crtc->mutex);
711
Dave Airlief453ba02008-11-07 14:05:41 -0800712 drm_mode_object_put(dev, &crtc->base);
713 list_del(&crtc->head);
714 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100715
716 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
717 if (crtc->state && crtc->funcs->atomic_destroy_state)
718 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100719
720 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800721}
722EXPORT_SYMBOL(drm_crtc_cleanup);
723
724/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000725 * drm_crtc_index - find the index of a registered CRTC
726 * @crtc: CRTC to find index for
727 *
728 * Given a registered CRTC, return the index of that CRTC within a DRM
729 * device's list of CRTCs.
730 */
731unsigned int drm_crtc_index(struct drm_crtc *crtc)
732{
733 unsigned int index = 0;
734 struct drm_crtc *tmp;
735
736 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
737 if (tmp == crtc)
738 return index;
739
740 index++;
741 }
742
743 BUG();
744}
745EXPORT_SYMBOL(drm_crtc_index);
746
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100747/*
Dave Airlief453ba02008-11-07 14:05:41 -0800748 * drm_mode_remove - remove and free a mode
749 * @connector: connector list to modify
750 * @mode: mode to remove
751 *
Dave Airlief453ba02008-11-07 14:05:41 -0800752 * Remove @mode from @connector's mode list, then free it.
753 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100754static void drm_mode_remove(struct drm_connector *connector,
755 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800756{
757 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100758 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800759}
Dave Airlief453ba02008-11-07 14:05:41 -0800760
761/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200762 * drm_display_info_set_bus_formats - set the supported bus formats
763 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100764 * @formats: array containing the supported bus formats
765 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200766 *
767 * Store the supported bus formats in display info structure.
768 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
769 * a full list of available formats.
770 */
771int drm_display_info_set_bus_formats(struct drm_display_info *info,
772 const u32 *formats,
773 unsigned int num_formats)
774{
775 u32 *fmts = NULL;
776
777 if (!formats && num_formats)
778 return -EINVAL;
779
780 if (formats && num_formats) {
781 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
782 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300783 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200784 return -ENOMEM;
785 }
786
787 kfree(info->bus_formats);
788 info->bus_formats = fmts;
789 info->num_bus_formats = num_formats;
790
791 return 0;
792}
793EXPORT_SYMBOL(drm_display_info_set_bus_formats);
794
795/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200796 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
797 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200798 *
799 * The kernel supports per-connector configration of its consoles through
800 * use of the video= parameter. This function parses that option and
801 * extracts the user's specified mode (or enable/disable status) for a
802 * particular connector. This is typically only used during the early fbdev
803 * setup.
804 */
805static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
806{
807 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
808 char *option = NULL;
809
810 if (fb_get_options(connector->name, &option))
811 return;
812
813 if (!drm_mode_parse_command_line_for_connector(option,
814 connector,
815 mode))
816 return;
817
818 if (mode->force) {
819 const char *s;
820
821 switch (mode->force) {
822 case DRM_FORCE_OFF:
823 s = "OFF";
824 break;
825 case DRM_FORCE_ON_DIGITAL:
826 s = "ON - dig";
827 break;
828 default:
829 case DRM_FORCE_ON:
830 s = "ON";
831 break;
832 }
833
834 DRM_INFO("forcing %s connector %s\n", connector->name, s);
835 connector->force = mode->force;
836 }
837
838 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
839 connector->name,
840 mode->xres, mode->yres,
841 mode->refresh_specified ? mode->refresh : 60,
842 mode->rb ? " reduced blanking" : "",
843 mode->margins ? " with margins" : "",
844 mode->interlace ? " interlaced" : "");
845}
846
847/**
Dave Airlief453ba02008-11-07 14:05:41 -0800848 * drm_connector_init - Init a preallocated connector
849 * @dev: DRM device
850 * @connector: the connector to init
851 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100852 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800853 *
Dave Airlief453ba02008-11-07 14:05:41 -0800854 * Initialises a preallocated connector. Connectors should be
855 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200856 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100857 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200858 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800859 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200860int drm_connector_init(struct drm_device *dev,
861 struct drm_connector *connector,
862 const struct drm_connector_funcs *funcs,
863 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800864{
Rob Clarkae16c592014-12-18 16:01:54 -0500865 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200866 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400867 struct ida *connector_ida =
868 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200869
Daniel Vetter84849902012-12-02 00:28:11 +0100870 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800871
Dave Airlie2ee39452014-07-24 11:53:45 +1000872 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200873 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300874 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200875
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300876 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800877 connector->dev = dev;
878 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800879 connector->connector_type = connector_type;
880 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400881 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
882 if (connector->connector_type_id < 0) {
883 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300884 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400885 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300886 connector->name =
887 kasprintf(GFP_KERNEL, "%s-%d",
888 drm_connector_enum_list[connector_type].name,
889 connector->connector_type_id);
890 if (!connector->name) {
891 ret = -ENOMEM;
892 goto out_put;
893 }
894
Dave Airlief453ba02008-11-07 14:05:41 -0800895 INIT_LIST_HEAD(&connector->probed_modes);
896 INIT_LIST_HEAD(&connector->modes);
897 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000898 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800899
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200900 drm_connector_get_cmdline_mode(connector);
901
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100902 /* We should add connectors at the end to avoid upsetting the connector
903 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500904 list_add_tail(&connector->head, &config->connector_list);
905 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800906
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200907 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500908 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500909 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200910 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800911
Rob Clark58495562012-10-11 20:50:56 -0500912 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500913 config->dpms_property, 0);
914
915 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
916 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
917 }
Dave Airlief453ba02008-11-07 14:05:41 -0800918
Thomas Wood30f65702014-06-18 17:52:32 +0100919 connector->debugfs_entry = NULL;
920
Jani Nikula2abdd312014-05-14 16:58:19 +0300921out_put:
922 if (ret)
923 drm_mode_object_put(dev, &connector->base);
924
925out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100926 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200927
928 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800929}
930EXPORT_SYMBOL(drm_connector_init);
931
932/**
933 * drm_connector_cleanup - cleans up an initialised connector
934 * @connector: connector to cleanup
935 *
Dave Airlief453ba02008-11-07 14:05:41 -0800936 * Cleans up the connector but doesn't free the object.
937 */
938void drm_connector_cleanup(struct drm_connector *connector)
939{
940 struct drm_device *dev = connector->dev;
941 struct drm_display_mode *mode, *t;
942
Dave Airlie40d9b042014-10-20 16:29:33 +1000943 if (connector->tile_group) {
944 drm_mode_put_tile_group(dev, connector->tile_group);
945 connector->tile_group = NULL;
946 }
947
Dave Airlief453ba02008-11-07 14:05:41 -0800948 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
949 drm_mode_remove(connector, mode);
950
951 list_for_each_entry_safe(mode, t, &connector->modes, head)
952 drm_mode_remove(connector, mode);
953
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400954 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
955 connector->connector_type_id);
956
Boris Brezillonb5571e92014-07-22 12:09:10 +0200957 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800958 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300959 kfree(connector->name);
960 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800961 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000962 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100963
964 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
965 if (connector->state && connector->funcs->atomic_destroy_state)
966 connector->funcs->atomic_destroy_state(connector,
967 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100968
969 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800970}
971EXPORT_SYMBOL(drm_connector_cleanup);
972
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100973/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200974 * drm_connector_index - find the index of a registered connector
975 * @connector: connector to find index for
976 *
977 * Given a registered connector, return the index of that connector within a DRM
978 * device's list of connectors.
979 */
980unsigned int drm_connector_index(struct drm_connector *connector)
981{
982 unsigned int index = 0;
983 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100984 struct drm_mode_config *config = &connector->dev->mode_config;
985
986 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200987
988 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
989 if (tmp == connector)
990 return index;
991
992 index++;
993 }
994
995 BUG();
996}
997EXPORT_SYMBOL(drm_connector_index);
998
999/**
Thomas Wood34ea3d32014-05-29 16:57:41 +01001000 * drm_connector_register - register a connector
1001 * @connector: the connector to register
1002 *
1003 * Register userspace interfaces for a connector
1004 *
1005 * Returns:
1006 * Zero on success, error code on failure.
1007 */
1008int drm_connector_register(struct drm_connector *connector)
1009{
Thomas Wood30f65702014-06-18 17:52:32 +01001010 int ret;
1011
Dave Airlie2ee39452014-07-24 11:53:45 +10001012 drm_mode_object_register(connector->dev, &connector->base);
1013
Thomas Wood30f65702014-06-18 17:52:32 +01001014 ret = drm_sysfs_connector_add(connector);
1015 if (ret)
1016 return ret;
1017
1018 ret = drm_debugfs_connector_add(connector);
1019 if (ret) {
1020 drm_sysfs_connector_remove(connector);
1021 return ret;
1022 }
1023
1024 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001025}
1026EXPORT_SYMBOL(drm_connector_register);
1027
1028/**
1029 * drm_connector_unregister - unregister a connector
1030 * @connector: the connector to unregister
1031 *
1032 * Unregister userspace interfaces for a connector
1033 */
1034void drm_connector_unregister(struct drm_connector *connector)
1035{
1036 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001037 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001038}
1039EXPORT_SYMBOL(drm_connector_unregister);
1040
1041
1042/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001043 * drm_connector_unplug_all - unregister connector userspace interfaces
1044 * @dev: drm device
1045 *
1046 * This function unregisters all connector userspace interfaces in sysfs. Should
1047 * be call when the device is disconnected, e.g. from an usb driver's
1048 * ->disconnect callback.
1049 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001050void drm_connector_unplug_all(struct drm_device *dev)
1051{
1052 struct drm_connector *connector;
1053
1054 /* taking the mode config mutex ends up in a clash with sysfs */
1055 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001056 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001057
1058}
1059EXPORT_SYMBOL(drm_connector_unplug_all);
1060
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001061/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001062 * drm_encoder_init - Init a preallocated encoder
1063 * @dev: drm device
1064 * @encoder: the encoder to init
1065 * @funcs: callbacks for this encoder
1066 * @encoder_type: user visible type of the encoder
1067 *
1068 * Initialises a preallocated encoder. Encoder should be
1069 * subclassed as part of driver encoder objects.
1070 *
1071 * Returns:
1072 * Zero on success, error code on failure.
1073 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001074int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001075 struct drm_encoder *encoder,
1076 const struct drm_encoder_funcs *funcs,
1077 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001078{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001079 int ret;
1080
Daniel Vetter84849902012-12-02 00:28:11 +01001081 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001082
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001083 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1084 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001085 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001086
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001087 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001088 encoder->encoder_type = encoder_type;
1089 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001090 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1091 drm_encoder_enum_list[encoder_type].name,
1092 encoder->base.id);
1093 if (!encoder->name) {
1094 ret = -ENOMEM;
1095 goto out_put;
1096 }
Dave Airlief453ba02008-11-07 14:05:41 -08001097
1098 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1099 dev->mode_config.num_encoder++;
1100
Jani Nikulae5748942014-05-14 16:58:20 +03001101out_put:
1102 if (ret)
1103 drm_mode_object_put(dev, &encoder->base);
1104
1105out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001106 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001107
1108 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001109}
1110EXPORT_SYMBOL(drm_encoder_init);
1111
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001112/**
1113 * drm_encoder_cleanup - cleans up an initialised encoder
1114 * @encoder: encoder to cleanup
1115 *
1116 * Cleans up the encoder but doesn't free the object.
1117 */
Dave Airlief453ba02008-11-07 14:05:41 -08001118void drm_encoder_cleanup(struct drm_encoder *encoder)
1119{
1120 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001121
Daniel Vetter84849902012-12-02 00:28:11 +01001122 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001123 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001124 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001125 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001126 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001127 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001128
1129 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001130}
1131EXPORT_SYMBOL(drm_encoder_cleanup);
1132
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001133/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001134 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001135 * @dev: DRM device
1136 * @plane: plane object to init
1137 * @possible_crtcs: bitmask of possible CRTCs
1138 * @funcs: callbacks for the new plane
1139 * @formats: array of supported formats (%DRM_FORMAT_*)
1140 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001141 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001142 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001143 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001144 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001145 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001146 * Zero on success, error code on failure.
1147 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001148int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1149 unsigned long possible_crtcs,
1150 const struct drm_plane_funcs *funcs,
1151 const uint32_t *formats, uint32_t format_count,
1152 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001153{
Rob Clark6b4959f2014-12-18 16:01:53 -05001154 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001155 int ret;
1156
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001157 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1158 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001159 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001160
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001161 drm_modeset_lock_init(&plane->mutex);
1162
Rob Clark4d939142012-05-17 02:23:27 -06001163 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001164 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001165 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001166 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1167 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001168 if (!plane->format_types) {
1169 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1170 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001171 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001172 }
1173
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001174 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001175 plane->format_count = format_count;
1176 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001177 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001178
Rob Clark6b4959f2014-12-18 16:01:53 -05001179 list_add_tail(&plane->head, &config->plane_list);
1180 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001181 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001182 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001183
Rob Clark9922ab52014-04-01 20:16:57 -04001184 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001185 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001186 plane->type);
1187
Rob Clark6b4959f2014-12-18 16:01:53 -05001188 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1189 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1190 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1191 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1192 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1193 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1194 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1195 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1196 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1197 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1198 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1199 }
1200
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001201 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001202}
Matt Roperdc415ff2014-04-01 15:22:36 -07001203EXPORT_SYMBOL(drm_universal_plane_init);
1204
1205/**
1206 * drm_plane_init - Initialize a legacy plane
1207 * @dev: DRM device
1208 * @plane: plane object to init
1209 * @possible_crtcs: bitmask of possible CRTCs
1210 * @funcs: callbacks for the new plane
1211 * @formats: array of supported formats (%DRM_FORMAT_*)
1212 * @format_count: number of elements in @formats
1213 * @is_primary: plane type (primary vs overlay)
1214 *
1215 * Legacy API to initialize a DRM plane.
1216 *
1217 * New drivers should call drm_universal_plane_init() instead.
1218 *
1219 * Returns:
1220 * Zero on success, error code on failure.
1221 */
1222int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1223 unsigned long possible_crtcs,
1224 const struct drm_plane_funcs *funcs,
1225 const uint32_t *formats, uint32_t format_count,
1226 bool is_primary)
1227{
1228 enum drm_plane_type type;
1229
1230 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1231 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1232 formats, format_count, type);
1233}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001234EXPORT_SYMBOL(drm_plane_init);
1235
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001236/**
1237 * drm_plane_cleanup - Clean up the core plane usage
1238 * @plane: plane to cleanup
1239 *
1240 * This function cleans up @plane and removes it from the DRM mode setting
1241 * core. Note that the function does *not* free the plane structure itself,
1242 * this is the responsibility of the caller.
1243 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001244void drm_plane_cleanup(struct drm_plane *plane)
1245{
1246 struct drm_device *dev = plane->dev;
1247
Daniel Vetter84849902012-12-02 00:28:11 +01001248 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001249 kfree(plane->format_types);
1250 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001251
1252 BUG_ON(list_empty(&plane->head));
1253
1254 list_del(&plane->head);
1255 dev->mode_config.num_total_plane--;
1256 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1257 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001258 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001259
1260 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1261 if (plane->state && plane->funcs->atomic_destroy_state)
1262 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001263
1264 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001265}
1266EXPORT_SYMBOL(drm_plane_cleanup);
1267
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001268/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001269 * drm_plane_index - find the index of a registered plane
1270 * @plane: plane to find index for
1271 *
1272 * Given a registered plane, return the index of that CRTC within a DRM
1273 * device's list of planes.
1274 */
1275unsigned int drm_plane_index(struct drm_plane *plane)
1276{
1277 unsigned int index = 0;
1278 struct drm_plane *tmp;
1279
1280 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1281 if (tmp == plane)
1282 return index;
1283
1284 index++;
1285 }
1286
1287 BUG();
1288}
1289EXPORT_SYMBOL(drm_plane_index);
1290
1291/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001292 * drm_plane_from_index - find the registered plane at an index
1293 * @dev: DRM device
1294 * @idx: index of registered plane to find for
1295 *
1296 * Given a plane index, return the registered plane from DRM device's
1297 * list of planes with matching index.
1298 */
1299struct drm_plane *
1300drm_plane_from_index(struct drm_device *dev, int idx)
1301{
1302 struct drm_plane *plane;
1303 unsigned int i = 0;
1304
1305 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
1306 if (i == idx)
1307 return plane;
1308 i++;
1309 }
1310 return NULL;
1311}
1312EXPORT_SYMBOL(drm_plane_from_index);
1313
1314/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001315 * drm_plane_force_disable - Forcibly disable a plane
1316 * @plane: plane to disable
1317 *
1318 * Forces the plane to be disabled.
1319 *
1320 * Used when the plane's current framebuffer is destroyed,
1321 * and when restoring fbdev mode.
1322 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001323void drm_plane_force_disable(struct drm_plane *plane)
1324{
1325 int ret;
1326
Daniel Vetter3d30a592014-07-27 13:42:42 +02001327 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001328 return;
1329
Daniel Vetter3d30a592014-07-27 13:42:42 +02001330 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001331 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001332 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001333 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001334 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001335 return;
1336 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001337 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001338 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001339 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001340 plane->fb = NULL;
1341 plane->crtc = NULL;
1342}
1343EXPORT_SYMBOL(drm_plane_force_disable);
1344
Rob Clark6b4959f2014-12-18 16:01:53 -05001345static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001346{
Rob Clark356af0e2014-12-18 16:01:52 -05001347 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001348
1349 /*
1350 * Standard properties (apply to all connectors)
1351 */
Rob Clark356af0e2014-12-18 16:01:52 -05001352 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001353 DRM_MODE_PROP_IMMUTABLE,
1354 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001355 if (!prop)
1356 return -ENOMEM;
1357 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001358
Rob Clark356af0e2014-12-18 16:01:52 -05001359 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001360 "DPMS", drm_dpms_enum_list,
1361 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001362 if (!prop)
1363 return -ENOMEM;
1364 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001365
Rob Clark356af0e2014-12-18 16:01:52 -05001366 prop = drm_property_create(dev,
1367 DRM_MODE_PROP_BLOB |
1368 DRM_MODE_PROP_IMMUTABLE,
1369 "PATH", 0);
1370 if (!prop)
1371 return -ENOMEM;
1372 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001373
Rob Clark356af0e2014-12-18 16:01:52 -05001374 prop = drm_property_create(dev,
1375 DRM_MODE_PROP_BLOB |
1376 DRM_MODE_PROP_IMMUTABLE,
1377 "TILE", 0);
1378 if (!prop)
1379 return -ENOMEM;
1380 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001381
Rob Clark6b4959f2014-12-18 16:01:53 -05001382 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001383 "type", drm_plane_type_enum_list,
1384 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001385 if (!prop)
1386 return -ENOMEM;
1387 dev->mode_config.plane_type_property = prop;
1388
1389 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1390 "SRC_X", 0, UINT_MAX);
1391 if (!prop)
1392 return -ENOMEM;
1393 dev->mode_config.prop_src_x = prop;
1394
1395 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1396 "SRC_Y", 0, UINT_MAX);
1397 if (!prop)
1398 return -ENOMEM;
1399 dev->mode_config.prop_src_y = prop;
1400
1401 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1402 "SRC_W", 0, UINT_MAX);
1403 if (!prop)
1404 return -ENOMEM;
1405 dev->mode_config.prop_src_w = prop;
1406
1407 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1408 "SRC_H", 0, UINT_MAX);
1409 if (!prop)
1410 return -ENOMEM;
1411 dev->mode_config.prop_src_h = prop;
1412
1413 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1414 "CRTC_X", INT_MIN, INT_MAX);
1415 if (!prop)
1416 return -ENOMEM;
1417 dev->mode_config.prop_crtc_x = prop;
1418
1419 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1420 "CRTC_Y", INT_MIN, INT_MAX);
1421 if (!prop)
1422 return -ENOMEM;
1423 dev->mode_config.prop_crtc_y = prop;
1424
1425 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1426 "CRTC_W", 0, INT_MAX);
1427 if (!prop)
1428 return -ENOMEM;
1429 dev->mode_config.prop_crtc_w = prop;
1430
1431 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1432 "CRTC_H", 0, INT_MAX);
1433 if (!prop)
1434 return -ENOMEM;
1435 dev->mode_config.prop_crtc_h = prop;
1436
1437 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1438 "FB_ID", DRM_MODE_OBJECT_FB);
1439 if (!prop)
1440 return -ENOMEM;
1441 dev->mode_config.prop_fb_id = prop;
1442
1443 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1444 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1445 if (!prop)
1446 return -ENOMEM;
1447 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001448
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001449 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1450 "ACTIVE");
1451 if (!prop)
1452 return -ENOMEM;
1453 dev->mode_config.prop_active = prop;
1454
Rob Clark9922ab52014-04-01 20:16:57 -04001455 return 0;
1456}
1457
Dave Airlief453ba02008-11-07 14:05:41 -08001458/**
1459 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1460 * @dev: DRM device
1461 *
1462 * Called by a driver the first time a DVI-I connector is made.
1463 */
1464int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1465{
1466 struct drm_property *dvi_i_selector;
1467 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001468
1469 if (dev->mode_config.dvi_i_select_subconnector_property)
1470 return 0;
1471
1472 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001473 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001474 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001475 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001476 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001477 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1478
Sascha Hauer4a67d392012-02-06 10:58:17 +01001479 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001480 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001481 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001482 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001483 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1484
1485 return 0;
1486}
1487EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1488
1489/**
1490 * drm_create_tv_properties - create TV specific connector properties
1491 * @dev: DRM device
1492 * @num_modes: number of different TV formats (modes) supported
1493 * @modes: array of pointers to strings containing name of each format
1494 *
1495 * Called by a driver's TV initialization routine, this function creates
1496 * the TV specific connector properties for a given device. Caller is
1497 * responsible for allocating a list of format names and passing them to
1498 * this routine.
1499 */
Thierry Reding2f763312014-10-13 12:45:57 +02001500int drm_mode_create_tv_properties(struct drm_device *dev,
1501 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001502 char *modes[])
1503{
1504 struct drm_property *tv_selector;
1505 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001506 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001507
1508 if (dev->mode_config.tv_select_subconnector_property)
1509 return 0;
1510
1511 /*
1512 * Basic connector properties
1513 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001514 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001515 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001516 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001517 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001518 dev->mode_config.tv_select_subconnector_property = tv_selector;
1519
1520 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001521 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1522 "subconnector",
1523 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001524 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001525 dev->mode_config.tv_subconnector_property = tv_subconnector;
1526
1527 /*
1528 * Other, TV specific properties: margins & TV modes.
1529 */
1530 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001531 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001532
1533 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001534 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001535
1536 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001537 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001538
1539 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001540 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001541
1542 dev->mode_config.tv_mode_property =
1543 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1544 "mode", num_modes);
1545 for (i = 0; i < num_modes; i++)
1546 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1547 i, modes[i]);
1548
Francisco Jerezb6b79022009-08-02 04:19:20 +02001549 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001550 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001551
1552 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001553 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001554
1555 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001556 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001557
Francisco Jereza75f0232009-08-12 02:30:10 +02001558 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001559 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001560
1561 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001562 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001563
1564 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001565 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001566
Dave Airlief453ba02008-11-07 14:05:41 -08001567 return 0;
1568}
1569EXPORT_SYMBOL(drm_mode_create_tv_properties);
1570
1571/**
1572 * drm_mode_create_scaling_mode_property - create scaling mode property
1573 * @dev: DRM device
1574 *
1575 * Called by a driver the first time it's needed, must be attached to desired
1576 * connectors.
1577 */
1578int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1579{
1580 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001581
1582 if (dev->mode_config.scaling_mode_property)
1583 return 0;
1584
1585 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001586 drm_property_create_enum(dev, 0, "scaling mode",
1587 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001588 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001589
1590 dev->mode_config.scaling_mode_property = scaling_mode;
1591
1592 return 0;
1593}
1594EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1595
1596/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301597 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1598 * @dev: DRM device
1599 *
1600 * Called by a driver the first time it's needed, must be attached to desired
1601 * connectors.
1602 *
1603 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001604 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301605 */
1606int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1607{
1608 if (dev->mode_config.aspect_ratio_property)
1609 return 0;
1610
1611 dev->mode_config.aspect_ratio_property =
1612 drm_property_create_enum(dev, 0, "aspect ratio",
1613 drm_aspect_ratio_enum_list,
1614 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1615
1616 if (dev->mode_config.aspect_ratio_property == NULL)
1617 return -ENOMEM;
1618
1619 return 0;
1620}
1621EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1622
1623/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001624 * drm_mode_create_dirty_property - create dirty property
1625 * @dev: DRM device
1626 *
1627 * Called by a driver the first time it's needed, must be attached to desired
1628 * connectors.
1629 */
1630int drm_mode_create_dirty_info_property(struct drm_device *dev)
1631{
1632 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001633
1634 if (dev->mode_config.dirty_info_property)
1635 return 0;
1636
1637 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001638 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001639 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001640 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001641 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001642 dev->mode_config.dirty_info_property = dirty_info;
1643
1644 return 0;
1645}
1646EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1647
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001648/**
1649 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1650 * @dev: DRM device
1651 *
1652 * Create the the suggested x/y offset property for connectors.
1653 */
1654int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1655{
1656 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1657 return 0;
1658
1659 dev->mode_config.suggested_x_property =
1660 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1661
1662 dev->mode_config.suggested_y_property =
1663 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1664
1665 if (dev->mode_config.suggested_x_property == NULL ||
1666 dev->mode_config.suggested_y_property == NULL)
1667 return -ENOMEM;
1668 return 0;
1669}
1670EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1671
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001672static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001673{
1674 uint32_t total_objects = 0;
1675
1676 total_objects += dev->mode_config.num_crtc;
1677 total_objects += dev->mode_config.num_connector;
1678 total_objects += dev->mode_config.num_encoder;
1679
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001680 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001681 if (!group->id_list)
1682 return -ENOMEM;
1683
1684 group->num_crtcs = 0;
1685 group->num_connectors = 0;
1686 group->num_encoders = 0;
1687 return 0;
1688}
1689
Dave Airliead222792014-05-02 13:22:19 +10001690void drm_mode_group_destroy(struct drm_mode_group *group)
1691{
1692 kfree(group->id_list);
1693 group->id_list = NULL;
1694}
1695
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001696/*
1697 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1698 * the drm core's responsibility to set up mode control groups.
1699 */
Dave Airlief453ba02008-11-07 14:05:41 -08001700int drm_mode_group_init_legacy_group(struct drm_device *dev,
1701 struct drm_mode_group *group)
1702{
1703 struct drm_crtc *crtc;
1704 struct drm_encoder *encoder;
1705 struct drm_connector *connector;
1706 int ret;
1707
Thierry Reding0cc0b222014-12-10 13:03:37 +01001708 ret = drm_mode_group_init(dev, group);
1709 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001710 return ret;
1711
1712 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1713 group->id_list[group->num_crtcs++] = crtc->base.id;
1714
1715 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1716 group->id_list[group->num_crtcs + group->num_encoders++] =
1717 encoder->base.id;
1718
1719 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1720 group->id_list[group->num_crtcs + group->num_encoders +
1721 group->num_connectors++] = connector->base.id;
1722
1723 return 0;
1724}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001725EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001726
Dave Airlie2390cd12014-06-05 14:01:29 +10001727void drm_reinit_primary_mode_group(struct drm_device *dev)
1728{
1729 drm_modeset_lock_all(dev);
1730 drm_mode_group_destroy(&dev->primary->mode_group);
1731 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1732 drm_modeset_unlock_all(dev);
1733}
1734EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1735
Dave Airlief453ba02008-11-07 14:05:41 -08001736/**
Dave Airlief453ba02008-11-07 14:05:41 -08001737 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1738 * @out: drm_mode_modeinfo struct to return to the user
1739 * @in: drm_display_mode to use
1740 *
Dave Airlief453ba02008-11-07 14:05:41 -08001741 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1742 * the user.
1743 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001744static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1745 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001746{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001747 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1748 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1749 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1750 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1751 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1752 "timing values too large for mode info\n");
1753
Dave Airlief453ba02008-11-07 14:05:41 -08001754 out->clock = in->clock;
1755 out->hdisplay = in->hdisplay;
1756 out->hsync_start = in->hsync_start;
1757 out->hsync_end = in->hsync_end;
1758 out->htotal = in->htotal;
1759 out->hskew = in->hskew;
1760 out->vdisplay = in->vdisplay;
1761 out->vsync_start = in->vsync_start;
1762 out->vsync_end = in->vsync_end;
1763 out->vtotal = in->vtotal;
1764 out->vscan = in->vscan;
1765 out->vrefresh = in->vrefresh;
1766 out->flags = in->flags;
1767 out->type = in->type;
1768 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1769 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1770}
1771
1772/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001773 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001774 * @out: drm_display_mode to return to the user
1775 * @in: drm_mode_modeinfo to use
1776 *
Dave Airlief453ba02008-11-07 14:05:41 -08001777 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1778 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001779 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001780 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001781 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001782 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001783static int drm_crtc_convert_umode(struct drm_display_mode *out,
1784 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001785{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001786 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1787 return -ERANGE;
1788
Damien Lespiau5848ad42013-09-27 12:11:50 +01001789 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1790 return -EINVAL;
1791
Dave Airlief453ba02008-11-07 14:05:41 -08001792 out->clock = in->clock;
1793 out->hdisplay = in->hdisplay;
1794 out->hsync_start = in->hsync_start;
1795 out->hsync_end = in->hsync_end;
1796 out->htotal = in->htotal;
1797 out->hskew = in->hskew;
1798 out->vdisplay = in->vdisplay;
1799 out->vsync_start = in->vsync_start;
1800 out->vsync_end = in->vsync_end;
1801 out->vtotal = in->vtotal;
1802 out->vscan = in->vscan;
1803 out->vrefresh = in->vrefresh;
1804 out->flags = in->flags;
1805 out->type = in->type;
1806 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1807 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001808
1809 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001810}
1811
1812/**
1813 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001814 * @dev: drm device for the ioctl
1815 * @data: data pointer for the ioctl
1816 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001817 *
Dave Airlief453ba02008-11-07 14:05:41 -08001818 * Construct a set of configuration description structures and return
1819 * them to the user, including CRTC, connector and framebuffer configuration.
1820 *
1821 * Called by the user via ioctl.
1822 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001823 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001824 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001825 */
1826int drm_mode_getresources(struct drm_device *dev, void *data,
1827 struct drm_file *file_priv)
1828{
1829 struct drm_mode_card_res *card_res = data;
1830 struct list_head *lh;
1831 struct drm_framebuffer *fb;
1832 struct drm_connector *connector;
1833 struct drm_crtc *crtc;
1834 struct drm_encoder *encoder;
1835 int ret = 0;
1836 int connector_count = 0;
1837 int crtc_count = 0;
1838 int fb_count = 0;
1839 int encoder_count = 0;
1840 int copied = 0, i;
1841 uint32_t __user *fb_id;
1842 uint32_t __user *crtc_id;
1843 uint32_t __user *connector_id;
1844 uint32_t __user *encoder_id;
1845 struct drm_mode_group *mode_group;
1846
Dave Airliefb3b06c2011-02-08 13:55:21 +10001847 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1848 return -EINVAL;
1849
Dave Airlief453ba02008-11-07 14:05:41 -08001850
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001851 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001852 /*
1853 * For the non-control nodes we need to limit the list of resources
1854 * by IDs in the group list for this node
1855 */
1856 list_for_each(lh, &file_priv->fbs)
1857 fb_count++;
1858
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001859 /* handle this in 4 parts */
1860 /* FBs */
1861 if (card_res->count_fbs >= fb_count) {
1862 copied = 0;
1863 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1864 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1865 if (put_user(fb->base.id, fb_id + copied)) {
1866 mutex_unlock(&file_priv->fbs_lock);
1867 return -EFAULT;
1868 }
1869 copied++;
1870 }
1871 }
1872 card_res->count_fbs = fb_count;
1873 mutex_unlock(&file_priv->fbs_lock);
1874
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001875 /* mode_config.mutex protects the connector list against e.g. DP MST
1876 * connector hot-adding. CRTC/Plane lists are invariant. */
1877 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001878 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001879
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001880 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001881 list_for_each(lh, &dev->mode_config.crtc_list)
1882 crtc_count++;
1883
1884 list_for_each(lh, &dev->mode_config.connector_list)
1885 connector_count++;
1886
1887 list_for_each(lh, &dev->mode_config.encoder_list)
1888 encoder_count++;
1889 } else {
1890
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001891 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001892 crtc_count = mode_group->num_crtcs;
1893 connector_count = mode_group->num_connectors;
1894 encoder_count = mode_group->num_encoders;
1895 }
1896
1897 card_res->max_height = dev->mode_config.max_height;
1898 card_res->min_height = dev->mode_config.min_height;
1899 card_res->max_width = dev->mode_config.max_width;
1900 card_res->min_width = dev->mode_config.min_width;
1901
Dave Airlief453ba02008-11-07 14:05:41 -08001902 /* CRTCs */
1903 if (card_res->count_crtcs >= crtc_count) {
1904 copied = 0;
1905 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001906 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001907 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1908 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001909 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001910 if (put_user(crtc->base.id, crtc_id + copied)) {
1911 ret = -EFAULT;
1912 goto out;
1913 }
1914 copied++;
1915 }
1916 } else {
1917 for (i = 0; i < mode_group->num_crtcs; i++) {
1918 if (put_user(mode_group->id_list[i],
1919 crtc_id + copied)) {
1920 ret = -EFAULT;
1921 goto out;
1922 }
1923 copied++;
1924 }
1925 }
1926 }
1927 card_res->count_crtcs = crtc_count;
1928
1929 /* Encoders */
1930 if (card_res->count_encoders >= encoder_count) {
1931 copied = 0;
1932 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001933 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001934 list_for_each_entry(encoder,
1935 &dev->mode_config.encoder_list,
1936 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001937 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001938 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001939 if (put_user(encoder->base.id, encoder_id +
1940 copied)) {
1941 ret = -EFAULT;
1942 goto out;
1943 }
1944 copied++;
1945 }
1946 } else {
1947 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1948 if (put_user(mode_group->id_list[i],
1949 encoder_id + copied)) {
1950 ret = -EFAULT;
1951 goto out;
1952 }
1953 copied++;
1954 }
1955
1956 }
1957 }
1958 card_res->count_encoders = encoder_count;
1959
1960 /* Connectors */
1961 if (card_res->count_connectors >= connector_count) {
1962 copied = 0;
1963 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001964 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001965 list_for_each_entry(connector,
1966 &dev->mode_config.connector_list,
1967 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001968 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1969 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001970 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001971 if (put_user(connector->base.id,
1972 connector_id + copied)) {
1973 ret = -EFAULT;
1974 goto out;
1975 }
1976 copied++;
1977 }
1978 } else {
1979 int start = mode_group->num_crtcs +
1980 mode_group->num_encoders;
1981 for (i = start; i < start + mode_group->num_connectors; i++) {
1982 if (put_user(mode_group->id_list[i],
1983 connector_id + copied)) {
1984 ret = -EFAULT;
1985 goto out;
1986 }
1987 copied++;
1988 }
1989 }
1990 }
1991 card_res->count_connectors = connector_count;
1992
Jerome Glisse94401062010-07-15 15:43:25 -04001993 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001994 card_res->count_connectors, card_res->count_encoders);
1995
1996out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001997 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001998 return ret;
1999}
2000
2001/**
2002 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002003 * @dev: drm device for the ioctl
2004 * @data: data pointer for the ioctl
2005 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002006 *
Dave Airlief453ba02008-11-07 14:05:41 -08002007 * Construct a CRTC configuration structure to return to the user.
2008 *
2009 * Called by the user via ioctl.
2010 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002011 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002012 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002013 */
2014int drm_mode_getcrtc(struct drm_device *dev,
2015 void *data, struct drm_file *file_priv)
2016{
2017 struct drm_mode_crtc *crtc_resp = data;
2018 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002019
Dave Airliefb3b06c2011-02-08 13:55:21 +10002020 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2021 return -EINVAL;
2022
Rob Clarka2b34e22013-10-05 16:36:52 -04002023 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002024 if (!crtc)
2025 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002026
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002027 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08002028 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07002029 if (crtc->primary->fb)
2030 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002031 else
2032 crtc_resp->fb_id = 0;
2033
Daniel Vetter31c946e2015-02-22 12:24:17 +01002034 if (crtc->state) {
2035 crtc_resp->x = crtc->primary->state->src_x >> 16;
2036 crtc_resp->y = crtc->primary->state->src_y >> 16;
2037 if (crtc->state->enable) {
2038 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
2039 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08002040
Daniel Vetter31c946e2015-02-22 12:24:17 +01002041 } else {
2042 crtc_resp->mode_valid = 0;
2043 }
Dave Airlief453ba02008-11-07 14:05:41 -08002044 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01002045 crtc_resp->x = crtc->x;
2046 crtc_resp->y = crtc->y;
2047 if (crtc->enabled) {
2048 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
2049 crtc_resp->mode_valid = 1;
2050
2051 } else {
2052 crtc_resp->mode_valid = 0;
2053 }
Dave Airlief453ba02008-11-07 14:05:41 -08002054 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002055 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08002056
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002057 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002058}
2059
Damien Lespiau61d8e322013-09-25 16:45:22 +01002060static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2061 const struct drm_file *file_priv)
2062{
2063 /*
2064 * If user-space hasn't configured the driver to expose the stereo 3D
2065 * modes, don't expose them.
2066 */
2067 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2068 return false;
2069
2070 return true;
2071}
2072
Daniel Vetterabd69c52014-11-25 23:50:05 +01002073static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2074{
2075 /* For atomic drivers only state objects are synchronously updated and
2076 * protected by modeset locks, so check those first. */
2077 if (connector->state)
2078 return connector->state->best_encoder;
2079 return connector->encoder;
2080}
2081
Rob Clark95cbf112014-12-18 16:01:49 -05002082/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002083static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002084 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2085 uint32_t *arg_count_props)
2086{
Rob Clark88a48e22014-12-18 16:01:50 -05002087 int props_count;
2088 int i, ret, copied;
2089
2090 props_count = obj->properties->count;
2091 if (!atomic)
2092 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002093
2094 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002095 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002096 struct drm_property *prop = obj->properties->properties[i];
2097 uint64_t val;
2098
Rob Clark88a48e22014-12-18 16:01:50 -05002099 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2100 continue;
2101
Rob Clark95cbf112014-12-18 16:01:49 -05002102 ret = drm_object_property_get_value(obj, prop, &val);
2103 if (ret)
2104 return ret;
2105
2106 if (put_user(prop->base.id, prop_ptr + copied))
2107 return -EFAULT;
2108
2109 if (put_user(val, prop_values + copied))
2110 return -EFAULT;
2111
2112 copied++;
2113 }
2114 }
2115 *arg_count_props = props_count;
2116
2117 return 0;
2118}
2119
Dave Airlief453ba02008-11-07 14:05:41 -08002120/**
2121 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002122 * @dev: drm device for the ioctl
2123 * @data: data pointer for the ioctl
2124 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002125 *
Dave Airlief453ba02008-11-07 14:05:41 -08002126 * Construct a connector configuration structure to return to the user.
2127 *
2128 * Called by the user via ioctl.
2129 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002130 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002131 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002132 */
2133int drm_mode_getconnector(struct drm_device *dev, void *data,
2134 struct drm_file *file_priv)
2135{
2136 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002137 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002138 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002139 struct drm_display_mode *mode;
2140 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002141 int encoders_count = 0;
2142 int ret = 0;
2143 int copied = 0;
2144 int i;
2145 struct drm_mode_modeinfo u_mode;
2146 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002147 uint32_t __user *encoder_ptr;
2148
Dave Airliefb3b06c2011-02-08 13:55:21 +10002149 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2150 return -EINVAL;
2151
Dave Airlief453ba02008-11-07 14:05:41 -08002152 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2153
Jerome Glisse94401062010-07-15 15:43:25 -04002154 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002155
Daniel Vetter7b240562012-12-12 00:35:33 +01002156 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002157
Rob Clarka2b34e22013-10-05 16:36:52 -04002158 connector = drm_connector_find(dev, out_resp->connector_id);
2159 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002160 ret = -ENOENT;
Tommi Rantala04bdf442015-04-03 10:45:29 +03002161 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08002162 }
Dave Airlief453ba02008-11-07 14:05:41 -08002163
Thierry Reding01073b02014-12-10 13:03:38 +01002164 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2165 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002166 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002167
2168 if (out_resp->count_modes == 0) {
2169 connector->funcs->fill_modes(connector,
2170 dev->mode_config.max_width,
2171 dev->mode_config.max_height);
2172 }
2173
2174 /* delayed so we get modes regardless of pre-fill_modes state */
2175 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002176 if (drm_mode_expose_to_userspace(mode, file_priv))
2177 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002178
2179 out_resp->connector_id = connector->base.id;
2180 out_resp->connector_type = connector->connector_type;
2181 out_resp->connector_type_id = connector->connector_type_id;
2182 out_resp->mm_width = connector->display_info.width_mm;
2183 out_resp->mm_height = connector->display_info.height_mm;
2184 out_resp->subpixel = connector->display_info.subpixel_order;
2185 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002186
2187 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002188 encoder = drm_connector_get_encoder(connector);
2189 if (encoder)
2190 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002191 else
2192 out_resp->encoder_id = 0;
2193
2194 /*
2195 * This ioctl is called twice, once to determine how much space is
2196 * needed, and the 2nd time to fill it.
2197 */
2198 if ((out_resp->count_modes >= mode_count) && mode_count) {
2199 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002200 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002201 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002202 if (!drm_mode_expose_to_userspace(mode, file_priv))
2203 continue;
2204
Dave Airlief453ba02008-11-07 14:05:41 -08002205 drm_crtc_convert_to_umode(&u_mode, mode);
2206 if (copy_to_user(mode_ptr + copied,
2207 &u_mode, sizeof(u_mode))) {
2208 ret = -EFAULT;
2209 goto out;
2210 }
2211 copied++;
2212 }
2213 }
2214 out_resp->count_modes = mode_count;
2215
Rob Clark88a48e22014-12-18 16:01:50 -05002216 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002217 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2218 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2219 &out_resp->count_props);
2220 if (ret)
2221 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002222
2223 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2224 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002225 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002226 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2227 if (connector->encoder_ids[i] != 0) {
2228 if (put_user(connector->encoder_ids[i],
2229 encoder_ptr + copied)) {
2230 ret = -EFAULT;
2231 goto out;
2232 }
2233 copied++;
2234 }
2235 }
2236 }
2237 out_resp->count_encoders = encoders_count;
2238
2239out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002240 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Tommi Rantala04bdf442015-04-03 10:45:29 +03002241
2242out_unlock:
Daniel Vetter7b240562012-12-12 00:35:33 +01002243 mutex_unlock(&dev->mode_config.mutex);
2244
Dave Airlief453ba02008-11-07 14:05:41 -08002245 return ret;
2246}
2247
Daniel Vetterabd69c52014-11-25 23:50:05 +01002248static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2249{
2250 struct drm_connector *connector;
2251 struct drm_device *dev = encoder->dev;
2252 bool uses_atomic = false;
2253
2254 /* For atomic drivers only state objects are synchronously updated and
2255 * protected by modeset locks, so check those first. */
2256 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2257 if (!connector->state)
2258 continue;
2259
2260 uses_atomic = true;
2261
2262 if (connector->state->best_encoder != encoder)
2263 continue;
2264
2265 return connector->state->crtc;
2266 }
2267
2268 /* Don't return stale data (e.g. pending async disable). */
2269 if (uses_atomic)
2270 return NULL;
2271
2272 return encoder->crtc;
2273}
2274
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002275/**
2276 * drm_mode_getencoder - get encoder configuration
2277 * @dev: drm device for the ioctl
2278 * @data: data pointer for the ioctl
2279 * @file_priv: drm file for the ioctl call
2280 *
2281 * Construct a encoder configuration structure to return to the user.
2282 *
2283 * Called by the user via ioctl.
2284 *
2285 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002286 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002287 */
Dave Airlief453ba02008-11-07 14:05:41 -08002288int drm_mode_getencoder(struct drm_device *dev, void *data,
2289 struct drm_file *file_priv)
2290{
2291 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002292 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002293 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002294
Dave Airliefb3b06c2011-02-08 13:55:21 +10002295 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2296 return -EINVAL;
2297
Rob Clarka2b34e22013-10-05 16:36:52 -04002298 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002299 if (!encoder)
2300 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002301
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002302 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002303 crtc = drm_encoder_get_crtc(encoder);
2304 if (crtc)
2305 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002306 else
2307 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002308 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2309
Dave Airlief453ba02008-11-07 14:05:41 -08002310 enc_resp->encoder_type = encoder->encoder_type;
2311 enc_resp->encoder_id = encoder->base.id;
2312 enc_resp->possible_crtcs = encoder->possible_crtcs;
2313 enc_resp->possible_clones = encoder->possible_clones;
2314
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002315 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002316}
2317
2318/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002319 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002320 * @dev: DRM device
2321 * @data: ioctl data
2322 * @file_priv: DRM file info
2323 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002324 * Construct a list of plane ids to return to the user.
2325 *
2326 * Called by the user via ioctl.
2327 *
2328 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002329 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002330 */
2331int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002332 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002333{
2334 struct drm_mode_get_plane_res *plane_resp = data;
2335 struct drm_mode_config *config;
2336 struct drm_plane *plane;
2337 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002338 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002339 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002340
2341 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2342 return -EINVAL;
2343
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002344 config = &dev->mode_config;
2345
Matt Roper681e7ec2014-04-01 15:22:42 -07002346 if (file_priv->universal_planes)
2347 num_planes = config->num_total_plane;
2348 else
2349 num_planes = config->num_overlay_plane;
2350
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002351 /*
2352 * This ioctl is called twice, once to determine how much space is
2353 * needed, and the 2nd time to fill it.
2354 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002355 if (num_planes &&
2356 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002357 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002358
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002359 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002360 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002361 /*
2362 * Unless userspace set the 'universal planes'
2363 * capability bit, only advertise overlays.
2364 */
2365 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2366 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002367 continue;
2368
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002369 if (put_user(plane->base.id, plane_ptr + copied))
2370 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002371 copied++;
2372 }
2373 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002374 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002375
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002376 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002377}
2378
2379/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002380 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002381 * @dev: DRM device
2382 * @data: ioctl data
2383 * @file_priv: DRM file info
2384 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002385 * Construct a plane configuration structure to return to the user.
2386 *
2387 * Called by the user via ioctl.
2388 *
2389 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002390 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002391 */
2392int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002393 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002394{
2395 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002396 struct drm_plane *plane;
2397 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002398
2399 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2400 return -EINVAL;
2401
Rob Clarka2b34e22013-10-05 16:36:52 -04002402 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002403 if (!plane)
2404 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002405
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002406 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002407 if (plane->crtc)
2408 plane_resp->crtc_id = plane->crtc->base.id;
2409 else
2410 plane_resp->crtc_id = 0;
2411
2412 if (plane->fb)
2413 plane_resp->fb_id = plane->fb->base.id;
2414 else
2415 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002416 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002417
2418 plane_resp->plane_id = plane->base.id;
2419 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002420 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002421
2422 /*
2423 * This ioctl is called twice, once to determine how much space is
2424 * needed, and the 2nd time to fill it.
2425 */
2426 if (plane->format_count &&
2427 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002428 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002429 if (copy_to_user(format_ptr,
2430 plane->format_types,
2431 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002432 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002433 }
2434 }
2435 plane_resp->count_format_types = plane->format_count;
2436
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002437 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002438}
2439
Laurent Pinchartead86102015-03-05 02:25:43 +02002440/**
2441 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2442 * @plane: plane to check for format support
2443 * @format: the pixel format
2444 *
2445 * Returns:
2446 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2447 * otherwise.
2448 */
2449int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2450{
2451 unsigned int i;
2452
2453 for (i = 0; i < plane->format_count; i++) {
2454 if (format == plane->format_types[i])
2455 return 0;
2456 }
2457
2458 return -EINVAL;
2459}
2460
Matt Roperb36552b2014-06-10 08:28:09 -07002461/*
2462 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002463 *
Matt Roperb36552b2014-06-10 08:28:09 -07002464 * Note that we assume an extra reference has already been taken on fb. If the
2465 * update fails, this reference will be dropped before return; if it succeeds,
2466 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002467 *
Matt Roperb36552b2014-06-10 08:28:09 -07002468 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002469 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002470static int __setplane_internal(struct drm_plane *plane,
2471 struct drm_crtc *crtc,
2472 struct drm_framebuffer *fb,
2473 int32_t crtc_x, int32_t crtc_y,
2474 uint32_t crtc_w, uint32_t crtc_h,
2475 /* src_{x,y,w,h} values are 16.16 fixed point */
2476 uint32_t src_x, uint32_t src_y,
2477 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002478{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002479 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002480 unsigned int fb_width, fb_height;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002481
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002482 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002483 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002484 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002485 ret = plane->funcs->disable_plane(plane);
2486 if (!ret) {
2487 plane->crtc = NULL;
2488 plane->fb = NULL;
2489 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002490 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002491 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002492 goto out;
2493 }
2494
Matt Roper7f994f32014-05-29 08:06:51 -07002495 /* Check whether this plane is usable on this CRTC */
2496 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2497 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2498 ret = -EINVAL;
2499 goto out;
2500 }
2501
Ville Syrjälä62443be2011-12-20 00:06:47 +02002502 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002503 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2504 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002505 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2506 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002507 goto out;
2508 }
2509
Matt Roper3968be92015-04-13 11:06:13 -07002510 /* Give drivers some help against integer overflows */
2511 if (crtc_w > INT_MAX ||
2512 crtc_x > INT_MAX - (int32_t) crtc_w ||
2513 crtc_h > INT_MAX ||
2514 crtc_y > INT_MAX - (int32_t) crtc_h) {
2515 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2516 crtc_w, crtc_h, crtc_x, crtc_y);
2517 return -ERANGE;
2518 }
2519
2520
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002521 fb_width = fb->width << 16;
2522 fb_height = fb->height << 16;
2523
2524 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002525 if (src_w > fb_width ||
2526 src_x > fb_width - src_w ||
2527 src_h > fb_height ||
2528 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002529 DRM_DEBUG_KMS("Invalid source coordinates "
2530 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002531 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2532 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2533 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2534 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002535 ret = -ENOSPC;
2536 goto out;
2537 }
2538
Daniel Vetter3d30a592014-07-27 13:42:42 +02002539 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002540 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002541 crtc_x, crtc_y, crtc_w, crtc_h,
2542 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002543 if (!ret) {
2544 plane->crtc = crtc;
2545 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002546 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002547 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002548 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002549 }
2550
2551out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002552 if (fb)
2553 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002554 if (plane->old_fb)
2555 drm_framebuffer_unreference(plane->old_fb);
2556 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002557
2558 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002559}
Matt Roperb36552b2014-06-10 08:28:09 -07002560
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002561static int setplane_internal(struct drm_plane *plane,
2562 struct drm_crtc *crtc,
2563 struct drm_framebuffer *fb,
2564 int32_t crtc_x, int32_t crtc_y,
2565 uint32_t crtc_w, uint32_t crtc_h,
2566 /* src_{x,y,w,h} values are 16.16 fixed point */
2567 uint32_t src_x, uint32_t src_y,
2568 uint32_t src_w, uint32_t src_h)
2569{
2570 int ret;
2571
2572 drm_modeset_lock_all(plane->dev);
2573 ret = __setplane_internal(plane, crtc, fb,
2574 crtc_x, crtc_y, crtc_w, crtc_h,
2575 src_x, src_y, src_w, src_h);
2576 drm_modeset_unlock_all(plane->dev);
2577
2578 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002579}
2580
2581/**
2582 * drm_mode_setplane - configure a plane's configuration
2583 * @dev: DRM device
2584 * @data: ioctl data*
2585 * @file_priv: DRM file info
2586 *
2587 * Set plane configuration, including placement, fb, scaling, and other factors.
2588 * Or pass a NULL fb to disable (planes may be disabled without providing a
2589 * valid crtc).
2590 *
2591 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002592 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002593 */
2594int drm_mode_setplane(struct drm_device *dev, void *data,
2595 struct drm_file *file_priv)
2596{
2597 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002598 struct drm_plane *plane;
2599 struct drm_crtc *crtc = NULL;
2600 struct drm_framebuffer *fb = NULL;
2601
2602 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2603 return -EINVAL;
2604
Matt Roperb36552b2014-06-10 08:28:09 -07002605 /*
2606 * First, find the plane, crtc, and fb objects. If not available,
2607 * we don't bother to call the driver.
2608 */
Rob Clark933f6222014-11-25 20:33:11 -05002609 plane = drm_plane_find(dev, plane_req->plane_id);
2610 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002611 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2612 plane_req->plane_id);
2613 return -ENOENT;
2614 }
Matt Roperb36552b2014-06-10 08:28:09 -07002615
2616 if (plane_req->fb_id) {
2617 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2618 if (!fb) {
2619 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2620 plane_req->fb_id);
2621 return -ENOENT;
2622 }
2623
Rob Clark933f6222014-11-25 20:33:11 -05002624 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2625 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002626 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2627 plane_req->crtc_id);
2628 return -ENOENT;
2629 }
Matt Roperb36552b2014-06-10 08:28:09 -07002630 }
2631
Matt Roper161d0dc2014-06-10 08:28:10 -07002632 /*
2633 * setplane_internal will take care of deref'ing either the old or new
2634 * framebuffer depending on success.
2635 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002636 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002637 plane_req->crtc_x, plane_req->crtc_y,
2638 plane_req->crtc_w, plane_req->crtc_h,
2639 plane_req->src_x, plane_req->src_y,
2640 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002641}
2642
2643/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002644 * drm_mode_set_config_internal - helper to call ->set_config
2645 * @set: modeset config to set
2646 *
2647 * This is a little helper to wrap internal calls to the ->set_config driver
2648 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002649 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002650 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002651 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002652 */
2653int drm_mode_set_config_internal(struct drm_mode_set *set)
2654{
2655 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002656 struct drm_framebuffer *fb;
2657 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002658 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002659
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002660 /*
2661 * NOTE: ->set_config can also disable other crtcs (if we steal all
2662 * connectors from it), hence we need to refcount the fbs across all
2663 * crtcs. Atomic modeset will have saner semantics ...
2664 */
2665 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002666 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002667
Daniel Vetterb0d12322012-12-11 01:07:12 +01002668 fb = set->fb;
2669
2670 ret = crtc->funcs->set_config(set);
2671 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002672 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002673 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002674 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002675
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002676 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002677 if (tmp->primary->fb)
2678 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002679 if (tmp->primary->old_fb)
2680 drm_framebuffer_unreference(tmp->primary->old_fb);
2681 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002682 }
2683
2684 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002685}
2686EXPORT_SYMBOL(drm_mode_set_config_internal);
2687
Matt Roperaf936292014-04-01 15:22:34 -07002688/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002689 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2690 * @mode: mode to query
2691 * @hdisplay: hdisplay value to fill in
2692 * @vdisplay: vdisplay value to fill in
2693 *
2694 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2695 * the appropriate layout.
2696 */
2697void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2698 int *hdisplay, int *vdisplay)
2699{
2700 struct drm_display_mode adjusted;
2701
2702 drm_mode_copy(&adjusted, mode);
2703 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2704 *hdisplay = adjusted.crtc_hdisplay;
2705 *vdisplay = adjusted.crtc_vdisplay;
2706}
2707EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2708
2709/**
Matt Roperaf936292014-04-01 15:22:34 -07002710 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2711 * CRTC viewport
2712 * @crtc: CRTC that framebuffer will be displayed on
2713 * @x: x panning
2714 * @y: y panning
2715 * @mode: mode that framebuffer will be displayed under
2716 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002717 */
Matt Roperaf936292014-04-01 15:22:34 -07002718int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2719 int x, int y,
2720 const struct drm_display_mode *mode,
2721 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002722
2723{
2724 int hdisplay, vdisplay;
2725
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002726 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002727
Damien Lespiauc11e9282013-09-25 16:45:30 +01002728 if (crtc->invert_dimensions)
2729 swap(hdisplay, vdisplay);
2730
2731 if (hdisplay > fb->width ||
2732 vdisplay > fb->height ||
2733 x > fb->width - hdisplay ||
2734 y > fb->height - vdisplay) {
2735 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2736 fb->width, fb->height, hdisplay, vdisplay, x, y,
2737 crtc->invert_dimensions ? " (inverted)" : "");
2738 return -ENOSPC;
2739 }
2740
2741 return 0;
2742}
Matt Roperaf936292014-04-01 15:22:34 -07002743EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002744
Daniel Vetter2d13b672012-12-11 13:47:23 +01002745/**
Dave Airlief453ba02008-11-07 14:05:41 -08002746 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002747 * @dev: drm device for the ioctl
2748 * @data: data pointer for the ioctl
2749 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002750 *
Dave Airlief453ba02008-11-07 14:05:41 -08002751 * Build a new CRTC configuration based on user request.
2752 *
2753 * Called by the user via ioctl.
2754 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002755 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002756 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002757 */
2758int drm_mode_setcrtc(struct drm_device *dev, void *data,
2759 struct drm_file *file_priv)
2760{
2761 struct drm_mode_config *config = &dev->mode_config;
2762 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002763 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002764 struct drm_connector **connector_set = NULL, *connector;
2765 struct drm_framebuffer *fb = NULL;
2766 struct drm_display_mode *mode = NULL;
2767 struct drm_mode_set set;
2768 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002769 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002770 int i;
2771
Dave Airliefb3b06c2011-02-08 13:55:21 +10002772 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2773 return -EINVAL;
2774
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002775 /* For some reason crtc x/y offsets are signed internally. */
2776 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2777 return -ERANGE;
2778
Daniel Vetter84849902012-12-02 00:28:11 +01002779 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002780 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2781 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002782 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002783 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002784 goto out;
2785 }
Jerome Glisse94401062010-07-15 15:43:25 -04002786 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002787
2788 if (crtc_req->mode_valid) {
2789 /* If we have a mode we need a framebuffer. */
2790 /* If we pass -1, set the mode with the currently bound fb */
2791 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002792 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002793 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2794 ret = -EINVAL;
2795 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002796 }
Matt Roperf4510a22014-04-01 15:22:40 -07002797 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002798 /* Make refcounting symmetric with the lookup path. */
2799 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002800 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002801 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2802 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002803 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2804 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002805 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002806 goto out;
2807 }
Dave Airlief453ba02008-11-07 14:05:41 -08002808 }
2809
2810 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002811 if (!mode) {
2812 ret = -ENOMEM;
2813 goto out;
2814 }
2815
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002816 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2817 if (ret) {
2818 DRM_DEBUG_KMS("Invalid mode\n");
2819 goto out;
2820 }
2821
Ville Syrjälä23e1ce82014-12-17 13:56:24 +02002822 mode->status = drm_mode_validate_basic(mode);
2823 if (mode->status != MODE_OK) {
2824 ret = -EINVAL;
2825 goto out;
2826 }
2827
Dave Airlief453ba02008-11-07 14:05:41 -08002828 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002829
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002830 /*
2831 * Check whether the primary plane supports the fb pixel format.
2832 * Drivers not implementing the universal planes API use a
2833 * default formats list provided by the DRM core which doesn't
2834 * match real hardware capabilities. Skip the check in that
2835 * case.
2836 */
2837 if (!crtc->primary->format_default) {
2838 ret = drm_plane_check_pixel_format(crtc->primary,
2839 fb->pixel_format);
2840 if (ret) {
2841 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2842 drm_get_format_name(fb->pixel_format));
2843 goto out;
2844 }
2845 }
2846
Damien Lespiauc11e9282013-09-25 16:45:30 +01002847 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2848 mode, fb);
2849 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002850 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002851
Dave Airlief453ba02008-11-07 14:05:41 -08002852 }
2853
2854 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002855 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002856 ret = -EINVAL;
2857 goto out;
2858 }
2859
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002860 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002861 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002862 crtc_req->count_connectors);
2863 ret = -EINVAL;
2864 goto out;
2865 }
2866
2867 if (crtc_req->count_connectors > 0) {
2868 u32 out_id;
2869
2870 /* Avoid unbounded kernel memory allocation */
2871 if (crtc_req->count_connectors > config->num_connector) {
2872 ret = -EINVAL;
2873 goto out;
2874 }
2875
Thierry Reding2f6c5382014-12-10 13:03:36 +01002876 connector_set = kmalloc_array(crtc_req->count_connectors,
2877 sizeof(struct drm_connector *),
2878 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002879 if (!connector_set) {
2880 ret = -ENOMEM;
2881 goto out;
2882 }
2883
2884 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002885 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002886 if (get_user(out_id, &set_connectors_ptr[i])) {
2887 ret = -EFAULT;
2888 goto out;
2889 }
2890
Rob Clarka2b34e22013-10-05 16:36:52 -04002891 connector = drm_connector_find(dev, out_id);
2892 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002893 DRM_DEBUG_KMS("Connector id %d unknown\n",
2894 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002895 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002896 goto out;
2897 }
Jerome Glisse94401062010-07-15 15:43:25 -04002898 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2899 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002900 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002901
2902 connector_set[i] = connector;
2903 }
2904 }
2905
2906 set.crtc = crtc;
2907 set.x = crtc_req->x;
2908 set.y = crtc_req->y;
2909 set.mode = mode;
2910 set.connectors = connector_set;
2911 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002912 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002913 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002914
2915out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002916 if (fb)
2917 drm_framebuffer_unreference(fb);
2918
Dave Airlief453ba02008-11-07 14:05:41 -08002919 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002920 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002921 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002922 return ret;
2923}
2924
Matt Roper161d0dc2014-06-10 08:28:10 -07002925/**
2926 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2927 * universal plane handler call
2928 * @crtc: crtc to update cursor for
2929 * @req: data pointer for the ioctl
2930 * @file_priv: drm file for the ioctl call
2931 *
2932 * Legacy cursor ioctl's work directly with driver buffer handles. To
2933 * translate legacy ioctl calls into universal plane handler calls, we need to
2934 * wrap the native buffer handle in a drm_framebuffer.
2935 *
2936 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2937 * buffer with a pitch of 4*width; the universal plane interface should be used
2938 * directly in cases where the hardware can support other buffer settings and
2939 * userspace wants to make use of these capabilities.
2940 *
2941 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002942 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002943 */
2944static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2945 struct drm_mode_cursor2 *req,
2946 struct drm_file *file_priv)
2947{
2948 struct drm_device *dev = crtc->dev;
2949 struct drm_framebuffer *fb = NULL;
2950 struct drm_mode_fb_cmd2 fbreq = {
2951 .width = req->width,
2952 .height = req->height,
2953 .pixel_format = DRM_FORMAT_ARGB8888,
2954 .pitches = { req->width * 4 },
2955 .handles = { req->handle },
2956 };
2957 int32_t crtc_x, crtc_y;
2958 uint32_t crtc_w = 0, crtc_h = 0;
2959 uint32_t src_w = 0, src_h = 0;
2960 int ret = 0;
2961
2962 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002963 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002964
2965 /*
2966 * Obtain fb we'll be using (either new or existing) and take an extra
2967 * reference to it if fb != null. setplane will take care of dropping
2968 * the reference if the plane update fails.
2969 */
2970 if (req->flags & DRM_MODE_CURSOR_BO) {
2971 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002972 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002973 if (IS_ERR(fb)) {
2974 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2975 return PTR_ERR(fb);
2976 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002977 } else {
2978 fb = NULL;
2979 }
2980 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002981 fb = crtc->cursor->fb;
2982 if (fb)
2983 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002984 }
2985
2986 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2987 crtc_x = req->x;
2988 crtc_y = req->y;
2989 } else {
2990 crtc_x = crtc->cursor_x;
2991 crtc_y = crtc->cursor_y;
2992 }
2993
2994 if (fb) {
2995 crtc_w = fb->width;
2996 crtc_h = fb->height;
2997 src_w = fb->width << 16;
2998 src_h = fb->height << 16;
2999 }
3000
3001 /*
3002 * setplane_internal will take care of deref'ing either the old or new
3003 * framebuffer depending on success.
3004 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02003005 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07003006 crtc_x, crtc_y, crtc_w, crtc_h,
3007 0, 0, src_w, src_h);
3008
3009 /* Update successful; save new cursor position, if necessary */
3010 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
3011 crtc->cursor_x = req->x;
3012 crtc->cursor_y = req->y;
3013 }
3014
3015 return ret;
3016}
3017
Dave Airlie4c813d42013-06-20 11:48:52 +10003018static int drm_mode_cursor_common(struct drm_device *dev,
3019 struct drm_mode_cursor2 *req,
3020 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003021{
Dave Airlief453ba02008-11-07 14:05:41 -08003022 struct drm_crtc *crtc;
3023 int ret = 0;
3024
Dave Airliefb3b06c2011-02-08 13:55:21 +10003025 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3026 return -EINVAL;
3027
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00003028 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08003029 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003030
Rob Clarka2b34e22013-10-05 16:36:52 -04003031 crtc = drm_crtc_find(dev, req->crtc_id);
3032 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08003033 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003034 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003035 }
Dave Airlief453ba02008-11-07 14:05:41 -08003036
Matt Roper161d0dc2014-06-10 08:28:10 -07003037 /*
3038 * If this crtc has a universal cursor plane, call that plane's update
3039 * handler rather than using legacy cursor handlers.
3040 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01003041 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02003042 if (crtc->cursor) {
3043 ret = drm_mode_cursor_universal(crtc, req, file_priv);
3044 goto out;
3045 }
3046
Dave Airlief453ba02008-11-07 14:05:41 -08003047 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10003048 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08003049 ret = -ENXIO;
3050 goto out;
3051 }
3052 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003053 if (crtc->funcs->cursor_set2)
3054 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
3055 req->width, req->height, req->hot_x, req->hot_y);
3056 else
3057 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
3058 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08003059 }
3060
3061 if (req->flags & DRM_MODE_CURSOR_MOVE) {
3062 if (crtc->funcs->cursor_move) {
3063 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
3064 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08003065 ret = -EFAULT;
3066 goto out;
3067 }
3068 }
3069out:
Daniel Vetterd059f652014-07-25 18:07:40 +02003070 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01003071
Dave Airlief453ba02008-11-07 14:05:41 -08003072 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10003073
3074}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003075
3076
3077/**
3078 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3079 * @dev: drm device for the ioctl
3080 * @data: data pointer for the ioctl
3081 * @file_priv: drm file for the ioctl call
3082 *
3083 * Set the cursor configuration based on user request.
3084 *
3085 * Called by the user via ioctl.
3086 *
3087 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003088 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003089 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003090int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003091 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003092{
3093 struct drm_mode_cursor *req = data;
3094 struct drm_mode_cursor2 new_req;
3095
3096 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3097 new_req.hot_x = new_req.hot_y = 0;
3098
3099 return drm_mode_cursor_common(dev, &new_req, file_priv);
3100}
3101
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003102/**
3103 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3104 * @dev: drm device for the ioctl
3105 * @data: data pointer for the ioctl
3106 * @file_priv: drm file for the ioctl call
3107 *
3108 * Set the cursor configuration based on user request. This implements the 2nd
3109 * version of the cursor ioctl, which allows userspace to additionally specify
3110 * the hotspot of the pointer.
3111 *
3112 * Called by the user via ioctl.
3113 *
3114 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003115 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003116 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003117int drm_mode_cursor2_ioctl(struct drm_device *dev,
3118 void *data, struct drm_file *file_priv)
3119{
3120 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003121
Dave Airlie4c813d42013-06-20 11:48:52 +10003122 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003123}
3124
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003125/**
3126 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3127 * @bpp: bits per pixels
3128 * @depth: bit depth per pixel
3129 *
3130 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3131 * Useful in fbdev emulation code, since that deals in those values.
3132 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003133uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3134{
3135 uint32_t fmt;
3136
3137 switch (bpp) {
3138 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003139 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003140 break;
3141 case 16:
3142 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003143 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003144 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003145 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003146 break;
3147 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003148 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003149 break;
3150 case 32:
3151 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003152 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003153 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003154 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003155 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003156 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003157 break;
3158 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003159 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3160 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003161 break;
3162 }
3163
3164 return fmt;
3165}
3166EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3167
Dave Airlief453ba02008-11-07 14:05:41 -08003168/**
3169 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003170 * @dev: drm device for the ioctl
3171 * @data: data pointer for the ioctl
3172 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003173 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003174 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003175 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003176 *
3177 * Called by the user via ioctl.
3178 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003179 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003180 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003181 */
3182int drm_mode_addfb(struct drm_device *dev,
3183 void *data, struct drm_file *file_priv)
3184{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003185 struct drm_mode_fb_cmd *or = data;
3186 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003187 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003188
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003189 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003190 r.fb_id = or->fb_id;
3191 r.width = or->width;
3192 r.height = or->height;
3193 r.pitches[0] = or->pitch;
3194 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3195 r.handles[0] = or->handle;
3196
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003197 ret = drm_mode_addfb2(dev, &r, file_priv);
3198 if (ret)
3199 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003200
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003201 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003202
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003203 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003204}
3205
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003206static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003207{
3208 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3209
3210 switch (format) {
3211 case DRM_FORMAT_C8:
3212 case DRM_FORMAT_RGB332:
3213 case DRM_FORMAT_BGR233:
3214 case DRM_FORMAT_XRGB4444:
3215 case DRM_FORMAT_XBGR4444:
3216 case DRM_FORMAT_RGBX4444:
3217 case DRM_FORMAT_BGRX4444:
3218 case DRM_FORMAT_ARGB4444:
3219 case DRM_FORMAT_ABGR4444:
3220 case DRM_FORMAT_RGBA4444:
3221 case DRM_FORMAT_BGRA4444:
3222 case DRM_FORMAT_XRGB1555:
3223 case DRM_FORMAT_XBGR1555:
3224 case DRM_FORMAT_RGBX5551:
3225 case DRM_FORMAT_BGRX5551:
3226 case DRM_FORMAT_ARGB1555:
3227 case DRM_FORMAT_ABGR1555:
3228 case DRM_FORMAT_RGBA5551:
3229 case DRM_FORMAT_BGRA5551:
3230 case DRM_FORMAT_RGB565:
3231 case DRM_FORMAT_BGR565:
3232 case DRM_FORMAT_RGB888:
3233 case DRM_FORMAT_BGR888:
3234 case DRM_FORMAT_XRGB8888:
3235 case DRM_FORMAT_XBGR8888:
3236 case DRM_FORMAT_RGBX8888:
3237 case DRM_FORMAT_BGRX8888:
3238 case DRM_FORMAT_ARGB8888:
3239 case DRM_FORMAT_ABGR8888:
3240 case DRM_FORMAT_RGBA8888:
3241 case DRM_FORMAT_BGRA8888:
3242 case DRM_FORMAT_XRGB2101010:
3243 case DRM_FORMAT_XBGR2101010:
3244 case DRM_FORMAT_RGBX1010102:
3245 case DRM_FORMAT_BGRX1010102:
3246 case DRM_FORMAT_ARGB2101010:
3247 case DRM_FORMAT_ABGR2101010:
3248 case DRM_FORMAT_RGBA1010102:
3249 case DRM_FORMAT_BGRA1010102:
3250 case DRM_FORMAT_YUYV:
3251 case DRM_FORMAT_YVYU:
3252 case DRM_FORMAT_UYVY:
3253 case DRM_FORMAT_VYUY:
3254 case DRM_FORMAT_AYUV:
3255 case DRM_FORMAT_NV12:
3256 case DRM_FORMAT_NV21:
3257 case DRM_FORMAT_NV16:
3258 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003259 case DRM_FORMAT_NV24:
3260 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003261 case DRM_FORMAT_YUV410:
3262 case DRM_FORMAT_YVU410:
3263 case DRM_FORMAT_YUV411:
3264 case DRM_FORMAT_YVU411:
3265 case DRM_FORMAT_YUV420:
3266 case DRM_FORMAT_YVU420:
3267 case DRM_FORMAT_YUV422:
3268 case DRM_FORMAT_YVU422:
3269 case DRM_FORMAT_YUV444:
3270 case DRM_FORMAT_YVU444:
3271 return 0;
3272 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003273 DRM_DEBUG_KMS("invalid pixel format %s\n",
3274 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003275 return -EINVAL;
3276 }
3277}
3278
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003279static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003280{
3281 int ret, hsub, vsub, num_planes, i;
3282
3283 ret = format_check(r);
3284 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003285 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3286 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003287 return ret;
3288 }
3289
3290 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3291 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3292 num_planes = drm_format_num_planes(r->pixel_format);
3293
3294 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003295 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003296 return -EINVAL;
3297 }
3298
3299 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003300 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003301 return -EINVAL;
3302 }
3303
3304 for (i = 0; i < num_planes; i++) {
3305 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003306 unsigned int height = r->height / (i != 0 ? vsub : 1);
3307 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003308
3309 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003310 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003311 return -EINVAL;
3312 }
3313
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003314 if ((uint64_t) width * cpp > UINT_MAX)
3315 return -ERANGE;
3316
3317 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3318 return -ERANGE;
3319
3320 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003321 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003322 return -EINVAL;
3323 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003324
3325 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3326 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3327 r->modifier[i], i);
3328 return -EINVAL;
3329 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003330 }
3331
3332 return 0;
3333}
3334
Chris Wilson9a6f5132015-02-25 13:45:26 +00003335static struct drm_framebuffer *
3336internal_framebuffer_create(struct drm_device *dev,
3337 struct drm_mode_fb_cmd2 *r,
3338 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003339{
3340 struct drm_mode_config *config = &dev->mode_config;
3341 struct drm_framebuffer *fb;
3342 int ret;
3343
Rob Clarke3eb3252015-02-05 14:41:52 +00003344 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003345 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3346 return ERR_PTR(-EINVAL);
3347 }
3348
3349 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3350 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3351 r->width, config->min_width, config->max_width);
3352 return ERR_PTR(-EINVAL);
3353 }
3354 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3355 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3356 r->height, config->min_height, config->max_height);
3357 return ERR_PTR(-EINVAL);
3358 }
3359
Rob Clarke3eb3252015-02-05 14:41:52 +00003360 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3361 !dev->mode_config.allow_fb_modifiers) {
3362 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3363 return ERR_PTR(-EINVAL);
3364 }
3365
Matt Roperc394c2b2014-06-10 08:28:08 -07003366 ret = framebuffer_check(r);
3367 if (ret)
3368 return ERR_PTR(ret);
3369
3370 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3371 if (IS_ERR(fb)) {
3372 DRM_DEBUG_KMS("could not create framebuffer\n");
3373 return fb;
3374 }
3375
Matt Roperc394c2b2014-06-10 08:28:08 -07003376 return fb;
3377}
3378
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003379/**
3380 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003381 * @dev: drm device for the ioctl
3382 * @data: data pointer for the ioctl
3383 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003384 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003385 * Add a new FB to the specified CRTC, given a user request with format. This is
3386 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3387 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003388 *
3389 * Called by the user via ioctl.
3390 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003391 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003392 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003393 */
3394int drm_mode_addfb2(struct drm_device *dev,
3395 void *data, struct drm_file *file_priv)
3396{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003397 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003398 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003399
Dave Airliefb3b06c2011-02-08 13:55:21 +10003400 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3401 return -EINVAL;
3402
Chris Wilson9a6f5132015-02-25 13:45:26 +00003403 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003404 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003405 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003406
Chris Wilson9a6f5132015-02-25 13:45:26 +00003407 /* Transfer ownership to the filp for reaping on close */
3408
3409 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3410 mutex_lock(&file_priv->fbs_lock);
3411 r->fb_id = fb->base.id;
3412 list_add(&fb->filp_head, &file_priv->fbs);
3413 mutex_unlock(&file_priv->fbs_lock);
3414
Matt Roperc394c2b2014-06-10 08:28:08 -07003415 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003416}
3417
3418/**
3419 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003420 * @dev: drm device for the ioctl
3421 * @data: data pointer for the ioctl
3422 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003423 *
Dave Airlief453ba02008-11-07 14:05:41 -08003424 * Remove the FB specified by the user.
3425 *
3426 * Called by the user via ioctl.
3427 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003428 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003429 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003430 */
3431int drm_mode_rmfb(struct drm_device *dev,
3432 void *data, struct drm_file *file_priv)
3433{
Dave Airlief453ba02008-11-07 14:05:41 -08003434 struct drm_framebuffer *fb = NULL;
3435 struct drm_framebuffer *fbl = NULL;
3436 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003437 int found = 0;
3438
Dave Airliefb3b06c2011-02-08 13:55:21 +10003439 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3440 return -EINVAL;
3441
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003442 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003443 mutex_lock(&dev->mode_config.fb_lock);
3444 fb = __drm_framebuffer_lookup(dev, *id);
3445 if (!fb)
3446 goto fail_lookup;
3447
Dave Airlief453ba02008-11-07 14:05:41 -08003448 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3449 if (fb == fbl)
3450 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003451 if (!found)
3452 goto fail_lookup;
3453
3454 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3455 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003456
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003457 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003458 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003459 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003460
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003461 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003462
Daniel Vetter2b677e82012-12-10 21:16:05 +01003463 return 0;
3464
3465fail_lookup:
3466 mutex_unlock(&dev->mode_config.fb_lock);
3467 mutex_unlock(&file_priv->fbs_lock);
3468
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003469 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003470}
3471
3472/**
3473 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003474 * @dev: drm device for the ioctl
3475 * @data: data pointer for the ioctl
3476 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003477 *
Dave Airlief453ba02008-11-07 14:05:41 -08003478 * Lookup the FB given its ID and return info about it.
3479 *
3480 * Called by the user via ioctl.
3481 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003482 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003483 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003484 */
3485int drm_mode_getfb(struct drm_device *dev,
3486 void *data, struct drm_file *file_priv)
3487{
3488 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003489 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003490 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003491
Dave Airliefb3b06c2011-02-08 13:55:21 +10003492 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3493 return -EINVAL;
3494
Daniel Vetter786b99e2012-12-02 21:53:40 +01003495 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003496 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003497 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003498
3499 r->height = fb->height;
3500 r->width = fb->width;
3501 r->depth = fb->depth;
3502 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003503 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003504 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003505 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003506 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003507 ret = fb->funcs->create_handle(fb, file_priv,
3508 &r->handle);
3509 } else {
3510 /* GET_FB() is an unprivileged ioctl so we must not
3511 * return a buffer-handle to non-master processes! For
3512 * backwards-compatibility reasons, we cannot make
3513 * GET_FB() privileged, so just return an invalid handle
3514 * for non-masters. */
3515 r->handle = 0;
3516 ret = 0;
3517 }
3518 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003519 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003520 }
Dave Airlief453ba02008-11-07 14:05:41 -08003521
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003522 drm_framebuffer_unreference(fb);
3523
Dave Airlief453ba02008-11-07 14:05:41 -08003524 return ret;
3525}
3526
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003527/**
3528 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3529 * @dev: drm device for the ioctl
3530 * @data: data pointer for the ioctl
3531 * @file_priv: drm file for the ioctl call
3532 *
3533 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3534 * rectangle list. Generic userspace which does frontbuffer rendering must call
3535 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3536 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3537 *
3538 * Modesetting drivers which always update the frontbuffer do not need to
3539 * implement the corresponding ->dirty framebuffer callback.
3540 *
3541 * Called by the user via ioctl.
3542 *
3543 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003544 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003545 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003546int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3547 void *data, struct drm_file *file_priv)
3548{
3549 struct drm_clip_rect __user *clips_ptr;
3550 struct drm_clip_rect *clips = NULL;
3551 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003552 struct drm_framebuffer *fb;
3553 unsigned flags;
3554 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003555 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003556
Dave Airliefb3b06c2011-02-08 13:55:21 +10003557 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3558 return -EINVAL;
3559
Daniel Vetter786b99e2012-12-02 21:53:40 +01003560 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003561 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003562 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003563
3564 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003565 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003566
3567 if (!num_clips != !clips_ptr) {
3568 ret = -EINVAL;
3569 goto out_err1;
3570 }
3571
3572 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3573
3574 /* If userspace annotates copy, clips must come in pairs */
3575 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3576 ret = -EINVAL;
3577 goto out_err1;
3578 }
3579
3580 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003581 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3582 ret = -EINVAL;
3583 goto out_err1;
3584 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003585 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003586 if (!clips) {
3587 ret = -ENOMEM;
3588 goto out_err1;
3589 }
3590
3591 ret = copy_from_user(clips, clips_ptr,
3592 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003593 if (ret) {
3594 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003595 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003596 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003597 }
3598
3599 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003600 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3601 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003602 } else {
3603 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003604 }
3605
3606out_err2:
3607 kfree(clips);
3608out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003609 drm_framebuffer_unreference(fb);
3610
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003611 return ret;
3612}
3613
3614
Dave Airlief453ba02008-11-07 14:05:41 -08003615/**
3616 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003617 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003618 *
Dave Airlief453ba02008-11-07 14:05:41 -08003619 * Destroy all the FBs associated with @filp.
3620 *
3621 * Called by the user via ioctl.
3622 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003623 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003624 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003625 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003626void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003627{
Dave Airlief453ba02008-11-07 14:05:41 -08003628 struct drm_device *dev = priv->minor->dev;
3629 struct drm_framebuffer *fb, *tfb;
3630
Daniel Vetter1b116292014-09-24 21:51:06 +02003631 /*
3632 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003633 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003634 * avoid upsetting lockdep since the universal cursor code adds a
3635 * framebuffer while holding mutex locks.
3636 *
3637 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3638 * locks is impossible here since no one else but this function can get
3639 * at it any more.
3640 */
Dave Airlief453ba02008-11-07 14:05:41 -08003641 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003642
3643 mutex_lock(&dev->mode_config.fb_lock);
3644 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3645 __drm_framebuffer_unregister(dev, fb);
3646 mutex_unlock(&dev->mode_config.fb_lock);
3647
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003648 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003649
3650 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003651 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003652 }
Dave Airlief453ba02008-11-07 14:05:41 -08003653}
3654
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003655/**
3656 * drm_property_create - create a new property type
3657 * @dev: drm device
3658 * @flags: flags specifying the property type
3659 * @name: name of the property
3660 * @num_values: number of pre-defined values
3661 *
3662 * This creates a new generic drm property which can then be attached to a drm
3663 * object with drm_object_attach_property. The returned property object must be
3664 * freed with drm_property_destroy.
3665 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003666 * Note that the DRM core keeps a per-device list of properties and that, if
3667 * drm_mode_config_cleanup() is called, it will destroy all properties created
3668 * by the driver.
3669 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003670 * Returns:
3671 * A pointer to the newly created property on success, NULL on failure.
3672 */
Dave Airlief453ba02008-11-07 14:05:41 -08003673struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3674 const char *name, int num_values)
3675{
3676 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003677 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003678
3679 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3680 if (!property)
3681 return NULL;
3682
Rob Clark98f75de2014-05-30 11:37:03 -04003683 property->dev = dev;
3684
Dave Airlief453ba02008-11-07 14:05:41 -08003685 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003686 property->values = kcalloc(num_values, sizeof(uint64_t),
3687 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003688 if (!property->values)
3689 goto fail;
3690 }
3691
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003692 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3693 if (ret)
3694 goto fail;
3695
Dave Airlief453ba02008-11-07 14:05:41 -08003696 property->flags = flags;
3697 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003698 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003699
Vinson Lee471dd2e2011-11-10 11:55:40 -08003700 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003701 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003702 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3703 }
Dave Airlief453ba02008-11-07 14:05:41 -08003704
3705 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003706
3707 WARN_ON(!drm_property_type_valid(property));
3708
Dave Airlief453ba02008-11-07 14:05:41 -08003709 return property;
3710fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003711 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003712 kfree(property);
3713 return NULL;
3714}
3715EXPORT_SYMBOL(drm_property_create);
3716
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003717/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003718 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003719 * @dev: drm device
3720 * @flags: flags specifying the property type
3721 * @name: name of the property
3722 * @props: enumeration lists with property values
3723 * @num_values: number of pre-defined values
3724 *
3725 * This creates a new generic drm property which can then be attached to a drm
3726 * object with drm_object_attach_property. The returned property object must be
3727 * freed with drm_property_destroy.
3728 *
3729 * Userspace is only allowed to set one of the predefined values for enumeration
3730 * properties.
3731 *
3732 * Returns:
3733 * A pointer to the newly created property on success, NULL on failure.
3734 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003735struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3736 const char *name,
3737 const struct drm_prop_enum_list *props,
3738 int num_values)
3739{
3740 struct drm_property *property;
3741 int i, ret;
3742
3743 flags |= DRM_MODE_PROP_ENUM;
3744
3745 property = drm_property_create(dev, flags, name, num_values);
3746 if (!property)
3747 return NULL;
3748
3749 for (i = 0; i < num_values; i++) {
3750 ret = drm_property_add_enum(property, i,
3751 props[i].type,
3752 props[i].name);
3753 if (ret) {
3754 drm_property_destroy(dev, property);
3755 return NULL;
3756 }
3757 }
3758
3759 return property;
3760}
3761EXPORT_SYMBOL(drm_property_create_enum);
3762
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003763/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003764 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003765 * @dev: drm device
3766 * @flags: flags specifying the property type
3767 * @name: name of the property
3768 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003769 * @num_props: size of the @props array
3770 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003771 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003772 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003773 * object with drm_object_attach_property. The returned property object must be
3774 * freed with drm_property_destroy.
3775 *
3776 * Compared to plain enumeration properties userspace is allowed to set any
3777 * or'ed together combination of the predefined property bitflag values
3778 *
3779 * Returns:
3780 * A pointer to the newly created property on success, NULL on failure.
3781 */
Rob Clark49e27542012-05-17 02:23:26 -06003782struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3783 int flags, const char *name,
3784 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303785 int num_props,
3786 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003787{
3788 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303789 int i, ret, index = 0;
3790 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003791
3792 flags |= DRM_MODE_PROP_BITMASK;
3793
3794 property = drm_property_create(dev, flags, name, num_values);
3795 if (!property)
3796 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303797 for (i = 0; i < num_props; i++) {
3798 if (!(supported_bits & (1ULL << props[i].type)))
3799 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003800
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303801 if (WARN_ON(index >= num_values)) {
3802 drm_property_destroy(dev, property);
3803 return NULL;
3804 }
3805
3806 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003807 props[i].type,
3808 props[i].name);
3809 if (ret) {
3810 drm_property_destroy(dev, property);
3811 return NULL;
3812 }
3813 }
3814
3815 return property;
3816}
3817EXPORT_SYMBOL(drm_property_create_bitmask);
3818
Rob Clarkebc44cf2012-09-12 22:22:31 -05003819static struct drm_property *property_create_range(struct drm_device *dev,
3820 int flags, const char *name,
3821 uint64_t min, uint64_t max)
3822{
3823 struct drm_property *property;
3824
3825 property = drm_property_create(dev, flags, name, 2);
3826 if (!property)
3827 return NULL;
3828
3829 property->values[0] = min;
3830 property->values[1] = max;
3831
3832 return property;
3833}
3834
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003835/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003836 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003837 * @dev: drm device
3838 * @flags: flags specifying the property type
3839 * @name: name of the property
3840 * @min: minimum value of the property
3841 * @max: maximum value of the property
3842 *
3843 * This creates a new generic drm property which can then be attached to a drm
3844 * object with drm_object_attach_property. The returned property object must be
3845 * freed with drm_property_destroy.
3846 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003847 * Userspace is allowed to set any unsigned integer value in the (min, max)
3848 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003849 *
3850 * Returns:
3851 * A pointer to the newly created property on success, NULL on failure.
3852 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003853struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3854 const char *name,
3855 uint64_t min, uint64_t max)
3856{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003857 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3858 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003859}
3860EXPORT_SYMBOL(drm_property_create_range);
3861
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003862/**
3863 * drm_property_create_signed_range - create a new signed ranged property type
3864 * @dev: drm device
3865 * @flags: flags specifying the property type
3866 * @name: name of the property
3867 * @min: minimum value of the property
3868 * @max: maximum value of the property
3869 *
3870 * This creates a new generic drm property which can then be attached to a drm
3871 * object with drm_object_attach_property. The returned property object must be
3872 * freed with drm_property_destroy.
3873 *
3874 * Userspace is allowed to set any signed integer value in the (min, max)
3875 * range inclusive.
3876 *
3877 * Returns:
3878 * A pointer to the newly created property on success, NULL on failure.
3879 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003880struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3881 int flags, const char *name,
3882 int64_t min, int64_t max)
3883{
3884 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3885 name, I642U64(min), I642U64(max));
3886}
3887EXPORT_SYMBOL(drm_property_create_signed_range);
3888
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003889/**
3890 * drm_property_create_object - create a new object property type
3891 * @dev: drm device
3892 * @flags: flags specifying the property type
3893 * @name: name of the property
3894 * @type: object type from DRM_MODE_OBJECT_* defines
3895 *
3896 * This creates a new generic drm property which can then be attached to a drm
3897 * object with drm_object_attach_property. The returned property object must be
3898 * freed with drm_property_destroy.
3899 *
3900 * Userspace is only allowed to set this to any property value of the given
3901 * @type. Only useful for atomic properties, which is enforced.
3902 *
3903 * Returns:
3904 * A pointer to the newly created property on success, NULL on failure.
3905 */
Rob Clark98f75de2014-05-30 11:37:03 -04003906struct drm_property *drm_property_create_object(struct drm_device *dev,
3907 int flags, const char *name, uint32_t type)
3908{
3909 struct drm_property *property;
3910
3911 flags |= DRM_MODE_PROP_OBJECT;
3912
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003913 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3914 return NULL;
3915
Rob Clark98f75de2014-05-30 11:37:03 -04003916 property = drm_property_create(dev, flags, name, 1);
3917 if (!property)
3918 return NULL;
3919
3920 property->values[0] = type;
3921
3922 return property;
3923}
3924EXPORT_SYMBOL(drm_property_create_object);
3925
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003926/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003927 * drm_property_create_bool - create a new boolean property type
3928 * @dev: drm device
3929 * @flags: flags specifying the property type
3930 * @name: name of the property
3931 *
3932 * This creates a new generic drm property which can then be attached to a drm
3933 * object with drm_object_attach_property. The returned property object must be
3934 * freed with drm_property_destroy.
3935 *
3936 * This is implemented as a ranged property with only {0, 1} as valid values.
3937 *
3938 * Returns:
3939 * A pointer to the newly created property on success, NULL on failure.
3940 */
3941struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3942 const char *name)
3943{
3944 return drm_property_create_range(dev, flags, name, 0, 1);
3945}
3946EXPORT_SYMBOL(drm_property_create_bool);
3947
3948/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003949 * drm_property_add_enum - add a possible value to an enumeration property
3950 * @property: enumeration property to change
3951 * @index: index of the new enumeration
3952 * @value: value of the new enumeration
3953 * @name: symbolic name of the new enumeration
3954 *
3955 * This functions adds enumerations to a property.
3956 *
3957 * It's use is deprecated, drivers should use one of the more specific helpers
3958 * to directly create the property with all enumerations already attached.
3959 *
3960 * Returns:
3961 * Zero on success, error code on failure.
3962 */
Dave Airlief453ba02008-11-07 14:05:41 -08003963int drm_property_add_enum(struct drm_property *property, int index,
3964 uint64_t value, const char *name)
3965{
3966 struct drm_property_enum *prop_enum;
3967
Rob Clark5ea22f22014-05-30 11:34:01 -04003968 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3969 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003970 return -EINVAL;
3971
3972 /*
3973 * Bitmask enum properties have the additional constraint of values
3974 * from 0 to 63
3975 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003976 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3977 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003978 return -EINVAL;
3979
Daniel Vetter3758b342014-11-19 18:38:10 +01003980 if (!list_empty(&property->enum_list)) {
3981 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003982 if (prop_enum->value == value) {
3983 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3984 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3985 return 0;
3986 }
3987 }
3988 }
3989
3990 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3991 if (!prop_enum)
3992 return -ENOMEM;
3993
3994 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3995 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3996 prop_enum->value = value;
3997
3998 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003999 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08004000 return 0;
4001}
4002EXPORT_SYMBOL(drm_property_add_enum);
4003
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004004/**
4005 * drm_property_destroy - destroy a drm property
4006 * @dev: drm device
4007 * @property: property to destry
4008 *
4009 * This function frees a property including any attached resources like
4010 * enumeration values.
4011 */
Dave Airlief453ba02008-11-07 14:05:41 -08004012void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
4013{
4014 struct drm_property_enum *prop_enum, *pt;
4015
Daniel Vetter3758b342014-11-19 18:38:10 +01004016 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004017 list_del(&prop_enum->head);
4018 kfree(prop_enum);
4019 }
4020
4021 if (property->num_values)
4022 kfree(property->values);
4023 drm_mode_object_put(dev, &property->base);
4024 list_del(&property->head);
4025 kfree(property);
4026}
4027EXPORT_SYMBOL(drm_property_destroy);
4028
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004029/**
4030 * drm_object_attach_property - attach a property to a modeset object
4031 * @obj: drm modeset object
4032 * @property: property to attach
4033 * @init_val: initial value of the property
4034 *
4035 * This attaches the given property to the modeset object with the given initial
4036 * value. Currently this function cannot fail since the properties are stored in
4037 * a statically sized array.
4038 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004039void drm_object_attach_property(struct drm_mode_object *obj,
4040 struct drm_property *property,
4041 uint64_t init_val)
4042{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004043 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004044
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004045 if (count == DRM_OBJECT_MAX_PROPERTY) {
4046 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4047 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4048 "you see this message on the same object type.\n",
4049 obj->type);
4050 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03004051 }
4052
Rob Clarkb17cd752014-12-16 18:05:30 -05004053 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004054 obj->properties->values[count] = init_val;
4055 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05004056 if (property->flags & DRM_MODE_PROP_ATOMIC)
4057 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03004058}
4059EXPORT_SYMBOL(drm_object_attach_property);
4060
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004061/**
4062 * drm_object_property_set_value - set the value of a property
4063 * @obj: drm mode object to set property value for
4064 * @property: property to set
4065 * @val: value the property should be set to
4066 *
4067 * This functions sets a given property on a given object. This function only
4068 * changes the software state of the property, it does not call into the
4069 * driver's ->set_property callback.
4070 *
4071 * Returns:
4072 * Zero on success, error code on failure.
4073 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004074int drm_object_property_set_value(struct drm_mode_object *obj,
4075 struct drm_property *property, uint64_t val)
4076{
4077 int i;
4078
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004079 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004080 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004081 obj->properties->values[i] = val;
4082 return 0;
4083 }
4084 }
4085
4086 return -EINVAL;
4087}
4088EXPORT_SYMBOL(drm_object_property_set_value);
4089
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004090/**
4091 * drm_object_property_get_value - retrieve the value of a property
4092 * @obj: drm mode object to get property value from
4093 * @property: property to retrieve
4094 * @val: storage for the property value
4095 *
4096 * This function retrieves the softare state of the given property for the given
4097 * property. Since there is no driver callback to retrieve the current property
4098 * value this might be out of sync with the hardware, depending upon the driver
4099 * and property.
4100 *
4101 * Returns:
4102 * Zero on success, error code on failure.
4103 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004104int drm_object_property_get_value(struct drm_mode_object *obj,
4105 struct drm_property *property, uint64_t *val)
4106{
4107 int i;
4108
Rob Clark88a48e22014-12-18 16:01:50 -05004109 /* read-only properties bypass atomic mechanism and still store
4110 * their value in obj->properties->values[].. mostly to avoid
4111 * having to deal w/ EDID and similar props in atomic paths:
4112 */
4113 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4114 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4115 return drm_atomic_get_property(obj, property, val);
4116
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004117 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004118 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004119 *val = obj->properties->values[i];
4120 return 0;
4121 }
4122 }
4123
4124 return -EINVAL;
4125}
4126EXPORT_SYMBOL(drm_object_property_get_value);
4127
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004128/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004129 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004130 * @dev: DRM device
4131 * @data: ioctl data
4132 * @file_priv: DRM file info
4133 *
Daniel Vetter1a498632014-11-19 18:38:09 +01004134 * This function retrieves the metadata for a given property, like the different
4135 * possible values for an enum property or the limits for a range property.
4136 *
4137 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004138 *
4139 * Called by the user via ioctl.
4140 *
4141 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004142 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004143 */
Dave Airlief453ba02008-11-07 14:05:41 -08004144int drm_mode_getproperty_ioctl(struct drm_device *dev,
4145 void *data, struct drm_file *file_priv)
4146{
Dave Airlief453ba02008-11-07 14:05:41 -08004147 struct drm_mode_get_property *out_resp = data;
4148 struct drm_property *property;
4149 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004150 int value_count = 0;
4151 int ret = 0, i;
4152 int copied;
4153 struct drm_property_enum *prop_enum;
4154 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004155 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004156
Dave Airliefb3b06c2011-02-08 13:55:21 +10004157 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4158 return -EINVAL;
4159
Daniel Vetter84849902012-12-02 00:28:11 +01004160 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004161 property = drm_property_find(dev, out_resp->prop_id);
4162 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004163 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004164 goto done;
4165 }
Dave Airlief453ba02008-11-07 14:05:41 -08004166
Rob Clark5ea22f22014-05-30 11:34:01 -04004167 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4168 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004169 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004170 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004171 }
4172
4173 value_count = property->num_values;
4174
4175 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4176 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4177 out_resp->flags = property->flags;
4178
4179 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004180 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004181 for (i = 0; i < value_count; i++) {
4182 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4183 ret = -EFAULT;
4184 goto done;
4185 }
4186 }
4187 }
4188 out_resp->count_values = value_count;
4189
Rob Clark5ea22f22014-05-30 11:34:01 -04004190 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4191 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004192 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4193 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004194 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004195 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004196
4197 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4198 ret = -EFAULT;
4199 goto done;
4200 }
4201
4202 if (copy_to_user(&enum_ptr[copied].name,
4203 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4204 ret = -EFAULT;
4205 goto done;
4206 }
4207 copied++;
4208 }
4209 }
4210 out_resp->count_enum_blobs = enum_count;
4211 }
4212
Daniel Vetter3758b342014-11-19 18:38:10 +01004213 /*
4214 * NOTE: The idea seems to have been to use this to read all the blob
4215 * property values. But nothing ever added them to the corresponding
4216 * list, userspace always used the special-purpose get_blob ioctl to
4217 * read the value for a blob property. It also doesn't make a lot of
4218 * sense to return values here when everything else is just metadata for
4219 * the property itself.
4220 */
4221 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4222 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004223done:
Daniel Vetter84849902012-12-02 00:28:11 +01004224 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004225 return ret;
4226}
4227
Thierry Redingecbbe592014-05-13 11:36:13 +02004228static struct drm_property_blob *
4229drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004230 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004231{
4232 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004233 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004234
4235 if (!length || !data)
4236 return NULL;
4237
4238 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4239 if (!blob)
4240 return NULL;
4241
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004242 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4243 if (ret) {
4244 kfree(blob);
4245 return NULL;
4246 }
4247
Dave Airlief453ba02008-11-07 14:05:41 -08004248 blob->length = length;
4249
4250 memcpy(blob->data, data, length);
4251
Dave Airlief453ba02008-11-07 14:05:41 -08004252 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4253 return blob;
4254}
4255
4256static void drm_property_destroy_blob(struct drm_device *dev,
4257 struct drm_property_blob *blob)
4258{
4259 drm_mode_object_put(dev, &blob->base);
4260 list_del(&blob->head);
4261 kfree(blob);
4262}
4263
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004264/**
4265 * drm_mode_getblob_ioctl - get the contents of a blob property value
4266 * @dev: DRM device
4267 * @data: ioctl data
4268 * @file_priv: DRM file info
4269 *
4270 * This function retrieves the contents of a blob property. The value stored in
4271 * an object's blob property is just a normal modeset object id.
4272 *
4273 * Called by the user via ioctl.
4274 *
4275 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004276 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004277 */
Dave Airlief453ba02008-11-07 14:05:41 -08004278int drm_mode_getblob_ioctl(struct drm_device *dev,
4279 void *data, struct drm_file *file_priv)
4280{
Dave Airlief453ba02008-11-07 14:05:41 -08004281 struct drm_mode_get_blob *out_resp = data;
4282 struct drm_property_blob *blob;
4283 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004284 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004285
Dave Airliefb3b06c2011-02-08 13:55:21 +10004286 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4287 return -EINVAL;
4288
Daniel Vetter84849902012-12-02 00:28:11 +01004289 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004290 blob = drm_property_blob_find(dev, out_resp->blob_id);
4291 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004292 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004293 goto done;
4294 }
Dave Airlief453ba02008-11-07 14:05:41 -08004295
4296 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004297 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004298 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004299 ret = -EFAULT;
4300 goto done;
4301 }
4302 }
4303 out_resp->length = blob->length;
4304
4305done:
Daniel Vetter84849902012-12-02 00:28:11 +01004306 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004307 return ret;
4308}
4309
Dave Airliecc7096f2014-10-22 12:03:04 +10004310/**
4311 * drm_mode_connector_set_path_property - set tile property on connector
4312 * @connector: connector to set property on.
4313 * @path: path to use for property.
4314 *
4315 * This creates a property to expose to userspace to specify a
4316 * connector path. This is mainly used for DisplayPort MST where
4317 * connectors have a topology and we want to allow userspace to give
4318 * them more meaningful names.
4319 *
4320 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004321 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004322 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004323int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004324 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004325{
4326 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004327 size_t size = strlen(path) + 1;
4328 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004329
4330 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4331 size, path);
4332 if (!connector->path_blob_ptr)
4333 return -EINVAL;
4334
4335 ret = drm_object_property_set_value(&connector->base,
4336 dev->mode_config.path_property,
4337 connector->path_blob_ptr->base.id);
4338 return ret;
4339}
4340EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4341
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004342/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004343 * drm_mode_connector_set_tile_property - set tile property on connector
4344 * @connector: connector to set property on.
4345 *
4346 * This looks up the tile information for a connector, and creates a
4347 * property for userspace to parse if it exists. The property is of
4348 * the form of 8 integers using ':' as a separator.
4349 *
4350 * Returns:
4351 * Zero on success, errno on failure.
4352 */
4353int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4354{
4355 struct drm_device *dev = connector->dev;
4356 int ret, size;
4357 char tile[256];
4358
4359 if (connector->tile_blob_ptr)
4360 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4361
4362 if (!connector->has_tile) {
4363 connector->tile_blob_ptr = NULL;
4364 ret = drm_object_property_set_value(&connector->base,
4365 dev->mode_config.tile_property, 0);
4366 return ret;
4367 }
4368
4369 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4370 connector->tile_group->id, connector->tile_is_single_monitor,
4371 connector->num_h_tile, connector->num_v_tile,
4372 connector->tile_h_loc, connector->tile_v_loc,
4373 connector->tile_h_size, connector->tile_v_size);
4374 size = strlen(tile) + 1;
4375
4376 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4377 size, tile);
4378 if (!connector->tile_blob_ptr)
4379 return -EINVAL;
4380
4381 ret = drm_object_property_set_value(&connector->base,
4382 dev->mode_config.tile_property,
4383 connector->tile_blob_ptr->base.id);
4384 return ret;
4385}
4386EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4387
4388/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004389 * drm_mode_connector_update_edid_property - update the edid property of a connector
4390 * @connector: drm connector
4391 * @edid: new value of the edid property
4392 *
4393 * This function creates a new blob modeset object and assigns its id to the
4394 * connector's edid property.
4395 *
4396 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004397 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004398 */
Dave Airlief453ba02008-11-07 14:05:41 -08004399int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004400 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004401{
4402 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004403 size_t size;
4404 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004405
Thomas Wood4cf2b282014-06-18 17:52:33 +01004406 /* ignore requests to set edid when overridden */
4407 if (connector->override_edid)
4408 return 0;
4409
Dave Airlief453ba02008-11-07 14:05:41 -08004410 if (connector->edid_blob_ptr)
4411 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4412
4413 /* Delete edid, when there is none. */
4414 if (!edid) {
4415 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004416 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004417 return ret;
4418 }
4419
Adam Jackson7466f4c2010-03-29 21:43:23 +00004420 size = EDID_LENGTH * (1 + edid->extensions);
4421 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4422 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004423 if (!connector->edid_blob_ptr)
4424 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004425
Rob Clark58495562012-10-11 20:50:56 -05004426 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004427 dev->mode_config.edid_property,
4428 connector->edid_blob_ptr->base.id);
4429
4430 return ret;
4431}
4432EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4433
Rob Clark3843e712014-12-16 18:05:29 -05004434/* Some properties could refer to dynamic refcnt'd objects, or things that
4435 * need special locking to handle lifetime issues (ie. to ensure the prop
4436 * value doesn't become invalid part way through the property update due to
4437 * race). The value returned by reference via 'obj' should be passed back
4438 * to drm_property_change_valid_put() after the property is set (and the
4439 * object to which the property is attached has a chance to take it's own
4440 * reference).
4441 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004442bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004443 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004444{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004445 int i;
4446
Paulo Zanoni26a34812012-05-15 18:08:59 -03004447 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4448 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004449
Rob Clark3843e712014-12-16 18:05:29 -05004450 *ref = NULL;
4451
Rob Clark5ea22f22014-05-30 11:34:01 -04004452 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004453 if (value < property->values[0] || value > property->values[1])
4454 return false;
4455 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004456 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4457 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004458
Rob Clarkebc44cf2012-09-12 22:22:31 -05004459 if (svalue < U642I64(property->values[0]) ||
4460 svalue > U642I64(property->values[1]))
4461 return false;
4462 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004463 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004464 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004465
Rob Clark49e27542012-05-17 02:23:26 -06004466 for (i = 0; i < property->num_values; i++)
4467 valid_mask |= (1ULL << property->values[i]);
4468 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004469 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004470 /* Only the driver knows */
4471 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004472 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004473 /* a zero value for an object property translates to null: */
4474 if (value == 0)
4475 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004476
4477 /* handle refcnt'd objects specially: */
4478 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4479 struct drm_framebuffer *fb;
4480 fb = drm_framebuffer_lookup(property->dev, value);
4481 if (fb) {
4482 *ref = &fb->base;
4483 return true;
4484 } else {
4485 return false;
4486 }
4487 } else {
4488 return _object_find(property->dev, value, property->values[0]) != NULL;
4489 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004490 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004491
4492 for (i = 0; i < property->num_values; i++)
4493 if (property->values[i] == value)
4494 return true;
4495 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004496}
4497
Rob Clarkd34f20d2014-12-18 16:01:56 -05004498void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004499 struct drm_mode_object *ref)
4500{
4501 if (!ref)
4502 return;
4503
4504 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4505 if (property->values[0] == DRM_MODE_OBJECT_FB)
4506 drm_framebuffer_unreference(obj_to_fb(ref));
4507 }
4508}
4509
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004510/**
4511 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4512 * @dev: DRM device
4513 * @data: ioctl data
4514 * @file_priv: DRM file info
4515 *
4516 * This function sets the current value for a connectors's property. It also
4517 * calls into a driver's ->set_property callback to update the hardware state
4518 *
4519 * Called by the user via ioctl.
4520 *
4521 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004522 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004523 */
Dave Airlief453ba02008-11-07 14:05:41 -08004524int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4525 void *data, struct drm_file *file_priv)
4526{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004527 struct drm_mode_connector_set_property *conn_set_prop = data;
4528 struct drm_mode_obj_set_property obj_set_prop = {
4529 .value = conn_set_prop->value,
4530 .prop_id = conn_set_prop->prop_id,
4531 .obj_id = conn_set_prop->connector_id,
4532 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4533 };
Dave Airlief453ba02008-11-07 14:05:41 -08004534
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004535 /* It does all the locking and checking we need */
4536 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004537}
4538
Paulo Zanonic5431882012-05-15 18:09:02 -03004539static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4540 struct drm_property *property,
4541 uint64_t value)
4542{
4543 int ret = -EINVAL;
4544 struct drm_connector *connector = obj_to_connector(obj);
4545
4546 /* Do DPMS ourselves */
4547 if (property == connector->dev->mode_config.dpms_property) {
4548 if (connector->funcs->dpms)
4549 (*connector->funcs->dpms)(connector, (int)value);
4550 ret = 0;
4551 } else if (connector->funcs->set_property)
4552 ret = connector->funcs->set_property(connector, property, value);
4553
4554 /* store the property value if successful */
4555 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004556 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004557 return ret;
4558}
4559
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004560static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4561 struct drm_property *property,
4562 uint64_t value)
4563{
4564 int ret = -EINVAL;
4565 struct drm_crtc *crtc = obj_to_crtc(obj);
4566
4567 if (crtc->funcs->set_property)
4568 ret = crtc->funcs->set_property(crtc, property, value);
4569 if (!ret)
4570 drm_object_property_set_value(obj, property, value);
4571
4572 return ret;
4573}
4574
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004575/**
4576 * drm_mode_plane_set_obj_prop - set the value of a property
4577 * @plane: drm plane object to set property value for
4578 * @property: property to set
4579 * @value: value the property should be set to
4580 *
4581 * This functions sets a given property on a given plane object. This function
4582 * calls the driver's ->set_property callback and changes the software state of
4583 * the property if the callback succeeds.
4584 *
4585 * Returns:
4586 * Zero on success, error code on failure.
4587 */
4588int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4589 struct drm_property *property,
4590 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004591{
4592 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004593 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004594
4595 if (plane->funcs->set_property)
4596 ret = plane->funcs->set_property(plane, property, value);
4597 if (!ret)
4598 drm_object_property_set_value(obj, property, value);
4599
4600 return ret;
4601}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004602EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004603
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004604/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004605 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004606 * @dev: DRM device
4607 * @data: ioctl data
4608 * @file_priv: DRM file info
4609 *
4610 * This function retrieves the current value for an object's property. Compared
4611 * to the connector specific ioctl this one is extended to also work on crtc and
4612 * plane objects.
4613 *
4614 * Called by the user via ioctl.
4615 *
4616 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004617 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004618 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004619int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4620 struct drm_file *file_priv)
4621{
4622 struct drm_mode_obj_get_properties *arg = data;
4623 struct drm_mode_object *obj;
4624 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004625
4626 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4627 return -EINVAL;
4628
Daniel Vetter84849902012-12-02 00:28:11 +01004629 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004630
4631 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4632 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004633 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004634 goto out;
4635 }
4636 if (!obj->properties) {
4637 ret = -EINVAL;
4638 goto out;
4639 }
4640
Rob Clark88a48e22014-12-18 16:01:50 -05004641 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004642 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4643 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4644 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004645
Paulo Zanonic5431882012-05-15 18:09:02 -03004646out:
Daniel Vetter84849902012-12-02 00:28:11 +01004647 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004648 return ret;
4649}
4650
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004651/**
4652 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4653 * @dev: DRM device
4654 * @data: ioctl data
4655 * @file_priv: DRM file info
4656 *
4657 * This function sets the current value for an object's property. It also calls
4658 * into a driver's ->set_property callback to update the hardware state.
4659 * Compared to the connector specific ioctl this one is extended to also work on
4660 * crtc and plane objects.
4661 *
4662 * Called by the user via ioctl.
4663 *
4664 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004665 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004666 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004667int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4668 struct drm_file *file_priv)
4669{
4670 struct drm_mode_obj_set_property *arg = data;
4671 struct drm_mode_object *arg_obj;
4672 struct drm_mode_object *prop_obj;
4673 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004674 int i, ret = -EINVAL;
4675 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004676
4677 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4678 return -EINVAL;
4679
Daniel Vetter84849902012-12-02 00:28:11 +01004680 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004681
4682 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004683 if (!arg_obj) {
4684 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004685 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004686 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004687 if (!arg_obj->properties)
4688 goto out;
4689
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004690 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004691 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004692 break;
4693
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004694 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004695 goto out;
4696
4697 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4698 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004699 if (!prop_obj) {
4700 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004701 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004702 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004703 property = obj_to_property(prop_obj);
4704
Rob Clark3843e712014-12-16 18:05:29 -05004705 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004706 goto out;
4707
4708 switch (arg_obj->type) {
4709 case DRM_MODE_OBJECT_CONNECTOR:
4710 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4711 arg->value);
4712 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004713 case DRM_MODE_OBJECT_CRTC:
4714 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4715 break;
Rob Clark4d939142012-05-17 02:23:27 -06004716 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004717 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4718 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004719 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004720 }
4721
Rob Clark3843e712014-12-16 18:05:29 -05004722 drm_property_change_valid_put(property, ref);
4723
Paulo Zanonic5431882012-05-15 18:09:02 -03004724out:
Daniel Vetter84849902012-12-02 00:28:11 +01004725 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004726 return ret;
4727}
4728
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004729/**
4730 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4731 * @connector: connector to attach
4732 * @encoder: encoder to attach @connector to
4733 *
4734 * This function links up a connector to an encoder. Note that the routing
4735 * restrictions between encoders and crtcs are exposed to userspace through the
4736 * possible_clones and possible_crtcs bitmasks.
4737 *
4738 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004739 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004740 */
Dave Airlief453ba02008-11-07 14:05:41 -08004741int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4742 struct drm_encoder *encoder)
4743{
4744 int i;
4745
4746 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4747 if (connector->encoder_ids[i] == 0) {
4748 connector->encoder_ids[i] = encoder->base.id;
4749 return 0;
4750 }
4751 }
4752 return -ENOMEM;
4753}
4754EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4755
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004756/**
4757 * drm_mode_crtc_set_gamma_size - set the gamma table size
4758 * @crtc: CRTC to set the gamma table size for
4759 * @gamma_size: size of the gamma table
4760 *
4761 * Drivers which support gamma tables should set this to the supported gamma
4762 * table size when initializing the CRTC. Currently the drm core only supports a
4763 * fixed gamma table size.
4764 *
4765 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004766 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004767 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004768int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004769 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004770{
4771 crtc->gamma_size = gamma_size;
4772
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004773 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4774 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004775 if (!crtc->gamma_store) {
4776 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004777 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004778 }
4779
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004780 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004781}
4782EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4783
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004784/**
4785 * drm_mode_gamma_set_ioctl - set the gamma table
4786 * @dev: DRM device
4787 * @data: ioctl data
4788 * @file_priv: DRM file info
4789 *
4790 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4791 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4792 *
4793 * Called by the user via ioctl.
4794 *
4795 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004796 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004797 */
Dave Airlief453ba02008-11-07 14:05:41 -08004798int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4799 void *data, struct drm_file *file_priv)
4800{
4801 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004802 struct drm_crtc *crtc;
4803 void *r_base, *g_base, *b_base;
4804 int size;
4805 int ret = 0;
4806
Dave Airliefb3b06c2011-02-08 13:55:21 +10004807 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4808 return -EINVAL;
4809
Daniel Vetter84849902012-12-02 00:28:11 +01004810 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004811 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4812 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004813 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004814 goto out;
4815 }
Dave Airlief453ba02008-11-07 14:05:41 -08004816
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004817 if (crtc->funcs->gamma_set == NULL) {
4818 ret = -ENOSYS;
4819 goto out;
4820 }
4821
Dave Airlief453ba02008-11-07 14:05:41 -08004822 /* memcpy into gamma store */
4823 if (crtc_lut->gamma_size != crtc->gamma_size) {
4824 ret = -EINVAL;
4825 goto out;
4826 }
4827
4828 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4829 r_base = crtc->gamma_store;
4830 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4831 ret = -EFAULT;
4832 goto out;
4833 }
4834
4835 g_base = r_base + size;
4836 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4837 ret = -EFAULT;
4838 goto out;
4839 }
4840
4841 b_base = g_base + size;
4842 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4843 ret = -EFAULT;
4844 goto out;
4845 }
4846
James Simmons72034252010-08-03 01:33:19 +01004847 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004848
4849out:
Daniel Vetter84849902012-12-02 00:28:11 +01004850 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004851 return ret;
4852
4853}
4854
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004855/**
4856 * drm_mode_gamma_get_ioctl - get the gamma table
4857 * @dev: DRM device
4858 * @data: ioctl data
4859 * @file_priv: DRM file info
4860 *
4861 * Copy the current gamma table into the storage provided. This also provides
4862 * the gamma table size the driver expects, which can be used to size the
4863 * allocated storage.
4864 *
4865 * Called by the user via ioctl.
4866 *
4867 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004868 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004869 */
Dave Airlief453ba02008-11-07 14:05:41 -08004870int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4871 void *data, struct drm_file *file_priv)
4872{
4873 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004874 struct drm_crtc *crtc;
4875 void *r_base, *g_base, *b_base;
4876 int size;
4877 int ret = 0;
4878
Dave Airliefb3b06c2011-02-08 13:55:21 +10004879 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4880 return -EINVAL;
4881
Daniel Vetter84849902012-12-02 00:28:11 +01004882 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004883 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4884 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004885 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004886 goto out;
4887 }
Dave Airlief453ba02008-11-07 14:05:41 -08004888
4889 /* memcpy into gamma store */
4890 if (crtc_lut->gamma_size != crtc->gamma_size) {
4891 ret = -EINVAL;
4892 goto out;
4893 }
4894
4895 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4896 r_base = crtc->gamma_store;
4897 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4898 ret = -EFAULT;
4899 goto out;
4900 }
4901
4902 g_base = r_base + size;
4903 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4904 ret = -EFAULT;
4905 goto out;
4906 }
4907
4908 b_base = g_base + size;
4909 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4910 ret = -EFAULT;
4911 goto out;
4912 }
4913out:
Daniel Vetter84849902012-12-02 00:28:11 +01004914 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004915 return ret;
4916}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004917
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004918/**
4919 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4920 * @dev: DRM device
4921 * @data: ioctl data
4922 * @file_priv: DRM file info
4923 *
4924 * This schedules an asynchronous update on a given CRTC, called page flip.
4925 * Optionally a drm event is generated to signal the completion of the event.
4926 * Generic drivers cannot assume that a pageflip with changed framebuffer
4927 * properties (including driver specific metadata like tiling layout) will work,
4928 * but some drivers support e.g. pixel format changes through the pageflip
4929 * ioctl.
4930 *
4931 * Called by the user via ioctl.
4932 *
4933 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004934 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004935 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004936int drm_mode_page_flip_ioctl(struct drm_device *dev,
4937 void *data, struct drm_file *file_priv)
4938{
4939 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004940 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004941 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004942 struct drm_pending_vblank_event *e = NULL;
4943 unsigned long flags;
4944 int ret = -EINVAL;
4945
4946 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4947 page_flip->reserved != 0)
4948 return -EINVAL;
4949
Keith Packard62f21042013-07-22 18:50:00 -07004950 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4951 return -EINVAL;
4952
Rob Clarka2b34e22013-10-05 16:36:52 -04004953 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4954 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004955 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004956
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004957 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004958 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004959 /* The framebuffer is currently unbound, presumably
4960 * due to a hotplug event, that userspace has not
4961 * yet discovered.
4962 */
4963 ret = -EBUSY;
4964 goto out;
4965 }
4966
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004967 if (crtc->funcs->page_flip == NULL)
4968 goto out;
4969
Daniel Vetter786b99e2012-12-02 21:53:40 +01004970 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004971 if (!fb) {
4972 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004973 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004974 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004975
Damien Lespiauc11e9282013-09-25 16:45:30 +01004976 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4977 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004978 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004979
Matt Roperf4510a22014-04-01 15:22:40 -07004980 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004981 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4982 ret = -EINVAL;
4983 goto out;
4984 }
4985
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004986 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4987 ret = -ENOMEM;
4988 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004989 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004990 spin_unlock_irqrestore(&dev->event_lock, flags);
4991 goto out;
4992 }
Thierry Redingf76511b2014-12-10 13:03:40 +01004993 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004994 spin_unlock_irqrestore(&dev->event_lock, flags);
4995
Thierry Redingf76511b2014-12-10 13:03:40 +01004996 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004997 if (e == NULL) {
4998 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01004999 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005000 spin_unlock_irqrestore(&dev->event_lock, flags);
5001 goto out;
5002 }
5003
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08005004 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005005 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005006 e->event.user_data = page_flip->user_data;
5007 e->base.event = &e->event.base;
5008 e->base.file_priv = file_priv;
5009 e->base.destroy =
5010 (void (*) (struct drm_pending_event *)) kfree;
5011 }
5012
Daniel Vetter3d30a592014-07-27 13:42:42 +02005013 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005014 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005015 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005016 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5017 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005018 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005019 spin_unlock_irqrestore(&dev->event_lock, flags);
5020 kfree(e);
5021 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01005022 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005023 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005024 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01005025 /*
5026 * Warn if the driver hasn't properly updated the crtc->fb
5027 * field to reflect that the new framebuffer is now used.
5028 * Failing to do so will screw with the reference counting
5029 * on framebuffers.
5030 */
Matt Roperf4510a22014-04-01 15:22:40 -07005031 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01005032 /* Unref only the old framebuffer. */
5033 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005034 }
5035
5036out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005037 if (fb)
5038 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005039 if (crtc->primary->old_fb)
5040 drm_framebuffer_unreference(crtc->primary->old_fb);
5041 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005042 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005043
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005044 return ret;
5045}
Chris Wilsoneb033552011-01-24 15:11:08 +00005046
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005047/**
5048 * drm_mode_config_reset - call ->reset callbacks
5049 * @dev: drm device
5050 *
5051 * This functions calls all the crtc's, encoder's and connector's ->reset
5052 * callback. Drivers can use this in e.g. their driver load or resume code to
5053 * reset hardware and software state.
5054 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005055void drm_mode_config_reset(struct drm_device *dev)
5056{
5057 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005058 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005059 struct drm_encoder *encoder;
5060 struct drm_connector *connector;
5061
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005062 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
5063 if (plane->funcs->reset)
5064 plane->funcs->reset(plane);
5065
Chris Wilsoneb033552011-01-24 15:11:08 +00005066 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
5067 if (crtc->funcs->reset)
5068 crtc->funcs->reset(crtc);
5069
5070 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
5071 if (encoder->funcs->reset)
5072 encoder->funcs->reset(encoder);
5073
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005074 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5075 connector->status = connector_status_unknown;
5076
Chris Wilsoneb033552011-01-24 15:11:08 +00005077 if (connector->funcs->reset)
5078 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005079 }
Chris Wilsoneb033552011-01-24 15:11:08 +00005080}
5081EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005082
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005083/**
5084 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5085 * @dev: DRM device
5086 * @data: ioctl data
5087 * @file_priv: DRM file info
5088 *
5089 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5090 * TTM or something else entirely) and returns the resulting buffer handle. This
5091 * handle can then be wrapped up into a framebuffer modeset object.
5092 *
5093 * Note that userspace is not allowed to use such objects for render
5094 * acceleration - drivers must create their own private ioctls for such a use
5095 * case.
5096 *
5097 * Called by the user via ioctl.
5098 *
5099 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005100 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005101 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005102int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5103 void *data, struct drm_file *file_priv)
5104{
5105 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005106 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005107
5108 if (!dev->driver->dumb_create)
5109 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005110 if (!args->width || !args->height || !args->bpp)
5111 return -EINVAL;
5112
5113 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005114 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005115 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005116 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005117 return -EINVAL;
5118 stride = cpp * args->width;
5119 if (args->height > 0xffffffffU / stride)
5120 return -EINVAL;
5121
5122 /* test for wrap-around */
5123 size = args->height * stride;
5124 if (PAGE_ALIGN(size) == 0)
5125 return -EINVAL;
5126
Thierry Redingf6085952014-11-03 11:14:14 +01005127 /*
5128 * handle, pitch and size are output parameters. Zero them out to
5129 * prevent drivers from accidentally using uninitialized data. Since
5130 * not all existing userspace is clearing these fields properly we
5131 * cannot reject IOCTL with garbage in them.
5132 */
5133 args->handle = 0;
5134 args->pitch = 0;
5135 args->size = 0;
5136
Dave Airlieff72145b2011-02-07 12:16:14 +10005137 return dev->driver->dumb_create(file_priv, dev, args);
5138}
5139
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005140/**
5141 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5142 * @dev: DRM device
5143 * @data: ioctl data
5144 * @file_priv: DRM file info
5145 *
5146 * Allocate an offset in the drm device node's address space to be able to
5147 * memory map a dumb buffer.
5148 *
5149 * Called by the user via ioctl.
5150 *
5151 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005152 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005153 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005154int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5155 void *data, struct drm_file *file_priv)
5156{
5157 struct drm_mode_map_dumb *args = data;
5158
5159 /* call driver ioctl to get mmap offset */
5160 if (!dev->driver->dumb_map_offset)
5161 return -ENOSYS;
5162
5163 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5164}
5165
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005166/**
5167 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5168 * @dev: DRM device
5169 * @data: ioctl data
5170 * @file_priv: DRM file info
5171 *
5172 * This destroys the userspace handle for the given dumb backing storage buffer.
5173 * Since buffer objects must be reference counted in the kernel a buffer object
5174 * won't be immediately freed if a framebuffer modeset object still uses it.
5175 *
5176 * Called by the user via ioctl.
5177 *
5178 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005179 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005180 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005181int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5182 void *data, struct drm_file *file_priv)
5183{
5184 struct drm_mode_destroy_dumb *args = data;
5185
5186 if (!dev->driver->dumb_destroy)
5187 return -ENOSYS;
5188
5189 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5190}
Dave Airlie248dbc22011-11-29 20:02:54 +00005191
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005192/**
5193 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5194 * @format: pixel format (DRM_FORMAT_*)
5195 * @depth: storage for the depth value
5196 * @bpp: storage for the bpp value
5197 *
5198 * This only supports RGB formats here for compat with code that doesn't use
5199 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005200 */
5201void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5202 int *bpp)
5203{
5204 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005205 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005206 case DRM_FORMAT_RGB332:
5207 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005208 *depth = 8;
5209 *bpp = 8;
5210 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005211 case DRM_FORMAT_XRGB1555:
5212 case DRM_FORMAT_XBGR1555:
5213 case DRM_FORMAT_RGBX5551:
5214 case DRM_FORMAT_BGRX5551:
5215 case DRM_FORMAT_ARGB1555:
5216 case DRM_FORMAT_ABGR1555:
5217 case DRM_FORMAT_RGBA5551:
5218 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005219 *depth = 15;
5220 *bpp = 16;
5221 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005222 case DRM_FORMAT_RGB565:
5223 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005224 *depth = 16;
5225 *bpp = 16;
5226 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005227 case DRM_FORMAT_RGB888:
5228 case DRM_FORMAT_BGR888:
5229 *depth = 24;
5230 *bpp = 24;
5231 break;
5232 case DRM_FORMAT_XRGB8888:
5233 case DRM_FORMAT_XBGR8888:
5234 case DRM_FORMAT_RGBX8888:
5235 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005236 *depth = 24;
5237 *bpp = 32;
5238 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005239 case DRM_FORMAT_XRGB2101010:
5240 case DRM_FORMAT_XBGR2101010:
5241 case DRM_FORMAT_RGBX1010102:
5242 case DRM_FORMAT_BGRX1010102:
5243 case DRM_FORMAT_ARGB2101010:
5244 case DRM_FORMAT_ABGR2101010:
5245 case DRM_FORMAT_RGBA1010102:
5246 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005247 *depth = 30;
5248 *bpp = 32;
5249 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005250 case DRM_FORMAT_ARGB8888:
5251 case DRM_FORMAT_ABGR8888:
5252 case DRM_FORMAT_RGBA8888:
5253 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005254 *depth = 32;
5255 *bpp = 32;
5256 break;
5257 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005258 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5259 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005260 *depth = 0;
5261 *bpp = 0;
5262 break;
5263 }
5264}
5265EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005266
5267/**
5268 * drm_format_num_planes - get the number of planes for format
5269 * @format: pixel format (DRM_FORMAT_*)
5270 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005271 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005272 * The number of planes used by the specified pixel format.
5273 */
5274int drm_format_num_planes(uint32_t format)
5275{
5276 switch (format) {
5277 case DRM_FORMAT_YUV410:
5278 case DRM_FORMAT_YVU410:
5279 case DRM_FORMAT_YUV411:
5280 case DRM_FORMAT_YVU411:
5281 case DRM_FORMAT_YUV420:
5282 case DRM_FORMAT_YVU420:
5283 case DRM_FORMAT_YUV422:
5284 case DRM_FORMAT_YVU422:
5285 case DRM_FORMAT_YUV444:
5286 case DRM_FORMAT_YVU444:
5287 return 3;
5288 case DRM_FORMAT_NV12:
5289 case DRM_FORMAT_NV21:
5290 case DRM_FORMAT_NV16:
5291 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005292 case DRM_FORMAT_NV24:
5293 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005294 return 2;
5295 default:
5296 return 1;
5297 }
5298}
5299EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005300
5301/**
5302 * drm_format_plane_cpp - determine the bytes per pixel value
5303 * @format: pixel format (DRM_FORMAT_*)
5304 * @plane: plane index
5305 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005306 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005307 * The bytes per pixel value for the specified plane.
5308 */
5309int drm_format_plane_cpp(uint32_t format, int plane)
5310{
5311 unsigned int depth;
5312 int bpp;
5313
5314 if (plane >= drm_format_num_planes(format))
5315 return 0;
5316
5317 switch (format) {
5318 case DRM_FORMAT_YUYV:
5319 case DRM_FORMAT_YVYU:
5320 case DRM_FORMAT_UYVY:
5321 case DRM_FORMAT_VYUY:
5322 return 2;
5323 case DRM_FORMAT_NV12:
5324 case DRM_FORMAT_NV21:
5325 case DRM_FORMAT_NV16:
5326 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005327 case DRM_FORMAT_NV24:
5328 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005329 return plane ? 2 : 1;
5330 case DRM_FORMAT_YUV410:
5331 case DRM_FORMAT_YVU410:
5332 case DRM_FORMAT_YUV411:
5333 case DRM_FORMAT_YVU411:
5334 case DRM_FORMAT_YUV420:
5335 case DRM_FORMAT_YVU420:
5336 case DRM_FORMAT_YUV422:
5337 case DRM_FORMAT_YVU422:
5338 case DRM_FORMAT_YUV444:
5339 case DRM_FORMAT_YVU444:
5340 return 1;
5341 default:
5342 drm_fb_get_bpp_depth(format, &depth, &bpp);
5343 return bpp >> 3;
5344 }
5345}
5346EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005347
5348/**
5349 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5350 * @format: pixel format (DRM_FORMAT_*)
5351 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005352 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005353 * The horizontal chroma subsampling factor for the
5354 * specified pixel format.
5355 */
5356int drm_format_horz_chroma_subsampling(uint32_t format)
5357{
5358 switch (format) {
5359 case DRM_FORMAT_YUV411:
5360 case DRM_FORMAT_YVU411:
5361 case DRM_FORMAT_YUV410:
5362 case DRM_FORMAT_YVU410:
5363 return 4;
5364 case DRM_FORMAT_YUYV:
5365 case DRM_FORMAT_YVYU:
5366 case DRM_FORMAT_UYVY:
5367 case DRM_FORMAT_VYUY:
5368 case DRM_FORMAT_NV12:
5369 case DRM_FORMAT_NV21:
5370 case DRM_FORMAT_NV16:
5371 case DRM_FORMAT_NV61:
5372 case DRM_FORMAT_YUV422:
5373 case DRM_FORMAT_YVU422:
5374 case DRM_FORMAT_YUV420:
5375 case DRM_FORMAT_YVU420:
5376 return 2;
5377 default:
5378 return 1;
5379 }
5380}
5381EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5382
5383/**
5384 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5385 * @format: pixel format (DRM_FORMAT_*)
5386 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005387 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005388 * The vertical chroma subsampling factor for the
5389 * specified pixel format.
5390 */
5391int drm_format_vert_chroma_subsampling(uint32_t format)
5392{
5393 switch (format) {
5394 case DRM_FORMAT_YUV410:
5395 case DRM_FORMAT_YVU410:
5396 return 4;
5397 case DRM_FORMAT_YUV420:
5398 case DRM_FORMAT_YVU420:
5399 case DRM_FORMAT_NV12:
5400 case DRM_FORMAT_NV21:
5401 return 2;
5402 default:
5403 return 1;
5404 }
5405}
5406EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005407
5408/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305409 * drm_rotation_simplify() - Try to simplify the rotation
5410 * @rotation: Rotation to be simplified
5411 * @supported_rotations: Supported rotations
5412 *
5413 * Attempt to simplify the rotation to a form that is supported.
5414 * Eg. if the hardware supports everything except DRM_REFLECT_X
5415 * one could call this function like this:
5416 *
5417 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5418 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5419 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5420 *
5421 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5422 * transforms the hardware supports, this function may not
5423 * be able to produce a supported transform, so the caller should
5424 * check the result afterwards.
5425 */
5426unsigned int drm_rotation_simplify(unsigned int rotation,
5427 unsigned int supported_rotations)
5428{
5429 if (rotation & ~supported_rotations) {
5430 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5431 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5432 }
5433
5434 return rotation;
5435}
5436EXPORT_SYMBOL(drm_rotation_simplify);
5437
5438/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005439 * drm_mode_config_init - initialize DRM mode_configuration structure
5440 * @dev: DRM device
5441 *
5442 * Initialize @dev's mode_config structure, used for tracking the graphics
5443 * configuration of @dev.
5444 *
5445 * Since this initializes the modeset locks, no locking is possible. Which is no
5446 * problem, since this should happen single threaded at init time. It is the
5447 * driver's problem to ensure this guarantee.
5448 *
5449 */
5450void drm_mode_config_init(struct drm_device *dev)
5451{
5452 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005453 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005454 mutex_init(&dev->mode_config.idr_mutex);
5455 mutex_init(&dev->mode_config.fb_lock);
5456 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5457 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5458 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5459 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5460 INIT_LIST_HEAD(&dev->mode_config.property_list);
5461 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5462 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5463 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005464 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005465
5466 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005467 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005468 drm_modeset_unlock_all(dev);
5469
5470 /* Just to be sure */
5471 dev->mode_config.num_fb = 0;
5472 dev->mode_config.num_connector = 0;
5473 dev->mode_config.num_crtc = 0;
5474 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005475 dev->mode_config.num_overlay_plane = 0;
5476 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005477}
5478EXPORT_SYMBOL(drm_mode_config_init);
5479
5480/**
5481 * drm_mode_config_cleanup - free up DRM mode_config info
5482 * @dev: DRM device
5483 *
5484 * Free up all the connectors and CRTCs associated with this DRM device, then
5485 * free up the framebuffers and associated buffer objects.
5486 *
5487 * Note that since this /should/ happen single-threaded at driver/device
5488 * teardown time, no locking is required. It's the driver's job to ensure that
5489 * this guarantee actually holds true.
5490 *
5491 * FIXME: cleanup any dangling user buffer objects too
5492 */
5493void drm_mode_config_cleanup(struct drm_device *dev)
5494{
5495 struct drm_connector *connector, *ot;
5496 struct drm_crtc *crtc, *ct;
5497 struct drm_encoder *encoder, *enct;
5498 struct drm_framebuffer *fb, *fbt;
5499 struct drm_property *property, *pt;
5500 struct drm_property_blob *blob, *bt;
5501 struct drm_plane *plane, *plt;
5502
5503 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5504 head) {
5505 encoder->funcs->destroy(encoder);
5506 }
5507
5508 list_for_each_entry_safe(connector, ot,
5509 &dev->mode_config.connector_list, head) {
5510 connector->funcs->destroy(connector);
5511 }
5512
5513 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5514 head) {
5515 drm_property_destroy(dev, property);
5516 }
5517
5518 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5519 head) {
5520 drm_property_destroy_blob(dev, blob);
5521 }
5522
5523 /*
5524 * Single-threaded teardown context, so it's not required to grab the
5525 * fb_lock to protect against concurrent fb_list access. Contrary, it
5526 * would actually deadlock with the drm_framebuffer_cleanup function.
5527 *
5528 * Also, if there are any framebuffers left, that's a driver leak now,
5529 * so politely WARN about this.
5530 */
5531 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5532 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5533 drm_framebuffer_remove(fb);
5534 }
5535
5536 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5537 head) {
5538 plane->funcs->destroy(plane);
5539 }
5540
5541 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5542 crtc->funcs->destroy(crtc);
5543 }
5544
Dave Airlie138f9eb2014-10-20 16:17:17 +10005545 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005546 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005547 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005548}
5549EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305550
5551struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5552 unsigned int supported_rotations)
5553{
5554 static const struct drm_prop_enum_list props[] = {
5555 { DRM_ROTATE_0, "rotate-0" },
5556 { DRM_ROTATE_90, "rotate-90" },
5557 { DRM_ROTATE_180, "rotate-180" },
5558 { DRM_ROTATE_270, "rotate-270" },
5559 { DRM_REFLECT_X, "reflect-x" },
5560 { DRM_REFLECT_Y, "reflect-y" },
5561 };
5562
5563 return drm_property_create_bitmask(dev, 0, "rotation",
5564 props, ARRAY_SIZE(props),
5565 supported_rotations);
5566}
5567EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005568
5569/**
5570 * DOC: Tile group
5571 *
5572 * Tile groups are used to represent tiled monitors with a unique
5573 * integer identifier. Tiled monitors using DisplayID v1.3 have
5574 * a unique 8-byte handle, we store this in a tile group, so we
5575 * have a common identifier for all tiles in a monitor group.
5576 */
5577static void drm_tile_group_free(struct kref *kref)
5578{
5579 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5580 struct drm_device *dev = tg->dev;
5581 mutex_lock(&dev->mode_config.idr_mutex);
5582 idr_remove(&dev->mode_config.tile_idr, tg->id);
5583 mutex_unlock(&dev->mode_config.idr_mutex);
5584 kfree(tg);
5585}
5586
5587/**
5588 * drm_mode_put_tile_group - drop a reference to a tile group.
5589 * @dev: DRM device
5590 * @tg: tile group to drop reference to.
5591 *
5592 * drop reference to tile group and free if 0.
5593 */
5594void drm_mode_put_tile_group(struct drm_device *dev,
5595 struct drm_tile_group *tg)
5596{
5597 kref_put(&tg->refcount, drm_tile_group_free);
5598}
5599
5600/**
5601 * drm_mode_get_tile_group - get a reference to an existing tile group
5602 * @dev: DRM device
5603 * @topology: 8-bytes unique per monitor.
5604 *
5605 * Use the unique bytes to get a reference to an existing tile group.
5606 *
5607 * RETURNS:
5608 * tile group or NULL if not found.
5609 */
5610struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5611 char topology[8])
5612{
5613 struct drm_tile_group *tg;
5614 int id;
5615 mutex_lock(&dev->mode_config.idr_mutex);
5616 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5617 if (!memcmp(tg->group_data, topology, 8)) {
5618 if (!kref_get_unless_zero(&tg->refcount))
5619 tg = NULL;
5620 mutex_unlock(&dev->mode_config.idr_mutex);
5621 return tg;
5622 }
5623 }
5624 mutex_unlock(&dev->mode_config.idr_mutex);
5625 return NULL;
5626}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005627EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005628
5629/**
5630 * drm_mode_create_tile_group - create a tile group from a displayid description
5631 * @dev: DRM device
5632 * @topology: 8-bytes unique per monitor.
5633 *
5634 * Create a tile group for the unique monitor, and get a unique
5635 * identifier for the tile group.
5636 *
5637 * RETURNS:
5638 * new tile group or error.
5639 */
5640struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5641 char topology[8])
5642{
5643 struct drm_tile_group *tg;
5644 int ret;
5645
5646 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5647 if (!tg)
5648 return ERR_PTR(-ENOMEM);
5649
5650 kref_init(&tg->refcount);
5651 memcpy(tg->group_data, topology, 8);
5652 tg->dev = dev;
5653
5654 mutex_lock(&dev->mode_config.idr_mutex);
5655 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5656 if (ret >= 0) {
5657 tg->id = ret;
5658 } else {
5659 kfree(tg);
5660 tg = ERR_PTR(ret);
5661 }
5662
5663 mutex_unlock(&dev->mode_config.idr_mutex);
5664 return tg;
5665}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005666EXPORT_SYMBOL(drm_mode_create_tile_group);