blob: a7dc1e266c989de11bdc6ca06fa7f5ff20b04293 [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 Vetter84849902012-12-02 00:28:11 +010041/**
42 * drm_modeset_lock_all - take all modeset locks
43 * @dev: drm device
44 *
45 * This function takes all modeset locks, suitable where a more fine-grained
46 * scheme isn't (yet) implemented.
47 */
48void drm_modeset_lock_all(struct drm_device *dev)
49{
Daniel Vetter29494c12012-12-02 02:18:25 +010050 struct drm_crtc *crtc;
51
Daniel Vetter84849902012-12-02 00:28:11 +010052 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter29494c12012-12-02 02:18:25 +010053
54 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
55 mutex_lock_nest_lock(&crtc->mutex, &dev->mode_config.mutex);
Daniel Vetter84849902012-12-02 00:28:11 +010056}
57EXPORT_SYMBOL(drm_modeset_lock_all);
58
59/**
60 * drm_modeset_unlock_all - drop all modeset locks
61 * @dev: device
62 */
63void drm_modeset_unlock_all(struct drm_device *dev)
64{
Daniel Vetter29494c12012-12-02 02:18:25 +010065 struct drm_crtc *crtc;
66
67 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
68 mutex_unlock(&crtc->mutex);
69
Daniel Vetter84849902012-12-02 00:28:11 +010070 mutex_unlock(&dev->mode_config.mutex);
71}
72EXPORT_SYMBOL(drm_modeset_unlock_all);
73
Daniel Vetter6aed8ec2013-01-20 17:32:21 +010074/**
75 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
76 * @dev: device
77 */
78void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
79{
80 struct drm_crtc *crtc;
81
Daniel Vettera9b054e2013-05-02 09:43:05 +020082 /* Locking is currently fubar in the panic handler. */
83 if (oops_in_progress)
84 return;
85
Daniel Vetter6aed8ec2013-01-20 17:32:21 +010086 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
87 WARN_ON(!mutex_is_locked(&crtc->mutex));
88
89 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
90}
91EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
92
Dave Airlief453ba02008-11-07 14:05:41 -080093/* Avoid boilerplate. I'm tired of typing. */
94#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +000095 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -080096 { \
97 int i; \
98 for (i = 0; i < ARRAY_SIZE(list); i++) { \
99 if (list[i].type == val) \
100 return list[i].name; \
101 } \
102 return "(unknown)"; \
103 }
104
105/*
106 * Global properties
107 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000108static const struct drm_prop_enum_list drm_dpms_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800109{ { DRM_MODE_DPMS_ON, "On" },
110 { DRM_MODE_DPMS_STANDBY, "Standby" },
111 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
112 { DRM_MODE_DPMS_OFF, "Off" }
113};
114
115DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
116
117/*
118 * Optional properties
119 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000120static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800121{
Jesse Barnes53bd8382009-07-01 10:04:40 -0700122 { DRM_MODE_SCALE_NONE, "None" },
123 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
124 { DRM_MODE_SCALE_CENTER, "Center" },
125 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -0800126};
127
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000128static const struct drm_prop_enum_list drm_dithering_mode_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800129{
130 { DRM_MODE_DITHERING_OFF, "Off" },
131 { DRM_MODE_DITHERING_ON, "On" },
Ben Skeggs92897b52010-07-16 15:09:17 +1000132 { DRM_MODE_DITHERING_AUTO, "Automatic" },
Dave Airlief453ba02008-11-07 14:05:41 -0800133};
134
135/*
136 * Non-global properties, but "required" for certain connectors.
137 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000138static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800139{
140 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
141 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
142 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
143};
144
145DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
146
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000147static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800148{
149 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
150 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
151 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
152};
153
154DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
155 drm_dvi_i_subconnector_enum_list)
156
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000157static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800158{
159 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
160 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
161 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
162 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200163 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800164};
165
166DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
167
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000168static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800169{
170 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
171 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
172 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
173 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200174 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800175};
176
177DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
178 drm_tv_subconnector_enum_list)
179
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000180static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000181 { DRM_MODE_DIRTY_OFF, "Off" },
182 { DRM_MODE_DIRTY_ON, "On" },
183 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
184};
185
Dave Airlief453ba02008-11-07 14:05:41 -0800186struct drm_conn_prop_enum_list {
187 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000188 const char *name;
Dave Airlief453ba02008-11-07 14:05:41 -0800189 int count;
190};
191
192/*
193 * Connector and encoder types.
194 */
195static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
196{ { DRM_MODE_CONNECTOR_Unknown, "Unknown", 0 },
197 { DRM_MODE_CONNECTOR_VGA, "VGA", 0 },
198 { DRM_MODE_CONNECTOR_DVII, "DVI-I", 0 },
199 { DRM_MODE_CONNECTOR_DVID, "DVI-D", 0 },
200 { DRM_MODE_CONNECTOR_DVIA, "DVI-A", 0 },
201 { DRM_MODE_CONNECTOR_Composite, "Composite", 0 },
202 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO", 0 },
203 { DRM_MODE_CONNECTOR_LVDS, "LVDS", 0 },
204 { DRM_MODE_CONNECTOR_Component, "Component", 0 },
Alex Deuchere76116c2010-12-08 19:09:42 -0500205 { DRM_MODE_CONNECTOR_9PinDIN, "DIN", 0 },
206 { DRM_MODE_CONNECTOR_DisplayPort, "DP", 0 },
207 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A", 0 },
208 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B", 0 },
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200209 { DRM_MODE_CONNECTOR_TV, "TV", 0 },
Alex Deuchere76116c2010-12-08 19:09:42 -0500210 { DRM_MODE_CONNECTOR_eDP, "eDP", 0 },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200211 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual", 0},
Dave Airlief453ba02008-11-07 14:05:41 -0800212};
213
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000214static const struct drm_prop_enum_list drm_encoder_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800215{ { DRM_MODE_ENCODER_NONE, "None" },
216 { DRM_MODE_ENCODER_DAC, "DAC" },
217 { DRM_MODE_ENCODER_TMDS, "TMDS" },
218 { DRM_MODE_ENCODER_LVDS, "LVDS" },
219 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200220 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Dave Airlief453ba02008-11-07 14:05:41 -0800221};
222
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000223const char *drm_get_encoder_name(const struct drm_encoder *encoder)
Dave Airlief453ba02008-11-07 14:05:41 -0800224{
225 static char buf[32];
226
227 snprintf(buf, 32, "%s-%d",
228 drm_encoder_enum_list[encoder->encoder_type].name,
229 encoder->base.id);
230 return buf;
231}
Dave Airlie13a81952009-09-07 15:45:33 +1000232EXPORT_SYMBOL(drm_get_encoder_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800233
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000234const char *drm_get_connector_name(const struct drm_connector *connector)
Dave Airlief453ba02008-11-07 14:05:41 -0800235{
236 static char buf[32];
237
238 snprintf(buf, 32, "%s-%d",
239 drm_connector_enum_list[connector->connector_type].name,
240 connector->connector_type_id);
241 return buf;
242}
243EXPORT_SYMBOL(drm_get_connector_name);
244
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000245const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800246{
247 if (status == connector_status_connected)
248 return "connected";
249 else if (status == connector_status_disconnected)
250 return "disconnected";
251 else
252 return "unknown";
253}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000254EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800255
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300256static char printable_char(int c)
257{
258 return isascii(c) && isprint(c) ? c : '?';
259}
260
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000261const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300262{
263 static char buf[32];
264
265 snprintf(buf, sizeof(buf),
266 "%c%c%c%c %s-endian (0x%08x)",
267 printable_char(format & 0xff),
268 printable_char((format >> 8) & 0xff),
269 printable_char((format >> 16) & 0xff),
270 printable_char((format >> 24) & 0x7f),
271 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
272 format);
273
274 return buf;
275}
276EXPORT_SYMBOL(drm_get_format_name);
277
Dave Airlief453ba02008-11-07 14:05:41 -0800278/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100279 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800280 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100281 * @obj: object pointer, used to generate unique ID
282 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800283 *
Dave Airlief453ba02008-11-07 14:05:41 -0800284 * Create a unique identifier based on @ptr in @dev's identifier space. Used
285 * for tracking modes, CRTCs and connectors.
286 *
287 * RETURNS:
288 * New unique (relative to other objects in @dev) integer identifier for the
289 * object.
290 */
291static int drm_mode_object_get(struct drm_device *dev,
292 struct drm_mode_object *obj, uint32_t obj_type)
293{
Dave Airlief453ba02008-11-07 14:05:41 -0800294 int ret;
295
Jesse Barnesad2563c2009-01-19 17:21:45 +1000296 mutex_lock(&dev->mode_config.idr_mutex);
Tejun Heo2e928812013-02-27 17:04:08 -0800297 ret = idr_alloc(&dev->mode_config.crtc_idr, obj, 1, 0, GFP_KERNEL);
298 if (ret >= 0) {
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100299 /*
300 * Set up the object linking under the protection of the idr
301 * lock so that other users can't see inconsistent state.
302 */
Tejun Heo2e928812013-02-27 17:04:08 -0800303 obj->id = ret;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100304 obj->type = obj_type;
305 }
Jesse Barnesad2563c2009-01-19 17:21:45 +1000306 mutex_unlock(&dev->mode_config.idr_mutex);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100307
Tejun Heo2e928812013-02-27 17:04:08 -0800308 return ret < 0 ? ret : 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800309}
310
311/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100312 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800313 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100314 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800315 *
Dave Airlief453ba02008-11-07 14:05:41 -0800316 * Free @id from @dev's unique identifier pool.
317 */
318static void drm_mode_object_put(struct drm_device *dev,
319 struct drm_mode_object *object)
320{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000321 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800322 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000323 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800324}
325
Daniel Vetter786b99e2012-12-02 21:53:40 +0100326/**
327 * drm_mode_object_find - look up a drm object with static lifetime
328 * @dev: drm device
329 * @id: id of the mode object
330 * @type: type of the mode object
331 *
332 * Note that framebuffers cannot be looked up with this functions - since those
333 * are reference counted, they need special treatment.
334 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200335struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
336 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800337{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000338 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800339
Daniel Vetter786b99e2012-12-02 21:53:40 +0100340 /* Framebuffers are reference counted and need their own lookup
341 * function.*/
342 WARN_ON(type == DRM_MODE_OBJECT_FB);
343
Jesse Barnesad2563c2009-01-19 17:21:45 +1000344 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800345 obj = idr_find(&dev->mode_config.crtc_idr, id);
346 if (!obj || (obj->type != type) || (obj->id != id))
Jesse Barnesad2563c2009-01-19 17:21:45 +1000347 obj = NULL;
348 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800349
350 return obj;
351}
352EXPORT_SYMBOL(drm_mode_object_find);
353
354/**
Dave Airlief453ba02008-11-07 14:05:41 -0800355 * drm_framebuffer_init - initialize a framebuffer
356 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100357 * @fb: framebuffer to be initialized
358 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800359 *
Dave Airlief453ba02008-11-07 14:05:41 -0800360 * Allocates an ID for the framebuffer's parent mode object, sets its mode
361 * functions & device file and adds it to the master fd list.
362 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100363 * IMPORTANT:
364 * This functions publishes the fb and makes it available for concurrent access
365 * by other users. Which means by this point the fb _must_ be fully set up -
366 * since all the fb attributes are invariant over its lifetime, no further
367 * locking but only correct reference counting is required.
368 *
Dave Airlief453ba02008-11-07 14:05:41 -0800369 * RETURNS:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200370 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800371 */
372int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
373 const struct drm_framebuffer_funcs *funcs)
374{
375 int ret;
376
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100377 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000378 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100379 INIT_LIST_HEAD(&fb->filp_head);
380 fb->dev = dev;
381 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000382
Dave Airlief453ba02008-11-07 14:05:41 -0800383 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200384 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100385 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800386
Daniel Vetter2b677e82012-12-10 21:16:05 +0100387 /* Grab the idr reference. */
388 drm_framebuffer_reference(fb);
389
Dave Airlief453ba02008-11-07 14:05:41 -0800390 dev->mode_config.num_fb++;
391 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100392out:
393 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800394
395 return 0;
396}
397EXPORT_SYMBOL(drm_framebuffer_init);
398
Rob Clarkf7eff602012-09-05 21:48:38 +0000399static void drm_framebuffer_free(struct kref *kref)
400{
401 struct drm_framebuffer *fb =
402 container_of(kref, struct drm_framebuffer, refcount);
403 fb->funcs->destroy(fb);
404}
405
Daniel Vetter2b677e82012-12-10 21:16:05 +0100406static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
407 uint32_t id)
408{
409 struct drm_mode_object *obj = NULL;
410 struct drm_framebuffer *fb;
411
412 mutex_lock(&dev->mode_config.idr_mutex);
413 obj = idr_find(&dev->mode_config.crtc_idr, id);
414 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
415 fb = NULL;
416 else
417 fb = obj_to_fb(obj);
418 mutex_unlock(&dev->mode_config.idr_mutex);
419
420 return fb;
421}
422
Rob Clarkf7eff602012-09-05 21:48:38 +0000423/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100424 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
425 * @dev: drm device
426 * @id: id of the fb object
427 *
428 * If successful, this grabs an additional reference to the framebuffer -
429 * callers need to make sure to eventually unreference the returned framebuffer
430 * again.
431 */
432struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
433 uint32_t id)
434{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100435 struct drm_framebuffer *fb;
436
437 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100438 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter786b99e2012-12-02 21:53:40 +0100439 if (fb)
archit taneja9131d3d2013-04-10 08:59:39 +0000440 drm_framebuffer_reference(fb);
Daniel Vetter786b99e2012-12-02 21:53:40 +0100441 mutex_unlock(&dev->mode_config.fb_lock);
442
443 return fb;
444}
445EXPORT_SYMBOL(drm_framebuffer_lookup);
446
447/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000448 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100449 * @fb: framebuffer to unref
450 *
451 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000452 */
453void drm_framebuffer_unreference(struct drm_framebuffer *fb)
454{
Rob Clarkf7eff602012-09-05 21:48:38 +0000455 DRM_DEBUG("FB ID: %d\n", fb->base.id);
Rob Clarkf7eff602012-09-05 21:48:38 +0000456 kref_put(&fb->refcount, drm_framebuffer_free);
457}
458EXPORT_SYMBOL(drm_framebuffer_unreference);
459
460/**
461 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100462 * @fb: framebuffer
Rob Clarkf7eff602012-09-05 21:48:38 +0000463 */
464void drm_framebuffer_reference(struct drm_framebuffer *fb)
465{
466 DRM_DEBUG("FB ID: %d\n", fb->base.id);
467 kref_get(&fb->refcount);
468}
469EXPORT_SYMBOL(drm_framebuffer_reference);
470
Daniel Vetter2b677e82012-12-10 21:16:05 +0100471static void drm_framebuffer_free_bug(struct kref *kref)
472{
473 BUG();
474}
475
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100476static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
477{
478 DRM_DEBUG("FB ID: %d\n", fb->base.id);
479 kref_put(&fb->refcount, drm_framebuffer_free_bug);
480}
481
Daniel Vetter2b677e82012-12-10 21:16:05 +0100482/* dev->mode_config.fb_lock must be held! */
483static void __drm_framebuffer_unregister(struct drm_device *dev,
484 struct drm_framebuffer *fb)
485{
486 mutex_lock(&dev->mode_config.idr_mutex);
487 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
488 mutex_unlock(&dev->mode_config.idr_mutex);
489
490 fb->base.id = 0;
491
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100492 __drm_framebuffer_unreference(fb);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100493}
494
Dave Airlief453ba02008-11-07 14:05:41 -0800495/**
Daniel Vetter36206362012-12-10 20:42:17 +0100496 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
497 * @fb: fb to unregister
498 *
499 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
500 * those used for fbdev. Note that the caller must hold a reference of it's own,
501 * i.e. the object may not be destroyed through this call (since it'll lead to a
502 * locking inversion).
503 */
504void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
505{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100506 struct drm_device *dev = fb->dev;
507
508 mutex_lock(&dev->mode_config.fb_lock);
509 /* Mark fb as reaped and drop idr ref. */
510 __drm_framebuffer_unregister(dev, fb);
511 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100512}
513EXPORT_SYMBOL(drm_framebuffer_unregister_private);
514
515/**
Dave Airlief453ba02008-11-07 14:05:41 -0800516 * drm_framebuffer_cleanup - remove a framebuffer object
517 * @fb: framebuffer to remove
518 *
Daniel Vetter36206362012-12-10 20:42:17 +0100519 * Cleanup references to a user-created framebuffer. This function is intended
520 * to be used from the drivers ->destroy callback.
521 *
522 * Note that this function does not remove the fb from active usuage - if it is
523 * still used anywhere, hilarity can ensue since userspace could call getfb on
524 * the id and get back -EINVAL. Obviously no concern at driver unload time.
525 *
526 * Also, the framebuffer will not be removed from the lookup idr - for
527 * user-created framebuffers this will happen in in the rmfb ioctl. For
528 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
529 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800530 */
531void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
532{
533 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100534
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100535 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000536 list_del(&fb->head);
537 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100538 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000539}
540EXPORT_SYMBOL(drm_framebuffer_cleanup);
541
542/**
543 * drm_framebuffer_remove - remove and unreference a framebuffer object
544 * @fb: framebuffer to remove
545 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000546 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100547 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100548 * passed-in framebuffer. Might take the modeset locks.
549 *
550 * Note that this function optimizes the cleanup away if the caller holds the
551 * last reference to the framebuffer. It is also guaranteed to not take the
552 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000553 */
554void drm_framebuffer_remove(struct drm_framebuffer *fb)
555{
556 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800557 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800558 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000559 struct drm_mode_set set;
560 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800561
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100562 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100563
Daniel Vetterb62584e2012-12-11 16:51:35 +0100564 /*
565 * drm ABI mandates that we remove any deleted framebuffers from active
566 * useage. But since most sane clients only remove framebuffers they no
567 * longer need, try to optimize this away.
568 *
569 * Since we're holding a reference ourselves, observing a refcount of 1
570 * means that we're the last holder and can skip it. Also, the refcount
571 * can never increase from 1 again, so we don't need any barriers or
572 * locks.
573 *
574 * Note that userspace could try to race with use and instate a new
575 * usage _after_ we've cleared all current ones. End result will be an
576 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
577 * in this manner.
578 */
579 if (atomic_read(&fb->refcount.refcount) > 1) {
580 drm_modeset_lock_all(dev);
581 /* remove from any CRTC */
582 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
583 if (crtc->fb == fb) {
584 /* should turn off the crtc */
585 memset(&set, 0, sizeof(struct drm_mode_set));
586 set.crtc = crtc;
587 set.fb = NULL;
588 ret = drm_mode_set_config_internal(&set);
589 if (ret)
590 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
591 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000592 }
Dave Airlief453ba02008-11-07 14:05:41 -0800593
Daniel Vetterb62584e2012-12-11 16:51:35 +0100594 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300595 if (plane->fb == fb)
596 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800597 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100598 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800599 }
600
Rob Clarkf7eff602012-09-05 21:48:38 +0000601 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800602}
Rob Clarkf7eff602012-09-05 21:48:38 +0000603EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800604
605/**
606 * drm_crtc_init - Initialise a new CRTC object
607 * @dev: DRM device
608 * @crtc: CRTC object to init
609 * @funcs: callbacks for the new CRTC
610 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000611 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200612 *
613 * RETURNS:
614 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800615 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200616int drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -0800617 const struct drm_crtc_funcs *funcs)
618{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200619 int ret;
620
Dave Airlief453ba02008-11-07 14:05:41 -0800621 crtc->dev = dev;
622 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000623 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800624
Daniel Vetter84849902012-12-02 00:28:11 +0100625 drm_modeset_lock_all(dev);
Daniel Vetter29494c12012-12-02 02:18:25 +0100626 mutex_init(&crtc->mutex);
627 mutex_lock_nest_lock(&crtc->mutex, &dev->mode_config.mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200628
629 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
630 if (ret)
631 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800632
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300633 crtc->base.properties = &crtc->properties;
634
Dave Airlief453ba02008-11-07 14:05:41 -0800635 list_add_tail(&crtc->head, &dev->mode_config.crtc_list);
636 dev->mode_config.num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200637
638 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100639 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200640
641 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800642}
643EXPORT_SYMBOL(drm_crtc_init);
644
645/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000646 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800647 * @crtc: CRTC to cleanup
648 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000649 * This function cleans up @crtc and removes it from the DRM mode setting
650 * core. Note that the function does *not* free the crtc structure itself,
651 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800652 */
653void drm_crtc_cleanup(struct drm_crtc *crtc)
654{
655 struct drm_device *dev = crtc->dev;
656
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000657 kfree(crtc->gamma_store);
658 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800659
660 drm_mode_object_put(dev, &crtc->base);
661 list_del(&crtc->head);
662 dev->mode_config.num_crtc--;
663}
664EXPORT_SYMBOL(drm_crtc_cleanup);
665
666/**
667 * drm_mode_probed_add - add a mode to a connector's probed mode list
668 * @connector: connector the new mode
669 * @mode: mode data
670 *
Dave Airlief453ba02008-11-07 14:05:41 -0800671 * Add @mode to @connector's mode list for later use.
672 */
673void drm_mode_probed_add(struct drm_connector *connector,
674 struct drm_display_mode *mode)
675{
Ville Syrjälä990256a2013-05-31 12:17:07 +0000676 list_add_tail(&mode->head, &connector->probed_modes);
Dave Airlief453ba02008-11-07 14:05:41 -0800677}
678EXPORT_SYMBOL(drm_mode_probed_add);
679
680/**
681 * drm_mode_remove - remove and free a mode
682 * @connector: connector list to modify
683 * @mode: mode to remove
684 *
Dave Airlief453ba02008-11-07 14:05:41 -0800685 * Remove @mode from @connector's mode list, then free it.
686 */
687void drm_mode_remove(struct drm_connector *connector,
688 struct drm_display_mode *mode)
689{
690 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100691 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800692}
693EXPORT_SYMBOL(drm_mode_remove);
694
695/**
696 * drm_connector_init - Init a preallocated connector
697 * @dev: DRM device
698 * @connector: the connector to init
699 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100700 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800701 *
Dave Airlief453ba02008-11-07 14:05:41 -0800702 * Initialises a preallocated connector. Connectors should be
703 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200704 *
705 * RETURNS:
706 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800707 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200708int drm_connector_init(struct drm_device *dev,
709 struct drm_connector *connector,
710 const struct drm_connector_funcs *funcs,
711 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800712{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200713 int ret;
714
Daniel Vetter84849902012-12-02 00:28:11 +0100715 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800716
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200717 ret = drm_mode_object_get(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR);
718 if (ret)
719 goto out;
720
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300721 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800722 connector->dev = dev;
723 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800724 connector->connector_type = connector_type;
725 connector->connector_type_id =
726 ++drm_connector_enum_list[connector_type].count; /* TODO */
Dave Airlief453ba02008-11-07 14:05:41 -0800727 INIT_LIST_HEAD(&connector->probed_modes);
728 INIT_LIST_HEAD(&connector->modes);
729 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000730 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800731
732 list_add_tail(&connector->head, &dev->mode_config.connector_list);
733 dev->mode_config.num_connector++;
734
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200735 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500736 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200737 dev->mode_config.edid_property,
738 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800739
Rob Clark58495562012-10-11 20:50:56 -0500740 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800741 dev->mode_config.dpms_property, 0);
742
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200743 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100744 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200745
746 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800747}
748EXPORT_SYMBOL(drm_connector_init);
749
750/**
751 * drm_connector_cleanup - cleans up an initialised connector
752 * @connector: connector to cleanup
753 *
Dave Airlief453ba02008-11-07 14:05:41 -0800754 * Cleans up the connector but doesn't free the object.
755 */
756void drm_connector_cleanup(struct drm_connector *connector)
757{
758 struct drm_device *dev = connector->dev;
759 struct drm_display_mode *mode, *t;
760
761 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
762 drm_mode_remove(connector, mode);
763
764 list_for_each_entry_safe(mode, t, &connector->modes, head)
765 drm_mode_remove(connector, mode);
766
Dave Airlief453ba02008-11-07 14:05:41 -0800767 drm_mode_object_put(dev, &connector->base);
768 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000769 dev->mode_config.num_connector--;
Dave Airlief453ba02008-11-07 14:05:41 -0800770}
771EXPORT_SYMBOL(drm_connector_cleanup);
772
Dave Airliecbc7e222012-02-20 14:16:40 +0000773void drm_connector_unplug_all(struct drm_device *dev)
774{
775 struct drm_connector *connector;
776
777 /* taking the mode config mutex ends up in a clash with sysfs */
778 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
779 drm_sysfs_connector_remove(connector);
780
781}
782EXPORT_SYMBOL(drm_connector_unplug_all);
783
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200784int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +0000785 struct drm_encoder *encoder,
786 const struct drm_encoder_funcs *funcs,
787 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800788{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200789 int ret;
790
Daniel Vetter84849902012-12-02 00:28:11 +0100791 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800792
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200793 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
794 if (ret)
795 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800796
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200797 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800798 encoder->encoder_type = encoder_type;
799 encoder->funcs = funcs;
800
801 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
802 dev->mode_config.num_encoder++;
803
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200804 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100805 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200806
807 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800808}
809EXPORT_SYMBOL(drm_encoder_init);
810
811void drm_encoder_cleanup(struct drm_encoder *encoder)
812{
813 struct drm_device *dev = encoder->dev;
Daniel Vetter84849902012-12-02 00:28:11 +0100814 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800815 drm_mode_object_put(dev, &encoder->base);
816 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000817 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +0100818 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800819}
820EXPORT_SYMBOL(drm_encoder_cleanup);
821
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +0300822/**
823 * drm_plane_init - Initialise a new plane object
824 * @dev: DRM device
825 * @plane: plane object to init
826 * @possible_crtcs: bitmask of possible CRTCs
827 * @funcs: callbacks for the new plane
828 * @formats: array of supported formats (%DRM_FORMAT_*)
829 * @format_count: number of elements in @formats
830 * @priv: plane is private (hidden from userspace)?
831 *
832 * Inits a new object created as base part of a driver plane object.
833 *
834 * RETURNS:
835 * Zero on success, error code on failure.
836 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800837int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
838 unsigned long possible_crtcs,
839 const struct drm_plane_funcs *funcs,
Rob Clark0a7eb242011-12-13 20:19:36 -0600840 const uint32_t *formats, uint32_t format_count,
841 bool priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800842{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200843 int ret;
844
Daniel Vetter84849902012-12-02 00:28:11 +0100845 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800846
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200847 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
848 if (ret)
849 goto out;
850
Rob Clark4d939142012-05-17 02:23:27 -0600851 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800852 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800853 plane->funcs = funcs;
854 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
855 GFP_KERNEL);
856 if (!plane->format_types) {
857 DRM_DEBUG_KMS("out of memory when allocating plane\n");
858 drm_mode_object_put(dev, &plane->base);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200859 ret = -ENOMEM;
860 goto out;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800861 }
862
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800863 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800864 plane->format_count = format_count;
865 plane->possible_crtcs = possible_crtcs;
866
Rob Clark0a7eb242011-12-13 20:19:36 -0600867 /* private planes are not exposed to userspace, but depending on
868 * display hardware, might be convenient to allow sharing programming
869 * for the scanout engine with the crtc implementation.
870 */
871 if (!priv) {
872 list_add_tail(&plane->head, &dev->mode_config.plane_list);
873 dev->mode_config.num_plane++;
874 } else {
875 INIT_LIST_HEAD(&plane->head);
876 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800877
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200878 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100879 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800880
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200881 return ret;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800882}
883EXPORT_SYMBOL(drm_plane_init);
884
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +0300885/**
886 * drm_plane_cleanup - Clean up the core plane usage
887 * @plane: plane to cleanup
888 *
889 * This function cleans up @plane and removes it from the DRM mode setting
890 * core. Note that the function does *not* free the plane structure itself,
891 * this is the responsibility of the caller.
892 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800893void drm_plane_cleanup(struct drm_plane *plane)
894{
895 struct drm_device *dev = plane->dev;
896
Daniel Vetter84849902012-12-02 00:28:11 +0100897 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800898 kfree(plane->format_types);
899 drm_mode_object_put(dev, &plane->base);
Rob Clark0a7eb242011-12-13 20:19:36 -0600900 /* if not added to a list, it must be a private plane */
901 if (!list_empty(&plane->head)) {
902 list_del(&plane->head);
903 dev->mode_config.num_plane--;
904 }
Daniel Vetter84849902012-12-02 00:28:11 +0100905 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800906}
907EXPORT_SYMBOL(drm_plane_cleanup);
908
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +0300909/**
910 * drm_plane_force_disable - Forcibly disable a plane
911 * @plane: plane to disable
912 *
913 * Forces the plane to be disabled.
914 *
915 * Used when the plane's current framebuffer is destroyed,
916 * and when restoring fbdev mode.
917 */
Ville Syrjälä9125e612013-06-03 16:10:40 +0300918void drm_plane_force_disable(struct drm_plane *plane)
919{
920 int ret;
921
922 if (!plane->fb)
923 return;
924
925 ret = plane->funcs->disable_plane(plane);
926 if (ret)
927 DRM_ERROR("failed to disable plane with busy fb\n");
928 /* disconnect the plane from the fb and crtc: */
929 __drm_framebuffer_unreference(plane->fb);
930 plane->fb = NULL;
931 plane->crtc = NULL;
932}
933EXPORT_SYMBOL(drm_plane_force_disable);
934
Dave Airlief453ba02008-11-07 14:05:41 -0800935/**
936 * drm_mode_create - create a new display mode
937 * @dev: DRM device
938 *
Dave Airlief453ba02008-11-07 14:05:41 -0800939 * Create a new drm_display_mode, give it an ID, and return it.
940 *
941 * RETURNS:
942 * Pointer to new mode on success, NULL on error.
943 */
944struct drm_display_mode *drm_mode_create(struct drm_device *dev)
945{
946 struct drm_display_mode *nmode;
947
948 nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL);
949 if (!nmode)
950 return NULL;
951
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200952 if (drm_mode_object_get(dev, &nmode->base, DRM_MODE_OBJECT_MODE)) {
953 kfree(nmode);
954 return NULL;
955 }
956
Dave Airlief453ba02008-11-07 14:05:41 -0800957 return nmode;
958}
959EXPORT_SYMBOL(drm_mode_create);
960
961/**
962 * drm_mode_destroy - remove a mode
963 * @dev: DRM device
964 * @mode: mode to remove
965 *
Dave Airlief453ba02008-11-07 14:05:41 -0800966 * Free @mode's unique identifier, then free it.
967 */
968void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode)
969{
Ville Syrjäläee34ab52012-03-13 12:35:43 +0200970 if (!mode)
971 return;
972
Dave Airlief453ba02008-11-07 14:05:41 -0800973 drm_mode_object_put(dev, &mode->base);
974
975 kfree(mode);
976}
977EXPORT_SYMBOL(drm_mode_destroy);
978
979static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
980{
981 struct drm_property *edid;
982 struct drm_property *dpms;
Dave Airlief453ba02008-11-07 14:05:41 -0800983
984 /*
985 * Standard properties (apply to all connectors)
986 */
987 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
988 DRM_MODE_PROP_IMMUTABLE,
989 "EDID", 0);
990 dev->mode_config.edid_property = edid;
991
Sascha Hauer4a67d392012-02-06 10:58:17 +0100992 dpms = drm_property_create_enum(dev, 0,
993 "DPMS", drm_dpms_enum_list,
994 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800995 dev->mode_config.dpms_property = dpms;
996
997 return 0;
998}
999
1000/**
1001 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1002 * @dev: DRM device
1003 *
1004 * Called by a driver the first time a DVI-I connector is made.
1005 */
1006int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1007{
1008 struct drm_property *dvi_i_selector;
1009 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001010
1011 if (dev->mode_config.dvi_i_select_subconnector_property)
1012 return 0;
1013
1014 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001015 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001016 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001017 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001018 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001019 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1020
Sascha Hauer4a67d392012-02-06 10:58:17 +01001021 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001022 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001023 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001024 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001025 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1026
1027 return 0;
1028}
1029EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1030
1031/**
1032 * drm_create_tv_properties - create TV specific connector properties
1033 * @dev: DRM device
1034 * @num_modes: number of different TV formats (modes) supported
1035 * @modes: array of pointers to strings containing name of each format
1036 *
1037 * Called by a driver's TV initialization routine, this function creates
1038 * the TV specific connector properties for a given device. Caller is
1039 * responsible for allocating a list of format names and passing them to
1040 * this routine.
1041 */
1042int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1043 char *modes[])
1044{
1045 struct drm_property *tv_selector;
1046 struct drm_property *tv_subconnector;
1047 int i;
1048
1049 if (dev->mode_config.tv_select_subconnector_property)
1050 return 0;
1051
1052 /*
1053 * Basic connector properties
1054 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001055 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001056 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001057 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001058 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001059 dev->mode_config.tv_select_subconnector_property = tv_selector;
1060
1061 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001062 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1063 "subconnector",
1064 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001065 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001066 dev->mode_config.tv_subconnector_property = tv_subconnector;
1067
1068 /*
1069 * Other, TV specific properties: margins & TV modes.
1070 */
1071 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001072 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001073
1074 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001075 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001076
1077 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001078 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001079
1080 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001081 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001082
1083 dev->mode_config.tv_mode_property =
1084 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1085 "mode", num_modes);
1086 for (i = 0; i < num_modes; i++)
1087 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1088 i, modes[i]);
1089
Francisco Jerezb6b79022009-08-02 04:19:20 +02001090 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001091 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001092
1093 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001094 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001095
1096 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001097 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001098
Francisco Jereza75f0232009-08-12 02:30:10 +02001099 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001100 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001101
1102 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001103 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001104
1105 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001106 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001107
Dave Airlief453ba02008-11-07 14:05:41 -08001108 return 0;
1109}
1110EXPORT_SYMBOL(drm_mode_create_tv_properties);
1111
1112/**
1113 * drm_mode_create_scaling_mode_property - create scaling mode property
1114 * @dev: DRM device
1115 *
1116 * Called by a driver the first time it's needed, must be attached to desired
1117 * connectors.
1118 */
1119int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1120{
1121 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001122
1123 if (dev->mode_config.scaling_mode_property)
1124 return 0;
1125
1126 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001127 drm_property_create_enum(dev, 0, "scaling mode",
1128 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001129 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001130
1131 dev->mode_config.scaling_mode_property = scaling_mode;
1132
1133 return 0;
1134}
1135EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1136
1137/**
1138 * drm_mode_create_dithering_property - create dithering property
1139 * @dev: DRM device
1140 *
1141 * Called by a driver the first time it's needed, must be attached to desired
1142 * connectors.
1143 */
1144int drm_mode_create_dithering_property(struct drm_device *dev)
1145{
1146 struct drm_property *dithering_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001147
1148 if (dev->mode_config.dithering_mode_property)
1149 return 0;
1150
1151 dithering_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001152 drm_property_create_enum(dev, 0, "dithering",
1153 drm_dithering_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001154 ARRAY_SIZE(drm_dithering_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001155 dev->mode_config.dithering_mode_property = dithering_mode;
1156
1157 return 0;
1158}
1159EXPORT_SYMBOL(drm_mode_create_dithering_property);
1160
1161/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001162 * drm_mode_create_dirty_property - create dirty property
1163 * @dev: DRM device
1164 *
1165 * Called by a driver the first time it's needed, must be attached to desired
1166 * connectors.
1167 */
1168int drm_mode_create_dirty_info_property(struct drm_device *dev)
1169{
1170 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001171
1172 if (dev->mode_config.dirty_info_property)
1173 return 0;
1174
1175 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001176 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001177 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001178 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001179 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001180 dev->mode_config.dirty_info_property = dirty_info;
1181
1182 return 0;
1183}
1184EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1185
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001186static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001187{
1188 uint32_t total_objects = 0;
1189
1190 total_objects += dev->mode_config.num_crtc;
1191 total_objects += dev->mode_config.num_connector;
1192 total_objects += dev->mode_config.num_encoder;
1193
Dave Airlief453ba02008-11-07 14:05:41 -08001194 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1195 if (!group->id_list)
1196 return -ENOMEM;
1197
1198 group->num_crtcs = 0;
1199 group->num_connectors = 0;
1200 group->num_encoders = 0;
1201 return 0;
1202}
1203
1204int drm_mode_group_init_legacy_group(struct drm_device *dev,
1205 struct drm_mode_group *group)
1206{
1207 struct drm_crtc *crtc;
1208 struct drm_encoder *encoder;
1209 struct drm_connector *connector;
1210 int ret;
1211
1212 if ((ret = drm_mode_group_init(dev, group)))
1213 return ret;
1214
1215 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1216 group->id_list[group->num_crtcs++] = crtc->base.id;
1217
1218 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1219 group->id_list[group->num_crtcs + group->num_encoders++] =
1220 encoder->base.id;
1221
1222 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1223 group->id_list[group->num_crtcs + group->num_encoders +
1224 group->num_connectors++] = connector->base.id;
1225
1226 return 0;
1227}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001228EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001229
1230/**
Dave Airlief453ba02008-11-07 14:05:41 -08001231 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1232 * @out: drm_mode_modeinfo struct to return to the user
1233 * @in: drm_display_mode to use
1234 *
Dave Airlief453ba02008-11-07 14:05:41 -08001235 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1236 * the user.
1237 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001238static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1239 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001240{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001241 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1242 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1243 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1244 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1245 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1246 "timing values too large for mode info\n");
1247
Dave Airlief453ba02008-11-07 14:05:41 -08001248 out->clock = in->clock;
1249 out->hdisplay = in->hdisplay;
1250 out->hsync_start = in->hsync_start;
1251 out->hsync_end = in->hsync_end;
1252 out->htotal = in->htotal;
1253 out->hskew = in->hskew;
1254 out->vdisplay = in->vdisplay;
1255 out->vsync_start = in->vsync_start;
1256 out->vsync_end = in->vsync_end;
1257 out->vtotal = in->vtotal;
1258 out->vscan = in->vscan;
1259 out->vrefresh = in->vrefresh;
1260 out->flags = in->flags;
1261 out->type = in->type;
1262 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1263 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1264}
1265
1266/**
1267 * drm_crtc_convert_to_umode - convert a modeinfo into a drm_display_mode
1268 * @out: drm_display_mode to return to the user
1269 * @in: drm_mode_modeinfo to use
1270 *
Dave Airlief453ba02008-11-07 14:05:41 -08001271 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1272 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001273 *
1274 * RETURNS:
1275 * Zero on success, errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001276 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001277static int drm_crtc_convert_umode(struct drm_display_mode *out,
1278 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001279{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001280 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1281 return -ERANGE;
1282
Dave Airlief453ba02008-11-07 14:05:41 -08001283 out->clock = in->clock;
1284 out->hdisplay = in->hdisplay;
1285 out->hsync_start = in->hsync_start;
1286 out->hsync_end = in->hsync_end;
1287 out->htotal = in->htotal;
1288 out->hskew = in->hskew;
1289 out->vdisplay = in->vdisplay;
1290 out->vsync_start = in->vsync_start;
1291 out->vsync_end = in->vsync_end;
1292 out->vtotal = in->vtotal;
1293 out->vscan = in->vscan;
1294 out->vrefresh = in->vrefresh;
1295 out->flags = in->flags;
1296 out->type = in->type;
1297 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1298 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001299
1300 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001301}
1302
1303/**
1304 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001305 * @dev: drm device for the ioctl
1306 * @data: data pointer for the ioctl
1307 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001308 *
Dave Airlief453ba02008-11-07 14:05:41 -08001309 * Construct a set of configuration description structures and return
1310 * them to the user, including CRTC, connector and framebuffer configuration.
1311 *
1312 * Called by the user via ioctl.
1313 *
1314 * RETURNS:
1315 * Zero on success, errno on failure.
1316 */
1317int drm_mode_getresources(struct drm_device *dev, void *data,
1318 struct drm_file *file_priv)
1319{
1320 struct drm_mode_card_res *card_res = data;
1321 struct list_head *lh;
1322 struct drm_framebuffer *fb;
1323 struct drm_connector *connector;
1324 struct drm_crtc *crtc;
1325 struct drm_encoder *encoder;
1326 int ret = 0;
1327 int connector_count = 0;
1328 int crtc_count = 0;
1329 int fb_count = 0;
1330 int encoder_count = 0;
1331 int copied = 0, i;
1332 uint32_t __user *fb_id;
1333 uint32_t __user *crtc_id;
1334 uint32_t __user *connector_id;
1335 uint32_t __user *encoder_id;
1336 struct drm_mode_group *mode_group;
1337
Dave Airliefb3b06c2011-02-08 13:55:21 +10001338 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1339 return -EINVAL;
1340
Dave Airlief453ba02008-11-07 14:05:41 -08001341
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001342 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001343 /*
1344 * For the non-control nodes we need to limit the list of resources
1345 * by IDs in the group list for this node
1346 */
1347 list_for_each(lh, &file_priv->fbs)
1348 fb_count++;
1349
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001350 /* handle this in 4 parts */
1351 /* FBs */
1352 if (card_res->count_fbs >= fb_count) {
1353 copied = 0;
1354 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1355 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1356 if (put_user(fb->base.id, fb_id + copied)) {
1357 mutex_unlock(&file_priv->fbs_lock);
1358 return -EFAULT;
1359 }
1360 copied++;
1361 }
1362 }
1363 card_res->count_fbs = fb_count;
1364 mutex_unlock(&file_priv->fbs_lock);
1365
1366 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001367 mode_group = &file_priv->master->minor->mode_group;
1368 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1369
1370 list_for_each(lh, &dev->mode_config.crtc_list)
1371 crtc_count++;
1372
1373 list_for_each(lh, &dev->mode_config.connector_list)
1374 connector_count++;
1375
1376 list_for_each(lh, &dev->mode_config.encoder_list)
1377 encoder_count++;
1378 } else {
1379
1380 crtc_count = mode_group->num_crtcs;
1381 connector_count = mode_group->num_connectors;
1382 encoder_count = mode_group->num_encoders;
1383 }
1384
1385 card_res->max_height = dev->mode_config.max_height;
1386 card_res->min_height = dev->mode_config.min_height;
1387 card_res->max_width = dev->mode_config.max_width;
1388 card_res->min_width = dev->mode_config.min_width;
1389
Dave Airlief453ba02008-11-07 14:05:41 -08001390 /* CRTCs */
1391 if (card_res->count_crtcs >= crtc_count) {
1392 copied = 0;
1393 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1394 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1395 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1396 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001397 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001398 if (put_user(crtc->base.id, crtc_id + copied)) {
1399 ret = -EFAULT;
1400 goto out;
1401 }
1402 copied++;
1403 }
1404 } else {
1405 for (i = 0; i < mode_group->num_crtcs; i++) {
1406 if (put_user(mode_group->id_list[i],
1407 crtc_id + copied)) {
1408 ret = -EFAULT;
1409 goto out;
1410 }
1411 copied++;
1412 }
1413 }
1414 }
1415 card_res->count_crtcs = crtc_count;
1416
1417 /* Encoders */
1418 if (card_res->count_encoders >= encoder_count) {
1419 copied = 0;
1420 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1421 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1422 list_for_each_entry(encoder,
1423 &dev->mode_config.encoder_list,
1424 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001425 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1426 drm_get_encoder_name(encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001427 if (put_user(encoder->base.id, encoder_id +
1428 copied)) {
1429 ret = -EFAULT;
1430 goto out;
1431 }
1432 copied++;
1433 }
1434 } else {
1435 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1436 if (put_user(mode_group->id_list[i],
1437 encoder_id + copied)) {
1438 ret = -EFAULT;
1439 goto out;
1440 }
1441 copied++;
1442 }
1443
1444 }
1445 }
1446 card_res->count_encoders = encoder_count;
1447
1448 /* Connectors */
1449 if (card_res->count_connectors >= connector_count) {
1450 copied = 0;
1451 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1452 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1453 list_for_each_entry(connector,
1454 &dev->mode_config.connector_list,
1455 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001456 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1457 connector->base.id,
1458 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08001459 if (put_user(connector->base.id,
1460 connector_id + copied)) {
1461 ret = -EFAULT;
1462 goto out;
1463 }
1464 copied++;
1465 }
1466 } else {
1467 int start = mode_group->num_crtcs +
1468 mode_group->num_encoders;
1469 for (i = start; i < start + mode_group->num_connectors; i++) {
1470 if (put_user(mode_group->id_list[i],
1471 connector_id + copied)) {
1472 ret = -EFAULT;
1473 goto out;
1474 }
1475 copied++;
1476 }
1477 }
1478 }
1479 card_res->count_connectors = connector_count;
1480
Jerome Glisse94401062010-07-15 15:43:25 -04001481 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001482 card_res->count_connectors, card_res->count_encoders);
1483
1484out:
Daniel Vetter84849902012-12-02 00:28:11 +01001485 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001486 return ret;
1487}
1488
1489/**
1490 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001491 * @dev: drm device for the ioctl
1492 * @data: data pointer for the ioctl
1493 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001494 *
Dave Airlief453ba02008-11-07 14:05:41 -08001495 * Construct a CRTC configuration structure to return to the user.
1496 *
1497 * Called by the user via ioctl.
1498 *
1499 * RETURNS:
1500 * Zero on success, errno on failure.
1501 */
1502int drm_mode_getcrtc(struct drm_device *dev,
1503 void *data, struct drm_file *file_priv)
1504{
1505 struct drm_mode_crtc *crtc_resp = data;
1506 struct drm_crtc *crtc;
1507 struct drm_mode_object *obj;
1508 int ret = 0;
1509
Dave Airliefb3b06c2011-02-08 13:55:21 +10001510 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1511 return -EINVAL;
1512
Daniel Vetter84849902012-12-02 00:28:11 +01001513 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001514
1515 obj = drm_mode_object_find(dev, crtc_resp->crtc_id,
1516 DRM_MODE_OBJECT_CRTC);
1517 if (!obj) {
1518 ret = -EINVAL;
1519 goto out;
1520 }
1521 crtc = obj_to_crtc(obj);
1522
1523 crtc_resp->x = crtc->x;
1524 crtc_resp->y = crtc->y;
1525 crtc_resp->gamma_size = crtc->gamma_size;
1526 if (crtc->fb)
1527 crtc_resp->fb_id = crtc->fb->base.id;
1528 else
1529 crtc_resp->fb_id = 0;
1530
1531 if (crtc->enabled) {
1532
1533 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1534 crtc_resp->mode_valid = 1;
1535
1536 } else {
1537 crtc_resp->mode_valid = 0;
1538 }
1539
1540out:
Daniel Vetter84849902012-12-02 00:28:11 +01001541 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001542 return ret;
1543}
1544
1545/**
1546 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001547 * @dev: drm device for the ioctl
1548 * @data: data pointer for the ioctl
1549 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001550 *
Dave Airlief453ba02008-11-07 14:05:41 -08001551 * Construct a connector configuration structure to return to the user.
1552 *
1553 * Called by the user via ioctl.
1554 *
1555 * RETURNS:
1556 * Zero on success, errno on failure.
1557 */
1558int drm_mode_getconnector(struct drm_device *dev, void *data,
1559 struct drm_file *file_priv)
1560{
1561 struct drm_mode_get_connector *out_resp = data;
1562 struct drm_mode_object *obj;
1563 struct drm_connector *connector;
1564 struct drm_display_mode *mode;
1565 int mode_count = 0;
1566 int props_count = 0;
1567 int encoders_count = 0;
1568 int ret = 0;
1569 int copied = 0;
1570 int i;
1571 struct drm_mode_modeinfo u_mode;
1572 struct drm_mode_modeinfo __user *mode_ptr;
1573 uint32_t __user *prop_ptr;
1574 uint64_t __user *prop_values;
1575 uint32_t __user *encoder_ptr;
1576
Dave Airliefb3b06c2011-02-08 13:55:21 +10001577 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1578 return -EINVAL;
1579
Dave Airlief453ba02008-11-07 14:05:41 -08001580 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1581
Jerome Glisse94401062010-07-15 15:43:25 -04001582 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001583
Daniel Vetter7b240562012-12-12 00:35:33 +01001584 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001585
1586 obj = drm_mode_object_find(dev, out_resp->connector_id,
1587 DRM_MODE_OBJECT_CONNECTOR);
1588 if (!obj) {
1589 ret = -EINVAL;
1590 goto out;
1591 }
1592 connector = obj_to_connector(obj);
1593
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001594 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08001595
1596 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1597 if (connector->encoder_ids[i] != 0) {
1598 encoders_count++;
1599 }
1600 }
1601
1602 if (out_resp->count_modes == 0) {
1603 connector->funcs->fill_modes(connector,
1604 dev->mode_config.max_width,
1605 dev->mode_config.max_height);
1606 }
1607
1608 /* delayed so we get modes regardless of pre-fill_modes state */
1609 list_for_each_entry(mode, &connector->modes, head)
1610 mode_count++;
1611
1612 out_resp->connector_id = connector->base.id;
1613 out_resp->connector_type = connector->connector_type;
1614 out_resp->connector_type_id = connector->connector_type_id;
1615 out_resp->mm_width = connector->display_info.width_mm;
1616 out_resp->mm_height = connector->display_info.height_mm;
1617 out_resp->subpixel = connector->display_info.subpixel_order;
1618 out_resp->connection = connector->status;
1619 if (connector->encoder)
1620 out_resp->encoder_id = connector->encoder->base.id;
1621 else
1622 out_resp->encoder_id = 0;
1623
1624 /*
1625 * This ioctl is called twice, once to determine how much space is
1626 * needed, and the 2nd time to fill it.
1627 */
1628 if ((out_resp->count_modes >= mode_count) && mode_count) {
1629 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001630 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001631 list_for_each_entry(mode, &connector->modes, head) {
1632 drm_crtc_convert_to_umode(&u_mode, mode);
1633 if (copy_to_user(mode_ptr + copied,
1634 &u_mode, sizeof(u_mode))) {
1635 ret = -EFAULT;
1636 goto out;
1637 }
1638 copied++;
1639 }
1640 }
1641 out_resp->count_modes = mode_count;
1642
1643 if ((out_resp->count_props >= props_count) && props_count) {
1644 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001645 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1646 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001647 for (i = 0; i < connector->properties.count; i++) {
1648 if (put_user(connector->properties.ids[i],
1649 prop_ptr + copied)) {
1650 ret = -EFAULT;
1651 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001652 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001653
1654 if (put_user(connector->properties.values[i],
1655 prop_values + copied)) {
1656 ret = -EFAULT;
1657 goto out;
1658 }
1659 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001660 }
1661 }
1662 out_resp->count_props = props_count;
1663
1664 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1665 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001666 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08001667 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1668 if (connector->encoder_ids[i] != 0) {
1669 if (put_user(connector->encoder_ids[i],
1670 encoder_ptr + copied)) {
1671 ret = -EFAULT;
1672 goto out;
1673 }
1674 copied++;
1675 }
1676 }
1677 }
1678 out_resp->count_encoders = encoders_count;
1679
1680out:
Daniel Vetter7b240562012-12-12 00:35:33 +01001681 mutex_unlock(&dev->mode_config.mutex);
1682
Dave Airlief453ba02008-11-07 14:05:41 -08001683 return ret;
1684}
1685
1686int drm_mode_getencoder(struct drm_device *dev, void *data,
1687 struct drm_file *file_priv)
1688{
1689 struct drm_mode_get_encoder *enc_resp = data;
1690 struct drm_mode_object *obj;
1691 struct drm_encoder *encoder;
1692 int ret = 0;
1693
Dave Airliefb3b06c2011-02-08 13:55:21 +10001694 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1695 return -EINVAL;
1696
Daniel Vetter84849902012-12-02 00:28:11 +01001697 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001698 obj = drm_mode_object_find(dev, enc_resp->encoder_id,
1699 DRM_MODE_OBJECT_ENCODER);
1700 if (!obj) {
1701 ret = -EINVAL;
1702 goto out;
1703 }
1704 encoder = obj_to_encoder(obj);
1705
1706 if (encoder->crtc)
1707 enc_resp->crtc_id = encoder->crtc->base.id;
1708 else
1709 enc_resp->crtc_id = 0;
1710 enc_resp->encoder_type = encoder->encoder_type;
1711 enc_resp->encoder_id = encoder->base.id;
1712 enc_resp->possible_crtcs = encoder->possible_crtcs;
1713 enc_resp->possible_clones = encoder->possible_clones;
1714
1715out:
Daniel Vetter84849902012-12-02 00:28:11 +01001716 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001717 return ret;
1718}
1719
1720/**
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001721 * drm_mode_getplane_res - get plane info
1722 * @dev: DRM device
1723 * @data: ioctl data
1724 * @file_priv: DRM file info
1725 *
1726 * Return an plane count and set of IDs.
1727 */
1728int drm_mode_getplane_res(struct drm_device *dev, void *data,
1729 struct drm_file *file_priv)
1730{
1731 struct drm_mode_get_plane_res *plane_resp = data;
1732 struct drm_mode_config *config;
1733 struct drm_plane *plane;
1734 uint32_t __user *plane_ptr;
1735 int copied = 0, ret = 0;
1736
1737 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1738 return -EINVAL;
1739
Daniel Vetter84849902012-12-02 00:28:11 +01001740 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001741 config = &dev->mode_config;
1742
1743 /*
1744 * This ioctl is called twice, once to determine how much space is
1745 * needed, and the 2nd time to fill it.
1746 */
1747 if (config->num_plane &&
1748 (plane_resp->count_planes >= config->num_plane)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001749 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001750
1751 list_for_each_entry(plane, &config->plane_list, head) {
1752 if (put_user(plane->base.id, plane_ptr + copied)) {
1753 ret = -EFAULT;
1754 goto out;
1755 }
1756 copied++;
1757 }
1758 }
1759 plane_resp->count_planes = config->num_plane;
1760
1761out:
Daniel Vetter84849902012-12-02 00:28:11 +01001762 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001763 return ret;
1764}
1765
1766/**
1767 * drm_mode_getplane - get plane info
1768 * @dev: DRM device
1769 * @data: ioctl data
1770 * @file_priv: DRM file info
1771 *
1772 * Return plane info, including formats supported, gamma size, any
1773 * current fb, etc.
1774 */
1775int drm_mode_getplane(struct drm_device *dev, void *data,
1776 struct drm_file *file_priv)
1777{
1778 struct drm_mode_get_plane *plane_resp = data;
1779 struct drm_mode_object *obj;
1780 struct drm_plane *plane;
1781 uint32_t __user *format_ptr;
1782 int ret = 0;
1783
1784 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1785 return -EINVAL;
1786
Daniel Vetter84849902012-12-02 00:28:11 +01001787 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001788 obj = drm_mode_object_find(dev, plane_resp->plane_id,
1789 DRM_MODE_OBJECT_PLANE);
1790 if (!obj) {
1791 ret = -ENOENT;
1792 goto out;
1793 }
1794 plane = obj_to_plane(obj);
1795
1796 if (plane->crtc)
1797 plane_resp->crtc_id = plane->crtc->base.id;
1798 else
1799 plane_resp->crtc_id = 0;
1800
1801 if (plane->fb)
1802 plane_resp->fb_id = plane->fb->base.id;
1803 else
1804 plane_resp->fb_id = 0;
1805
1806 plane_resp->plane_id = plane->base.id;
1807 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03001808 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001809
1810 /*
1811 * This ioctl is called twice, once to determine how much space is
1812 * needed, and the 2nd time to fill it.
1813 */
1814 if (plane->format_count &&
1815 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001816 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001817 if (copy_to_user(format_ptr,
1818 plane->format_types,
1819 sizeof(uint32_t) * plane->format_count)) {
1820 ret = -EFAULT;
1821 goto out;
1822 }
1823 }
1824 plane_resp->count_format_types = plane->format_count;
1825
1826out:
Daniel Vetter84849902012-12-02 00:28:11 +01001827 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001828 return ret;
1829}
1830
1831/**
1832 * drm_mode_setplane - set up or tear down an plane
1833 * @dev: DRM device
1834 * @data: ioctl data*
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001835 * @file_priv: DRM file info
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001836 *
1837 * Set plane info, including placement, fb, scaling, and other factors.
1838 * Or pass a NULL fb to disable.
1839 */
1840int drm_mode_setplane(struct drm_device *dev, void *data,
1841 struct drm_file *file_priv)
1842{
1843 struct drm_mode_set_plane *plane_req = data;
1844 struct drm_mode_object *obj;
1845 struct drm_plane *plane;
1846 struct drm_crtc *crtc;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001847 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001848 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02001849 unsigned int fb_width, fb_height;
Ville Syrjälä62443be2011-12-20 00:06:47 +02001850 int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001851
1852 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1853 return -EINVAL;
1854
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001855 /*
1856 * First, find the plane, crtc, and fb objects. If not available,
1857 * we don't bother to call the driver.
1858 */
1859 obj = drm_mode_object_find(dev, plane_req->plane_id,
1860 DRM_MODE_OBJECT_PLANE);
1861 if (!obj) {
1862 DRM_DEBUG_KMS("Unknown plane ID %d\n",
1863 plane_req->plane_id);
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001864 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001865 }
1866 plane = obj_to_plane(obj);
1867
1868 /* No fb means shut it down */
1869 if (!plane_req->fb_id) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001870 drm_modeset_lock_all(dev);
1871 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001872 plane->funcs->disable_plane(plane);
Ville Syrjäläe5e3b442011-12-20 00:06:43 +02001873 plane->crtc = NULL;
1874 plane->fb = NULL;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001875 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001876 goto out;
1877 }
1878
1879 obj = drm_mode_object_find(dev, plane_req->crtc_id,
1880 DRM_MODE_OBJECT_CRTC);
1881 if (!obj) {
1882 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
1883 plane_req->crtc_id);
1884 ret = -ENOENT;
1885 goto out;
1886 }
1887 crtc = obj_to_crtc(obj);
1888
Daniel Vetter786b99e2012-12-02 21:53:40 +01001889 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
1890 if (!fb) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001891 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
1892 plane_req->fb_id);
1893 ret = -ENOENT;
1894 goto out;
1895 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001896
Ville Syrjälä62443be2011-12-20 00:06:47 +02001897 /* Check whether this plane supports the fb pixel format. */
1898 for (i = 0; i < plane->format_count; i++)
1899 if (fb->pixel_format == plane->format_types[i])
1900 break;
1901 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03001902 DRM_DEBUG_KMS("Invalid pixel format %s\n",
1903 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02001904 ret = -EINVAL;
1905 goto out;
1906 }
1907
Ville Syrjälä42ef8782011-12-20 00:06:44 +02001908 fb_width = fb->width << 16;
1909 fb_height = fb->height << 16;
1910
1911 /* Make sure source coordinates are inside the fb. */
1912 if (plane_req->src_w > fb_width ||
1913 plane_req->src_x > fb_width - plane_req->src_w ||
1914 plane_req->src_h > fb_height ||
1915 plane_req->src_y > fb_height - plane_req->src_h) {
1916 DRM_DEBUG_KMS("Invalid source coordinates "
1917 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
1918 plane_req->src_w >> 16,
1919 ((plane_req->src_w & 0xffff) * 15625) >> 10,
1920 plane_req->src_h >> 16,
1921 ((plane_req->src_h & 0xffff) * 15625) >> 10,
1922 plane_req->src_x >> 16,
1923 ((plane_req->src_x & 0xffff) * 15625) >> 10,
1924 plane_req->src_y >> 16,
1925 ((plane_req->src_y & 0xffff) * 15625) >> 10);
1926 ret = -ENOSPC;
1927 goto out;
1928 }
1929
Ville Syrjälä687a0402011-12-20 00:06:45 +02001930 /* Give drivers some help against integer overflows */
1931 if (plane_req->crtc_w > INT_MAX ||
1932 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
1933 plane_req->crtc_h > INT_MAX ||
1934 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
1935 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
1936 plane_req->crtc_w, plane_req->crtc_h,
1937 plane_req->crtc_x, plane_req->crtc_y);
1938 ret = -ERANGE;
1939 goto out;
1940 }
1941
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001942 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001943 ret = plane->funcs->update_plane(plane, crtc, fb,
1944 plane_req->crtc_x, plane_req->crtc_y,
1945 plane_req->crtc_w, plane_req->crtc_h,
1946 plane_req->src_x, plane_req->src_y,
1947 plane_req->src_w, plane_req->src_h);
1948 if (!ret) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001949 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001950 plane->crtc = crtc;
1951 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01001952 fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001953 }
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001954 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001955
1956out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001957 if (fb)
1958 drm_framebuffer_unreference(fb);
1959 if (old_fb)
1960 drm_framebuffer_unreference(old_fb);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001961
1962 return ret;
1963}
1964
1965/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01001966 * drm_mode_set_config_internal - helper to call ->set_config
1967 * @set: modeset config to set
1968 *
1969 * This is a little helper to wrap internal calls to the ->set_config driver
1970 * interface. The only thing it adds is correct refcounting dance.
1971 */
1972int drm_mode_set_config_internal(struct drm_mode_set *set)
1973{
1974 struct drm_crtc *crtc = set->crtc;
Daniel Vetterb0d12322012-12-11 01:07:12 +01001975 struct drm_framebuffer *fb, *old_fb;
1976 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01001977
Daniel Vetterb0d12322012-12-11 01:07:12 +01001978 old_fb = crtc->fb;
1979 fb = set->fb;
1980
1981 ret = crtc->funcs->set_config(set);
1982 if (ret == 0) {
Daniel Vettercc85e122013-06-15 00:13:15 +02001983 /* crtc->fb must be updated by ->set_config, enforces this. */
1984 WARN_ON(fb != crtc->fb);
1985
Daniel Vetterb0d12322012-12-11 01:07:12 +01001986 if (old_fb)
1987 drm_framebuffer_unreference(old_fb);
1988 if (fb)
1989 drm_framebuffer_reference(fb);
1990 }
1991
1992 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01001993}
1994EXPORT_SYMBOL(drm_mode_set_config_internal);
1995
1996/**
Dave Airlief453ba02008-11-07 14:05:41 -08001997 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001998 * @dev: drm device for the ioctl
1999 * @data: data pointer for the ioctl
2000 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002001 *
Dave Airlief453ba02008-11-07 14:05:41 -08002002 * Build a new CRTC configuration based on user request.
2003 *
2004 * Called by the user via ioctl.
2005 *
2006 * RETURNS:
2007 * Zero on success, errno on failure.
2008 */
2009int drm_mode_setcrtc(struct drm_device *dev, void *data,
2010 struct drm_file *file_priv)
2011{
2012 struct drm_mode_config *config = &dev->mode_config;
2013 struct drm_mode_crtc *crtc_req = data;
2014 struct drm_mode_object *obj;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002015 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002016 struct drm_connector **connector_set = NULL, *connector;
2017 struct drm_framebuffer *fb = NULL;
2018 struct drm_display_mode *mode = NULL;
2019 struct drm_mode_set set;
2020 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002021 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002022 int i;
2023
Dave Airliefb3b06c2011-02-08 13:55:21 +10002024 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2025 return -EINVAL;
2026
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002027 /* For some reason crtc x/y offsets are signed internally. */
2028 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2029 return -ERANGE;
2030
Daniel Vetter84849902012-12-02 00:28:11 +01002031 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002032 obj = drm_mode_object_find(dev, crtc_req->crtc_id,
2033 DRM_MODE_OBJECT_CRTC);
2034 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002035 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002036 ret = -EINVAL;
2037 goto out;
2038 }
2039 crtc = obj_to_crtc(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002040 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002041
2042 if (crtc_req->mode_valid) {
Rob Clark7c80e122012-09-04 16:35:56 +00002043 int hdisplay, vdisplay;
Dave Airlief453ba02008-11-07 14:05:41 -08002044 /* If we have a mode we need a framebuffer. */
2045 /* If we pass -1, set the mode with the currently bound fb */
2046 if (crtc_req->fb_id == -1) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002047 if (!crtc->fb) {
2048 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2049 ret = -EINVAL;
2050 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002051 }
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002052 fb = crtc->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002053 /* Make refcounting symmetric with the lookup path. */
2054 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002055 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002056 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2057 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002058 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2059 crtc_req->fb_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002060 ret = -EINVAL;
2061 goto out;
2062 }
Dave Airlief453ba02008-11-07 14:05:41 -08002063 }
2064
2065 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002066 if (!mode) {
2067 ret = -ENOMEM;
2068 goto out;
2069 }
2070
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002071 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2072 if (ret) {
2073 DRM_DEBUG_KMS("Invalid mode\n");
2074 goto out;
2075 }
2076
Dave Airlief453ba02008-11-07 14:05:41 -08002077 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002078
Rob Clark7c80e122012-09-04 16:35:56 +00002079 hdisplay = mode->hdisplay;
2080 vdisplay = mode->vdisplay;
2081
2082 if (crtc->invert_dimensions)
2083 swap(hdisplay, vdisplay);
2084
2085 if (hdisplay > fb->width ||
2086 vdisplay > fb->height ||
2087 crtc_req->x > fb->width - hdisplay ||
2088 crtc_req->y > fb->height - vdisplay) {
2089 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2090 fb->width, fb->height,
2091 hdisplay, vdisplay, crtc_req->x, crtc_req->y,
2092 crtc->invert_dimensions ? " (inverted)" : "");
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002093 ret = -ENOSPC;
2094 goto out;
2095 }
Dave Airlief453ba02008-11-07 14:05:41 -08002096 }
2097
2098 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002099 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002100 ret = -EINVAL;
2101 goto out;
2102 }
2103
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002104 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002105 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002106 crtc_req->count_connectors);
2107 ret = -EINVAL;
2108 goto out;
2109 }
2110
2111 if (crtc_req->count_connectors > 0) {
2112 u32 out_id;
2113
2114 /* Avoid unbounded kernel memory allocation */
2115 if (crtc_req->count_connectors > config->num_connector) {
2116 ret = -EINVAL;
2117 goto out;
2118 }
2119
2120 connector_set = kmalloc(crtc_req->count_connectors *
2121 sizeof(struct drm_connector *),
2122 GFP_KERNEL);
2123 if (!connector_set) {
2124 ret = -ENOMEM;
2125 goto out;
2126 }
2127
2128 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002129 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002130 if (get_user(out_id, &set_connectors_ptr[i])) {
2131 ret = -EFAULT;
2132 goto out;
2133 }
2134
2135 obj = drm_mode_object_find(dev, out_id,
2136 DRM_MODE_OBJECT_CONNECTOR);
2137 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002138 DRM_DEBUG_KMS("Connector id %d unknown\n",
2139 out_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002140 ret = -EINVAL;
2141 goto out;
2142 }
2143 connector = obj_to_connector(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002144 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2145 connector->base.id,
2146 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08002147
2148 connector_set[i] = connector;
2149 }
2150 }
2151
2152 set.crtc = crtc;
2153 set.x = crtc_req->x;
2154 set.y = crtc_req->y;
2155 set.mode = mode;
2156 set.connectors = connector_set;
2157 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002158 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002159 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002160
2161out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002162 if (fb)
2163 drm_framebuffer_unreference(fb);
2164
Dave Airlief453ba02008-11-07 14:05:41 -08002165 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002166 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002167 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002168 return ret;
2169}
2170
2171int drm_mode_cursor_ioctl(struct drm_device *dev,
2172 void *data, struct drm_file *file_priv)
2173{
2174 struct drm_mode_cursor *req = data;
2175 struct drm_mode_object *obj;
2176 struct drm_crtc *crtc;
2177 int ret = 0;
2178
Dave Airliefb3b06c2011-02-08 13:55:21 +10002179 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2180 return -EINVAL;
2181
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002182 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002183 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002184
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002185 obj = drm_mode_object_find(dev, req->crtc_id, DRM_MODE_OBJECT_CRTC);
Dave Airlief453ba02008-11-07 14:05:41 -08002186 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002187 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Daniel Vetterdac35662012-12-02 15:24:10 +01002188 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002189 }
2190 crtc = obj_to_crtc(obj);
2191
Daniel Vetterdac35662012-12-02 15:24:10 +01002192 mutex_lock(&crtc->mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002193 if (req->flags & DRM_MODE_CURSOR_BO) {
2194 if (!crtc->funcs->cursor_set) {
Dave Airlief453ba02008-11-07 14:05:41 -08002195 ret = -ENXIO;
2196 goto out;
2197 }
2198 /* Turns off the cursor if handle is 0 */
2199 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2200 req->width, req->height);
2201 }
2202
2203 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2204 if (crtc->funcs->cursor_move) {
2205 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2206 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002207 ret = -EFAULT;
2208 goto out;
2209 }
2210 }
2211out:
Daniel Vetterdac35662012-12-02 15:24:10 +01002212 mutex_unlock(&crtc->mutex);
2213
Dave Airlief453ba02008-11-07 14:05:41 -08002214 return ret;
2215}
2216
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002217/* Original addfb only supported RGB formats, so figure out which one */
2218uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2219{
2220 uint32_t fmt;
2221
2222 switch (bpp) {
2223 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002224 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002225 break;
2226 case 16:
2227 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002228 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002229 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002230 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002231 break;
2232 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002233 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002234 break;
2235 case 32:
2236 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002237 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002238 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002239 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002240 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002241 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002242 break;
2243 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002244 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2245 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002246 break;
2247 }
2248
2249 return fmt;
2250}
2251EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2252
Dave Airlief453ba02008-11-07 14:05:41 -08002253/**
2254 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002255 * @dev: drm device for the ioctl
2256 * @data: data pointer for the ioctl
2257 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002258 *
Dave Airlief453ba02008-11-07 14:05:41 -08002259 * Add a new FB to the specified CRTC, given a user request.
2260 *
2261 * Called by the user via ioctl.
2262 *
2263 * RETURNS:
2264 * Zero on success, errno on failure.
2265 */
2266int drm_mode_addfb(struct drm_device *dev,
2267 void *data, struct drm_file *file_priv)
2268{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002269 struct drm_mode_fb_cmd *or = data;
2270 struct drm_mode_fb_cmd2 r = {};
2271 struct drm_mode_config *config = &dev->mode_config;
2272 struct drm_framebuffer *fb;
2273 int ret = 0;
2274
2275 /* Use new struct with format internally */
2276 r.fb_id = or->fb_id;
2277 r.width = or->width;
2278 r.height = or->height;
2279 r.pitches[0] = or->pitch;
2280 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2281 r.handles[0] = or->handle;
2282
2283 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2284 return -EINVAL;
2285
Jesse Barnesacb4b992011-11-07 12:03:23 -08002286 if ((config->min_width > r.width) || (r.width > config->max_width))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002287 return -EINVAL;
Jesse Barnesacb4b992011-11-07 12:03:23 -08002288
2289 if ((config->min_height > r.height) || (r.height > config->max_height))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002290 return -EINVAL;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002291
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002292 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2293 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002294 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002295 return PTR_ERR(fb);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002296 }
2297
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002298 mutex_lock(&file_priv->fbs_lock);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002299 or->fb_id = fb->base.id;
2300 list_add(&fb->filp_head, &file_priv->fbs);
2301 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002302 mutex_unlock(&file_priv->fbs_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002303
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002304 return ret;
2305}
2306
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002307static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b59772011-12-20 00:06:48 +02002308{
2309 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2310
2311 switch (format) {
2312 case DRM_FORMAT_C8:
2313 case DRM_FORMAT_RGB332:
2314 case DRM_FORMAT_BGR233:
2315 case DRM_FORMAT_XRGB4444:
2316 case DRM_FORMAT_XBGR4444:
2317 case DRM_FORMAT_RGBX4444:
2318 case DRM_FORMAT_BGRX4444:
2319 case DRM_FORMAT_ARGB4444:
2320 case DRM_FORMAT_ABGR4444:
2321 case DRM_FORMAT_RGBA4444:
2322 case DRM_FORMAT_BGRA4444:
2323 case DRM_FORMAT_XRGB1555:
2324 case DRM_FORMAT_XBGR1555:
2325 case DRM_FORMAT_RGBX5551:
2326 case DRM_FORMAT_BGRX5551:
2327 case DRM_FORMAT_ARGB1555:
2328 case DRM_FORMAT_ABGR1555:
2329 case DRM_FORMAT_RGBA5551:
2330 case DRM_FORMAT_BGRA5551:
2331 case DRM_FORMAT_RGB565:
2332 case DRM_FORMAT_BGR565:
2333 case DRM_FORMAT_RGB888:
2334 case DRM_FORMAT_BGR888:
2335 case DRM_FORMAT_XRGB8888:
2336 case DRM_FORMAT_XBGR8888:
2337 case DRM_FORMAT_RGBX8888:
2338 case DRM_FORMAT_BGRX8888:
2339 case DRM_FORMAT_ARGB8888:
2340 case DRM_FORMAT_ABGR8888:
2341 case DRM_FORMAT_RGBA8888:
2342 case DRM_FORMAT_BGRA8888:
2343 case DRM_FORMAT_XRGB2101010:
2344 case DRM_FORMAT_XBGR2101010:
2345 case DRM_FORMAT_RGBX1010102:
2346 case DRM_FORMAT_BGRX1010102:
2347 case DRM_FORMAT_ARGB2101010:
2348 case DRM_FORMAT_ABGR2101010:
2349 case DRM_FORMAT_RGBA1010102:
2350 case DRM_FORMAT_BGRA1010102:
2351 case DRM_FORMAT_YUYV:
2352 case DRM_FORMAT_YVYU:
2353 case DRM_FORMAT_UYVY:
2354 case DRM_FORMAT_VYUY:
2355 case DRM_FORMAT_AYUV:
2356 case DRM_FORMAT_NV12:
2357 case DRM_FORMAT_NV21:
2358 case DRM_FORMAT_NV16:
2359 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02002360 case DRM_FORMAT_NV24:
2361 case DRM_FORMAT_NV42:
Ville Syrjälä935b59772011-12-20 00:06:48 +02002362 case DRM_FORMAT_YUV410:
2363 case DRM_FORMAT_YVU410:
2364 case DRM_FORMAT_YUV411:
2365 case DRM_FORMAT_YVU411:
2366 case DRM_FORMAT_YUV420:
2367 case DRM_FORMAT_YVU420:
2368 case DRM_FORMAT_YUV422:
2369 case DRM_FORMAT_YVU422:
2370 case DRM_FORMAT_YUV444:
2371 case DRM_FORMAT_YVU444:
2372 return 0;
2373 default:
2374 return -EINVAL;
2375 }
2376}
2377
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002378static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002379{
2380 int ret, hsub, vsub, num_planes, i;
2381
2382 ret = format_check(r);
2383 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002384 DRM_DEBUG_KMS("bad framebuffer format %s\n",
2385 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002386 return ret;
2387 }
2388
2389 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2390 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2391 num_planes = drm_format_num_planes(r->pixel_format);
2392
2393 if (r->width == 0 || r->width % hsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002394 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002395 return -EINVAL;
2396 }
2397
2398 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002399 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002400 return -EINVAL;
2401 }
2402
2403 for (i = 0; i < num_planes; i++) {
2404 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002405 unsigned int height = r->height / (i != 0 ? vsub : 1);
2406 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002407
2408 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002409 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002410 return -EINVAL;
2411 }
2412
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002413 if ((uint64_t) width * cpp > UINT_MAX)
2414 return -ERANGE;
2415
2416 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
2417 return -ERANGE;
2418
2419 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002420 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002421 return -EINVAL;
2422 }
2423 }
2424
2425 return 0;
2426}
2427
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002428/**
2429 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002430 * @dev: drm device for the ioctl
2431 * @data: data pointer for the ioctl
2432 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002433 *
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002434 * Add a new FB to the specified CRTC, given a user request with format.
2435 *
2436 * Called by the user via ioctl.
2437 *
2438 * RETURNS:
2439 * Zero on success, errno on failure.
2440 */
2441int drm_mode_addfb2(struct drm_device *dev,
2442 void *data, struct drm_file *file_priv)
2443{
2444 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002445 struct drm_mode_config *config = &dev->mode_config;
2446 struct drm_framebuffer *fb;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002447 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002448
Dave Airliefb3b06c2011-02-08 13:55:21 +10002449 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2450 return -EINVAL;
2451
Ville Syrjäläe3cc3522012-11-08 09:09:42 +00002452 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
2453 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
2454 return -EINVAL;
2455 }
2456
Dave Airlief453ba02008-11-07 14:05:41 -08002457 if ((config->min_width > r->width) || (r->width > config->max_width)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002458 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002459 r->width, config->min_width, config->max_width);
Dave Airlief453ba02008-11-07 14:05:41 -08002460 return -EINVAL;
2461 }
2462 if ((config->min_height > r->height) || (r->height > config->max_height)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002463 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002464 r->height, config->min_height, config->max_height);
Dave Airlief453ba02008-11-07 14:05:41 -08002465 return -EINVAL;
2466 }
2467
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002468 ret = framebuffer_check(r);
2469 if (ret)
Ville Syrjälä935b59772011-12-20 00:06:48 +02002470 return ret;
Ville Syrjälä935b59772011-12-20 00:06:48 +02002471
Dave Airlief453ba02008-11-07 14:05:41 -08002472 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01002473 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002474 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002475 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002476 }
2477
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002478 mutex_lock(&file_priv->fbs_lock);
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002479 r->fb_id = fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002480 list_add(&fb->filp_head, &file_priv->fbs);
Jerome Glisse94401062010-07-15 15:43:25 -04002481 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002482 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002483
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002484
Dave Airlief453ba02008-11-07 14:05:41 -08002485 return ret;
2486}
2487
2488/**
2489 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002490 * @dev: drm device for the ioctl
2491 * @data: data pointer for the ioctl
2492 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002493 *
Dave Airlief453ba02008-11-07 14:05:41 -08002494 * Remove the FB specified by the user.
2495 *
2496 * Called by the user via ioctl.
2497 *
2498 * RETURNS:
2499 * Zero on success, errno on failure.
2500 */
2501int drm_mode_rmfb(struct drm_device *dev,
2502 void *data, struct drm_file *file_priv)
2503{
Dave Airlief453ba02008-11-07 14:05:41 -08002504 struct drm_framebuffer *fb = NULL;
2505 struct drm_framebuffer *fbl = NULL;
2506 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002507 int found = 0;
2508
Dave Airliefb3b06c2011-02-08 13:55:21 +10002509 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2510 return -EINVAL;
2511
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002512 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002513 mutex_lock(&dev->mode_config.fb_lock);
2514 fb = __drm_framebuffer_lookup(dev, *id);
2515 if (!fb)
2516 goto fail_lookup;
2517
Dave Airlief453ba02008-11-07 14:05:41 -08002518 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2519 if (fb == fbl)
2520 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01002521 if (!found)
2522 goto fail_lookup;
2523
2524 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2525 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002526
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002527 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002528 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002529 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002530
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002531 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002532
Daniel Vetter2b677e82012-12-10 21:16:05 +01002533 return 0;
2534
2535fail_lookup:
2536 mutex_unlock(&dev->mode_config.fb_lock);
2537 mutex_unlock(&file_priv->fbs_lock);
2538
2539 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002540}
2541
2542/**
2543 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002544 * @dev: drm device for the ioctl
2545 * @data: data pointer for the ioctl
2546 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002547 *
Dave Airlief453ba02008-11-07 14:05:41 -08002548 * Lookup the FB given its ID and return info about it.
2549 *
2550 * Called by the user via ioctl.
2551 *
2552 * RETURNS:
2553 * Zero on success, errno on failure.
2554 */
2555int drm_mode_getfb(struct drm_device *dev,
2556 void *data, struct drm_file *file_priv)
2557{
2558 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002559 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002560 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002561
Dave Airliefb3b06c2011-02-08 13:55:21 +10002562 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2563 return -EINVAL;
2564
Daniel Vetter786b99e2012-12-02 21:53:40 +01002565 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002566 if (!fb)
2567 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002568
2569 r->height = fb->height;
2570 r->width = fb->width;
2571 r->depth = fb->depth;
2572 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002573 r->pitch = fb->pitches[0];
Daniel Vetteraf26ef32012-12-13 23:07:50 +01002574 if (fb->funcs->create_handle)
2575 ret = fb->funcs->create_handle(fb, file_priv, &r->handle);
2576 else
2577 ret = -ENODEV;
Dave Airlief453ba02008-11-07 14:05:41 -08002578
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002579 drm_framebuffer_unreference(fb);
2580
Dave Airlief453ba02008-11-07 14:05:41 -08002581 return ret;
2582}
2583
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002584int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
2585 void *data, struct drm_file *file_priv)
2586{
2587 struct drm_clip_rect __user *clips_ptr;
2588 struct drm_clip_rect *clips = NULL;
2589 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002590 struct drm_framebuffer *fb;
2591 unsigned flags;
2592 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002593 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002594
Dave Airliefb3b06c2011-02-08 13:55:21 +10002595 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2596 return -EINVAL;
2597
Daniel Vetter786b99e2012-12-02 21:53:40 +01002598 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002599 if (!fb)
2600 return -EINVAL;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002601
2602 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002603 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002604
2605 if (!num_clips != !clips_ptr) {
2606 ret = -EINVAL;
2607 goto out_err1;
2608 }
2609
2610 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
2611
2612 /* If userspace annotates copy, clips must come in pairs */
2613 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
2614 ret = -EINVAL;
2615 goto out_err1;
2616 }
2617
2618 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05002619 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
2620 ret = -EINVAL;
2621 goto out_err1;
2622 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002623 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
2624 if (!clips) {
2625 ret = -ENOMEM;
2626 goto out_err1;
2627 }
2628
2629 ret = copy_from_user(clips, clips_ptr,
2630 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02002631 if (ret) {
2632 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002633 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02002634 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002635 }
2636
2637 if (fb->funcs->dirty) {
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002638 drm_modeset_lock_all(dev);
Thomas Hellstrom02b00162010-10-05 12:43:02 +02002639 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
2640 clips, num_clips);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002641 drm_modeset_unlock_all(dev);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002642 } else {
2643 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002644 }
2645
2646out_err2:
2647 kfree(clips);
2648out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002649 drm_framebuffer_unreference(fb);
2650
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002651 return ret;
2652}
2653
2654
Dave Airlief453ba02008-11-07 14:05:41 -08002655/**
2656 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002657 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08002658 *
Dave Airlief453ba02008-11-07 14:05:41 -08002659 * Destroy all the FBs associated with @filp.
2660 *
2661 * Called by the user via ioctl.
2662 *
2663 * RETURNS:
2664 * Zero on success, errno on failure.
2665 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05002666void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002667{
Dave Airlief453ba02008-11-07 14:05:41 -08002668 struct drm_device *dev = priv->minor->dev;
2669 struct drm_framebuffer *fb, *tfb;
2670
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002671 mutex_lock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002672 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01002673
2674 mutex_lock(&dev->mode_config.fb_lock);
2675 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2676 __drm_framebuffer_unregister(dev, fb);
2677 mutex_unlock(&dev->mode_config.fb_lock);
2678
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002679 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002680
2681 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00002682 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002683 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002684 mutex_unlock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002685}
2686
Dave Airlief453ba02008-11-07 14:05:41 -08002687struct drm_property *drm_property_create(struct drm_device *dev, int flags,
2688 const char *name, int num_values)
2689{
2690 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002691 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002692
2693 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
2694 if (!property)
2695 return NULL;
2696
2697 if (num_values) {
2698 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
2699 if (!property->values)
2700 goto fail;
2701 }
2702
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002703 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
2704 if (ret)
2705 goto fail;
2706
Dave Airlief453ba02008-11-07 14:05:41 -08002707 property->flags = flags;
2708 property->num_values = num_values;
2709 INIT_LIST_HEAD(&property->enum_blob_list);
2710
Vinson Lee471dd2e2011-11-10 11:55:40 -08002711 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08002712 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08002713 property->name[DRM_PROP_NAME_LEN-1] = '\0';
2714 }
Dave Airlief453ba02008-11-07 14:05:41 -08002715
2716 list_add_tail(&property->head, &dev->mode_config.property_list);
2717 return property;
2718fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002719 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08002720 kfree(property);
2721 return NULL;
2722}
2723EXPORT_SYMBOL(drm_property_create);
2724
Sascha Hauer4a67d392012-02-06 10:58:17 +01002725struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
2726 const char *name,
2727 const struct drm_prop_enum_list *props,
2728 int num_values)
2729{
2730 struct drm_property *property;
2731 int i, ret;
2732
2733 flags |= DRM_MODE_PROP_ENUM;
2734
2735 property = drm_property_create(dev, flags, name, num_values);
2736 if (!property)
2737 return NULL;
2738
2739 for (i = 0; i < num_values; i++) {
2740 ret = drm_property_add_enum(property, i,
2741 props[i].type,
2742 props[i].name);
2743 if (ret) {
2744 drm_property_destroy(dev, property);
2745 return NULL;
2746 }
2747 }
2748
2749 return property;
2750}
2751EXPORT_SYMBOL(drm_property_create_enum);
2752
Rob Clark49e27542012-05-17 02:23:26 -06002753struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
2754 int flags, const char *name,
2755 const struct drm_prop_enum_list *props,
2756 int num_values)
2757{
2758 struct drm_property *property;
2759 int i, ret;
2760
2761 flags |= DRM_MODE_PROP_BITMASK;
2762
2763 property = drm_property_create(dev, flags, name, num_values);
2764 if (!property)
2765 return NULL;
2766
2767 for (i = 0; i < num_values; i++) {
2768 ret = drm_property_add_enum(property, i,
2769 props[i].type,
2770 props[i].name);
2771 if (ret) {
2772 drm_property_destroy(dev, property);
2773 return NULL;
2774 }
2775 }
2776
2777 return property;
2778}
2779EXPORT_SYMBOL(drm_property_create_bitmask);
2780
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01002781struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
2782 const char *name,
2783 uint64_t min, uint64_t max)
2784{
2785 struct drm_property *property;
2786
2787 flags |= DRM_MODE_PROP_RANGE;
2788
2789 property = drm_property_create(dev, flags, name, 2);
2790 if (!property)
2791 return NULL;
2792
2793 property->values[0] = min;
2794 property->values[1] = max;
2795
2796 return property;
2797}
2798EXPORT_SYMBOL(drm_property_create_range);
2799
Dave Airlief453ba02008-11-07 14:05:41 -08002800int drm_property_add_enum(struct drm_property *property, int index,
2801 uint64_t value, const char *name)
2802{
2803 struct drm_property_enum *prop_enum;
2804
Rob Clark49e27542012-05-17 02:23:26 -06002805 if (!(property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)))
2806 return -EINVAL;
2807
2808 /*
2809 * Bitmask enum properties have the additional constraint of values
2810 * from 0 to 63
2811 */
2812 if ((property->flags & DRM_MODE_PROP_BITMASK) && (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08002813 return -EINVAL;
2814
2815 if (!list_empty(&property->enum_blob_list)) {
2816 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2817 if (prop_enum->value == value) {
2818 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2819 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2820 return 0;
2821 }
2822 }
2823 }
2824
2825 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
2826 if (!prop_enum)
2827 return -ENOMEM;
2828
2829 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2830 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2831 prop_enum->value = value;
2832
2833 property->values[index] = value;
2834 list_add_tail(&prop_enum->head, &property->enum_blob_list);
2835 return 0;
2836}
2837EXPORT_SYMBOL(drm_property_add_enum);
2838
2839void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
2840{
2841 struct drm_property_enum *prop_enum, *pt;
2842
2843 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
2844 list_del(&prop_enum->head);
2845 kfree(prop_enum);
2846 }
2847
2848 if (property->num_values)
2849 kfree(property->values);
2850 drm_mode_object_put(dev, &property->base);
2851 list_del(&property->head);
2852 kfree(property);
2853}
2854EXPORT_SYMBOL(drm_property_destroy);
2855
Paulo Zanonic5431882012-05-15 18:09:02 -03002856void drm_object_attach_property(struct drm_mode_object *obj,
2857 struct drm_property *property,
2858 uint64_t init_val)
2859{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002860 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03002861
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002862 if (count == DRM_OBJECT_MAX_PROPERTY) {
2863 WARN(1, "Failed to attach object property (type: 0x%x). Please "
2864 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
2865 "you see this message on the same object type.\n",
2866 obj->type);
2867 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03002868 }
2869
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002870 obj->properties->ids[count] = property->base.id;
2871 obj->properties->values[count] = init_val;
2872 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03002873}
2874EXPORT_SYMBOL(drm_object_attach_property);
2875
2876int drm_object_property_set_value(struct drm_mode_object *obj,
2877 struct drm_property *property, uint64_t val)
2878{
2879 int i;
2880
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002881 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03002882 if (obj->properties->ids[i] == property->base.id) {
2883 obj->properties->values[i] = val;
2884 return 0;
2885 }
2886 }
2887
2888 return -EINVAL;
2889}
2890EXPORT_SYMBOL(drm_object_property_set_value);
2891
2892int drm_object_property_get_value(struct drm_mode_object *obj,
2893 struct drm_property *property, uint64_t *val)
2894{
2895 int i;
2896
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002897 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03002898 if (obj->properties->ids[i] == property->base.id) {
2899 *val = obj->properties->values[i];
2900 return 0;
2901 }
2902 }
2903
2904 return -EINVAL;
2905}
2906EXPORT_SYMBOL(drm_object_property_get_value);
2907
Dave Airlief453ba02008-11-07 14:05:41 -08002908int drm_mode_getproperty_ioctl(struct drm_device *dev,
2909 void *data, struct drm_file *file_priv)
2910{
2911 struct drm_mode_object *obj;
2912 struct drm_mode_get_property *out_resp = data;
2913 struct drm_property *property;
2914 int enum_count = 0;
2915 int blob_count = 0;
2916 int value_count = 0;
2917 int ret = 0, i;
2918 int copied;
2919 struct drm_property_enum *prop_enum;
2920 struct drm_mode_property_enum __user *enum_ptr;
2921 struct drm_property_blob *prop_blob;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002922 uint32_t __user *blob_id_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002923 uint64_t __user *values_ptr;
2924 uint32_t __user *blob_length_ptr;
2925
Dave Airliefb3b06c2011-02-08 13:55:21 +10002926 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2927 return -EINVAL;
2928
Daniel Vetter84849902012-12-02 00:28:11 +01002929 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002930 obj = drm_mode_object_find(dev, out_resp->prop_id, DRM_MODE_OBJECT_PROPERTY);
2931 if (!obj) {
2932 ret = -EINVAL;
2933 goto done;
2934 }
2935 property = obj_to_property(obj);
2936
Rob Clark49e27542012-05-17 02:23:26 -06002937 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002938 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
2939 enum_count++;
2940 } else if (property->flags & DRM_MODE_PROP_BLOB) {
2941 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
2942 blob_count++;
2943 }
2944
2945 value_count = property->num_values;
2946
2947 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
2948 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
2949 out_resp->flags = property->flags;
2950
2951 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002952 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002953 for (i = 0; i < value_count; i++) {
2954 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
2955 ret = -EFAULT;
2956 goto done;
2957 }
2958 }
2959 }
2960 out_resp->count_values = value_count;
2961
Rob Clark49e27542012-05-17 02:23:26 -06002962 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002963 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
2964 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002965 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002966 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2967
2968 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
2969 ret = -EFAULT;
2970 goto done;
2971 }
2972
2973 if (copy_to_user(&enum_ptr[copied].name,
2974 &prop_enum->name, DRM_PROP_NAME_LEN)) {
2975 ret = -EFAULT;
2976 goto done;
2977 }
2978 copied++;
2979 }
2980 }
2981 out_resp->count_enum_blobs = enum_count;
2982 }
2983
2984 if (property->flags & DRM_MODE_PROP_BLOB) {
2985 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
2986 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002987 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
2988 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002989
2990 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
2991 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
2992 ret = -EFAULT;
2993 goto done;
2994 }
2995
2996 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
2997 ret = -EFAULT;
2998 goto done;
2999 }
3000
3001 copied++;
3002 }
3003 }
3004 out_resp->count_enum_blobs = blob_count;
3005 }
3006done:
Daniel Vetter84849902012-12-02 00:28:11 +01003007 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003008 return ret;
3009}
3010
3011static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3012 void *data)
3013{
3014 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003015 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003016
3017 if (!length || !data)
3018 return NULL;
3019
3020 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3021 if (!blob)
3022 return NULL;
3023
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003024 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3025 if (ret) {
3026 kfree(blob);
3027 return NULL;
3028 }
3029
Dave Airlief453ba02008-11-07 14:05:41 -08003030 blob->length = length;
3031
3032 memcpy(blob->data, data, length);
3033
Dave Airlief453ba02008-11-07 14:05:41 -08003034 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3035 return blob;
3036}
3037
3038static void drm_property_destroy_blob(struct drm_device *dev,
3039 struct drm_property_blob *blob)
3040{
3041 drm_mode_object_put(dev, &blob->base);
3042 list_del(&blob->head);
3043 kfree(blob);
3044}
3045
3046int drm_mode_getblob_ioctl(struct drm_device *dev,
3047 void *data, struct drm_file *file_priv)
3048{
3049 struct drm_mode_object *obj;
3050 struct drm_mode_get_blob *out_resp = data;
3051 struct drm_property_blob *blob;
3052 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003053 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003054
Dave Airliefb3b06c2011-02-08 13:55:21 +10003055 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3056 return -EINVAL;
3057
Daniel Vetter84849902012-12-02 00:28:11 +01003058 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003059 obj = drm_mode_object_find(dev, out_resp->blob_id, DRM_MODE_OBJECT_BLOB);
3060 if (!obj) {
3061 ret = -EINVAL;
3062 goto done;
3063 }
3064 blob = obj_to_blob(obj);
3065
3066 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003067 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08003068 if (copy_to_user(blob_ptr, blob->data, blob->length)){
3069 ret = -EFAULT;
3070 goto done;
3071 }
3072 }
3073 out_resp->length = blob->length;
3074
3075done:
Daniel Vetter84849902012-12-02 00:28:11 +01003076 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003077 return ret;
3078}
3079
3080int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3081 struct edid *edid)
3082{
3083 struct drm_device *dev = connector->dev;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003084 int ret, size;
Dave Airlief453ba02008-11-07 14:05:41 -08003085
3086 if (connector->edid_blob_ptr)
3087 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3088
3089 /* Delete edid, when there is none. */
3090 if (!edid) {
3091 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05003092 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08003093 return ret;
3094 }
3095
Adam Jackson7466f4c2010-03-29 21:43:23 +00003096 size = EDID_LENGTH * (1 + edid->extensions);
3097 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3098 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00003099 if (!connector->edid_blob_ptr)
3100 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003101
Rob Clark58495562012-10-11 20:50:56 -05003102 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08003103 dev->mode_config.edid_property,
3104 connector->edid_blob_ptr->base.id);
3105
3106 return ret;
3107}
3108EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3109
Paulo Zanoni26a34812012-05-15 18:08:59 -03003110static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003111 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03003112{
3113 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3114 return false;
3115 if (property->flags & DRM_MODE_PROP_RANGE) {
3116 if (value < property->values[0] || value > property->values[1])
3117 return false;
3118 return true;
Rob Clark49e27542012-05-17 02:23:26 -06003119 } else if (property->flags & DRM_MODE_PROP_BITMASK) {
3120 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003121 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06003122 for (i = 0; i < property->num_values; i++)
3123 valid_mask |= (1ULL << property->values[i]);
3124 return !(value & ~valid_mask);
Ville Syrjäläc4a56752012-10-25 18:05:06 +00003125 } else if (property->flags & DRM_MODE_PROP_BLOB) {
3126 /* Only the driver knows */
3127 return true;
Paulo Zanoni26a34812012-05-15 18:08:59 -03003128 } else {
3129 int i;
3130 for (i = 0; i < property->num_values; i++)
3131 if (property->values[i] == value)
3132 return true;
3133 return false;
3134 }
3135}
3136
Dave Airlief453ba02008-11-07 14:05:41 -08003137int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3138 void *data, struct drm_file *file_priv)
3139{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003140 struct drm_mode_connector_set_property *conn_set_prop = data;
3141 struct drm_mode_obj_set_property obj_set_prop = {
3142 .value = conn_set_prop->value,
3143 .prop_id = conn_set_prop->prop_id,
3144 .obj_id = conn_set_prop->connector_id,
3145 .obj_type = DRM_MODE_OBJECT_CONNECTOR
3146 };
Dave Airlief453ba02008-11-07 14:05:41 -08003147
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003148 /* It does all the locking and checking we need */
3149 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003150}
3151
Paulo Zanonic5431882012-05-15 18:09:02 -03003152static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3153 struct drm_property *property,
3154 uint64_t value)
3155{
3156 int ret = -EINVAL;
3157 struct drm_connector *connector = obj_to_connector(obj);
3158
3159 /* Do DPMS ourselves */
3160 if (property == connector->dev->mode_config.dpms_property) {
3161 if (connector->funcs->dpms)
3162 (*connector->funcs->dpms)(connector, (int)value);
3163 ret = 0;
3164 } else if (connector->funcs->set_property)
3165 ret = connector->funcs->set_property(connector, property, value);
3166
3167 /* store the property value if successful */
3168 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05003169 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03003170 return ret;
3171}
3172
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003173static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3174 struct drm_property *property,
3175 uint64_t value)
3176{
3177 int ret = -EINVAL;
3178 struct drm_crtc *crtc = obj_to_crtc(obj);
3179
3180 if (crtc->funcs->set_property)
3181 ret = crtc->funcs->set_property(crtc, property, value);
3182 if (!ret)
3183 drm_object_property_set_value(obj, property, value);
3184
3185 return ret;
3186}
3187
Rob Clark4d939142012-05-17 02:23:27 -06003188static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3189 struct drm_property *property,
3190 uint64_t value)
3191{
3192 int ret = -EINVAL;
3193 struct drm_plane *plane = obj_to_plane(obj);
3194
3195 if (plane->funcs->set_property)
3196 ret = plane->funcs->set_property(plane, property, value);
3197 if (!ret)
3198 drm_object_property_set_value(obj, property, value);
3199
3200 return ret;
3201}
3202
Paulo Zanonic5431882012-05-15 18:09:02 -03003203int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3204 struct drm_file *file_priv)
3205{
3206 struct drm_mode_obj_get_properties *arg = data;
3207 struct drm_mode_object *obj;
3208 int ret = 0;
3209 int i;
3210 int copied = 0;
3211 int props_count = 0;
3212 uint32_t __user *props_ptr;
3213 uint64_t __user *prop_values_ptr;
3214
3215 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3216 return -EINVAL;
3217
Daniel Vetter84849902012-12-02 00:28:11 +01003218 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003219
3220 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3221 if (!obj) {
3222 ret = -EINVAL;
3223 goto out;
3224 }
3225 if (!obj->properties) {
3226 ret = -EINVAL;
3227 goto out;
3228 }
3229
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003230 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003231
3232 /* This ioctl is called twice, once to determine how much space is
3233 * needed, and the 2nd time to fill it. */
3234 if ((arg->count_props >= props_count) && props_count) {
3235 copied = 0;
3236 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3237 prop_values_ptr = (uint64_t __user *)(unsigned long)
3238 (arg->prop_values_ptr);
3239 for (i = 0; i < props_count; i++) {
3240 if (put_user(obj->properties->ids[i],
3241 props_ptr + copied)) {
3242 ret = -EFAULT;
3243 goto out;
3244 }
3245 if (put_user(obj->properties->values[i],
3246 prop_values_ptr + copied)) {
3247 ret = -EFAULT;
3248 goto out;
3249 }
3250 copied++;
3251 }
3252 }
3253 arg->count_props = props_count;
3254out:
Daniel Vetter84849902012-12-02 00:28:11 +01003255 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003256 return ret;
3257}
3258
3259int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
3260 struct drm_file *file_priv)
3261{
3262 struct drm_mode_obj_set_property *arg = data;
3263 struct drm_mode_object *arg_obj;
3264 struct drm_mode_object *prop_obj;
3265 struct drm_property *property;
3266 int ret = -EINVAL;
3267 int i;
3268
3269 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3270 return -EINVAL;
3271
Daniel Vetter84849902012-12-02 00:28:11 +01003272 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003273
3274 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3275 if (!arg_obj)
3276 goto out;
3277 if (!arg_obj->properties)
3278 goto out;
3279
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003280 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03003281 if (arg_obj->properties->ids[i] == arg->prop_id)
3282 break;
3283
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003284 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03003285 goto out;
3286
3287 prop_obj = drm_mode_object_find(dev, arg->prop_id,
3288 DRM_MODE_OBJECT_PROPERTY);
3289 if (!prop_obj)
3290 goto out;
3291 property = obj_to_property(prop_obj);
3292
3293 if (!drm_property_change_is_valid(property, arg->value))
3294 goto out;
3295
3296 switch (arg_obj->type) {
3297 case DRM_MODE_OBJECT_CONNECTOR:
3298 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
3299 arg->value);
3300 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003301 case DRM_MODE_OBJECT_CRTC:
3302 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
3303 break;
Rob Clark4d939142012-05-17 02:23:27 -06003304 case DRM_MODE_OBJECT_PLANE:
3305 ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
3306 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03003307 }
3308
3309out:
Daniel Vetter84849902012-12-02 00:28:11 +01003310 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003311 return ret;
3312}
3313
Dave Airlief453ba02008-11-07 14:05:41 -08003314int drm_mode_connector_attach_encoder(struct drm_connector *connector,
3315 struct drm_encoder *encoder)
3316{
3317 int i;
3318
3319 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3320 if (connector->encoder_ids[i] == 0) {
3321 connector->encoder_ids[i] = encoder->base.id;
3322 return 0;
3323 }
3324 }
3325 return -ENOMEM;
3326}
3327EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
3328
3329void drm_mode_connector_detach_encoder(struct drm_connector *connector,
3330 struct drm_encoder *encoder)
3331{
3332 int i;
3333 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3334 if (connector->encoder_ids[i] == encoder->base.id) {
3335 connector->encoder_ids[i] = 0;
3336 if (connector->encoder == encoder)
3337 connector->encoder = NULL;
3338 break;
3339 }
3340 }
3341}
3342EXPORT_SYMBOL(drm_mode_connector_detach_encoder);
3343
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003344int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -08003345 int gamma_size)
3346{
3347 crtc->gamma_size = gamma_size;
3348
3349 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
3350 if (!crtc->gamma_store) {
3351 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003352 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08003353 }
3354
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003355 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003356}
3357EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
3358
3359int drm_mode_gamma_set_ioctl(struct drm_device *dev,
3360 void *data, struct drm_file *file_priv)
3361{
3362 struct drm_mode_crtc_lut *crtc_lut = data;
3363 struct drm_mode_object *obj;
3364 struct drm_crtc *crtc;
3365 void *r_base, *g_base, *b_base;
3366 int size;
3367 int ret = 0;
3368
Dave Airliefb3b06c2011-02-08 13:55:21 +10003369 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3370 return -EINVAL;
3371
Daniel Vetter84849902012-12-02 00:28:11 +01003372 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003373 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3374 if (!obj) {
3375 ret = -EINVAL;
3376 goto out;
3377 }
3378 crtc = obj_to_crtc(obj);
3379
Laurent Pinchartebe0f242012-05-17 13:27:24 +02003380 if (crtc->funcs->gamma_set == NULL) {
3381 ret = -ENOSYS;
3382 goto out;
3383 }
3384
Dave Airlief453ba02008-11-07 14:05:41 -08003385 /* memcpy into gamma store */
3386 if (crtc_lut->gamma_size != crtc->gamma_size) {
3387 ret = -EINVAL;
3388 goto out;
3389 }
3390
3391 size = crtc_lut->gamma_size * (sizeof(uint16_t));
3392 r_base = crtc->gamma_store;
3393 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
3394 ret = -EFAULT;
3395 goto out;
3396 }
3397
3398 g_base = r_base + size;
3399 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
3400 ret = -EFAULT;
3401 goto out;
3402 }
3403
3404 b_base = g_base + size;
3405 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
3406 ret = -EFAULT;
3407 goto out;
3408 }
3409
James Simmons72034252010-08-03 01:33:19 +01003410 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08003411
3412out:
Daniel Vetter84849902012-12-02 00:28:11 +01003413 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003414 return ret;
3415
3416}
3417
3418int drm_mode_gamma_get_ioctl(struct drm_device *dev,
3419 void *data, struct drm_file *file_priv)
3420{
3421 struct drm_mode_crtc_lut *crtc_lut = data;
3422 struct drm_mode_object *obj;
3423 struct drm_crtc *crtc;
3424 void *r_base, *g_base, *b_base;
3425 int size;
3426 int ret = 0;
3427
Dave Airliefb3b06c2011-02-08 13:55:21 +10003428 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3429 return -EINVAL;
3430
Daniel Vetter84849902012-12-02 00:28:11 +01003431 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003432 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3433 if (!obj) {
3434 ret = -EINVAL;
3435 goto out;
3436 }
3437 crtc = obj_to_crtc(obj);
3438
3439 /* memcpy into gamma store */
3440 if (crtc_lut->gamma_size != crtc->gamma_size) {
3441 ret = -EINVAL;
3442 goto out;
3443 }
3444
3445 size = crtc_lut->gamma_size * (sizeof(uint16_t));
3446 r_base = crtc->gamma_store;
3447 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
3448 ret = -EFAULT;
3449 goto out;
3450 }
3451
3452 g_base = r_base + size;
3453 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
3454 ret = -EFAULT;
3455 goto out;
3456 }
3457
3458 b_base = g_base + size;
3459 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
3460 ret = -EFAULT;
3461 goto out;
3462 }
3463out:
Daniel Vetter84849902012-12-02 00:28:11 +01003464 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003465 return ret;
3466}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003467
3468int drm_mode_page_flip_ioctl(struct drm_device *dev,
3469 void *data, struct drm_file *file_priv)
3470{
3471 struct drm_mode_crtc_page_flip *page_flip = data;
3472 struct drm_mode_object *obj;
3473 struct drm_crtc *crtc;
Daniel Vetterb0d12322012-12-11 01:07:12 +01003474 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003475 struct drm_pending_vblank_event *e = NULL;
3476 unsigned long flags;
Rob Clark7c80e122012-09-04 16:35:56 +00003477 int hdisplay, vdisplay;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003478 int ret = -EINVAL;
3479
3480 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
3481 page_flip->reserved != 0)
3482 return -EINVAL;
3483
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003484 obj = drm_mode_object_find(dev, page_flip->crtc_id, DRM_MODE_OBJECT_CRTC);
3485 if (!obj)
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01003486 return -EINVAL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003487 crtc = obj_to_crtc(obj);
3488
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01003489 mutex_lock(&crtc->mutex);
Chris Wilson90c1efd2010-07-17 20:23:26 +01003490 if (crtc->fb == NULL) {
3491 /* The framebuffer is currently unbound, presumably
3492 * due to a hotplug event, that userspace has not
3493 * yet discovered.
3494 */
3495 ret = -EBUSY;
3496 goto out;
3497 }
3498
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003499 if (crtc->funcs->page_flip == NULL)
3500 goto out;
3501
Daniel Vetter786b99e2012-12-02 21:53:40 +01003502 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
3503 if (!fb)
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003504 goto out;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003505
Rob Clark7c80e122012-09-04 16:35:56 +00003506 hdisplay = crtc->mode.hdisplay;
3507 vdisplay = crtc->mode.vdisplay;
3508
3509 if (crtc->invert_dimensions)
3510 swap(hdisplay, vdisplay);
3511
3512 if (hdisplay > fb->width ||
3513 vdisplay > fb->height ||
3514 crtc->x > fb->width - hdisplay ||
3515 crtc->y > fb->height - vdisplay) {
3516 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
3517 fb->width, fb->height, hdisplay, vdisplay, crtc->x, crtc->y,
3518 crtc->invert_dimensions ? " (inverted)" : "");
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02003519 ret = -ENOSPC;
3520 goto out;
3521 }
3522
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02003523 if (crtc->fb->pixel_format != fb->pixel_format) {
3524 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
3525 ret = -EINVAL;
3526 goto out;
3527 }
3528
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003529 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3530 ret = -ENOMEM;
3531 spin_lock_irqsave(&dev->event_lock, flags);
3532 if (file_priv->event_space < sizeof e->event) {
3533 spin_unlock_irqrestore(&dev->event_lock, flags);
3534 goto out;
3535 }
3536 file_priv->event_space -= sizeof e->event;
3537 spin_unlock_irqrestore(&dev->event_lock, flags);
3538
3539 e = kzalloc(sizeof *e, GFP_KERNEL);
3540 if (e == NULL) {
3541 spin_lock_irqsave(&dev->event_lock, flags);
3542 file_priv->event_space += sizeof e->event;
3543 spin_unlock_irqrestore(&dev->event_lock, flags);
3544 goto out;
3545 }
3546
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08003547 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003548 e->event.base.length = sizeof e->event;
3549 e->event.user_data = page_flip->user_data;
3550 e->base.event = &e->event.base;
3551 e->base.file_priv = file_priv;
3552 e->base.destroy =
3553 (void (*) (struct drm_pending_event *)) kfree;
3554 }
3555
Daniel Vetterb0d12322012-12-11 01:07:12 +01003556 old_fb = crtc->fb;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003557 ret = crtc->funcs->page_flip(crtc, fb, e);
3558 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09003559 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3560 spin_lock_irqsave(&dev->event_lock, flags);
3561 file_priv->event_space += sizeof e->event;
3562 spin_unlock_irqrestore(&dev->event_lock, flags);
3563 kfree(e);
3564 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01003565 /* Keep the old fb, don't unref it. */
3566 old_fb = NULL;
3567 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01003568 /*
3569 * Warn if the driver hasn't properly updated the crtc->fb
3570 * field to reflect that the new framebuffer is now used.
3571 * Failing to do so will screw with the reference counting
3572 * on framebuffers.
3573 */
3574 WARN_ON(crtc->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01003575 /* Unref only the old framebuffer. */
3576 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003577 }
3578
3579out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01003580 if (fb)
3581 drm_framebuffer_unreference(fb);
3582 if (old_fb)
3583 drm_framebuffer_unreference(old_fb);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01003584 mutex_unlock(&crtc->mutex);
3585
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003586 return ret;
3587}
Chris Wilsoneb033552011-01-24 15:11:08 +00003588
3589void drm_mode_config_reset(struct drm_device *dev)
3590{
3591 struct drm_crtc *crtc;
3592 struct drm_encoder *encoder;
3593 struct drm_connector *connector;
3594
3595 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3596 if (crtc->funcs->reset)
3597 crtc->funcs->reset(crtc);
3598
3599 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
3600 if (encoder->funcs->reset)
3601 encoder->funcs->reset(encoder);
3602
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00003603 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3604 connector->status = connector_status_unknown;
3605
Chris Wilsoneb033552011-01-24 15:11:08 +00003606 if (connector->funcs->reset)
3607 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00003608 }
Chris Wilsoneb033552011-01-24 15:11:08 +00003609}
3610EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10003611
3612int drm_mode_create_dumb_ioctl(struct drm_device *dev,
3613 void *data, struct drm_file *file_priv)
3614{
3615 struct drm_mode_create_dumb *args = data;
3616
3617 if (!dev->driver->dumb_create)
3618 return -ENOSYS;
3619 return dev->driver->dumb_create(file_priv, dev, args);
3620}
3621
3622int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
3623 void *data, struct drm_file *file_priv)
3624{
3625 struct drm_mode_map_dumb *args = data;
3626
3627 /* call driver ioctl to get mmap offset */
3628 if (!dev->driver->dumb_map_offset)
3629 return -ENOSYS;
3630
3631 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
3632}
3633
3634int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
3635 void *data, struct drm_file *file_priv)
3636{
3637 struct drm_mode_destroy_dumb *args = data;
3638
3639 if (!dev->driver->dumb_destroy)
3640 return -ENOSYS;
3641
3642 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
3643}
Dave Airlie248dbc22011-11-29 20:02:54 +00003644
3645/*
3646 * Just need to support RGB formats here for compat with code that doesn't
3647 * use pixel formats directly yet.
3648 */
3649void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
3650 int *bpp)
3651{
3652 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02003653 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003654 case DRM_FORMAT_RGB332:
3655 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00003656 *depth = 8;
3657 *bpp = 8;
3658 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003659 case DRM_FORMAT_XRGB1555:
3660 case DRM_FORMAT_XBGR1555:
3661 case DRM_FORMAT_RGBX5551:
3662 case DRM_FORMAT_BGRX5551:
3663 case DRM_FORMAT_ARGB1555:
3664 case DRM_FORMAT_ABGR1555:
3665 case DRM_FORMAT_RGBA5551:
3666 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00003667 *depth = 15;
3668 *bpp = 16;
3669 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003670 case DRM_FORMAT_RGB565:
3671 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00003672 *depth = 16;
3673 *bpp = 16;
3674 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003675 case DRM_FORMAT_RGB888:
3676 case DRM_FORMAT_BGR888:
3677 *depth = 24;
3678 *bpp = 24;
3679 break;
3680 case DRM_FORMAT_XRGB8888:
3681 case DRM_FORMAT_XBGR8888:
3682 case DRM_FORMAT_RGBX8888:
3683 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00003684 *depth = 24;
3685 *bpp = 32;
3686 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003687 case DRM_FORMAT_XRGB2101010:
3688 case DRM_FORMAT_XBGR2101010:
3689 case DRM_FORMAT_RGBX1010102:
3690 case DRM_FORMAT_BGRX1010102:
3691 case DRM_FORMAT_ARGB2101010:
3692 case DRM_FORMAT_ABGR2101010:
3693 case DRM_FORMAT_RGBA1010102:
3694 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00003695 *depth = 30;
3696 *bpp = 32;
3697 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003698 case DRM_FORMAT_ARGB8888:
3699 case DRM_FORMAT_ABGR8888:
3700 case DRM_FORMAT_RGBA8888:
3701 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00003702 *depth = 32;
3703 *bpp = 32;
3704 break;
3705 default:
3706 DRM_DEBUG_KMS("unsupported pixel format\n");
3707 *depth = 0;
3708 *bpp = 0;
3709 break;
3710 }
3711}
3712EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03003713
3714/**
3715 * drm_format_num_planes - get the number of planes for format
3716 * @format: pixel format (DRM_FORMAT_*)
3717 *
3718 * RETURNS:
3719 * The number of planes used by the specified pixel format.
3720 */
3721int drm_format_num_planes(uint32_t format)
3722{
3723 switch (format) {
3724 case DRM_FORMAT_YUV410:
3725 case DRM_FORMAT_YVU410:
3726 case DRM_FORMAT_YUV411:
3727 case DRM_FORMAT_YVU411:
3728 case DRM_FORMAT_YUV420:
3729 case DRM_FORMAT_YVU420:
3730 case DRM_FORMAT_YUV422:
3731 case DRM_FORMAT_YVU422:
3732 case DRM_FORMAT_YUV444:
3733 case DRM_FORMAT_YVU444:
3734 return 3;
3735 case DRM_FORMAT_NV12:
3736 case DRM_FORMAT_NV21:
3737 case DRM_FORMAT_NV16:
3738 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003739 case DRM_FORMAT_NV24:
3740 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03003741 return 2;
3742 default:
3743 return 1;
3744 }
3745}
3746EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03003747
3748/**
3749 * drm_format_plane_cpp - determine the bytes per pixel value
3750 * @format: pixel format (DRM_FORMAT_*)
3751 * @plane: plane index
3752 *
3753 * RETURNS:
3754 * The bytes per pixel value for the specified plane.
3755 */
3756int drm_format_plane_cpp(uint32_t format, int plane)
3757{
3758 unsigned int depth;
3759 int bpp;
3760
3761 if (plane >= drm_format_num_planes(format))
3762 return 0;
3763
3764 switch (format) {
3765 case DRM_FORMAT_YUYV:
3766 case DRM_FORMAT_YVYU:
3767 case DRM_FORMAT_UYVY:
3768 case DRM_FORMAT_VYUY:
3769 return 2;
3770 case DRM_FORMAT_NV12:
3771 case DRM_FORMAT_NV21:
3772 case DRM_FORMAT_NV16:
3773 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003774 case DRM_FORMAT_NV24:
3775 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03003776 return plane ? 2 : 1;
3777 case DRM_FORMAT_YUV410:
3778 case DRM_FORMAT_YVU410:
3779 case DRM_FORMAT_YUV411:
3780 case DRM_FORMAT_YVU411:
3781 case DRM_FORMAT_YUV420:
3782 case DRM_FORMAT_YVU420:
3783 case DRM_FORMAT_YUV422:
3784 case DRM_FORMAT_YVU422:
3785 case DRM_FORMAT_YUV444:
3786 case DRM_FORMAT_YVU444:
3787 return 1;
3788 default:
3789 drm_fb_get_bpp_depth(format, &depth, &bpp);
3790 return bpp >> 3;
3791 }
3792}
3793EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03003794
3795/**
3796 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
3797 * @format: pixel format (DRM_FORMAT_*)
3798 *
3799 * RETURNS:
3800 * The horizontal chroma subsampling factor for the
3801 * specified pixel format.
3802 */
3803int drm_format_horz_chroma_subsampling(uint32_t format)
3804{
3805 switch (format) {
3806 case DRM_FORMAT_YUV411:
3807 case DRM_FORMAT_YVU411:
3808 case DRM_FORMAT_YUV410:
3809 case DRM_FORMAT_YVU410:
3810 return 4;
3811 case DRM_FORMAT_YUYV:
3812 case DRM_FORMAT_YVYU:
3813 case DRM_FORMAT_UYVY:
3814 case DRM_FORMAT_VYUY:
3815 case DRM_FORMAT_NV12:
3816 case DRM_FORMAT_NV21:
3817 case DRM_FORMAT_NV16:
3818 case DRM_FORMAT_NV61:
3819 case DRM_FORMAT_YUV422:
3820 case DRM_FORMAT_YVU422:
3821 case DRM_FORMAT_YUV420:
3822 case DRM_FORMAT_YVU420:
3823 return 2;
3824 default:
3825 return 1;
3826 }
3827}
3828EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
3829
3830/**
3831 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
3832 * @format: pixel format (DRM_FORMAT_*)
3833 *
3834 * RETURNS:
3835 * The vertical chroma subsampling factor for the
3836 * specified pixel format.
3837 */
3838int drm_format_vert_chroma_subsampling(uint32_t format)
3839{
3840 switch (format) {
3841 case DRM_FORMAT_YUV410:
3842 case DRM_FORMAT_YVU410:
3843 return 4;
3844 case DRM_FORMAT_YUV420:
3845 case DRM_FORMAT_YVU420:
3846 case DRM_FORMAT_NV12:
3847 case DRM_FORMAT_NV21:
3848 return 2;
3849 default:
3850 return 1;
3851 }
3852}
3853EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02003854
3855/**
3856 * drm_mode_config_init - initialize DRM mode_configuration structure
3857 * @dev: DRM device
3858 *
3859 * Initialize @dev's mode_config structure, used for tracking the graphics
3860 * configuration of @dev.
3861 *
3862 * Since this initializes the modeset locks, no locking is possible. Which is no
3863 * problem, since this should happen single threaded at init time. It is the
3864 * driver's problem to ensure this guarantee.
3865 *
3866 */
3867void drm_mode_config_init(struct drm_device *dev)
3868{
3869 mutex_init(&dev->mode_config.mutex);
3870 mutex_init(&dev->mode_config.idr_mutex);
3871 mutex_init(&dev->mode_config.fb_lock);
3872 INIT_LIST_HEAD(&dev->mode_config.fb_list);
3873 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
3874 INIT_LIST_HEAD(&dev->mode_config.connector_list);
3875 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
3876 INIT_LIST_HEAD(&dev->mode_config.property_list);
3877 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
3878 INIT_LIST_HEAD(&dev->mode_config.plane_list);
3879 idr_init(&dev->mode_config.crtc_idr);
3880
3881 drm_modeset_lock_all(dev);
3882 drm_mode_create_standard_connector_properties(dev);
3883 drm_modeset_unlock_all(dev);
3884
3885 /* Just to be sure */
3886 dev->mode_config.num_fb = 0;
3887 dev->mode_config.num_connector = 0;
3888 dev->mode_config.num_crtc = 0;
3889 dev->mode_config.num_encoder = 0;
3890}
3891EXPORT_SYMBOL(drm_mode_config_init);
3892
3893/**
3894 * drm_mode_config_cleanup - free up DRM mode_config info
3895 * @dev: DRM device
3896 *
3897 * Free up all the connectors and CRTCs associated with this DRM device, then
3898 * free up the framebuffers and associated buffer objects.
3899 *
3900 * Note that since this /should/ happen single-threaded at driver/device
3901 * teardown time, no locking is required. It's the driver's job to ensure that
3902 * this guarantee actually holds true.
3903 *
3904 * FIXME: cleanup any dangling user buffer objects too
3905 */
3906void drm_mode_config_cleanup(struct drm_device *dev)
3907{
3908 struct drm_connector *connector, *ot;
3909 struct drm_crtc *crtc, *ct;
3910 struct drm_encoder *encoder, *enct;
3911 struct drm_framebuffer *fb, *fbt;
3912 struct drm_property *property, *pt;
3913 struct drm_property_blob *blob, *bt;
3914 struct drm_plane *plane, *plt;
3915
3916 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
3917 head) {
3918 encoder->funcs->destroy(encoder);
3919 }
3920
3921 list_for_each_entry_safe(connector, ot,
3922 &dev->mode_config.connector_list, head) {
3923 connector->funcs->destroy(connector);
3924 }
3925
3926 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
3927 head) {
3928 drm_property_destroy(dev, property);
3929 }
3930
3931 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
3932 head) {
3933 drm_property_destroy_blob(dev, blob);
3934 }
3935
3936 /*
3937 * Single-threaded teardown context, so it's not required to grab the
3938 * fb_lock to protect against concurrent fb_list access. Contrary, it
3939 * would actually deadlock with the drm_framebuffer_cleanup function.
3940 *
3941 * Also, if there are any framebuffers left, that's a driver leak now,
3942 * so politely WARN about this.
3943 */
3944 WARN_ON(!list_empty(&dev->mode_config.fb_list));
3945 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
3946 drm_framebuffer_remove(fb);
3947 }
3948
3949 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
3950 head) {
3951 plane->funcs->destroy(plane);
3952 }
3953
3954 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
3955 crtc->funcs->destroy(crtc);
3956 }
3957
3958 idr_destroy(&dev->mode_config.crtc_idr);
3959}
3960EXPORT_SYMBOL(drm_mode_config_cleanup);