blob: d8b7099abece7b9ccc44ee21550aa67423855f3f [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>
Dave Airlief453ba02008-11-07 14:05:41 -080040
Daniel Vetter8bd441b2014-01-23 15:35:24 +010041#include "drm_crtc_internal.h"
42
Daniel Vetter84849902012-12-02 00:28:11 +010043/**
44 * drm_modeset_lock_all - take all modeset locks
45 * @dev: drm device
46 *
47 * This function takes all modeset locks, suitable where a more fine-grained
Daniel Vetterc8e32cc2014-03-10 21:33:02 +010048 * scheme isn't (yet) implemented. Locks must be dropped with
49 * drm_modeset_unlock_all.
Daniel Vetter84849902012-12-02 00:28:11 +010050 */
51void drm_modeset_lock_all(struct drm_device *dev)
52{
Daniel Vetter29494c12012-12-02 02:18:25 +010053 struct drm_crtc *crtc;
54
Daniel Vetter84849902012-12-02 00:28:11 +010055 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter29494c12012-12-02 02:18:25 +010056
57 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
58 mutex_lock_nest_lock(&crtc->mutex, &dev->mode_config.mutex);
Daniel Vetter84849902012-12-02 00:28:11 +010059}
60EXPORT_SYMBOL(drm_modeset_lock_all);
61
62/**
63 * drm_modeset_unlock_all - drop all modeset locks
64 * @dev: device
Daniel Vetterc8e32cc2014-03-10 21:33:02 +010065 *
66 * This function drop all modeset locks taken by drm_modeset_lock_all.
Daniel Vetter84849902012-12-02 00:28:11 +010067 */
68void drm_modeset_unlock_all(struct drm_device *dev)
69{
Daniel Vetter29494c12012-12-02 02:18:25 +010070 struct drm_crtc *crtc;
71
72 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
73 mutex_unlock(&crtc->mutex);
74
Daniel Vetter84849902012-12-02 00:28:11 +010075 mutex_unlock(&dev->mode_config.mutex);
76}
77EXPORT_SYMBOL(drm_modeset_unlock_all);
78
Daniel Vetter6aed8ec2013-01-20 17:32:21 +010079/**
80 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
81 * @dev: device
Daniel Vetterc8e32cc2014-03-10 21:33:02 +010082 *
83 * Useful as a debug assert.
Daniel Vetter6aed8ec2013-01-20 17:32:21 +010084 */
85void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
86{
87 struct drm_crtc *crtc;
88
Daniel Vettera9b054e2013-05-02 09:43:05 +020089 /* Locking is currently fubar in the panic handler. */
90 if (oops_in_progress)
91 return;
92
Daniel Vetter6aed8ec2013-01-20 17:32:21 +010093 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
94 WARN_ON(!mutex_is_locked(&crtc->mutex));
95
96 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
97}
98EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
99
Dave Airlief453ba02008-11-07 14:05:41 -0800100/* Avoid boilerplate. I'm tired of typing. */
101#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000102 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -0800103 { \
104 int i; \
105 for (i = 0; i < ARRAY_SIZE(list); i++) { \
106 if (list[i].type == val) \
107 return list[i].name; \
108 } \
109 return "(unknown)"; \
110 }
111
112/*
113 * Global properties
114 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000115static const struct drm_prop_enum_list drm_dpms_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800116{ { DRM_MODE_DPMS_ON, "On" },
117 { DRM_MODE_DPMS_STANDBY, "Standby" },
118 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
119 { DRM_MODE_DPMS_OFF, "Off" }
120};
121
122DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
123
Rob Clark9922ab52014-04-01 20:16:57 -0400124static const struct drm_prop_enum_list drm_plane_type_enum_list[] =
125{
126 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
127 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
128 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
129};
130
Dave Airlief453ba02008-11-07 14:05:41 -0800131/*
132 * Optional properties
133 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000134static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800135{
Jesse Barnes53bd8382009-07-01 10:04:40 -0700136 { DRM_MODE_SCALE_NONE, "None" },
137 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
138 { DRM_MODE_SCALE_CENTER, "Center" },
139 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -0800140};
141
Dave Airlief453ba02008-11-07 14:05:41 -0800142/*
143 * Non-global properties, but "required" for certain connectors.
144 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000145static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800146{
147 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
148 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
149 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
150};
151
152DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
153
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000154static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800155{
156 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
157 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
158 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
159};
160
161DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
162 drm_dvi_i_subconnector_enum_list)
163
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000164static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800165{
166 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
167 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
168 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
169 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200170 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800171};
172
173DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
174
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000175static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800176{
177 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
178 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
179 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
180 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200181 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800182};
183
184DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
185 drm_tv_subconnector_enum_list)
186
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000187static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000188 { DRM_MODE_DIRTY_OFF, "Off" },
189 { DRM_MODE_DIRTY_ON, "On" },
190 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
191};
192
Dave Airlief453ba02008-11-07 14:05:41 -0800193struct drm_conn_prop_enum_list {
194 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000195 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400196 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800197};
198
199/*
200 * Connector and encoder types.
201 */
202static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400203{ { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
204 { DRM_MODE_CONNECTOR_VGA, "VGA" },
205 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
206 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
207 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
208 { DRM_MODE_CONNECTOR_Composite, "Composite" },
209 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
210 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
211 { DRM_MODE_CONNECTOR_Component, "Component" },
212 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
213 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
214 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
215 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
216 { DRM_MODE_CONNECTOR_TV, "TV" },
217 { DRM_MODE_CONNECTOR_eDP, "eDP" },
218 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300219 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800220};
221
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000222static const struct drm_prop_enum_list drm_encoder_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800223{ { DRM_MODE_ENCODER_NONE, "None" },
224 { DRM_MODE_ENCODER_DAC, "DAC" },
225 { DRM_MODE_ENCODER_TMDS, "TMDS" },
226 { DRM_MODE_ENCODER_LVDS, "LVDS" },
227 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200228 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300229 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800230};
231
Jesse Barnesac1bb362014-02-10 15:32:44 -0800232static const struct drm_prop_enum_list drm_subpixel_enum_list[] =
233{
234 { SubPixelUnknown, "Unknown" },
235 { SubPixelHorizontalRGB, "Horizontal RGB" },
236 { SubPixelHorizontalBGR, "Horizontal BGR" },
237 { SubPixelVerticalRGB, "Vertical RGB" },
238 { SubPixelVerticalBGR, "Vertical BGR" },
239 { SubPixelNone, "None" },
240};
241
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400242void drm_connector_ida_init(void)
243{
244 int i;
245
246 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
247 ida_init(&drm_connector_enum_list[i].ida);
248}
249
250void drm_connector_ida_destroy(void)
251{
252 int i;
253
254 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
255 ida_destroy(&drm_connector_enum_list[i].ida);
256}
257
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100258/**
259 * drm_get_encoder_name - return a string for encoder
260 * @encoder: encoder to compute name of
261 *
262 * Note that the buffer used by this function is globally shared and owned by
263 * the function itself.
264 *
265 * FIXME: This isn't really multithreading safe.
266 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000267const char *drm_get_encoder_name(const struct drm_encoder *encoder)
Dave Airlief453ba02008-11-07 14:05:41 -0800268{
269 static char buf[32];
270
271 snprintf(buf, 32, "%s-%d",
272 drm_encoder_enum_list[encoder->encoder_type].name,
273 encoder->base.id);
274 return buf;
275}
Dave Airlie13a81952009-09-07 15:45:33 +1000276EXPORT_SYMBOL(drm_get_encoder_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800277
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100278/**
279 * drm_get_connector_name - return a string for connector
280 * @connector: connector to compute name of
281 *
282 * Note that the buffer used by this function is globally shared and owned by
283 * the function itself.
284 *
285 * FIXME: This isn't really multithreading safe.
286 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000287const char *drm_get_connector_name(const struct drm_connector *connector)
Dave Airlief453ba02008-11-07 14:05:41 -0800288{
289 static char buf[32];
290
291 snprintf(buf, 32, "%s-%d",
292 drm_connector_enum_list[connector->connector_type].name,
293 connector->connector_type_id);
294 return buf;
295}
296EXPORT_SYMBOL(drm_get_connector_name);
297
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100298/**
299 * drm_get_connector_status_name - return a string for connector status
300 * @status: connector status to compute name of
301 *
302 * In contrast to the other drm_get_*_name functions this one here returns a
303 * const pointer and hence is threadsafe.
304 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000305const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800306{
307 if (status == connector_status_connected)
308 return "connected";
309 else if (status == connector_status_disconnected)
310 return "disconnected";
311 else
312 return "unknown";
313}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000314EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800315
Jesse Barnesac1bb362014-02-10 15:32:44 -0800316/**
317 * drm_get_subpixel_order_name - return a string for a given subpixel enum
318 * @order: enum of subpixel_order
319 *
320 * Note you could abuse this and return something out of bounds, but that
321 * would be a caller error. No unscrubbed user data should make it here.
322 */
323const char *drm_get_subpixel_order_name(enum subpixel_order order)
324{
325 return drm_subpixel_enum_list[order].name;
326}
327EXPORT_SYMBOL(drm_get_subpixel_order_name);
328
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300329static char printable_char(int c)
330{
331 return isascii(c) && isprint(c) ? c : '?';
332}
333
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100334/**
335 * drm_get_format_name - return a string for drm fourcc format
336 * @format: format to compute name of
337 *
338 * Note that the buffer used by this function is globally shared and owned by
339 * the function itself.
340 *
341 * FIXME: This isn't really multithreading safe.
342 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000343const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300344{
345 static char buf[32];
346
347 snprintf(buf, sizeof(buf),
348 "%c%c%c%c %s-endian (0x%08x)",
349 printable_char(format & 0xff),
350 printable_char((format >> 8) & 0xff),
351 printable_char((format >> 16) & 0xff),
352 printable_char((format >> 24) & 0x7f),
353 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
354 format);
355
356 return buf;
357}
358EXPORT_SYMBOL(drm_get_format_name);
359
Dave Airlief453ba02008-11-07 14:05:41 -0800360/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100361 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800362 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100363 * @obj: object pointer, used to generate unique ID
364 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800365 *
Dave Airlief453ba02008-11-07 14:05:41 -0800366 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100367 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
368 * modeset identifiers are _not_ reference counted. Hence don't use this for
369 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800370 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100371 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800372 * New unique (relative to other objects in @dev) integer identifier for the
373 * object.
374 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100375int drm_mode_object_get(struct drm_device *dev,
376 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800377{
Dave Airlief453ba02008-11-07 14:05:41 -0800378 int ret;
379
Jesse Barnesad2563c2009-01-19 17:21:45 +1000380 mutex_lock(&dev->mode_config.idr_mutex);
Tejun Heo2e928812013-02-27 17:04:08 -0800381 ret = idr_alloc(&dev->mode_config.crtc_idr, obj, 1, 0, GFP_KERNEL);
382 if (ret >= 0) {
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100383 /*
384 * Set up the object linking under the protection of the idr
385 * lock so that other users can't see inconsistent state.
386 */
Tejun Heo2e928812013-02-27 17:04:08 -0800387 obj->id = ret;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100388 obj->type = obj_type;
389 }
Jesse Barnesad2563c2009-01-19 17:21:45 +1000390 mutex_unlock(&dev->mode_config.idr_mutex);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100391
Tejun Heo2e928812013-02-27 17:04:08 -0800392 return ret < 0 ? ret : 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800393}
394
395/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100396 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800397 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100398 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800399 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100400 * Free @id from @dev's unique identifier pool. Note that despite the _get
401 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
402 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800403 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100404void drm_mode_object_put(struct drm_device *dev,
405 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800406{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000407 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800408 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000409 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800410}
411
Daniel Vetter786b99e2012-12-02 21:53:40 +0100412/**
413 * drm_mode_object_find - look up a drm object with static lifetime
414 * @dev: drm device
415 * @id: id of the mode object
416 * @type: type of the mode object
417 *
418 * Note that framebuffers cannot be looked up with this functions - since those
419 * are reference counted, they need special treatment.
420 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200421struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
422 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800423{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000424 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800425
Daniel Vetter786b99e2012-12-02 21:53:40 +0100426 /* Framebuffers are reference counted and need their own lookup
427 * function.*/
428 WARN_ON(type == DRM_MODE_OBJECT_FB);
429
Jesse Barnesad2563c2009-01-19 17:21:45 +1000430 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800431 obj = idr_find(&dev->mode_config.crtc_idr, id);
432 if (!obj || (obj->type != type) || (obj->id != id))
Jesse Barnesad2563c2009-01-19 17:21:45 +1000433 obj = NULL;
434 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800435
436 return obj;
437}
438EXPORT_SYMBOL(drm_mode_object_find);
439
440/**
Dave Airlief453ba02008-11-07 14:05:41 -0800441 * drm_framebuffer_init - initialize a framebuffer
442 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100443 * @fb: framebuffer to be initialized
444 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800445 *
Dave Airlief453ba02008-11-07 14:05:41 -0800446 * Allocates an ID for the framebuffer's parent mode object, sets its mode
447 * functions & device file and adds it to the master fd list.
448 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100449 * IMPORTANT:
450 * This functions publishes the fb and makes it available for concurrent access
451 * by other users. Which means by this point the fb _must_ be fully set up -
452 * since all the fb attributes are invariant over its lifetime, no further
453 * locking but only correct reference counting is required.
454 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100455 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200456 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800457 */
458int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
459 const struct drm_framebuffer_funcs *funcs)
460{
461 int ret;
462
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100463 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000464 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100465 INIT_LIST_HEAD(&fb->filp_head);
466 fb->dev = dev;
467 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000468
Dave Airlief453ba02008-11-07 14:05:41 -0800469 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200470 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100471 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800472
Daniel Vetter2b677e82012-12-10 21:16:05 +0100473 /* Grab the idr reference. */
474 drm_framebuffer_reference(fb);
475
Dave Airlief453ba02008-11-07 14:05:41 -0800476 dev->mode_config.num_fb++;
477 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100478out:
479 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800480
481 return 0;
482}
483EXPORT_SYMBOL(drm_framebuffer_init);
484
Rob Clarkf7eff602012-09-05 21:48:38 +0000485static void drm_framebuffer_free(struct kref *kref)
486{
487 struct drm_framebuffer *fb =
488 container_of(kref, struct drm_framebuffer, refcount);
489 fb->funcs->destroy(fb);
490}
491
Daniel Vetter2b677e82012-12-10 21:16:05 +0100492static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
493 uint32_t id)
494{
495 struct drm_mode_object *obj = NULL;
496 struct drm_framebuffer *fb;
497
498 mutex_lock(&dev->mode_config.idr_mutex);
499 obj = idr_find(&dev->mode_config.crtc_idr, id);
500 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
501 fb = NULL;
502 else
503 fb = obj_to_fb(obj);
504 mutex_unlock(&dev->mode_config.idr_mutex);
505
506 return fb;
507}
508
Rob Clarkf7eff602012-09-05 21:48:38 +0000509/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100510 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
511 * @dev: drm device
512 * @id: id of the fb object
513 *
514 * If successful, this grabs an additional reference to the framebuffer -
515 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100516 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100517 */
518struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
519 uint32_t id)
520{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100521 struct drm_framebuffer *fb;
522
523 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100524 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter786b99e2012-12-02 21:53:40 +0100525 if (fb)
archit taneja9131d3d2013-04-10 08:59:39 +0000526 drm_framebuffer_reference(fb);
Daniel Vetter786b99e2012-12-02 21:53:40 +0100527 mutex_unlock(&dev->mode_config.fb_lock);
528
529 return fb;
530}
531EXPORT_SYMBOL(drm_framebuffer_lookup);
532
533/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000534 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100535 * @fb: framebuffer to unref
536 *
537 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000538 */
539void drm_framebuffer_unreference(struct drm_framebuffer *fb)
540{
Rob Clarkf7eff602012-09-05 21:48:38 +0000541 DRM_DEBUG("FB ID: %d\n", fb->base.id);
Rob Clarkf7eff602012-09-05 21:48:38 +0000542 kref_put(&fb->refcount, drm_framebuffer_free);
543}
544EXPORT_SYMBOL(drm_framebuffer_unreference);
545
546/**
547 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100548 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100549 *
550 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000551 */
552void drm_framebuffer_reference(struct drm_framebuffer *fb)
553{
554 DRM_DEBUG("FB ID: %d\n", fb->base.id);
555 kref_get(&fb->refcount);
556}
557EXPORT_SYMBOL(drm_framebuffer_reference);
558
Daniel Vetter2b677e82012-12-10 21:16:05 +0100559static void drm_framebuffer_free_bug(struct kref *kref)
560{
561 BUG();
562}
563
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100564static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
565{
566 DRM_DEBUG("FB ID: %d\n", fb->base.id);
567 kref_put(&fb->refcount, drm_framebuffer_free_bug);
568}
569
Daniel Vetter2b677e82012-12-10 21:16:05 +0100570/* dev->mode_config.fb_lock must be held! */
571static void __drm_framebuffer_unregister(struct drm_device *dev,
572 struct drm_framebuffer *fb)
573{
574 mutex_lock(&dev->mode_config.idr_mutex);
575 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
576 mutex_unlock(&dev->mode_config.idr_mutex);
577
578 fb->base.id = 0;
579
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100580 __drm_framebuffer_unreference(fb);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100581}
582
Dave Airlief453ba02008-11-07 14:05:41 -0800583/**
Daniel Vetter36206362012-12-10 20:42:17 +0100584 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
585 * @fb: fb to unregister
586 *
587 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
588 * those used for fbdev. Note that the caller must hold a reference of it's own,
589 * i.e. the object may not be destroyed through this call (since it'll lead to a
590 * locking inversion).
591 */
592void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
593{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100594 struct drm_device *dev = fb->dev;
595
596 mutex_lock(&dev->mode_config.fb_lock);
597 /* Mark fb as reaped and drop idr ref. */
598 __drm_framebuffer_unregister(dev, fb);
599 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100600}
601EXPORT_SYMBOL(drm_framebuffer_unregister_private);
602
603/**
Dave Airlief453ba02008-11-07 14:05:41 -0800604 * drm_framebuffer_cleanup - remove a framebuffer object
605 * @fb: framebuffer to remove
606 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100607 * Cleanup framebuffer. This function is intended to be used from the drivers
608 * ->destroy callback. It can also be used to clean up driver private
609 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100610 *
611 * Note that this function does not remove the fb from active usuage - if it is
612 * still used anywhere, hilarity can ensue since userspace could call getfb on
613 * the id and get back -EINVAL. Obviously no concern at driver unload time.
614 *
615 * Also, the framebuffer will not be removed from the lookup idr - for
616 * user-created framebuffers this will happen in in the rmfb ioctl. For
617 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
618 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800619 */
620void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
621{
622 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100623
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100624 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000625 list_del(&fb->head);
626 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100627 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000628}
629EXPORT_SYMBOL(drm_framebuffer_cleanup);
630
631/**
632 * drm_framebuffer_remove - remove and unreference a framebuffer object
633 * @fb: framebuffer to remove
634 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000635 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100636 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100637 * passed-in framebuffer. Might take the modeset locks.
638 *
639 * Note that this function optimizes the cleanup away if the caller holds the
640 * last reference to the framebuffer. It is also guaranteed to not take the
641 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000642 */
643void drm_framebuffer_remove(struct drm_framebuffer *fb)
644{
645 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800646 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800647 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000648 struct drm_mode_set set;
649 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800650
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100651 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100652
Daniel Vetterb62584e2012-12-11 16:51:35 +0100653 /*
654 * drm ABI mandates that we remove any deleted framebuffers from active
655 * useage. But since most sane clients only remove framebuffers they no
656 * longer need, try to optimize this away.
657 *
658 * Since we're holding a reference ourselves, observing a refcount of 1
659 * means that we're the last holder and can skip it. Also, the refcount
660 * can never increase from 1 again, so we don't need any barriers or
661 * locks.
662 *
663 * Note that userspace could try to race with use and instate a new
664 * usage _after_ we've cleared all current ones. End result will be an
665 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
666 * in this manner.
667 */
668 if (atomic_read(&fb->refcount.refcount) > 1) {
669 drm_modeset_lock_all(dev);
670 /* remove from any CRTC */
671 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700672 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100673 /* should turn off the crtc */
674 memset(&set, 0, sizeof(struct drm_mode_set));
675 set.crtc = crtc;
676 set.fb = NULL;
677 ret = drm_mode_set_config_internal(&set);
678 if (ret)
679 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
680 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000681 }
Dave Airlief453ba02008-11-07 14:05:41 -0800682
Daniel Vetterb62584e2012-12-11 16:51:35 +0100683 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300684 if (plane->fb == fb)
685 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800686 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100687 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800688 }
689
Rob Clarkf7eff602012-09-05 21:48:38 +0000690 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800691}
Rob Clarkf7eff602012-09-05 21:48:38 +0000692EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800693
694/**
Matt Ropere13161a2014-04-01 15:22:38 -0700695 * drm_crtc_init_with_planes - Initialise a new CRTC object with
696 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800697 * @dev: DRM device
698 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700699 * @primary: Primary plane for CRTC
700 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800701 * @funcs: callbacks for the new CRTC
702 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000703 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200704 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100705 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200706 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800707 */
Matt Ropere13161a2014-04-01 15:22:38 -0700708int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
709 struct drm_plane *primary,
710 void *cursor,
711 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800712{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200713 int ret;
714
Dave Airlief453ba02008-11-07 14:05:41 -0800715 crtc->dev = dev;
716 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000717 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800718
Daniel Vetter84849902012-12-02 00:28:11 +0100719 drm_modeset_lock_all(dev);
Daniel Vetter29494c12012-12-02 02:18:25 +0100720 mutex_init(&crtc->mutex);
721 mutex_lock_nest_lock(&crtc->mutex, &dev->mode_config.mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200722
723 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
724 if (ret)
725 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800726
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300727 crtc->base.properties = &crtc->properties;
728
Dave Airlief453ba02008-11-07 14:05:41 -0800729 list_add_tail(&crtc->head, &dev->mode_config.crtc_list);
730 dev->mode_config.num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200731
Matt Ropere13161a2014-04-01 15:22:38 -0700732 crtc->primary = primary;
733 if (primary)
734 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
735
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200736 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100737 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200738
739 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800740}
Matt Ropere13161a2014-04-01 15:22:38 -0700741EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800742
743/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000744 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800745 * @crtc: CRTC to cleanup
746 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000747 * This function cleans up @crtc and removes it from the DRM mode setting
748 * core. Note that the function does *not* free the crtc structure itself,
749 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800750 */
751void drm_crtc_cleanup(struct drm_crtc *crtc)
752{
753 struct drm_device *dev = crtc->dev;
754
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000755 kfree(crtc->gamma_store);
756 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800757
758 drm_mode_object_put(dev, &crtc->base);
759 list_del(&crtc->head);
760 dev->mode_config.num_crtc--;
761}
762EXPORT_SYMBOL(drm_crtc_cleanup);
763
764/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000765 * drm_crtc_index - find the index of a registered CRTC
766 * @crtc: CRTC to find index for
767 *
768 * Given a registered CRTC, return the index of that CRTC within a DRM
769 * device's list of CRTCs.
770 */
771unsigned int drm_crtc_index(struct drm_crtc *crtc)
772{
773 unsigned int index = 0;
774 struct drm_crtc *tmp;
775
776 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
777 if (tmp == crtc)
778 return index;
779
780 index++;
781 }
782
783 BUG();
784}
785EXPORT_SYMBOL(drm_crtc_index);
786
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100787/*
Dave Airlief453ba02008-11-07 14:05:41 -0800788 * drm_mode_remove - remove and free a mode
789 * @connector: connector list to modify
790 * @mode: mode to remove
791 *
Dave Airlief453ba02008-11-07 14:05:41 -0800792 * Remove @mode from @connector's mode list, then free it.
793 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100794static void drm_mode_remove(struct drm_connector *connector,
795 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800796{
797 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100798 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800799}
Dave Airlief453ba02008-11-07 14:05:41 -0800800
801/**
802 * drm_connector_init - Init a preallocated connector
803 * @dev: DRM device
804 * @connector: the connector to init
805 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100806 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800807 *
Dave Airlief453ba02008-11-07 14:05:41 -0800808 * Initialises a preallocated connector. Connectors should be
809 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200810 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100811 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200812 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800813 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200814int drm_connector_init(struct drm_device *dev,
815 struct drm_connector *connector,
816 const struct drm_connector_funcs *funcs,
817 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800818{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200819 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400820 struct ida *connector_ida =
821 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200822
Daniel Vetter84849902012-12-02 00:28:11 +0100823 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800824
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200825 ret = drm_mode_object_get(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR);
826 if (ret)
827 goto out;
828
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300829 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800830 connector->dev = dev;
831 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800832 connector->connector_type = connector_type;
833 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400834 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
835 if (connector->connector_type_id < 0) {
836 ret = connector->connector_type_id;
837 drm_mode_object_put(dev, &connector->base);
838 goto out;
839 }
Dave Airlief453ba02008-11-07 14:05:41 -0800840 INIT_LIST_HEAD(&connector->probed_modes);
841 INIT_LIST_HEAD(&connector->modes);
842 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000843 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800844
845 list_add_tail(&connector->head, &dev->mode_config.connector_list);
846 dev->mode_config.num_connector++;
847
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200848 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500849 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200850 dev->mode_config.edid_property,
851 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800852
Rob Clark58495562012-10-11 20:50:56 -0500853 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800854 dev->mode_config.dpms_property, 0);
855
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200856 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100857 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200858
859 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800860}
861EXPORT_SYMBOL(drm_connector_init);
862
863/**
864 * drm_connector_cleanup - cleans up an initialised connector
865 * @connector: connector to cleanup
866 *
Dave Airlief453ba02008-11-07 14:05:41 -0800867 * Cleans up the connector but doesn't free the object.
868 */
869void drm_connector_cleanup(struct drm_connector *connector)
870{
871 struct drm_device *dev = connector->dev;
872 struct drm_display_mode *mode, *t;
873
874 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
875 drm_mode_remove(connector, mode);
876
877 list_for_each_entry_safe(mode, t, &connector->modes, head)
878 drm_mode_remove(connector, mode);
879
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400880 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
881 connector->connector_type_id);
882
Dave Airlief453ba02008-11-07 14:05:41 -0800883 drm_mode_object_put(dev, &connector->base);
884 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000885 dev->mode_config.num_connector--;
Dave Airlief453ba02008-11-07 14:05:41 -0800886}
887EXPORT_SYMBOL(drm_connector_cleanup);
888
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100889/**
890 * drm_connector_unplug_all - unregister connector userspace interfaces
891 * @dev: drm device
892 *
893 * This function unregisters all connector userspace interfaces in sysfs. Should
894 * be call when the device is disconnected, e.g. from an usb driver's
895 * ->disconnect callback.
896 */
Dave Airliecbc7e222012-02-20 14:16:40 +0000897void drm_connector_unplug_all(struct drm_device *dev)
898{
899 struct drm_connector *connector;
900
901 /* taking the mode config mutex ends up in a clash with sysfs */
902 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
903 drm_sysfs_connector_remove(connector);
904
905}
906EXPORT_SYMBOL(drm_connector_unplug_all);
907
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100908/**
909 * drm_bridge_init - initialize a drm transcoder/bridge
910 * @dev: drm device
911 * @bridge: transcoder/bridge to set up
912 * @funcs: bridge function table
913 *
914 * Initialises a preallocated bridge. Bridges should be
915 * subclassed as part of driver connector objects.
916 *
917 * Returns:
918 * Zero on success, error code on failure.
919 */
Sean Paul3b336ec2013-08-14 16:47:37 -0400920int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
921 const struct drm_bridge_funcs *funcs)
922{
923 int ret;
924
925 drm_modeset_lock_all(dev);
926
927 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
928 if (ret)
929 goto out;
930
931 bridge->dev = dev;
932 bridge->funcs = funcs;
933
934 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
935 dev->mode_config.num_bridge++;
936
937 out:
938 drm_modeset_unlock_all(dev);
939 return ret;
940}
941EXPORT_SYMBOL(drm_bridge_init);
942
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100943/**
944 * drm_bridge_cleanup - cleans up an initialised bridge
945 * @bridge: bridge to cleanup
946 *
947 * Cleans up the bridge but doesn't free the object.
948 */
Sean Paul3b336ec2013-08-14 16:47:37 -0400949void drm_bridge_cleanup(struct drm_bridge *bridge)
950{
951 struct drm_device *dev = bridge->dev;
952
953 drm_modeset_lock_all(dev);
954 drm_mode_object_put(dev, &bridge->base);
955 list_del(&bridge->head);
956 dev->mode_config.num_bridge--;
957 drm_modeset_unlock_all(dev);
958}
959EXPORT_SYMBOL(drm_bridge_cleanup);
960
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100961/**
962 * drm_encoder_init - Init a preallocated encoder
963 * @dev: drm device
964 * @encoder: the encoder to init
965 * @funcs: callbacks for this encoder
966 * @encoder_type: user visible type of the encoder
967 *
968 * Initialises a preallocated encoder. Encoder should be
969 * subclassed as part of driver encoder objects.
970 *
971 * Returns:
972 * Zero on success, error code on failure.
973 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200974int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +0000975 struct drm_encoder *encoder,
976 const struct drm_encoder_funcs *funcs,
977 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800978{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200979 int ret;
980
Daniel Vetter84849902012-12-02 00:28:11 +0100981 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800982
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200983 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
984 if (ret)
985 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800986
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200987 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800988 encoder->encoder_type = encoder_type;
989 encoder->funcs = funcs;
990
991 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
992 dev->mode_config.num_encoder++;
993
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200994 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100995 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200996
997 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800998}
999EXPORT_SYMBOL(drm_encoder_init);
1000
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001001/**
1002 * drm_encoder_cleanup - cleans up an initialised encoder
1003 * @encoder: encoder to cleanup
1004 *
1005 * Cleans up the encoder but doesn't free the object.
1006 */
Dave Airlief453ba02008-11-07 14:05:41 -08001007void drm_encoder_cleanup(struct drm_encoder *encoder)
1008{
1009 struct drm_device *dev = encoder->dev;
Daniel Vetter84849902012-12-02 00:28:11 +01001010 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001011 drm_mode_object_put(dev, &encoder->base);
1012 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001013 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001014 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001015}
1016EXPORT_SYMBOL(drm_encoder_cleanup);
1017
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001018/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001019 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001020 * @dev: DRM device
1021 * @plane: plane object to init
1022 * @possible_crtcs: bitmask of possible CRTCs
1023 * @funcs: callbacks for the new plane
1024 * @formats: array of supported formats (%DRM_FORMAT_*)
1025 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001026 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001027 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001028 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001029 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001030 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001031 * Zero on success, error code on failure.
1032 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001033int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1034 unsigned long possible_crtcs,
1035 const struct drm_plane_funcs *funcs,
1036 const uint32_t *formats, uint32_t format_count,
1037 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001038{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001039 int ret;
1040
Daniel Vetter84849902012-12-02 00:28:11 +01001041 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001042
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001043 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1044 if (ret)
1045 goto out;
1046
Rob Clark4d939142012-05-17 02:23:27 -06001047 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001048 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001049 plane->funcs = funcs;
1050 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1051 GFP_KERNEL);
1052 if (!plane->format_types) {
1053 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1054 drm_mode_object_put(dev, &plane->base);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001055 ret = -ENOMEM;
1056 goto out;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001057 }
1058
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001059 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001060 plane->format_count = format_count;
1061 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001062 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001063
Matt Roperdc415ff2014-04-01 15:22:36 -07001064 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1065 dev->mode_config.num_total_plane++;
1066 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1067 dev->mode_config.num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001068
Rob Clark9922ab52014-04-01 20:16:57 -04001069 drm_object_attach_property(&plane->base,
1070 dev->mode_config.plane_type_property,
1071 plane->type);
1072
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001073 out:
Daniel Vetter84849902012-12-02 00:28:11 +01001074 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001075
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001076 return ret;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001077}
Matt Roperdc415ff2014-04-01 15:22:36 -07001078EXPORT_SYMBOL(drm_universal_plane_init);
1079
1080/**
1081 * drm_plane_init - Initialize a legacy plane
1082 * @dev: DRM device
1083 * @plane: plane object to init
1084 * @possible_crtcs: bitmask of possible CRTCs
1085 * @funcs: callbacks for the new plane
1086 * @formats: array of supported formats (%DRM_FORMAT_*)
1087 * @format_count: number of elements in @formats
1088 * @is_primary: plane type (primary vs overlay)
1089 *
1090 * Legacy API to initialize a DRM plane.
1091 *
1092 * New drivers should call drm_universal_plane_init() instead.
1093 *
1094 * Returns:
1095 * Zero on success, error code on failure.
1096 */
1097int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1098 unsigned long possible_crtcs,
1099 const struct drm_plane_funcs *funcs,
1100 const uint32_t *formats, uint32_t format_count,
1101 bool is_primary)
1102{
1103 enum drm_plane_type type;
1104
1105 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1106 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1107 formats, format_count, type);
1108}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001109EXPORT_SYMBOL(drm_plane_init);
1110
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001111/**
1112 * drm_plane_cleanup - Clean up the core plane usage
1113 * @plane: plane to cleanup
1114 *
1115 * This function cleans up @plane and removes it from the DRM mode setting
1116 * core. Note that the function does *not* free the plane structure itself,
1117 * this is the responsibility of the caller.
1118 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001119void drm_plane_cleanup(struct drm_plane *plane)
1120{
1121 struct drm_device *dev = plane->dev;
1122
Daniel Vetter84849902012-12-02 00:28:11 +01001123 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001124 kfree(plane->format_types);
1125 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001126
1127 BUG_ON(list_empty(&plane->head));
1128
1129 list_del(&plane->head);
1130 dev->mode_config.num_total_plane--;
1131 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1132 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001133 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001134}
1135EXPORT_SYMBOL(drm_plane_cleanup);
1136
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001137/**
1138 * drm_plane_force_disable - Forcibly disable a plane
1139 * @plane: plane to disable
1140 *
1141 * Forces the plane to be disabled.
1142 *
1143 * Used when the plane's current framebuffer is destroyed,
1144 * and when restoring fbdev mode.
1145 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001146void drm_plane_force_disable(struct drm_plane *plane)
1147{
1148 int ret;
1149
1150 if (!plane->fb)
1151 return;
1152
1153 ret = plane->funcs->disable_plane(plane);
1154 if (ret)
1155 DRM_ERROR("failed to disable plane with busy fb\n");
1156 /* disconnect the plane from the fb and crtc: */
1157 __drm_framebuffer_unreference(plane->fb);
1158 plane->fb = NULL;
1159 plane->crtc = NULL;
1160}
1161EXPORT_SYMBOL(drm_plane_force_disable);
1162
Dave Airlief453ba02008-11-07 14:05:41 -08001163static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1164{
1165 struct drm_property *edid;
1166 struct drm_property *dpms;
Dave Airlief453ba02008-11-07 14:05:41 -08001167
1168 /*
1169 * Standard properties (apply to all connectors)
1170 */
1171 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1172 DRM_MODE_PROP_IMMUTABLE,
1173 "EDID", 0);
1174 dev->mode_config.edid_property = edid;
1175
Sascha Hauer4a67d392012-02-06 10:58:17 +01001176 dpms = drm_property_create_enum(dev, 0,
1177 "DPMS", drm_dpms_enum_list,
1178 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001179 dev->mode_config.dpms_property = dpms;
1180
1181 return 0;
1182}
1183
Rob Clark9922ab52014-04-01 20:16:57 -04001184static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1185{
1186 struct drm_property *type;
1187
1188 /*
1189 * Standard properties (apply to all planes)
1190 */
1191 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1192 "type", drm_plane_type_enum_list,
1193 ARRAY_SIZE(drm_plane_type_enum_list));
1194 dev->mode_config.plane_type_property = type;
1195
1196 return 0;
1197}
1198
Dave Airlief453ba02008-11-07 14:05:41 -08001199/**
1200 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1201 * @dev: DRM device
1202 *
1203 * Called by a driver the first time a DVI-I connector is made.
1204 */
1205int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1206{
1207 struct drm_property *dvi_i_selector;
1208 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001209
1210 if (dev->mode_config.dvi_i_select_subconnector_property)
1211 return 0;
1212
1213 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001214 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001215 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001216 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001217 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001218 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1219
Sascha Hauer4a67d392012-02-06 10:58:17 +01001220 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001221 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001222 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001223 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001224 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1225
1226 return 0;
1227}
1228EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1229
1230/**
1231 * drm_create_tv_properties - create TV specific connector properties
1232 * @dev: DRM device
1233 * @num_modes: number of different TV formats (modes) supported
1234 * @modes: array of pointers to strings containing name of each format
1235 *
1236 * Called by a driver's TV initialization routine, this function creates
1237 * the TV specific connector properties for a given device. Caller is
1238 * responsible for allocating a list of format names and passing them to
1239 * this routine.
1240 */
1241int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1242 char *modes[])
1243{
1244 struct drm_property *tv_selector;
1245 struct drm_property *tv_subconnector;
1246 int i;
1247
1248 if (dev->mode_config.tv_select_subconnector_property)
1249 return 0;
1250
1251 /*
1252 * Basic connector properties
1253 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001254 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001255 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001256 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001257 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001258 dev->mode_config.tv_select_subconnector_property = tv_selector;
1259
1260 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001261 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1262 "subconnector",
1263 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001264 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001265 dev->mode_config.tv_subconnector_property = tv_subconnector;
1266
1267 /*
1268 * Other, TV specific properties: margins & TV modes.
1269 */
1270 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001271 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001272
1273 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001274 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001275
1276 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001277 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001278
1279 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001280 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001281
1282 dev->mode_config.tv_mode_property =
1283 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1284 "mode", num_modes);
1285 for (i = 0; i < num_modes; i++)
1286 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1287 i, modes[i]);
1288
Francisco Jerezb6b79022009-08-02 04:19:20 +02001289 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001290 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001291
1292 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001293 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001294
1295 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001296 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001297
Francisco Jereza75f0232009-08-12 02:30:10 +02001298 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001299 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001300
1301 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001302 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001303
1304 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001305 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001306
Dave Airlief453ba02008-11-07 14:05:41 -08001307 return 0;
1308}
1309EXPORT_SYMBOL(drm_mode_create_tv_properties);
1310
1311/**
1312 * drm_mode_create_scaling_mode_property - create scaling mode property
1313 * @dev: DRM device
1314 *
1315 * Called by a driver the first time it's needed, must be attached to desired
1316 * connectors.
1317 */
1318int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1319{
1320 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001321
1322 if (dev->mode_config.scaling_mode_property)
1323 return 0;
1324
1325 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001326 drm_property_create_enum(dev, 0, "scaling mode",
1327 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001328 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001329
1330 dev->mode_config.scaling_mode_property = scaling_mode;
1331
1332 return 0;
1333}
1334EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1335
1336/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001337 * drm_mode_create_dirty_property - create dirty property
1338 * @dev: DRM device
1339 *
1340 * Called by a driver the first time it's needed, must be attached to desired
1341 * connectors.
1342 */
1343int drm_mode_create_dirty_info_property(struct drm_device *dev)
1344{
1345 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001346
1347 if (dev->mode_config.dirty_info_property)
1348 return 0;
1349
1350 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001351 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001352 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001353 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001354 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001355 dev->mode_config.dirty_info_property = dirty_info;
1356
1357 return 0;
1358}
1359EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1360
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001361static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001362{
1363 uint32_t total_objects = 0;
1364
1365 total_objects += dev->mode_config.num_crtc;
1366 total_objects += dev->mode_config.num_connector;
1367 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001368 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001369
Dave Airlief453ba02008-11-07 14:05:41 -08001370 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1371 if (!group->id_list)
1372 return -ENOMEM;
1373
1374 group->num_crtcs = 0;
1375 group->num_connectors = 0;
1376 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001377 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001378 return 0;
1379}
1380
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001381/*
1382 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1383 * the drm core's responsibility to set up mode control groups.
1384 */
Dave Airlief453ba02008-11-07 14:05:41 -08001385int drm_mode_group_init_legacy_group(struct drm_device *dev,
1386 struct drm_mode_group *group)
1387{
1388 struct drm_crtc *crtc;
1389 struct drm_encoder *encoder;
1390 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001391 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001392 int ret;
1393
1394 if ((ret = drm_mode_group_init(dev, group)))
1395 return ret;
1396
1397 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1398 group->id_list[group->num_crtcs++] = crtc->base.id;
1399
1400 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1401 group->id_list[group->num_crtcs + group->num_encoders++] =
1402 encoder->base.id;
1403
1404 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1405 group->id_list[group->num_crtcs + group->num_encoders +
1406 group->num_connectors++] = connector->base.id;
1407
Sean Paul3b336ec2013-08-14 16:47:37 -04001408 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1409 group->id_list[group->num_crtcs + group->num_encoders +
1410 group->num_connectors + group->num_bridges++] =
1411 bridge->base.id;
1412
Dave Airlief453ba02008-11-07 14:05:41 -08001413 return 0;
1414}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001415EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001416
1417/**
Dave Airlief453ba02008-11-07 14:05:41 -08001418 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1419 * @out: drm_mode_modeinfo struct to return to the user
1420 * @in: drm_display_mode to use
1421 *
Dave Airlief453ba02008-11-07 14:05:41 -08001422 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1423 * the user.
1424 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001425static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1426 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001427{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001428 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1429 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1430 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1431 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1432 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1433 "timing values too large for mode info\n");
1434
Dave Airlief453ba02008-11-07 14:05:41 -08001435 out->clock = in->clock;
1436 out->hdisplay = in->hdisplay;
1437 out->hsync_start = in->hsync_start;
1438 out->hsync_end = in->hsync_end;
1439 out->htotal = in->htotal;
1440 out->hskew = in->hskew;
1441 out->vdisplay = in->vdisplay;
1442 out->vsync_start = in->vsync_start;
1443 out->vsync_end = in->vsync_end;
1444 out->vtotal = in->vtotal;
1445 out->vscan = in->vscan;
1446 out->vrefresh = in->vrefresh;
1447 out->flags = in->flags;
1448 out->type = in->type;
1449 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1450 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1451}
1452
1453/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001454 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001455 * @out: drm_display_mode to return to the user
1456 * @in: drm_mode_modeinfo to use
1457 *
Dave Airlief453ba02008-11-07 14:05:41 -08001458 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1459 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001460 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001461 * Returns:
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001462 * Zero on success, errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001463 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001464static int drm_crtc_convert_umode(struct drm_display_mode *out,
1465 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001466{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001467 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1468 return -ERANGE;
1469
Damien Lespiau5848ad42013-09-27 12:11:50 +01001470 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1471 return -EINVAL;
1472
Dave Airlief453ba02008-11-07 14:05:41 -08001473 out->clock = in->clock;
1474 out->hdisplay = in->hdisplay;
1475 out->hsync_start = in->hsync_start;
1476 out->hsync_end = in->hsync_end;
1477 out->htotal = in->htotal;
1478 out->hskew = in->hskew;
1479 out->vdisplay = in->vdisplay;
1480 out->vsync_start = in->vsync_start;
1481 out->vsync_end = in->vsync_end;
1482 out->vtotal = in->vtotal;
1483 out->vscan = in->vscan;
1484 out->vrefresh = in->vrefresh;
1485 out->flags = in->flags;
1486 out->type = in->type;
1487 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1488 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001489
1490 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001491}
1492
1493/**
1494 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001495 * @dev: drm device for the ioctl
1496 * @data: data pointer for the ioctl
1497 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001498 *
Dave Airlief453ba02008-11-07 14:05:41 -08001499 * Construct a set of configuration description structures and return
1500 * them to the user, including CRTC, connector and framebuffer configuration.
1501 *
1502 * Called by the user via ioctl.
1503 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001504 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001505 * Zero on success, errno on failure.
1506 */
1507int drm_mode_getresources(struct drm_device *dev, void *data,
1508 struct drm_file *file_priv)
1509{
1510 struct drm_mode_card_res *card_res = data;
1511 struct list_head *lh;
1512 struct drm_framebuffer *fb;
1513 struct drm_connector *connector;
1514 struct drm_crtc *crtc;
1515 struct drm_encoder *encoder;
1516 int ret = 0;
1517 int connector_count = 0;
1518 int crtc_count = 0;
1519 int fb_count = 0;
1520 int encoder_count = 0;
1521 int copied = 0, i;
1522 uint32_t __user *fb_id;
1523 uint32_t __user *crtc_id;
1524 uint32_t __user *connector_id;
1525 uint32_t __user *encoder_id;
1526 struct drm_mode_group *mode_group;
1527
Dave Airliefb3b06c2011-02-08 13:55:21 +10001528 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1529 return -EINVAL;
1530
Dave Airlief453ba02008-11-07 14:05:41 -08001531
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001532 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001533 /*
1534 * For the non-control nodes we need to limit the list of resources
1535 * by IDs in the group list for this node
1536 */
1537 list_for_each(lh, &file_priv->fbs)
1538 fb_count++;
1539
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001540 /* handle this in 4 parts */
1541 /* FBs */
1542 if (card_res->count_fbs >= fb_count) {
1543 copied = 0;
1544 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1545 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1546 if (put_user(fb->base.id, fb_id + copied)) {
1547 mutex_unlock(&file_priv->fbs_lock);
1548 return -EFAULT;
1549 }
1550 copied++;
1551 }
1552 }
1553 card_res->count_fbs = fb_count;
1554 mutex_unlock(&file_priv->fbs_lock);
1555
1556 drm_modeset_lock_all(dev);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001557 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001558
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001559 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001560 list_for_each(lh, &dev->mode_config.crtc_list)
1561 crtc_count++;
1562
1563 list_for_each(lh, &dev->mode_config.connector_list)
1564 connector_count++;
1565
1566 list_for_each(lh, &dev->mode_config.encoder_list)
1567 encoder_count++;
1568 } else {
1569
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001570 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001571 crtc_count = mode_group->num_crtcs;
1572 connector_count = mode_group->num_connectors;
1573 encoder_count = mode_group->num_encoders;
1574 }
1575
1576 card_res->max_height = dev->mode_config.max_height;
1577 card_res->min_height = dev->mode_config.min_height;
1578 card_res->max_width = dev->mode_config.max_width;
1579 card_res->min_width = dev->mode_config.min_width;
1580
Dave Airlief453ba02008-11-07 14:05:41 -08001581 /* CRTCs */
1582 if (card_res->count_crtcs >= crtc_count) {
1583 copied = 0;
1584 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001585 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001586 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1587 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001588 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001589 if (put_user(crtc->base.id, crtc_id + copied)) {
1590 ret = -EFAULT;
1591 goto out;
1592 }
1593 copied++;
1594 }
1595 } else {
1596 for (i = 0; i < mode_group->num_crtcs; i++) {
1597 if (put_user(mode_group->id_list[i],
1598 crtc_id + copied)) {
1599 ret = -EFAULT;
1600 goto out;
1601 }
1602 copied++;
1603 }
1604 }
1605 }
1606 card_res->count_crtcs = crtc_count;
1607
1608 /* Encoders */
1609 if (card_res->count_encoders >= encoder_count) {
1610 copied = 0;
1611 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001612 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001613 list_for_each_entry(encoder,
1614 &dev->mode_config.encoder_list,
1615 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001616 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1617 drm_get_encoder_name(encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001618 if (put_user(encoder->base.id, encoder_id +
1619 copied)) {
1620 ret = -EFAULT;
1621 goto out;
1622 }
1623 copied++;
1624 }
1625 } else {
1626 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1627 if (put_user(mode_group->id_list[i],
1628 encoder_id + copied)) {
1629 ret = -EFAULT;
1630 goto out;
1631 }
1632 copied++;
1633 }
1634
1635 }
1636 }
1637 card_res->count_encoders = encoder_count;
1638
1639 /* Connectors */
1640 if (card_res->count_connectors >= connector_count) {
1641 copied = 0;
1642 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001643 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001644 list_for_each_entry(connector,
1645 &dev->mode_config.connector_list,
1646 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001647 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1648 connector->base.id,
1649 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08001650 if (put_user(connector->base.id,
1651 connector_id + copied)) {
1652 ret = -EFAULT;
1653 goto out;
1654 }
1655 copied++;
1656 }
1657 } else {
1658 int start = mode_group->num_crtcs +
1659 mode_group->num_encoders;
1660 for (i = start; i < start + mode_group->num_connectors; i++) {
1661 if (put_user(mode_group->id_list[i],
1662 connector_id + copied)) {
1663 ret = -EFAULT;
1664 goto out;
1665 }
1666 copied++;
1667 }
1668 }
1669 }
1670 card_res->count_connectors = connector_count;
1671
Jerome Glisse94401062010-07-15 15:43:25 -04001672 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001673 card_res->count_connectors, card_res->count_encoders);
1674
1675out:
Daniel Vetter84849902012-12-02 00:28:11 +01001676 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001677 return ret;
1678}
1679
1680/**
1681 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001682 * @dev: drm device for the ioctl
1683 * @data: data pointer for the ioctl
1684 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001685 *
Dave Airlief453ba02008-11-07 14:05:41 -08001686 * Construct a CRTC configuration structure to return to the user.
1687 *
1688 * Called by the user via ioctl.
1689 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001690 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001691 * Zero on success, errno on failure.
1692 */
1693int drm_mode_getcrtc(struct drm_device *dev,
1694 void *data, struct drm_file *file_priv)
1695{
1696 struct drm_mode_crtc *crtc_resp = data;
1697 struct drm_crtc *crtc;
1698 struct drm_mode_object *obj;
1699 int ret = 0;
1700
Dave Airliefb3b06c2011-02-08 13:55:21 +10001701 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1702 return -EINVAL;
1703
Daniel Vetter84849902012-12-02 00:28:11 +01001704 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001705
1706 obj = drm_mode_object_find(dev, crtc_resp->crtc_id,
1707 DRM_MODE_OBJECT_CRTC);
1708 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001709 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001710 goto out;
1711 }
1712 crtc = obj_to_crtc(obj);
1713
1714 crtc_resp->x = crtc->x;
1715 crtc_resp->y = crtc->y;
1716 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001717 if (crtc->primary->fb)
1718 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001719 else
1720 crtc_resp->fb_id = 0;
1721
1722 if (crtc->enabled) {
1723
1724 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1725 crtc_resp->mode_valid = 1;
1726
1727 } else {
1728 crtc_resp->mode_valid = 0;
1729 }
1730
1731out:
Daniel Vetter84849902012-12-02 00:28:11 +01001732 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001733 return ret;
1734}
1735
Damien Lespiau61d8e322013-09-25 16:45:22 +01001736static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1737 const struct drm_file *file_priv)
1738{
1739 /*
1740 * If user-space hasn't configured the driver to expose the stereo 3D
1741 * modes, don't expose them.
1742 */
1743 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1744 return false;
1745
1746 return true;
1747}
1748
Dave Airlief453ba02008-11-07 14:05:41 -08001749/**
1750 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001751 * @dev: drm device for the ioctl
1752 * @data: data pointer for the ioctl
1753 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001754 *
Dave Airlief453ba02008-11-07 14:05:41 -08001755 * Construct a connector configuration structure to return to the user.
1756 *
1757 * Called by the user via ioctl.
1758 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001759 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001760 * Zero on success, errno on failure.
1761 */
1762int drm_mode_getconnector(struct drm_device *dev, void *data,
1763 struct drm_file *file_priv)
1764{
1765 struct drm_mode_get_connector *out_resp = data;
1766 struct drm_mode_object *obj;
1767 struct drm_connector *connector;
1768 struct drm_display_mode *mode;
1769 int mode_count = 0;
1770 int props_count = 0;
1771 int encoders_count = 0;
1772 int ret = 0;
1773 int copied = 0;
1774 int i;
1775 struct drm_mode_modeinfo u_mode;
1776 struct drm_mode_modeinfo __user *mode_ptr;
1777 uint32_t __user *prop_ptr;
1778 uint64_t __user *prop_values;
1779 uint32_t __user *encoder_ptr;
1780
Dave Airliefb3b06c2011-02-08 13:55:21 +10001781 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1782 return -EINVAL;
1783
Dave Airlief453ba02008-11-07 14:05:41 -08001784 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1785
Jerome Glisse94401062010-07-15 15:43:25 -04001786 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001787
Daniel Vetter7b240562012-12-12 00:35:33 +01001788 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001789
1790 obj = drm_mode_object_find(dev, out_resp->connector_id,
1791 DRM_MODE_OBJECT_CONNECTOR);
1792 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001793 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001794 goto out;
1795 }
1796 connector = obj_to_connector(obj);
1797
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001798 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08001799
1800 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1801 if (connector->encoder_ids[i] != 0) {
1802 encoders_count++;
1803 }
1804 }
1805
1806 if (out_resp->count_modes == 0) {
1807 connector->funcs->fill_modes(connector,
1808 dev->mode_config.max_width,
1809 dev->mode_config.max_height);
1810 }
1811
1812 /* delayed so we get modes regardless of pre-fill_modes state */
1813 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01001814 if (drm_mode_expose_to_userspace(mode, file_priv))
1815 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001816
1817 out_resp->connector_id = connector->base.id;
1818 out_resp->connector_type = connector->connector_type;
1819 out_resp->connector_type_id = connector->connector_type_id;
1820 out_resp->mm_width = connector->display_info.width_mm;
1821 out_resp->mm_height = connector->display_info.height_mm;
1822 out_resp->subpixel = connector->display_info.subpixel_order;
1823 out_resp->connection = connector->status;
1824 if (connector->encoder)
1825 out_resp->encoder_id = connector->encoder->base.id;
1826 else
1827 out_resp->encoder_id = 0;
1828
1829 /*
1830 * This ioctl is called twice, once to determine how much space is
1831 * needed, and the 2nd time to fill it.
1832 */
1833 if ((out_resp->count_modes >= mode_count) && mode_count) {
1834 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001835 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001836 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01001837 if (!drm_mode_expose_to_userspace(mode, file_priv))
1838 continue;
1839
Dave Airlief453ba02008-11-07 14:05:41 -08001840 drm_crtc_convert_to_umode(&u_mode, mode);
1841 if (copy_to_user(mode_ptr + copied,
1842 &u_mode, sizeof(u_mode))) {
1843 ret = -EFAULT;
1844 goto out;
1845 }
1846 copied++;
1847 }
1848 }
1849 out_resp->count_modes = mode_count;
1850
1851 if ((out_resp->count_props >= props_count) && props_count) {
1852 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001853 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1854 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001855 for (i = 0; i < connector->properties.count; i++) {
1856 if (put_user(connector->properties.ids[i],
1857 prop_ptr + copied)) {
1858 ret = -EFAULT;
1859 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001860 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001861
1862 if (put_user(connector->properties.values[i],
1863 prop_values + copied)) {
1864 ret = -EFAULT;
1865 goto out;
1866 }
1867 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001868 }
1869 }
1870 out_resp->count_props = props_count;
1871
1872 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1873 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001874 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08001875 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1876 if (connector->encoder_ids[i] != 0) {
1877 if (put_user(connector->encoder_ids[i],
1878 encoder_ptr + copied)) {
1879 ret = -EFAULT;
1880 goto out;
1881 }
1882 copied++;
1883 }
1884 }
1885 }
1886 out_resp->count_encoders = encoders_count;
1887
1888out:
Daniel Vetter7b240562012-12-12 00:35:33 +01001889 mutex_unlock(&dev->mode_config.mutex);
1890
Dave Airlief453ba02008-11-07 14:05:41 -08001891 return ret;
1892}
1893
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001894/**
1895 * drm_mode_getencoder - get encoder configuration
1896 * @dev: drm device for the ioctl
1897 * @data: data pointer for the ioctl
1898 * @file_priv: drm file for the ioctl call
1899 *
1900 * Construct a encoder configuration structure to return to the user.
1901 *
1902 * Called by the user via ioctl.
1903 *
1904 * Returns:
1905 * Zero on success, errno on failure.
1906 */
Dave Airlief453ba02008-11-07 14:05:41 -08001907int drm_mode_getencoder(struct drm_device *dev, void *data,
1908 struct drm_file *file_priv)
1909{
1910 struct drm_mode_get_encoder *enc_resp = data;
1911 struct drm_mode_object *obj;
1912 struct drm_encoder *encoder;
1913 int ret = 0;
1914
Dave Airliefb3b06c2011-02-08 13:55:21 +10001915 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1916 return -EINVAL;
1917
Daniel Vetter84849902012-12-02 00:28:11 +01001918 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001919 obj = drm_mode_object_find(dev, enc_resp->encoder_id,
1920 DRM_MODE_OBJECT_ENCODER);
1921 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001922 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001923 goto out;
1924 }
1925 encoder = obj_to_encoder(obj);
1926
1927 if (encoder->crtc)
1928 enc_resp->crtc_id = encoder->crtc->base.id;
1929 else
1930 enc_resp->crtc_id = 0;
1931 enc_resp->encoder_type = encoder->encoder_type;
1932 enc_resp->encoder_id = encoder->base.id;
1933 enc_resp->possible_crtcs = encoder->possible_crtcs;
1934 enc_resp->possible_clones = encoder->possible_clones;
1935
1936out:
Daniel Vetter84849902012-12-02 00:28:11 +01001937 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001938 return ret;
1939}
1940
1941/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001942 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001943 * @dev: DRM device
1944 * @data: ioctl data
1945 * @file_priv: DRM file info
1946 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001947 * Construct a list of plane ids to return to the user.
1948 *
1949 * Called by the user via ioctl.
1950 *
1951 * Returns:
1952 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001953 */
1954int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001955 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001956{
1957 struct drm_mode_get_plane_res *plane_resp = data;
1958 struct drm_mode_config *config;
1959 struct drm_plane *plane;
1960 uint32_t __user *plane_ptr;
1961 int copied = 0, ret = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07001962 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001963
1964 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1965 return -EINVAL;
1966
Daniel Vetter84849902012-12-02 00:28:11 +01001967 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001968 config = &dev->mode_config;
1969
Matt Roper681e7ec2014-04-01 15:22:42 -07001970 if (file_priv->universal_planes)
1971 num_planes = config->num_total_plane;
1972 else
1973 num_planes = config->num_overlay_plane;
1974
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001975 /*
1976 * This ioctl is called twice, once to determine how much space is
1977 * needed, and the 2nd time to fill it.
1978 */
Matt Roper681e7ec2014-04-01 15:22:42 -07001979 if (num_planes &&
1980 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001981 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001982
1983 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07001984 /*
1985 * Unless userspace set the 'universal planes'
1986 * capability bit, only advertise overlays.
1987 */
1988 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
1989 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07001990 continue;
1991
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001992 if (put_user(plane->base.id, plane_ptr + copied)) {
1993 ret = -EFAULT;
1994 goto out;
1995 }
1996 copied++;
1997 }
1998 }
Matt Roper681e7ec2014-04-01 15:22:42 -07001999 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002000
2001out:
Daniel Vetter84849902012-12-02 00:28:11 +01002002 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002003 return ret;
2004}
2005
2006/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002007 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002008 * @dev: DRM device
2009 * @data: ioctl data
2010 * @file_priv: DRM file info
2011 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002012 * Construct a plane configuration structure to return to the user.
2013 *
2014 * Called by the user via ioctl.
2015 *
2016 * Returns:
2017 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002018 */
2019int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002020 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002021{
2022 struct drm_mode_get_plane *plane_resp = data;
2023 struct drm_mode_object *obj;
2024 struct drm_plane *plane;
2025 uint32_t __user *format_ptr;
2026 int ret = 0;
2027
2028 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2029 return -EINVAL;
2030
Daniel Vetter84849902012-12-02 00:28:11 +01002031 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002032 obj = drm_mode_object_find(dev, plane_resp->plane_id,
2033 DRM_MODE_OBJECT_PLANE);
2034 if (!obj) {
2035 ret = -ENOENT;
2036 goto out;
2037 }
2038 plane = obj_to_plane(obj);
2039
2040 if (plane->crtc)
2041 plane_resp->crtc_id = plane->crtc->base.id;
2042 else
2043 plane_resp->crtc_id = 0;
2044
2045 if (plane->fb)
2046 plane_resp->fb_id = plane->fb->base.id;
2047 else
2048 plane_resp->fb_id = 0;
2049
2050 plane_resp->plane_id = plane->base.id;
2051 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002052 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002053
2054 /*
2055 * This ioctl is called twice, once to determine how much space is
2056 * needed, and the 2nd time to fill it.
2057 */
2058 if (plane->format_count &&
2059 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002060 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002061 if (copy_to_user(format_ptr,
2062 plane->format_types,
2063 sizeof(uint32_t) * plane->format_count)) {
2064 ret = -EFAULT;
2065 goto out;
2066 }
2067 }
2068 plane_resp->count_format_types = plane->format_count;
2069
2070out:
Daniel Vetter84849902012-12-02 00:28:11 +01002071 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002072 return ret;
2073}
2074
2075/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002076 * drm_mode_setplane - configure a plane's configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002077 * @dev: DRM device
2078 * @data: ioctl data*
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002079 * @file_priv: DRM file info
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002080 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002081 * Set plane configuration, including placement, fb, scaling, and other factors.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002082 * Or pass a NULL fb to disable.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002083 *
2084 * Returns:
2085 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002086 */
2087int drm_mode_setplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002088 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002089{
2090 struct drm_mode_set_plane *plane_req = data;
2091 struct drm_mode_object *obj;
2092 struct drm_plane *plane;
2093 struct drm_crtc *crtc;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002094 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002095 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002096 unsigned int fb_width, fb_height;
Ville Syrjälä62443be2011-12-20 00:06:47 +02002097 int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002098
2099 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2100 return -EINVAL;
2101
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002102 /*
2103 * First, find the plane, crtc, and fb objects. If not available,
2104 * we don't bother to call the driver.
2105 */
2106 obj = drm_mode_object_find(dev, plane_req->plane_id,
2107 DRM_MODE_OBJECT_PLANE);
2108 if (!obj) {
2109 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2110 plane_req->plane_id);
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002111 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002112 }
2113 plane = obj_to_plane(obj);
2114
2115 /* No fb means shut it down */
2116 if (!plane_req->fb_id) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002117 drm_modeset_lock_all(dev);
2118 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002119 plane->funcs->disable_plane(plane);
Ville Syrjäläe5e3b442011-12-20 00:06:43 +02002120 plane->crtc = NULL;
2121 plane->fb = NULL;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002122 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002123 goto out;
2124 }
2125
2126 obj = drm_mode_object_find(dev, plane_req->crtc_id,
2127 DRM_MODE_OBJECT_CRTC);
2128 if (!obj) {
2129 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2130 plane_req->crtc_id);
2131 ret = -ENOENT;
2132 goto out;
2133 }
2134 crtc = obj_to_crtc(obj);
2135
Daniel Vetter786b99e2012-12-02 21:53:40 +01002136 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2137 if (!fb) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002138 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2139 plane_req->fb_id);
2140 ret = -ENOENT;
2141 goto out;
2142 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002143
Ville Syrjälä62443be2011-12-20 00:06:47 +02002144 /* Check whether this plane supports the fb pixel format. */
2145 for (i = 0; i < plane->format_count; i++)
2146 if (fb->pixel_format == plane->format_types[i])
2147 break;
2148 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002149 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2150 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002151 ret = -EINVAL;
2152 goto out;
2153 }
2154
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002155 fb_width = fb->width << 16;
2156 fb_height = fb->height << 16;
2157
2158 /* Make sure source coordinates are inside the fb. */
2159 if (plane_req->src_w > fb_width ||
2160 plane_req->src_x > fb_width - plane_req->src_w ||
2161 plane_req->src_h > fb_height ||
2162 plane_req->src_y > fb_height - plane_req->src_h) {
2163 DRM_DEBUG_KMS("Invalid source coordinates "
2164 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2165 plane_req->src_w >> 16,
2166 ((plane_req->src_w & 0xffff) * 15625) >> 10,
2167 plane_req->src_h >> 16,
2168 ((plane_req->src_h & 0xffff) * 15625) >> 10,
2169 plane_req->src_x >> 16,
2170 ((plane_req->src_x & 0xffff) * 15625) >> 10,
2171 plane_req->src_y >> 16,
2172 ((plane_req->src_y & 0xffff) * 15625) >> 10);
2173 ret = -ENOSPC;
2174 goto out;
2175 }
2176
Ville Syrjälä687a0402011-12-20 00:06:45 +02002177 /* Give drivers some help against integer overflows */
2178 if (plane_req->crtc_w > INT_MAX ||
2179 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2180 plane_req->crtc_h > INT_MAX ||
2181 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2182 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2183 plane_req->crtc_w, plane_req->crtc_h,
2184 plane_req->crtc_x, plane_req->crtc_y);
2185 ret = -ERANGE;
2186 goto out;
2187 }
2188
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002189 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002190 ret = plane->funcs->update_plane(plane, crtc, fb,
2191 plane_req->crtc_x, plane_req->crtc_y,
2192 plane_req->crtc_w, plane_req->crtc_h,
2193 plane_req->src_x, plane_req->src_y,
2194 plane_req->src_w, plane_req->src_h);
2195 if (!ret) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002196 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002197 plane->crtc = crtc;
2198 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002199 fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002200 }
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002201 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002202
2203out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002204 if (fb)
2205 drm_framebuffer_unreference(fb);
2206 if (old_fb)
2207 drm_framebuffer_unreference(old_fb);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002208
2209 return ret;
2210}
2211
2212/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002213 * drm_mode_set_config_internal - helper to call ->set_config
2214 * @set: modeset config to set
2215 *
2216 * This is a little helper to wrap internal calls to the ->set_config driver
2217 * interface. The only thing it adds is correct refcounting dance.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002218 *
2219 * Returns:
2220 * Zero on success, errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002221 */
2222int drm_mode_set_config_internal(struct drm_mode_set *set)
2223{
2224 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002225 struct drm_framebuffer *fb;
2226 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002227 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002228
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002229 /*
2230 * NOTE: ->set_config can also disable other crtcs (if we steal all
2231 * connectors from it), hence we need to refcount the fbs across all
2232 * crtcs. Atomic modeset will have saner semantics ...
2233 */
2234 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Matt Roperf4510a22014-04-01 15:22:40 -07002235 tmp->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002236
Daniel Vetterb0d12322012-12-11 01:07:12 +01002237 fb = set->fb;
2238
2239 ret = crtc->funcs->set_config(set);
2240 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002241 crtc->primary->crtc = crtc;
2242
Daniel Vettercc85e122013-06-15 00:13:15 +02002243 /* crtc->fb must be updated by ->set_config, enforces this. */
Matt Roperf4510a22014-04-01 15:22:40 -07002244 WARN_ON(fb != crtc->primary->fb);
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002245 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002246
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002247 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002248 if (tmp->primary->fb)
2249 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002250 if (tmp->old_fb)
2251 drm_framebuffer_unreference(tmp->old_fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01002252 }
2253
2254 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002255}
2256EXPORT_SYMBOL(drm_mode_set_config_internal);
2257
Matt Roperaf936292014-04-01 15:22:34 -07002258/**
2259 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2260 * CRTC viewport
2261 * @crtc: CRTC that framebuffer will be displayed on
2262 * @x: x panning
2263 * @y: y panning
2264 * @mode: mode that framebuffer will be displayed under
2265 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002266 */
Matt Roperaf936292014-04-01 15:22:34 -07002267int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2268 int x, int y,
2269 const struct drm_display_mode *mode,
2270 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002271
2272{
2273 int hdisplay, vdisplay;
2274
2275 hdisplay = mode->hdisplay;
2276 vdisplay = mode->vdisplay;
2277
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002278 if (drm_mode_is_stereo(mode)) {
2279 struct drm_display_mode adjusted = *mode;
2280
2281 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2282 hdisplay = adjusted.crtc_hdisplay;
2283 vdisplay = adjusted.crtc_vdisplay;
2284 }
2285
Damien Lespiauc11e9282013-09-25 16:45:30 +01002286 if (crtc->invert_dimensions)
2287 swap(hdisplay, vdisplay);
2288
2289 if (hdisplay > fb->width ||
2290 vdisplay > fb->height ||
2291 x > fb->width - hdisplay ||
2292 y > fb->height - vdisplay) {
2293 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2294 fb->width, fb->height, hdisplay, vdisplay, x, y,
2295 crtc->invert_dimensions ? " (inverted)" : "");
2296 return -ENOSPC;
2297 }
2298
2299 return 0;
2300}
Matt Roperaf936292014-04-01 15:22:34 -07002301EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002302
Daniel Vetter2d13b672012-12-11 13:47:23 +01002303/**
Dave Airlief453ba02008-11-07 14:05:41 -08002304 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002305 * @dev: drm device for the ioctl
2306 * @data: data pointer for the ioctl
2307 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002308 *
Dave Airlief453ba02008-11-07 14:05:41 -08002309 * Build a new CRTC configuration based on user request.
2310 *
2311 * Called by the user via ioctl.
2312 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002313 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002314 * Zero on success, errno on failure.
2315 */
2316int drm_mode_setcrtc(struct drm_device *dev, void *data,
2317 struct drm_file *file_priv)
2318{
2319 struct drm_mode_config *config = &dev->mode_config;
2320 struct drm_mode_crtc *crtc_req = data;
2321 struct drm_mode_object *obj;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002322 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002323 struct drm_connector **connector_set = NULL, *connector;
2324 struct drm_framebuffer *fb = NULL;
2325 struct drm_display_mode *mode = NULL;
2326 struct drm_mode_set set;
2327 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002328 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002329 int i;
2330
Dave Airliefb3b06c2011-02-08 13:55:21 +10002331 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2332 return -EINVAL;
2333
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002334 /* For some reason crtc x/y offsets are signed internally. */
2335 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2336 return -ERANGE;
2337
Daniel Vetter84849902012-12-02 00:28:11 +01002338 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002339 obj = drm_mode_object_find(dev, crtc_req->crtc_id,
2340 DRM_MODE_OBJECT_CRTC);
2341 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002342 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002343 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002344 goto out;
2345 }
2346 crtc = obj_to_crtc(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002347 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002348
2349 if (crtc_req->mode_valid) {
2350 /* If we have a mode we need a framebuffer. */
2351 /* If we pass -1, set the mode with the currently bound fb */
2352 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002353 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002354 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2355 ret = -EINVAL;
2356 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002357 }
Matt Roperf4510a22014-04-01 15:22:40 -07002358 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002359 /* Make refcounting symmetric with the lookup path. */
2360 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002361 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002362 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2363 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002364 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2365 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002366 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002367 goto out;
2368 }
Dave Airlief453ba02008-11-07 14:05:41 -08002369 }
2370
2371 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002372 if (!mode) {
2373 ret = -ENOMEM;
2374 goto out;
2375 }
2376
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002377 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2378 if (ret) {
2379 DRM_DEBUG_KMS("Invalid mode\n");
2380 goto out;
2381 }
2382
Dave Airlief453ba02008-11-07 14:05:41 -08002383 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002384
Damien Lespiauc11e9282013-09-25 16:45:30 +01002385 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2386 mode, fb);
2387 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002388 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002389
Dave Airlief453ba02008-11-07 14:05:41 -08002390 }
2391
2392 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002393 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002394 ret = -EINVAL;
2395 goto out;
2396 }
2397
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002398 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002399 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002400 crtc_req->count_connectors);
2401 ret = -EINVAL;
2402 goto out;
2403 }
2404
2405 if (crtc_req->count_connectors > 0) {
2406 u32 out_id;
2407
2408 /* Avoid unbounded kernel memory allocation */
2409 if (crtc_req->count_connectors > config->num_connector) {
2410 ret = -EINVAL;
2411 goto out;
2412 }
2413
2414 connector_set = kmalloc(crtc_req->count_connectors *
2415 sizeof(struct drm_connector *),
2416 GFP_KERNEL);
2417 if (!connector_set) {
2418 ret = -ENOMEM;
2419 goto out;
2420 }
2421
2422 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002423 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002424 if (get_user(out_id, &set_connectors_ptr[i])) {
2425 ret = -EFAULT;
2426 goto out;
2427 }
2428
2429 obj = drm_mode_object_find(dev, out_id,
2430 DRM_MODE_OBJECT_CONNECTOR);
2431 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002432 DRM_DEBUG_KMS("Connector id %d unknown\n",
2433 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002434 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002435 goto out;
2436 }
2437 connector = obj_to_connector(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002438 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2439 connector->base.id,
2440 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08002441
2442 connector_set[i] = connector;
2443 }
2444 }
2445
2446 set.crtc = crtc;
2447 set.x = crtc_req->x;
2448 set.y = crtc_req->y;
2449 set.mode = mode;
2450 set.connectors = connector_set;
2451 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002452 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002453 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002454
2455out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002456 if (fb)
2457 drm_framebuffer_unreference(fb);
2458
Dave Airlief453ba02008-11-07 14:05:41 -08002459 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002460 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002461 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002462 return ret;
2463}
2464
Dave Airlie4c813d42013-06-20 11:48:52 +10002465static int drm_mode_cursor_common(struct drm_device *dev,
2466 struct drm_mode_cursor2 *req,
2467 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002468{
Dave Airlief453ba02008-11-07 14:05:41 -08002469 struct drm_mode_object *obj;
2470 struct drm_crtc *crtc;
2471 int ret = 0;
2472
Dave Airliefb3b06c2011-02-08 13:55:21 +10002473 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2474 return -EINVAL;
2475
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002476 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002477 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002478
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002479 obj = drm_mode_object_find(dev, req->crtc_id, DRM_MODE_OBJECT_CRTC);
Dave Airlief453ba02008-11-07 14:05:41 -08002480 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002481 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002482 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002483 }
2484 crtc = obj_to_crtc(obj);
2485
Daniel Vetterdac35662012-12-02 15:24:10 +01002486 mutex_lock(&crtc->mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002487 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002488 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002489 ret = -ENXIO;
2490 goto out;
2491 }
2492 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002493 if (crtc->funcs->cursor_set2)
2494 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2495 req->width, req->height, req->hot_x, req->hot_y);
2496 else
2497 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2498 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002499 }
2500
2501 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2502 if (crtc->funcs->cursor_move) {
2503 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2504 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002505 ret = -EFAULT;
2506 goto out;
2507 }
2508 }
2509out:
Daniel Vetterdac35662012-12-02 15:24:10 +01002510 mutex_unlock(&crtc->mutex);
2511
Dave Airlief453ba02008-11-07 14:05:41 -08002512 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002513
2514}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002515
2516
2517/**
2518 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2519 * @dev: drm device for the ioctl
2520 * @data: data pointer for the ioctl
2521 * @file_priv: drm file for the ioctl call
2522 *
2523 * Set the cursor configuration based on user request.
2524 *
2525 * Called by the user via ioctl.
2526 *
2527 * Returns:
2528 * Zero on success, errno on failure.
2529 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002530int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002531 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002532{
2533 struct drm_mode_cursor *req = data;
2534 struct drm_mode_cursor2 new_req;
2535
2536 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2537 new_req.hot_x = new_req.hot_y = 0;
2538
2539 return drm_mode_cursor_common(dev, &new_req, file_priv);
2540}
2541
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002542/**
2543 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2544 * @dev: drm device for the ioctl
2545 * @data: data pointer for the ioctl
2546 * @file_priv: drm file for the ioctl call
2547 *
2548 * Set the cursor configuration based on user request. This implements the 2nd
2549 * version of the cursor ioctl, which allows userspace to additionally specify
2550 * the hotspot of the pointer.
2551 *
2552 * Called by the user via ioctl.
2553 *
2554 * Returns:
2555 * Zero on success, errno on failure.
2556 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002557int drm_mode_cursor2_ioctl(struct drm_device *dev,
2558 void *data, struct drm_file *file_priv)
2559{
2560 struct drm_mode_cursor2 *req = data;
2561 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002562}
2563
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002564/**
2565 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2566 * @bpp: bits per pixels
2567 * @depth: bit depth per pixel
2568 *
2569 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2570 * Useful in fbdev emulation code, since that deals in those values.
2571 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002572uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2573{
2574 uint32_t fmt;
2575
2576 switch (bpp) {
2577 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002578 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002579 break;
2580 case 16:
2581 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002582 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002583 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002584 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002585 break;
2586 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002587 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002588 break;
2589 case 32:
2590 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002591 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002592 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002593 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002594 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002595 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002596 break;
2597 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002598 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2599 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002600 break;
2601 }
2602
2603 return fmt;
2604}
2605EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2606
Dave Airlief453ba02008-11-07 14:05:41 -08002607/**
2608 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002609 * @dev: drm device for the ioctl
2610 * @data: data pointer for the ioctl
2611 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002612 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002613 * Add a new FB to the specified CRTC, given a user request. This is the
2614 * original addfb ioclt which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08002615 *
2616 * Called by the user via ioctl.
2617 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002618 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002619 * Zero on success, errno on failure.
2620 */
2621int drm_mode_addfb(struct drm_device *dev,
2622 void *data, struct drm_file *file_priv)
2623{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002624 struct drm_mode_fb_cmd *or = data;
2625 struct drm_mode_fb_cmd2 r = {};
2626 struct drm_mode_config *config = &dev->mode_config;
2627 struct drm_framebuffer *fb;
2628 int ret = 0;
2629
2630 /* Use new struct with format internally */
2631 r.fb_id = or->fb_id;
2632 r.width = or->width;
2633 r.height = or->height;
2634 r.pitches[0] = or->pitch;
2635 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2636 r.handles[0] = or->handle;
2637
2638 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2639 return -EINVAL;
2640
Jesse Barnesacb4b992011-11-07 12:03:23 -08002641 if ((config->min_width > r.width) || (r.width > config->max_width))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002642 return -EINVAL;
Jesse Barnesacb4b992011-11-07 12:03:23 -08002643
2644 if ((config->min_height > r.height) || (r.height > config->max_height))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002645 return -EINVAL;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002646
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002647 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2648 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002649 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002650 return PTR_ERR(fb);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002651 }
2652
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002653 mutex_lock(&file_priv->fbs_lock);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002654 or->fb_id = fb->base.id;
2655 list_add(&fb->filp_head, &file_priv->fbs);
2656 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002657 mutex_unlock(&file_priv->fbs_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002658
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002659 return ret;
2660}
2661
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002662static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002663{
2664 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2665
2666 switch (format) {
2667 case DRM_FORMAT_C8:
2668 case DRM_FORMAT_RGB332:
2669 case DRM_FORMAT_BGR233:
2670 case DRM_FORMAT_XRGB4444:
2671 case DRM_FORMAT_XBGR4444:
2672 case DRM_FORMAT_RGBX4444:
2673 case DRM_FORMAT_BGRX4444:
2674 case DRM_FORMAT_ARGB4444:
2675 case DRM_FORMAT_ABGR4444:
2676 case DRM_FORMAT_RGBA4444:
2677 case DRM_FORMAT_BGRA4444:
2678 case DRM_FORMAT_XRGB1555:
2679 case DRM_FORMAT_XBGR1555:
2680 case DRM_FORMAT_RGBX5551:
2681 case DRM_FORMAT_BGRX5551:
2682 case DRM_FORMAT_ARGB1555:
2683 case DRM_FORMAT_ABGR1555:
2684 case DRM_FORMAT_RGBA5551:
2685 case DRM_FORMAT_BGRA5551:
2686 case DRM_FORMAT_RGB565:
2687 case DRM_FORMAT_BGR565:
2688 case DRM_FORMAT_RGB888:
2689 case DRM_FORMAT_BGR888:
2690 case DRM_FORMAT_XRGB8888:
2691 case DRM_FORMAT_XBGR8888:
2692 case DRM_FORMAT_RGBX8888:
2693 case DRM_FORMAT_BGRX8888:
2694 case DRM_FORMAT_ARGB8888:
2695 case DRM_FORMAT_ABGR8888:
2696 case DRM_FORMAT_RGBA8888:
2697 case DRM_FORMAT_BGRA8888:
2698 case DRM_FORMAT_XRGB2101010:
2699 case DRM_FORMAT_XBGR2101010:
2700 case DRM_FORMAT_RGBX1010102:
2701 case DRM_FORMAT_BGRX1010102:
2702 case DRM_FORMAT_ARGB2101010:
2703 case DRM_FORMAT_ABGR2101010:
2704 case DRM_FORMAT_RGBA1010102:
2705 case DRM_FORMAT_BGRA1010102:
2706 case DRM_FORMAT_YUYV:
2707 case DRM_FORMAT_YVYU:
2708 case DRM_FORMAT_UYVY:
2709 case DRM_FORMAT_VYUY:
2710 case DRM_FORMAT_AYUV:
2711 case DRM_FORMAT_NV12:
2712 case DRM_FORMAT_NV21:
2713 case DRM_FORMAT_NV16:
2714 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02002715 case DRM_FORMAT_NV24:
2716 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02002717 case DRM_FORMAT_YUV410:
2718 case DRM_FORMAT_YVU410:
2719 case DRM_FORMAT_YUV411:
2720 case DRM_FORMAT_YVU411:
2721 case DRM_FORMAT_YUV420:
2722 case DRM_FORMAT_YVU420:
2723 case DRM_FORMAT_YUV422:
2724 case DRM_FORMAT_YVU422:
2725 case DRM_FORMAT_YUV444:
2726 case DRM_FORMAT_YVU444:
2727 return 0;
2728 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03002729 DRM_DEBUG_KMS("invalid pixel format %s\n",
2730 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02002731 return -EINVAL;
2732 }
2733}
2734
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002735static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002736{
2737 int ret, hsub, vsub, num_planes, i;
2738
2739 ret = format_check(r);
2740 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002741 DRM_DEBUG_KMS("bad framebuffer format %s\n",
2742 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002743 return ret;
2744 }
2745
2746 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2747 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2748 num_planes = drm_format_num_planes(r->pixel_format);
2749
2750 if (r->width == 0 || r->width % hsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002751 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002752 return -EINVAL;
2753 }
2754
2755 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002756 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002757 return -EINVAL;
2758 }
2759
2760 for (i = 0; i < num_planes; i++) {
2761 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002762 unsigned int height = r->height / (i != 0 ? vsub : 1);
2763 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002764
2765 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002766 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002767 return -EINVAL;
2768 }
2769
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002770 if ((uint64_t) width * cpp > UINT_MAX)
2771 return -ERANGE;
2772
2773 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
2774 return -ERANGE;
2775
2776 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002777 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002778 return -EINVAL;
2779 }
2780 }
2781
2782 return 0;
2783}
2784
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002785/**
2786 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002787 * @dev: drm device for the ioctl
2788 * @data: data pointer for the ioctl
2789 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002790 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002791 * Add a new FB to the specified CRTC, given a user request with format. This is
2792 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
2793 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002794 *
2795 * Called by the user via ioctl.
2796 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002797 * Returns:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002798 * Zero on success, errno on failure.
2799 */
2800int drm_mode_addfb2(struct drm_device *dev,
2801 void *data, struct drm_file *file_priv)
2802{
2803 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002804 struct drm_mode_config *config = &dev->mode_config;
2805 struct drm_framebuffer *fb;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002806 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002807
Dave Airliefb3b06c2011-02-08 13:55:21 +10002808 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2809 return -EINVAL;
2810
Ville Syrjäläe3cc3522012-11-08 09:09:42 +00002811 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
2812 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
2813 return -EINVAL;
2814 }
2815
Dave Airlief453ba02008-11-07 14:05:41 -08002816 if ((config->min_width > r->width) || (r->width > config->max_width)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002817 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002818 r->width, config->min_width, config->max_width);
Dave Airlief453ba02008-11-07 14:05:41 -08002819 return -EINVAL;
2820 }
2821 if ((config->min_height > r->height) || (r->height > config->max_height)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002822 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002823 r->height, config->min_height, config->max_height);
Dave Airlief453ba02008-11-07 14:05:41 -08002824 return -EINVAL;
2825 }
2826
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002827 ret = framebuffer_check(r);
2828 if (ret)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002829 return ret;
Ville Syrjälä935b5972011-12-20 00:06:48 +02002830
Dave Airlief453ba02008-11-07 14:05:41 -08002831 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01002832 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002833 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002834 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002835 }
2836
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002837 mutex_lock(&file_priv->fbs_lock);
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002838 r->fb_id = fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002839 list_add(&fb->filp_head, &file_priv->fbs);
Jerome Glisse94401062010-07-15 15:43:25 -04002840 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002841 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002842
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002843
Dave Airlief453ba02008-11-07 14:05:41 -08002844 return ret;
2845}
2846
2847/**
2848 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002849 * @dev: drm device for the ioctl
2850 * @data: data pointer for the ioctl
2851 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002852 *
Dave Airlief453ba02008-11-07 14:05:41 -08002853 * Remove the FB specified by the user.
2854 *
2855 * Called by the user via ioctl.
2856 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002857 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002858 * Zero on success, errno on failure.
2859 */
2860int drm_mode_rmfb(struct drm_device *dev,
2861 void *data, struct drm_file *file_priv)
2862{
Dave Airlief453ba02008-11-07 14:05:41 -08002863 struct drm_framebuffer *fb = NULL;
2864 struct drm_framebuffer *fbl = NULL;
2865 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002866 int found = 0;
2867
Dave Airliefb3b06c2011-02-08 13:55:21 +10002868 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2869 return -EINVAL;
2870
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002871 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002872 mutex_lock(&dev->mode_config.fb_lock);
2873 fb = __drm_framebuffer_lookup(dev, *id);
2874 if (!fb)
2875 goto fail_lookup;
2876
Dave Airlief453ba02008-11-07 14:05:41 -08002877 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2878 if (fb == fbl)
2879 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01002880 if (!found)
2881 goto fail_lookup;
2882
2883 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2884 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002885
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002886 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002887 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002888 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002889
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002890 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002891
Daniel Vetter2b677e82012-12-10 21:16:05 +01002892 return 0;
2893
2894fail_lookup:
2895 mutex_unlock(&dev->mode_config.fb_lock);
2896 mutex_unlock(&file_priv->fbs_lock);
2897
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002898 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002899}
2900
2901/**
2902 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002903 * @dev: drm device for the ioctl
2904 * @data: data pointer for the ioctl
2905 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002906 *
Dave Airlief453ba02008-11-07 14:05:41 -08002907 * Lookup the FB given its ID and return info about it.
2908 *
2909 * Called by the user via ioctl.
2910 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002911 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002912 * Zero on success, errno on failure.
2913 */
2914int drm_mode_getfb(struct drm_device *dev,
2915 void *data, struct drm_file *file_priv)
2916{
2917 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002918 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002919 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002920
Dave Airliefb3b06c2011-02-08 13:55:21 +10002921 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2922 return -EINVAL;
2923
Daniel Vetter786b99e2012-12-02 21:53:40 +01002924 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002925 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002926 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002927
2928 r->height = fb->height;
2929 r->width = fb->width;
2930 r->depth = fb->depth;
2931 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002932 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02002933 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01002934 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01002935 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02002936 ret = fb->funcs->create_handle(fb, file_priv,
2937 &r->handle);
2938 } else {
2939 /* GET_FB() is an unprivileged ioctl so we must not
2940 * return a buffer-handle to non-master processes! For
2941 * backwards-compatibility reasons, we cannot make
2942 * GET_FB() privileged, so just return an invalid handle
2943 * for non-masters. */
2944 r->handle = 0;
2945 ret = 0;
2946 }
2947 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01002948 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02002949 }
Dave Airlief453ba02008-11-07 14:05:41 -08002950
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002951 drm_framebuffer_unreference(fb);
2952
Dave Airlief453ba02008-11-07 14:05:41 -08002953 return ret;
2954}
2955
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002956/**
2957 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
2958 * @dev: drm device for the ioctl
2959 * @data: data pointer for the ioctl
2960 * @file_priv: drm file for the ioctl call
2961 *
2962 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
2963 * rectangle list. Generic userspace which does frontbuffer rendering must call
2964 * this ioctl to flush out the changes on manual-update display outputs, e.g.
2965 * usb display-link, mipi manual update panels or edp panel self refresh modes.
2966 *
2967 * Modesetting drivers which always update the frontbuffer do not need to
2968 * implement the corresponding ->dirty framebuffer callback.
2969 *
2970 * Called by the user via ioctl.
2971 *
2972 * Returns:
2973 * Zero on success, errno on failure.
2974 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002975int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
2976 void *data, struct drm_file *file_priv)
2977{
2978 struct drm_clip_rect __user *clips_ptr;
2979 struct drm_clip_rect *clips = NULL;
2980 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002981 struct drm_framebuffer *fb;
2982 unsigned flags;
2983 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002984 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002985
Dave Airliefb3b06c2011-02-08 13:55:21 +10002986 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2987 return -EINVAL;
2988
Daniel Vetter786b99e2012-12-02 21:53:40 +01002989 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002990 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002991 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002992
2993 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002994 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002995
2996 if (!num_clips != !clips_ptr) {
2997 ret = -EINVAL;
2998 goto out_err1;
2999 }
3000
3001 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3002
3003 /* If userspace annotates copy, clips must come in pairs */
3004 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3005 ret = -EINVAL;
3006 goto out_err1;
3007 }
3008
3009 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003010 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3011 ret = -EINVAL;
3012 goto out_err1;
3013 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003014 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3015 if (!clips) {
3016 ret = -ENOMEM;
3017 goto out_err1;
3018 }
3019
3020 ret = copy_from_user(clips, clips_ptr,
3021 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003022 if (ret) {
3023 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003024 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003025 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003026 }
3027
3028 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003029 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3030 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003031 } else {
3032 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003033 }
3034
3035out_err2:
3036 kfree(clips);
3037out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003038 drm_framebuffer_unreference(fb);
3039
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003040 return ret;
3041}
3042
3043
Dave Airlief453ba02008-11-07 14:05:41 -08003044/**
3045 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003046 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003047 *
Dave Airlief453ba02008-11-07 14:05:41 -08003048 * Destroy all the FBs associated with @filp.
3049 *
3050 * Called by the user via ioctl.
3051 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003052 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08003053 * Zero on success, errno on failure.
3054 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003055void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003056{
Dave Airlief453ba02008-11-07 14:05:41 -08003057 struct drm_device *dev = priv->minor->dev;
3058 struct drm_framebuffer *fb, *tfb;
3059
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003060 mutex_lock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003061 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003062
3063 mutex_lock(&dev->mode_config.fb_lock);
3064 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3065 __drm_framebuffer_unregister(dev, fb);
3066 mutex_unlock(&dev->mode_config.fb_lock);
3067
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003068 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003069
3070 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003071 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003072 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003073 mutex_unlock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003074}
3075
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003076/**
3077 * drm_property_create - create a new property type
3078 * @dev: drm device
3079 * @flags: flags specifying the property type
3080 * @name: name of the property
3081 * @num_values: number of pre-defined values
3082 *
3083 * This creates a new generic drm property which can then be attached to a drm
3084 * object with drm_object_attach_property. The returned property object must be
3085 * freed with drm_property_destroy.
3086 *
3087 * Returns:
3088 * A pointer to the newly created property on success, NULL on failure.
3089 */
Dave Airlief453ba02008-11-07 14:05:41 -08003090struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3091 const char *name, int num_values)
3092{
3093 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003094 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003095
3096 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3097 if (!property)
3098 return NULL;
3099
3100 if (num_values) {
3101 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3102 if (!property->values)
3103 goto fail;
3104 }
3105
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003106 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3107 if (ret)
3108 goto fail;
3109
Dave Airlief453ba02008-11-07 14:05:41 -08003110 property->flags = flags;
3111 property->num_values = num_values;
3112 INIT_LIST_HEAD(&property->enum_blob_list);
3113
Vinson Lee471dd2e2011-11-10 11:55:40 -08003114 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003115 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003116 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3117 }
Dave Airlief453ba02008-11-07 14:05:41 -08003118
3119 list_add_tail(&property->head, &dev->mode_config.property_list);
3120 return property;
3121fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003122 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003123 kfree(property);
3124 return NULL;
3125}
3126EXPORT_SYMBOL(drm_property_create);
3127
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003128/**
3129 * drm_property_create - create a new enumeration property type
3130 * @dev: drm device
3131 * @flags: flags specifying the property type
3132 * @name: name of the property
3133 * @props: enumeration lists with property values
3134 * @num_values: number of pre-defined values
3135 *
3136 * This creates a new generic drm property which can then be attached to a drm
3137 * object with drm_object_attach_property. The returned property object must be
3138 * freed with drm_property_destroy.
3139 *
3140 * Userspace is only allowed to set one of the predefined values for enumeration
3141 * properties.
3142 *
3143 * Returns:
3144 * A pointer to the newly created property on success, NULL on failure.
3145 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003146struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3147 const char *name,
3148 const struct drm_prop_enum_list *props,
3149 int num_values)
3150{
3151 struct drm_property *property;
3152 int i, ret;
3153
3154 flags |= DRM_MODE_PROP_ENUM;
3155
3156 property = drm_property_create(dev, flags, name, num_values);
3157 if (!property)
3158 return NULL;
3159
3160 for (i = 0; i < num_values; i++) {
3161 ret = drm_property_add_enum(property, i,
3162 props[i].type,
3163 props[i].name);
3164 if (ret) {
3165 drm_property_destroy(dev, property);
3166 return NULL;
3167 }
3168 }
3169
3170 return property;
3171}
3172EXPORT_SYMBOL(drm_property_create_enum);
3173
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003174/**
3175 * drm_property_create - create a new bitmask property type
3176 * @dev: drm device
3177 * @flags: flags specifying the property type
3178 * @name: name of the property
3179 * @props: enumeration lists with property bitflags
3180 * @num_values: number of pre-defined values
3181 *
3182 * This creates a new generic drm property which can then be attached to a drm
3183 * object with drm_object_attach_property. The returned property object must be
3184 * freed with drm_property_destroy.
3185 *
3186 * Compared to plain enumeration properties userspace is allowed to set any
3187 * or'ed together combination of the predefined property bitflag values
3188 *
3189 * Returns:
3190 * A pointer to the newly created property on success, NULL on failure.
3191 */
Rob Clark49e27542012-05-17 02:23:26 -06003192struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3193 int flags, const char *name,
3194 const struct drm_prop_enum_list *props,
3195 int num_values)
3196{
3197 struct drm_property *property;
3198 int i, ret;
3199
3200 flags |= DRM_MODE_PROP_BITMASK;
3201
3202 property = drm_property_create(dev, flags, name, num_values);
3203 if (!property)
3204 return NULL;
3205
3206 for (i = 0; i < num_values; i++) {
3207 ret = drm_property_add_enum(property, i,
3208 props[i].type,
3209 props[i].name);
3210 if (ret) {
3211 drm_property_destroy(dev, property);
3212 return NULL;
3213 }
3214 }
3215
3216 return property;
3217}
3218EXPORT_SYMBOL(drm_property_create_bitmask);
3219
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003220/**
3221 * drm_property_create - create a new ranged property type
3222 * @dev: drm device
3223 * @flags: flags specifying the property type
3224 * @name: name of the property
3225 * @min: minimum value of the property
3226 * @max: maximum value of the property
3227 *
3228 * This creates a new generic drm property which can then be attached to a drm
3229 * object with drm_object_attach_property. The returned property object must be
3230 * freed with drm_property_destroy.
3231 *
3232 * Userspace is allowed to set any interger value in the (min, max) range
3233 * inclusive.
3234 *
3235 * Returns:
3236 * A pointer to the newly created property on success, NULL on failure.
3237 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003238struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3239 const char *name,
3240 uint64_t min, uint64_t max)
3241{
3242 struct drm_property *property;
3243
3244 flags |= DRM_MODE_PROP_RANGE;
3245
3246 property = drm_property_create(dev, flags, name, 2);
3247 if (!property)
3248 return NULL;
3249
3250 property->values[0] = min;
3251 property->values[1] = max;
3252
3253 return property;
3254}
3255EXPORT_SYMBOL(drm_property_create_range);
3256
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003257/**
3258 * drm_property_add_enum - add a possible value to an enumeration property
3259 * @property: enumeration property to change
3260 * @index: index of the new enumeration
3261 * @value: value of the new enumeration
3262 * @name: symbolic name of the new enumeration
3263 *
3264 * This functions adds enumerations to a property.
3265 *
3266 * It's use is deprecated, drivers should use one of the more specific helpers
3267 * to directly create the property with all enumerations already attached.
3268 *
3269 * Returns:
3270 * Zero on success, error code on failure.
3271 */
Dave Airlief453ba02008-11-07 14:05:41 -08003272int drm_property_add_enum(struct drm_property *property, int index,
3273 uint64_t value, const char *name)
3274{
3275 struct drm_property_enum *prop_enum;
3276
Rob Clark49e27542012-05-17 02:23:26 -06003277 if (!(property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)))
3278 return -EINVAL;
3279
3280 /*
3281 * Bitmask enum properties have the additional constraint of values
3282 * from 0 to 63
3283 */
3284 if ((property->flags & DRM_MODE_PROP_BITMASK) && (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003285 return -EINVAL;
3286
3287 if (!list_empty(&property->enum_blob_list)) {
3288 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3289 if (prop_enum->value == value) {
3290 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3291 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3292 return 0;
3293 }
3294 }
3295 }
3296
3297 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3298 if (!prop_enum)
3299 return -ENOMEM;
3300
3301 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3302 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3303 prop_enum->value = value;
3304
3305 property->values[index] = value;
3306 list_add_tail(&prop_enum->head, &property->enum_blob_list);
3307 return 0;
3308}
3309EXPORT_SYMBOL(drm_property_add_enum);
3310
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003311/**
3312 * drm_property_destroy - destroy a drm property
3313 * @dev: drm device
3314 * @property: property to destry
3315 *
3316 * This function frees a property including any attached resources like
3317 * enumeration values.
3318 */
Dave Airlief453ba02008-11-07 14:05:41 -08003319void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3320{
3321 struct drm_property_enum *prop_enum, *pt;
3322
3323 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
3324 list_del(&prop_enum->head);
3325 kfree(prop_enum);
3326 }
3327
3328 if (property->num_values)
3329 kfree(property->values);
3330 drm_mode_object_put(dev, &property->base);
3331 list_del(&property->head);
3332 kfree(property);
3333}
3334EXPORT_SYMBOL(drm_property_destroy);
3335
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003336/**
3337 * drm_object_attach_property - attach a property to a modeset object
3338 * @obj: drm modeset object
3339 * @property: property to attach
3340 * @init_val: initial value of the property
3341 *
3342 * This attaches the given property to the modeset object with the given initial
3343 * value. Currently this function cannot fail since the properties are stored in
3344 * a statically sized array.
3345 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003346void drm_object_attach_property(struct drm_mode_object *obj,
3347 struct drm_property *property,
3348 uint64_t init_val)
3349{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003350 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003351
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003352 if (count == DRM_OBJECT_MAX_PROPERTY) {
3353 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3354 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3355 "you see this message on the same object type.\n",
3356 obj->type);
3357 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003358 }
3359
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003360 obj->properties->ids[count] = property->base.id;
3361 obj->properties->values[count] = init_val;
3362 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003363}
3364EXPORT_SYMBOL(drm_object_attach_property);
3365
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003366/**
3367 * drm_object_property_set_value - set the value of a property
3368 * @obj: drm mode object to set property value for
3369 * @property: property to set
3370 * @val: value the property should be set to
3371 *
3372 * This functions sets a given property on a given object. This function only
3373 * changes the software state of the property, it does not call into the
3374 * driver's ->set_property callback.
3375 *
3376 * Returns:
3377 * Zero on success, error code on failure.
3378 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003379int drm_object_property_set_value(struct drm_mode_object *obj,
3380 struct drm_property *property, uint64_t val)
3381{
3382 int i;
3383
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003384 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003385 if (obj->properties->ids[i] == property->base.id) {
3386 obj->properties->values[i] = val;
3387 return 0;
3388 }
3389 }
3390
3391 return -EINVAL;
3392}
3393EXPORT_SYMBOL(drm_object_property_set_value);
3394
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003395/**
3396 * drm_object_property_get_value - retrieve the value of a property
3397 * @obj: drm mode object to get property value from
3398 * @property: property to retrieve
3399 * @val: storage for the property value
3400 *
3401 * This function retrieves the softare state of the given property for the given
3402 * property. Since there is no driver callback to retrieve the current property
3403 * value this might be out of sync with the hardware, depending upon the driver
3404 * and property.
3405 *
3406 * Returns:
3407 * Zero on success, error code on failure.
3408 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003409int drm_object_property_get_value(struct drm_mode_object *obj,
3410 struct drm_property *property, uint64_t *val)
3411{
3412 int i;
3413
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003414 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003415 if (obj->properties->ids[i] == property->base.id) {
3416 *val = obj->properties->values[i];
3417 return 0;
3418 }
3419 }
3420
3421 return -EINVAL;
3422}
3423EXPORT_SYMBOL(drm_object_property_get_value);
3424
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003425/**
3426 * drm_mode_getproperty_ioctl - get the current value of a connector's property
3427 * @dev: DRM device
3428 * @data: ioctl data
3429 * @file_priv: DRM file info
3430 *
3431 * This function retrieves the current value for an connectors's property.
3432 *
3433 * Called by the user via ioctl.
3434 *
3435 * Returns:
3436 * Zero on success, errno on failure.
3437 */
Dave Airlief453ba02008-11-07 14:05:41 -08003438int drm_mode_getproperty_ioctl(struct drm_device *dev,
3439 void *data, struct drm_file *file_priv)
3440{
3441 struct drm_mode_object *obj;
3442 struct drm_mode_get_property *out_resp = data;
3443 struct drm_property *property;
3444 int enum_count = 0;
3445 int blob_count = 0;
3446 int value_count = 0;
3447 int ret = 0, i;
3448 int copied;
3449 struct drm_property_enum *prop_enum;
3450 struct drm_mode_property_enum __user *enum_ptr;
3451 struct drm_property_blob *prop_blob;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003452 uint32_t __user *blob_id_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003453 uint64_t __user *values_ptr;
3454 uint32_t __user *blob_length_ptr;
3455
Dave Airliefb3b06c2011-02-08 13:55:21 +10003456 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3457 return -EINVAL;
3458
Daniel Vetter84849902012-12-02 00:28:11 +01003459 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003460 obj = drm_mode_object_find(dev, out_resp->prop_id, DRM_MODE_OBJECT_PROPERTY);
3461 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003462 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003463 goto done;
3464 }
3465 property = obj_to_property(obj);
3466
Rob Clark49e27542012-05-17 02:23:26 -06003467 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003468 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3469 enum_count++;
3470 } else if (property->flags & DRM_MODE_PROP_BLOB) {
3471 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3472 blob_count++;
3473 }
3474
3475 value_count = property->num_values;
3476
3477 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3478 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3479 out_resp->flags = property->flags;
3480
3481 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003482 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003483 for (i = 0; i < value_count; i++) {
3484 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3485 ret = -EFAULT;
3486 goto done;
3487 }
3488 }
3489 }
3490 out_resp->count_values = value_count;
3491
Rob Clark49e27542012-05-17 02:23:26 -06003492 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003493 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3494 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003495 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003496 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3497
3498 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3499 ret = -EFAULT;
3500 goto done;
3501 }
3502
3503 if (copy_to_user(&enum_ptr[copied].name,
3504 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3505 ret = -EFAULT;
3506 goto done;
3507 }
3508 copied++;
3509 }
3510 }
3511 out_resp->count_enum_blobs = enum_count;
3512 }
3513
3514 if (property->flags & DRM_MODE_PROP_BLOB) {
3515 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3516 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003517 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3518 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003519
3520 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3521 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3522 ret = -EFAULT;
3523 goto done;
3524 }
3525
3526 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3527 ret = -EFAULT;
3528 goto done;
3529 }
3530
3531 copied++;
3532 }
3533 }
3534 out_resp->count_enum_blobs = blob_count;
3535 }
3536done:
Daniel Vetter84849902012-12-02 00:28:11 +01003537 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003538 return ret;
3539}
3540
3541static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3542 void *data)
3543{
3544 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003545 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003546
3547 if (!length || !data)
3548 return NULL;
3549
3550 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3551 if (!blob)
3552 return NULL;
3553
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003554 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3555 if (ret) {
3556 kfree(blob);
3557 return NULL;
3558 }
3559
Dave Airlief453ba02008-11-07 14:05:41 -08003560 blob->length = length;
3561
3562 memcpy(blob->data, data, length);
3563
Dave Airlief453ba02008-11-07 14:05:41 -08003564 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3565 return blob;
3566}
3567
3568static void drm_property_destroy_blob(struct drm_device *dev,
3569 struct drm_property_blob *blob)
3570{
3571 drm_mode_object_put(dev, &blob->base);
3572 list_del(&blob->head);
3573 kfree(blob);
3574}
3575
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003576/**
3577 * drm_mode_getblob_ioctl - get the contents of a blob property value
3578 * @dev: DRM device
3579 * @data: ioctl data
3580 * @file_priv: DRM file info
3581 *
3582 * This function retrieves the contents of a blob property. The value stored in
3583 * an object's blob property is just a normal modeset object id.
3584 *
3585 * Called by the user via ioctl.
3586 *
3587 * Returns:
3588 * Zero on success, errno on failure.
3589 */
Dave Airlief453ba02008-11-07 14:05:41 -08003590int drm_mode_getblob_ioctl(struct drm_device *dev,
3591 void *data, struct drm_file *file_priv)
3592{
3593 struct drm_mode_object *obj;
3594 struct drm_mode_get_blob *out_resp = data;
3595 struct drm_property_blob *blob;
3596 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003597 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003598
Dave Airliefb3b06c2011-02-08 13:55:21 +10003599 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3600 return -EINVAL;
3601
Daniel Vetter84849902012-12-02 00:28:11 +01003602 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003603 obj = drm_mode_object_find(dev, out_resp->blob_id, DRM_MODE_OBJECT_BLOB);
3604 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003605 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003606 goto done;
3607 }
3608 blob = obj_to_blob(obj);
3609
3610 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003611 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08003612 if (copy_to_user(blob_ptr, blob->data, blob->length)){
3613 ret = -EFAULT;
3614 goto done;
3615 }
3616 }
3617 out_resp->length = blob->length;
3618
3619done:
Daniel Vetter84849902012-12-02 00:28:11 +01003620 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003621 return ret;
3622}
3623
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003624/**
3625 * drm_mode_connector_update_edid_property - update the edid property of a connector
3626 * @connector: drm connector
3627 * @edid: new value of the edid property
3628 *
3629 * This function creates a new blob modeset object and assigns its id to the
3630 * connector's edid property.
3631 *
3632 * Returns:
3633 * Zero on success, errno on failure.
3634 */
Dave Airlief453ba02008-11-07 14:05:41 -08003635int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3636 struct edid *edid)
3637{
3638 struct drm_device *dev = connector->dev;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003639 int ret, size;
Dave Airlief453ba02008-11-07 14:05:41 -08003640
3641 if (connector->edid_blob_ptr)
3642 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3643
3644 /* Delete edid, when there is none. */
3645 if (!edid) {
3646 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05003647 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08003648 return ret;
3649 }
3650
Adam Jackson7466f4c2010-03-29 21:43:23 +00003651 size = EDID_LENGTH * (1 + edid->extensions);
3652 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3653 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00003654 if (!connector->edid_blob_ptr)
3655 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003656
Rob Clark58495562012-10-11 20:50:56 -05003657 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08003658 dev->mode_config.edid_property,
3659 connector->edid_blob_ptr->base.id);
3660
3661 return ret;
3662}
3663EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3664
Paulo Zanoni26a34812012-05-15 18:08:59 -03003665static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003666 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03003667{
3668 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3669 return false;
3670 if (property->flags & DRM_MODE_PROP_RANGE) {
3671 if (value < property->values[0] || value > property->values[1])
3672 return false;
3673 return true;
Rob Clark49e27542012-05-17 02:23:26 -06003674 } else if (property->flags & DRM_MODE_PROP_BITMASK) {
3675 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003676 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06003677 for (i = 0; i < property->num_values; i++)
3678 valid_mask |= (1ULL << property->values[i]);
3679 return !(value & ~valid_mask);
Ville Syrjäläc4a56752012-10-25 18:05:06 +00003680 } else if (property->flags & DRM_MODE_PROP_BLOB) {
3681 /* Only the driver knows */
3682 return true;
Paulo Zanoni26a34812012-05-15 18:08:59 -03003683 } else {
3684 int i;
3685 for (i = 0; i < property->num_values; i++)
3686 if (property->values[i] == value)
3687 return true;
3688 return false;
3689 }
3690}
3691
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003692/**
3693 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
3694 * @dev: DRM device
3695 * @data: ioctl data
3696 * @file_priv: DRM file info
3697 *
3698 * This function sets the current value for a connectors's property. It also
3699 * calls into a driver's ->set_property callback to update the hardware state
3700 *
3701 * Called by the user via ioctl.
3702 *
3703 * Returns:
3704 * Zero on success, errno on failure.
3705 */
Dave Airlief453ba02008-11-07 14:05:41 -08003706int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3707 void *data, struct drm_file *file_priv)
3708{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003709 struct drm_mode_connector_set_property *conn_set_prop = data;
3710 struct drm_mode_obj_set_property obj_set_prop = {
3711 .value = conn_set_prop->value,
3712 .prop_id = conn_set_prop->prop_id,
3713 .obj_id = conn_set_prop->connector_id,
3714 .obj_type = DRM_MODE_OBJECT_CONNECTOR
3715 };
Dave Airlief453ba02008-11-07 14:05:41 -08003716
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003717 /* It does all the locking and checking we need */
3718 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003719}
3720
Paulo Zanonic5431882012-05-15 18:09:02 -03003721static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3722 struct drm_property *property,
3723 uint64_t value)
3724{
3725 int ret = -EINVAL;
3726 struct drm_connector *connector = obj_to_connector(obj);
3727
3728 /* Do DPMS ourselves */
3729 if (property == connector->dev->mode_config.dpms_property) {
3730 if (connector->funcs->dpms)
3731 (*connector->funcs->dpms)(connector, (int)value);
3732 ret = 0;
3733 } else if (connector->funcs->set_property)
3734 ret = connector->funcs->set_property(connector, property, value);
3735
3736 /* store the property value if successful */
3737 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05003738 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03003739 return ret;
3740}
3741
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003742static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3743 struct drm_property *property,
3744 uint64_t value)
3745{
3746 int ret = -EINVAL;
3747 struct drm_crtc *crtc = obj_to_crtc(obj);
3748
3749 if (crtc->funcs->set_property)
3750 ret = crtc->funcs->set_property(crtc, property, value);
3751 if (!ret)
3752 drm_object_property_set_value(obj, property, value);
3753
3754 return ret;
3755}
3756
Rob Clark4d939142012-05-17 02:23:27 -06003757static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3758 struct drm_property *property,
3759 uint64_t value)
3760{
3761 int ret = -EINVAL;
3762 struct drm_plane *plane = obj_to_plane(obj);
3763
3764 if (plane->funcs->set_property)
3765 ret = plane->funcs->set_property(plane, property, value);
3766 if (!ret)
3767 drm_object_property_set_value(obj, property, value);
3768
3769 return ret;
3770}
3771
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003772/**
3773 * drm_mode_getproperty_ioctl - get the current value of a object's property
3774 * @dev: DRM device
3775 * @data: ioctl data
3776 * @file_priv: DRM file info
3777 *
3778 * This function retrieves the current value for an object's property. Compared
3779 * to the connector specific ioctl this one is extended to also work on crtc and
3780 * plane objects.
3781 *
3782 * Called by the user via ioctl.
3783 *
3784 * Returns:
3785 * Zero on success, errno on failure.
3786 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003787int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3788 struct drm_file *file_priv)
3789{
3790 struct drm_mode_obj_get_properties *arg = data;
3791 struct drm_mode_object *obj;
3792 int ret = 0;
3793 int i;
3794 int copied = 0;
3795 int props_count = 0;
3796 uint32_t __user *props_ptr;
3797 uint64_t __user *prop_values_ptr;
3798
3799 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3800 return -EINVAL;
3801
Daniel Vetter84849902012-12-02 00:28:11 +01003802 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003803
3804 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3805 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003806 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03003807 goto out;
3808 }
3809 if (!obj->properties) {
3810 ret = -EINVAL;
3811 goto out;
3812 }
3813
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003814 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003815
3816 /* This ioctl is called twice, once to determine how much space is
3817 * needed, and the 2nd time to fill it. */
3818 if ((arg->count_props >= props_count) && props_count) {
3819 copied = 0;
3820 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3821 prop_values_ptr = (uint64_t __user *)(unsigned long)
3822 (arg->prop_values_ptr);
3823 for (i = 0; i < props_count; i++) {
3824 if (put_user(obj->properties->ids[i],
3825 props_ptr + copied)) {
3826 ret = -EFAULT;
3827 goto out;
3828 }
3829 if (put_user(obj->properties->values[i],
3830 prop_values_ptr + copied)) {
3831 ret = -EFAULT;
3832 goto out;
3833 }
3834 copied++;
3835 }
3836 }
3837 arg->count_props = props_count;
3838out:
Daniel Vetter84849902012-12-02 00:28:11 +01003839 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003840 return ret;
3841}
3842
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003843/**
3844 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
3845 * @dev: DRM device
3846 * @data: ioctl data
3847 * @file_priv: DRM file info
3848 *
3849 * This function sets the current value for an object's property. It also calls
3850 * into a driver's ->set_property callback to update the hardware state.
3851 * Compared to the connector specific ioctl this one is extended to also work on
3852 * crtc and plane objects.
3853 *
3854 * Called by the user via ioctl.
3855 *
3856 * Returns:
3857 * Zero on success, errno on failure.
3858 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003859int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
3860 struct drm_file *file_priv)
3861{
3862 struct drm_mode_obj_set_property *arg = data;
3863 struct drm_mode_object *arg_obj;
3864 struct drm_mode_object *prop_obj;
3865 struct drm_property *property;
3866 int ret = -EINVAL;
3867 int i;
3868
3869 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3870 return -EINVAL;
3871
Daniel Vetter84849902012-12-02 00:28:11 +01003872 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003873
3874 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003875 if (!arg_obj) {
3876 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03003877 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003878 }
Paulo Zanonic5431882012-05-15 18:09:02 -03003879 if (!arg_obj->properties)
3880 goto out;
3881
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003882 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03003883 if (arg_obj->properties->ids[i] == arg->prop_id)
3884 break;
3885
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003886 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03003887 goto out;
3888
3889 prop_obj = drm_mode_object_find(dev, arg->prop_id,
3890 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003891 if (!prop_obj) {
3892 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03003893 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003894 }
Paulo Zanonic5431882012-05-15 18:09:02 -03003895 property = obj_to_property(prop_obj);
3896
3897 if (!drm_property_change_is_valid(property, arg->value))
3898 goto out;
3899
3900 switch (arg_obj->type) {
3901 case DRM_MODE_OBJECT_CONNECTOR:
3902 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
3903 arg->value);
3904 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003905 case DRM_MODE_OBJECT_CRTC:
3906 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
3907 break;
Rob Clark4d939142012-05-17 02:23:27 -06003908 case DRM_MODE_OBJECT_PLANE:
3909 ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
3910 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03003911 }
3912
3913out:
Daniel Vetter84849902012-12-02 00:28:11 +01003914 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003915 return ret;
3916}
3917
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003918/**
3919 * drm_mode_connector_attach_encoder - attach a connector to an encoder
3920 * @connector: connector to attach
3921 * @encoder: encoder to attach @connector to
3922 *
3923 * This function links up a connector to an encoder. Note that the routing
3924 * restrictions between encoders and crtcs are exposed to userspace through the
3925 * possible_clones and possible_crtcs bitmasks.
3926 *
3927 * Returns:
3928 * Zero on success, errno on failure.
3929 */
Dave Airlief453ba02008-11-07 14:05:41 -08003930int drm_mode_connector_attach_encoder(struct drm_connector *connector,
3931 struct drm_encoder *encoder)
3932{
3933 int i;
3934
3935 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3936 if (connector->encoder_ids[i] == 0) {
3937 connector->encoder_ids[i] = encoder->base.id;
3938 return 0;
3939 }
3940 }
3941 return -ENOMEM;
3942}
3943EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
3944
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003945/**
3946 * drm_mode_crtc_set_gamma_size - set the gamma table size
3947 * @crtc: CRTC to set the gamma table size for
3948 * @gamma_size: size of the gamma table
3949 *
3950 * Drivers which support gamma tables should set this to the supported gamma
3951 * table size when initializing the CRTC. Currently the drm core only supports a
3952 * fixed gamma table size.
3953 *
3954 * Returns:
3955 * Zero on success, errno on failure.
3956 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003957int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003958 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08003959{
3960 crtc->gamma_size = gamma_size;
3961
3962 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
3963 if (!crtc->gamma_store) {
3964 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003965 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08003966 }
3967
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003968 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003969}
3970EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
3971
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003972/**
3973 * drm_mode_gamma_set_ioctl - set the gamma table
3974 * @dev: DRM device
3975 * @data: ioctl data
3976 * @file_priv: DRM file info
3977 *
3978 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
3979 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
3980 *
3981 * Called by the user via ioctl.
3982 *
3983 * Returns:
3984 * Zero on success, errno on failure.
3985 */
Dave Airlief453ba02008-11-07 14:05:41 -08003986int drm_mode_gamma_set_ioctl(struct drm_device *dev,
3987 void *data, struct drm_file *file_priv)
3988{
3989 struct drm_mode_crtc_lut *crtc_lut = data;
3990 struct drm_mode_object *obj;
3991 struct drm_crtc *crtc;
3992 void *r_base, *g_base, *b_base;
3993 int size;
3994 int ret = 0;
3995
Dave Airliefb3b06c2011-02-08 13:55:21 +10003996 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3997 return -EINVAL;
3998
Daniel Vetter84849902012-12-02 00:28:11 +01003999 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004000 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
4001 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004002 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004003 goto out;
4004 }
4005 crtc = obj_to_crtc(obj);
4006
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004007 if (crtc->funcs->gamma_set == NULL) {
4008 ret = -ENOSYS;
4009 goto out;
4010 }
4011
Dave Airlief453ba02008-11-07 14:05:41 -08004012 /* memcpy into gamma store */
4013 if (crtc_lut->gamma_size != crtc->gamma_size) {
4014 ret = -EINVAL;
4015 goto out;
4016 }
4017
4018 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4019 r_base = crtc->gamma_store;
4020 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4021 ret = -EFAULT;
4022 goto out;
4023 }
4024
4025 g_base = r_base + size;
4026 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4027 ret = -EFAULT;
4028 goto out;
4029 }
4030
4031 b_base = g_base + size;
4032 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4033 ret = -EFAULT;
4034 goto out;
4035 }
4036
James Simmons72034252010-08-03 01:33:19 +01004037 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004038
4039out:
Daniel Vetter84849902012-12-02 00:28:11 +01004040 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004041 return ret;
4042
4043}
4044
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004045/**
4046 * drm_mode_gamma_get_ioctl - get the gamma table
4047 * @dev: DRM device
4048 * @data: ioctl data
4049 * @file_priv: DRM file info
4050 *
4051 * Copy the current gamma table into the storage provided. This also provides
4052 * the gamma table size the driver expects, which can be used to size the
4053 * allocated storage.
4054 *
4055 * Called by the user via ioctl.
4056 *
4057 * Returns:
4058 * Zero on success, errno on failure.
4059 */
Dave Airlief453ba02008-11-07 14:05:41 -08004060int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4061 void *data, struct drm_file *file_priv)
4062{
4063 struct drm_mode_crtc_lut *crtc_lut = data;
4064 struct drm_mode_object *obj;
4065 struct drm_crtc *crtc;
4066 void *r_base, *g_base, *b_base;
4067 int size;
4068 int ret = 0;
4069
Dave Airliefb3b06c2011-02-08 13:55:21 +10004070 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4071 return -EINVAL;
4072
Daniel Vetter84849902012-12-02 00:28:11 +01004073 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004074 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
4075 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004076 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004077 goto out;
4078 }
4079 crtc = obj_to_crtc(obj);
4080
4081 /* memcpy into gamma store */
4082 if (crtc_lut->gamma_size != crtc->gamma_size) {
4083 ret = -EINVAL;
4084 goto out;
4085 }
4086
4087 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4088 r_base = crtc->gamma_store;
4089 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4090 ret = -EFAULT;
4091 goto out;
4092 }
4093
4094 g_base = r_base + size;
4095 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4096 ret = -EFAULT;
4097 goto out;
4098 }
4099
4100 b_base = g_base + size;
4101 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4102 ret = -EFAULT;
4103 goto out;
4104 }
4105out:
Daniel Vetter84849902012-12-02 00:28:11 +01004106 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004107 return ret;
4108}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004109
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004110/**
4111 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4112 * @dev: DRM device
4113 * @data: ioctl data
4114 * @file_priv: DRM file info
4115 *
4116 * This schedules an asynchronous update on a given CRTC, called page flip.
4117 * Optionally a drm event is generated to signal the completion of the event.
4118 * Generic drivers cannot assume that a pageflip with changed framebuffer
4119 * properties (including driver specific metadata like tiling layout) will work,
4120 * but some drivers support e.g. pixel format changes through the pageflip
4121 * ioctl.
4122 *
4123 * Called by the user via ioctl.
4124 *
4125 * Returns:
4126 * Zero on success, errno on failure.
4127 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004128int drm_mode_page_flip_ioctl(struct drm_device *dev,
4129 void *data, struct drm_file *file_priv)
4130{
4131 struct drm_mode_crtc_page_flip *page_flip = data;
4132 struct drm_mode_object *obj;
4133 struct drm_crtc *crtc;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004134 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004135 struct drm_pending_vblank_event *e = NULL;
4136 unsigned long flags;
4137 int ret = -EINVAL;
4138
4139 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4140 page_flip->reserved != 0)
4141 return -EINVAL;
4142
Keith Packard62f21042013-07-22 18:50:00 -07004143 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4144 return -EINVAL;
4145
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004146 obj = drm_mode_object_find(dev, page_flip->crtc_id, DRM_MODE_OBJECT_CRTC);
4147 if (!obj)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004148 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004149 crtc = obj_to_crtc(obj);
4150
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004151 mutex_lock(&crtc->mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004152 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004153 /* The framebuffer is currently unbound, presumably
4154 * due to a hotplug event, that userspace has not
4155 * yet discovered.
4156 */
4157 ret = -EBUSY;
4158 goto out;
4159 }
4160
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004161 if (crtc->funcs->page_flip == NULL)
4162 goto out;
4163
Daniel Vetter786b99e2012-12-02 21:53:40 +01004164 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004165 if (!fb) {
4166 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004167 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004168 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004169
Damien Lespiauc11e9282013-09-25 16:45:30 +01004170 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4171 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004172 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004173
Matt Roperf4510a22014-04-01 15:22:40 -07004174 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004175 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4176 ret = -EINVAL;
4177 goto out;
4178 }
4179
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004180 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4181 ret = -ENOMEM;
4182 spin_lock_irqsave(&dev->event_lock, flags);
4183 if (file_priv->event_space < sizeof e->event) {
4184 spin_unlock_irqrestore(&dev->event_lock, flags);
4185 goto out;
4186 }
4187 file_priv->event_space -= sizeof e->event;
4188 spin_unlock_irqrestore(&dev->event_lock, flags);
4189
4190 e = kzalloc(sizeof *e, GFP_KERNEL);
4191 if (e == NULL) {
4192 spin_lock_irqsave(&dev->event_lock, flags);
4193 file_priv->event_space += sizeof e->event;
4194 spin_unlock_irqrestore(&dev->event_lock, flags);
4195 goto out;
4196 }
4197
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004198 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004199 e->event.base.length = sizeof e->event;
4200 e->event.user_data = page_flip->user_data;
4201 e->base.event = &e->event.base;
4202 e->base.file_priv = file_priv;
4203 e->base.destroy =
4204 (void (*) (struct drm_pending_event *)) kfree;
4205 }
4206
Matt Roperf4510a22014-04-01 15:22:40 -07004207 old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004208 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004209 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004210 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4211 spin_lock_irqsave(&dev->event_lock, flags);
4212 file_priv->event_space += sizeof e->event;
4213 spin_unlock_irqrestore(&dev->event_lock, flags);
4214 kfree(e);
4215 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004216 /* Keep the old fb, don't unref it. */
4217 old_fb = NULL;
4218 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004219 /*
4220 * Warn if the driver hasn't properly updated the crtc->fb
4221 * field to reflect that the new framebuffer is now used.
4222 * Failing to do so will screw with the reference counting
4223 * on framebuffers.
4224 */
Matt Roperf4510a22014-04-01 15:22:40 -07004225 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004226 /* Unref only the old framebuffer. */
4227 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004228 }
4229
4230out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004231 if (fb)
4232 drm_framebuffer_unreference(fb);
4233 if (old_fb)
4234 drm_framebuffer_unreference(old_fb);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004235 mutex_unlock(&crtc->mutex);
4236
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004237 return ret;
4238}
Chris Wilsoneb033552011-01-24 15:11:08 +00004239
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004240/**
4241 * drm_mode_config_reset - call ->reset callbacks
4242 * @dev: drm device
4243 *
4244 * This functions calls all the crtc's, encoder's and connector's ->reset
4245 * callback. Drivers can use this in e.g. their driver load or resume code to
4246 * reset hardware and software state.
4247 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004248void drm_mode_config_reset(struct drm_device *dev)
4249{
4250 struct drm_crtc *crtc;
4251 struct drm_encoder *encoder;
4252 struct drm_connector *connector;
4253
4254 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4255 if (crtc->funcs->reset)
4256 crtc->funcs->reset(crtc);
4257
4258 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4259 if (encoder->funcs->reset)
4260 encoder->funcs->reset(encoder);
4261
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004262 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4263 connector->status = connector_status_unknown;
4264
Chris Wilsoneb033552011-01-24 15:11:08 +00004265 if (connector->funcs->reset)
4266 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004267 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004268}
4269EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004270
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004271/**
4272 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4273 * @dev: DRM device
4274 * @data: ioctl data
4275 * @file_priv: DRM file info
4276 *
4277 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4278 * TTM or something else entirely) and returns the resulting buffer handle. This
4279 * handle can then be wrapped up into a framebuffer modeset object.
4280 *
4281 * Note that userspace is not allowed to use such objects for render
4282 * acceleration - drivers must create their own private ioctls for such a use
4283 * case.
4284 *
4285 * Called by the user via ioctl.
4286 *
4287 * Returns:
4288 * Zero on success, errno on failure.
4289 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004290int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4291 void *data, struct drm_file *file_priv)
4292{
4293 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004294 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004295
4296 if (!dev->driver->dumb_create)
4297 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004298 if (!args->width || !args->height || !args->bpp)
4299 return -EINVAL;
4300
4301 /* overflow checks for 32bit size calculations */
4302 cpp = DIV_ROUND_UP(args->bpp, 8);
4303 if (cpp > 0xffffffffU / args->width)
4304 return -EINVAL;
4305 stride = cpp * args->width;
4306 if (args->height > 0xffffffffU / stride)
4307 return -EINVAL;
4308
4309 /* test for wrap-around */
4310 size = args->height * stride;
4311 if (PAGE_ALIGN(size) == 0)
4312 return -EINVAL;
4313
Dave Airlieff72145b2011-02-07 12:16:14 +10004314 return dev->driver->dumb_create(file_priv, dev, args);
4315}
4316
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004317/**
4318 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4319 * @dev: DRM device
4320 * @data: ioctl data
4321 * @file_priv: DRM file info
4322 *
4323 * Allocate an offset in the drm device node's address space to be able to
4324 * memory map a dumb buffer.
4325 *
4326 * Called by the user via ioctl.
4327 *
4328 * Returns:
4329 * Zero on success, errno on failure.
4330 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004331int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4332 void *data, struct drm_file *file_priv)
4333{
4334 struct drm_mode_map_dumb *args = data;
4335
4336 /* call driver ioctl to get mmap offset */
4337 if (!dev->driver->dumb_map_offset)
4338 return -ENOSYS;
4339
4340 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4341}
4342
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004343/**
4344 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4345 * @dev: DRM device
4346 * @data: ioctl data
4347 * @file_priv: DRM file info
4348 *
4349 * This destroys the userspace handle for the given dumb backing storage buffer.
4350 * Since buffer objects must be reference counted in the kernel a buffer object
4351 * won't be immediately freed if a framebuffer modeset object still uses it.
4352 *
4353 * Called by the user via ioctl.
4354 *
4355 * Returns:
4356 * Zero on success, errno on failure.
4357 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004358int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4359 void *data, struct drm_file *file_priv)
4360{
4361 struct drm_mode_destroy_dumb *args = data;
4362
4363 if (!dev->driver->dumb_destroy)
4364 return -ENOSYS;
4365
4366 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4367}
Dave Airlie248dbc22011-11-29 20:02:54 +00004368
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004369/**
4370 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4371 * @format: pixel format (DRM_FORMAT_*)
4372 * @depth: storage for the depth value
4373 * @bpp: storage for the bpp value
4374 *
4375 * This only supports RGB formats here for compat with code that doesn't use
4376 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00004377 */
4378void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4379 int *bpp)
4380{
4381 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02004382 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02004383 case DRM_FORMAT_RGB332:
4384 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00004385 *depth = 8;
4386 *bpp = 8;
4387 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004388 case DRM_FORMAT_XRGB1555:
4389 case DRM_FORMAT_XBGR1555:
4390 case DRM_FORMAT_RGBX5551:
4391 case DRM_FORMAT_BGRX5551:
4392 case DRM_FORMAT_ARGB1555:
4393 case DRM_FORMAT_ABGR1555:
4394 case DRM_FORMAT_RGBA5551:
4395 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00004396 *depth = 15;
4397 *bpp = 16;
4398 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004399 case DRM_FORMAT_RGB565:
4400 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00004401 *depth = 16;
4402 *bpp = 16;
4403 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004404 case DRM_FORMAT_RGB888:
4405 case DRM_FORMAT_BGR888:
4406 *depth = 24;
4407 *bpp = 24;
4408 break;
4409 case DRM_FORMAT_XRGB8888:
4410 case DRM_FORMAT_XBGR8888:
4411 case DRM_FORMAT_RGBX8888:
4412 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004413 *depth = 24;
4414 *bpp = 32;
4415 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004416 case DRM_FORMAT_XRGB2101010:
4417 case DRM_FORMAT_XBGR2101010:
4418 case DRM_FORMAT_RGBX1010102:
4419 case DRM_FORMAT_BGRX1010102:
4420 case DRM_FORMAT_ARGB2101010:
4421 case DRM_FORMAT_ABGR2101010:
4422 case DRM_FORMAT_RGBA1010102:
4423 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00004424 *depth = 30;
4425 *bpp = 32;
4426 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004427 case DRM_FORMAT_ARGB8888:
4428 case DRM_FORMAT_ABGR8888:
4429 case DRM_FORMAT_RGBA8888:
4430 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004431 *depth = 32;
4432 *bpp = 32;
4433 break;
4434 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03004435 DRM_DEBUG_KMS("unsupported pixel format %s\n",
4436 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00004437 *depth = 0;
4438 *bpp = 0;
4439 break;
4440 }
4441}
4442EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03004443
4444/**
4445 * drm_format_num_planes - get the number of planes for format
4446 * @format: pixel format (DRM_FORMAT_*)
4447 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004448 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03004449 * The number of planes used by the specified pixel format.
4450 */
4451int drm_format_num_planes(uint32_t format)
4452{
4453 switch (format) {
4454 case DRM_FORMAT_YUV410:
4455 case DRM_FORMAT_YVU410:
4456 case DRM_FORMAT_YUV411:
4457 case DRM_FORMAT_YVU411:
4458 case DRM_FORMAT_YUV420:
4459 case DRM_FORMAT_YVU420:
4460 case DRM_FORMAT_YUV422:
4461 case DRM_FORMAT_YVU422:
4462 case DRM_FORMAT_YUV444:
4463 case DRM_FORMAT_YVU444:
4464 return 3;
4465 case DRM_FORMAT_NV12:
4466 case DRM_FORMAT_NV21:
4467 case DRM_FORMAT_NV16:
4468 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02004469 case DRM_FORMAT_NV24:
4470 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03004471 return 2;
4472 default:
4473 return 1;
4474 }
4475}
4476EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004477
4478/**
4479 * drm_format_plane_cpp - determine the bytes per pixel value
4480 * @format: pixel format (DRM_FORMAT_*)
4481 * @plane: plane index
4482 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004483 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004484 * The bytes per pixel value for the specified plane.
4485 */
4486int drm_format_plane_cpp(uint32_t format, int plane)
4487{
4488 unsigned int depth;
4489 int bpp;
4490
4491 if (plane >= drm_format_num_planes(format))
4492 return 0;
4493
4494 switch (format) {
4495 case DRM_FORMAT_YUYV:
4496 case DRM_FORMAT_YVYU:
4497 case DRM_FORMAT_UYVY:
4498 case DRM_FORMAT_VYUY:
4499 return 2;
4500 case DRM_FORMAT_NV12:
4501 case DRM_FORMAT_NV21:
4502 case DRM_FORMAT_NV16:
4503 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02004504 case DRM_FORMAT_NV24:
4505 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004506 return plane ? 2 : 1;
4507 case DRM_FORMAT_YUV410:
4508 case DRM_FORMAT_YVU410:
4509 case DRM_FORMAT_YUV411:
4510 case DRM_FORMAT_YVU411:
4511 case DRM_FORMAT_YUV420:
4512 case DRM_FORMAT_YVU420:
4513 case DRM_FORMAT_YUV422:
4514 case DRM_FORMAT_YVU422:
4515 case DRM_FORMAT_YUV444:
4516 case DRM_FORMAT_YVU444:
4517 return 1;
4518 default:
4519 drm_fb_get_bpp_depth(format, &depth, &bpp);
4520 return bpp >> 3;
4521 }
4522}
4523EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004524
4525/**
4526 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
4527 * @format: pixel format (DRM_FORMAT_*)
4528 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004529 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004530 * The horizontal chroma subsampling factor for the
4531 * specified pixel format.
4532 */
4533int drm_format_horz_chroma_subsampling(uint32_t format)
4534{
4535 switch (format) {
4536 case DRM_FORMAT_YUV411:
4537 case DRM_FORMAT_YVU411:
4538 case DRM_FORMAT_YUV410:
4539 case DRM_FORMAT_YVU410:
4540 return 4;
4541 case DRM_FORMAT_YUYV:
4542 case DRM_FORMAT_YVYU:
4543 case DRM_FORMAT_UYVY:
4544 case DRM_FORMAT_VYUY:
4545 case DRM_FORMAT_NV12:
4546 case DRM_FORMAT_NV21:
4547 case DRM_FORMAT_NV16:
4548 case DRM_FORMAT_NV61:
4549 case DRM_FORMAT_YUV422:
4550 case DRM_FORMAT_YVU422:
4551 case DRM_FORMAT_YUV420:
4552 case DRM_FORMAT_YVU420:
4553 return 2;
4554 default:
4555 return 1;
4556 }
4557}
4558EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
4559
4560/**
4561 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
4562 * @format: pixel format (DRM_FORMAT_*)
4563 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004564 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004565 * The vertical chroma subsampling factor for the
4566 * specified pixel format.
4567 */
4568int drm_format_vert_chroma_subsampling(uint32_t format)
4569{
4570 switch (format) {
4571 case DRM_FORMAT_YUV410:
4572 case DRM_FORMAT_YVU410:
4573 return 4;
4574 case DRM_FORMAT_YUV420:
4575 case DRM_FORMAT_YVU420:
4576 case DRM_FORMAT_NV12:
4577 case DRM_FORMAT_NV21:
4578 return 2;
4579 default:
4580 return 1;
4581 }
4582}
4583EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004584
4585/**
4586 * drm_mode_config_init - initialize DRM mode_configuration structure
4587 * @dev: DRM device
4588 *
4589 * Initialize @dev's mode_config structure, used for tracking the graphics
4590 * configuration of @dev.
4591 *
4592 * Since this initializes the modeset locks, no locking is possible. Which is no
4593 * problem, since this should happen single threaded at init time. It is the
4594 * driver's problem to ensure this guarantee.
4595 *
4596 */
4597void drm_mode_config_init(struct drm_device *dev)
4598{
4599 mutex_init(&dev->mode_config.mutex);
4600 mutex_init(&dev->mode_config.idr_mutex);
4601 mutex_init(&dev->mode_config.fb_lock);
4602 INIT_LIST_HEAD(&dev->mode_config.fb_list);
4603 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
4604 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04004605 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004606 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
4607 INIT_LIST_HEAD(&dev->mode_config.property_list);
4608 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
4609 INIT_LIST_HEAD(&dev->mode_config.plane_list);
4610 idr_init(&dev->mode_config.crtc_idr);
4611
4612 drm_modeset_lock_all(dev);
4613 drm_mode_create_standard_connector_properties(dev);
Rob Clark9922ab52014-04-01 20:16:57 -04004614 drm_mode_create_standard_plane_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004615 drm_modeset_unlock_all(dev);
4616
4617 /* Just to be sure */
4618 dev->mode_config.num_fb = 0;
4619 dev->mode_config.num_connector = 0;
4620 dev->mode_config.num_crtc = 0;
4621 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07004622 dev->mode_config.num_overlay_plane = 0;
4623 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004624}
4625EXPORT_SYMBOL(drm_mode_config_init);
4626
4627/**
4628 * drm_mode_config_cleanup - free up DRM mode_config info
4629 * @dev: DRM device
4630 *
4631 * Free up all the connectors and CRTCs associated with this DRM device, then
4632 * free up the framebuffers and associated buffer objects.
4633 *
4634 * Note that since this /should/ happen single-threaded at driver/device
4635 * teardown time, no locking is required. It's the driver's job to ensure that
4636 * this guarantee actually holds true.
4637 *
4638 * FIXME: cleanup any dangling user buffer objects too
4639 */
4640void drm_mode_config_cleanup(struct drm_device *dev)
4641{
4642 struct drm_connector *connector, *ot;
4643 struct drm_crtc *crtc, *ct;
4644 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04004645 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004646 struct drm_framebuffer *fb, *fbt;
4647 struct drm_property *property, *pt;
4648 struct drm_property_blob *blob, *bt;
4649 struct drm_plane *plane, *plt;
4650
4651 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
4652 head) {
4653 encoder->funcs->destroy(encoder);
4654 }
4655
Sean Paul3b336ec2013-08-14 16:47:37 -04004656 list_for_each_entry_safe(bridge, brt,
4657 &dev->mode_config.bridge_list, head) {
4658 bridge->funcs->destroy(bridge);
4659 }
4660
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004661 list_for_each_entry_safe(connector, ot,
4662 &dev->mode_config.connector_list, head) {
4663 connector->funcs->destroy(connector);
4664 }
4665
4666 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
4667 head) {
4668 drm_property_destroy(dev, property);
4669 }
4670
4671 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
4672 head) {
4673 drm_property_destroy_blob(dev, blob);
4674 }
4675
4676 /*
4677 * Single-threaded teardown context, so it's not required to grab the
4678 * fb_lock to protect against concurrent fb_list access. Contrary, it
4679 * would actually deadlock with the drm_framebuffer_cleanup function.
4680 *
4681 * Also, if there are any framebuffers left, that's a driver leak now,
4682 * so politely WARN about this.
4683 */
4684 WARN_ON(!list_empty(&dev->mode_config.fb_list));
4685 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
4686 drm_framebuffer_remove(fb);
4687 }
4688
4689 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
4690 head) {
4691 plane->funcs->destroy(plane);
4692 }
4693
4694 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
4695 crtc->funcs->destroy(crtc);
4696 }
4697
4698 idr_destroy(&dev->mode_config.crtc_idr);
4699}
4700EXPORT_SYMBOL(drm_mode_config_cleanup);