blob: c8042a1c83b85ee7975673d7e1572a12b5e61ab1 [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
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800822int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
823 unsigned long possible_crtcs,
824 const struct drm_plane_funcs *funcs,
Rob Clark0a7eb242011-12-13 20:19:36 -0600825 const uint32_t *formats, uint32_t format_count,
826 bool priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800827{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200828 int ret;
829
Daniel Vetter84849902012-12-02 00:28:11 +0100830 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800831
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200832 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
833 if (ret)
834 goto out;
835
Rob Clark4d939142012-05-17 02:23:27 -0600836 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800837 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800838 plane->funcs = funcs;
839 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
840 GFP_KERNEL);
841 if (!plane->format_types) {
842 DRM_DEBUG_KMS("out of memory when allocating plane\n");
843 drm_mode_object_put(dev, &plane->base);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200844 ret = -ENOMEM;
845 goto out;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800846 }
847
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800848 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800849 plane->format_count = format_count;
850 plane->possible_crtcs = possible_crtcs;
851
Rob Clark0a7eb242011-12-13 20:19:36 -0600852 /* private planes are not exposed to userspace, but depending on
853 * display hardware, might be convenient to allow sharing programming
854 * for the scanout engine with the crtc implementation.
855 */
856 if (!priv) {
857 list_add_tail(&plane->head, &dev->mode_config.plane_list);
858 dev->mode_config.num_plane++;
859 } else {
860 INIT_LIST_HEAD(&plane->head);
861 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800862
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200863 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100864 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800865
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200866 return ret;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800867}
868EXPORT_SYMBOL(drm_plane_init);
869
870void drm_plane_cleanup(struct drm_plane *plane)
871{
872 struct drm_device *dev = plane->dev;
873
Daniel Vetter84849902012-12-02 00:28:11 +0100874 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800875 kfree(plane->format_types);
876 drm_mode_object_put(dev, &plane->base);
Rob Clark0a7eb242011-12-13 20:19:36 -0600877 /* if not added to a list, it must be a private plane */
878 if (!list_empty(&plane->head)) {
879 list_del(&plane->head);
880 dev->mode_config.num_plane--;
881 }
Daniel Vetter84849902012-12-02 00:28:11 +0100882 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800883}
884EXPORT_SYMBOL(drm_plane_cleanup);
885
Ville Syrjälä9125e612013-06-03 16:10:40 +0300886void drm_plane_force_disable(struct drm_plane *plane)
887{
888 int ret;
889
890 if (!plane->fb)
891 return;
892
893 ret = plane->funcs->disable_plane(plane);
894 if (ret)
895 DRM_ERROR("failed to disable plane with busy fb\n");
896 /* disconnect the plane from the fb and crtc: */
897 __drm_framebuffer_unreference(plane->fb);
898 plane->fb = NULL;
899 plane->crtc = NULL;
900}
901EXPORT_SYMBOL(drm_plane_force_disable);
902
Dave Airlief453ba02008-11-07 14:05:41 -0800903/**
904 * drm_mode_create - create a new display mode
905 * @dev: DRM device
906 *
Dave Airlief453ba02008-11-07 14:05:41 -0800907 * Create a new drm_display_mode, give it an ID, and return it.
908 *
909 * RETURNS:
910 * Pointer to new mode on success, NULL on error.
911 */
912struct drm_display_mode *drm_mode_create(struct drm_device *dev)
913{
914 struct drm_display_mode *nmode;
915
916 nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL);
917 if (!nmode)
918 return NULL;
919
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200920 if (drm_mode_object_get(dev, &nmode->base, DRM_MODE_OBJECT_MODE)) {
921 kfree(nmode);
922 return NULL;
923 }
924
Dave Airlief453ba02008-11-07 14:05:41 -0800925 return nmode;
926}
927EXPORT_SYMBOL(drm_mode_create);
928
929/**
930 * drm_mode_destroy - remove a mode
931 * @dev: DRM device
932 * @mode: mode to remove
933 *
Dave Airlief453ba02008-11-07 14:05:41 -0800934 * Free @mode's unique identifier, then free it.
935 */
936void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode)
937{
Ville Syrjäläee34ab52012-03-13 12:35:43 +0200938 if (!mode)
939 return;
940
Dave Airlief453ba02008-11-07 14:05:41 -0800941 drm_mode_object_put(dev, &mode->base);
942
943 kfree(mode);
944}
945EXPORT_SYMBOL(drm_mode_destroy);
946
947static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
948{
949 struct drm_property *edid;
950 struct drm_property *dpms;
Dave Airlief453ba02008-11-07 14:05:41 -0800951
952 /*
953 * Standard properties (apply to all connectors)
954 */
955 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
956 DRM_MODE_PROP_IMMUTABLE,
957 "EDID", 0);
958 dev->mode_config.edid_property = edid;
959
Sascha Hauer4a67d392012-02-06 10:58:17 +0100960 dpms = drm_property_create_enum(dev, 0,
961 "DPMS", drm_dpms_enum_list,
962 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800963 dev->mode_config.dpms_property = dpms;
964
965 return 0;
966}
967
968/**
969 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
970 * @dev: DRM device
971 *
972 * Called by a driver the first time a DVI-I connector is made.
973 */
974int drm_mode_create_dvi_i_properties(struct drm_device *dev)
975{
976 struct drm_property *dvi_i_selector;
977 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -0800978
979 if (dev->mode_config.dvi_i_select_subconnector_property)
980 return 0;
981
982 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +0100983 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -0800984 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +0100985 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800986 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800987 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
988
Sascha Hauer4a67d392012-02-06 10:58:17 +0100989 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -0800990 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +0100991 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800992 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800993 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
994
995 return 0;
996}
997EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
998
999/**
1000 * drm_create_tv_properties - create TV specific connector properties
1001 * @dev: DRM device
1002 * @num_modes: number of different TV formats (modes) supported
1003 * @modes: array of pointers to strings containing name of each format
1004 *
1005 * Called by a driver's TV initialization routine, this function creates
1006 * the TV specific connector properties for a given device. Caller is
1007 * responsible for allocating a list of format names and passing them to
1008 * this routine.
1009 */
1010int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1011 char *modes[])
1012{
1013 struct drm_property *tv_selector;
1014 struct drm_property *tv_subconnector;
1015 int i;
1016
1017 if (dev->mode_config.tv_select_subconnector_property)
1018 return 0;
1019
1020 /*
1021 * Basic connector properties
1022 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001023 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001024 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001025 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001026 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001027 dev->mode_config.tv_select_subconnector_property = tv_selector;
1028
1029 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001030 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1031 "subconnector",
1032 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001033 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001034 dev->mode_config.tv_subconnector_property = tv_subconnector;
1035
1036 /*
1037 * Other, TV specific properties: margins & TV modes.
1038 */
1039 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001040 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001041
1042 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001043 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001044
1045 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001046 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001047
1048 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001049 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001050
1051 dev->mode_config.tv_mode_property =
1052 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1053 "mode", num_modes);
1054 for (i = 0; i < num_modes; i++)
1055 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1056 i, modes[i]);
1057
Francisco Jerezb6b79022009-08-02 04:19:20 +02001058 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001059 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001060
1061 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001062 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001063
1064 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001065 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001066
Francisco Jereza75f0232009-08-12 02:30:10 +02001067 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001068 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001069
1070 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001071 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001072
1073 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001074 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001075
Dave Airlief453ba02008-11-07 14:05:41 -08001076 return 0;
1077}
1078EXPORT_SYMBOL(drm_mode_create_tv_properties);
1079
1080/**
1081 * drm_mode_create_scaling_mode_property - create scaling mode property
1082 * @dev: DRM device
1083 *
1084 * Called by a driver the first time it's needed, must be attached to desired
1085 * connectors.
1086 */
1087int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1088{
1089 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001090
1091 if (dev->mode_config.scaling_mode_property)
1092 return 0;
1093
1094 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001095 drm_property_create_enum(dev, 0, "scaling mode",
1096 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001097 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001098
1099 dev->mode_config.scaling_mode_property = scaling_mode;
1100
1101 return 0;
1102}
1103EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1104
1105/**
1106 * drm_mode_create_dithering_property - create dithering property
1107 * @dev: DRM device
1108 *
1109 * Called by a driver the first time it's needed, must be attached to desired
1110 * connectors.
1111 */
1112int drm_mode_create_dithering_property(struct drm_device *dev)
1113{
1114 struct drm_property *dithering_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001115
1116 if (dev->mode_config.dithering_mode_property)
1117 return 0;
1118
1119 dithering_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001120 drm_property_create_enum(dev, 0, "dithering",
1121 drm_dithering_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001122 ARRAY_SIZE(drm_dithering_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001123 dev->mode_config.dithering_mode_property = dithering_mode;
1124
1125 return 0;
1126}
1127EXPORT_SYMBOL(drm_mode_create_dithering_property);
1128
1129/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001130 * drm_mode_create_dirty_property - create dirty property
1131 * @dev: DRM device
1132 *
1133 * Called by a driver the first time it's needed, must be attached to desired
1134 * connectors.
1135 */
1136int drm_mode_create_dirty_info_property(struct drm_device *dev)
1137{
1138 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001139
1140 if (dev->mode_config.dirty_info_property)
1141 return 0;
1142
1143 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001144 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001145 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001146 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001147 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001148 dev->mode_config.dirty_info_property = dirty_info;
1149
1150 return 0;
1151}
1152EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1153
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001154static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001155{
1156 uint32_t total_objects = 0;
1157
1158 total_objects += dev->mode_config.num_crtc;
1159 total_objects += dev->mode_config.num_connector;
1160 total_objects += dev->mode_config.num_encoder;
1161
Dave Airlief453ba02008-11-07 14:05:41 -08001162 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1163 if (!group->id_list)
1164 return -ENOMEM;
1165
1166 group->num_crtcs = 0;
1167 group->num_connectors = 0;
1168 group->num_encoders = 0;
1169 return 0;
1170}
1171
1172int drm_mode_group_init_legacy_group(struct drm_device *dev,
1173 struct drm_mode_group *group)
1174{
1175 struct drm_crtc *crtc;
1176 struct drm_encoder *encoder;
1177 struct drm_connector *connector;
1178 int ret;
1179
1180 if ((ret = drm_mode_group_init(dev, group)))
1181 return ret;
1182
1183 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1184 group->id_list[group->num_crtcs++] = crtc->base.id;
1185
1186 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1187 group->id_list[group->num_crtcs + group->num_encoders++] =
1188 encoder->base.id;
1189
1190 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1191 group->id_list[group->num_crtcs + group->num_encoders +
1192 group->num_connectors++] = connector->base.id;
1193
1194 return 0;
1195}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001196EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001197
1198/**
Dave Airlief453ba02008-11-07 14:05:41 -08001199 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1200 * @out: drm_mode_modeinfo struct to return to the user
1201 * @in: drm_display_mode to use
1202 *
Dave Airlief453ba02008-11-07 14:05:41 -08001203 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1204 * the user.
1205 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001206static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1207 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001208{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001209 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1210 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1211 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1212 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1213 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1214 "timing values too large for mode info\n");
1215
Dave Airlief453ba02008-11-07 14:05:41 -08001216 out->clock = in->clock;
1217 out->hdisplay = in->hdisplay;
1218 out->hsync_start = in->hsync_start;
1219 out->hsync_end = in->hsync_end;
1220 out->htotal = in->htotal;
1221 out->hskew = in->hskew;
1222 out->vdisplay = in->vdisplay;
1223 out->vsync_start = in->vsync_start;
1224 out->vsync_end = in->vsync_end;
1225 out->vtotal = in->vtotal;
1226 out->vscan = in->vscan;
1227 out->vrefresh = in->vrefresh;
1228 out->flags = in->flags;
1229 out->type = in->type;
1230 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1231 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1232}
1233
1234/**
1235 * drm_crtc_convert_to_umode - convert a modeinfo into a drm_display_mode
1236 * @out: drm_display_mode to return to the user
1237 * @in: drm_mode_modeinfo to use
1238 *
Dave Airlief453ba02008-11-07 14:05:41 -08001239 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1240 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001241 *
1242 * RETURNS:
1243 * Zero on success, errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001244 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001245static int drm_crtc_convert_umode(struct drm_display_mode *out,
1246 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001247{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001248 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1249 return -ERANGE;
1250
Dave Airlief453ba02008-11-07 14:05:41 -08001251 out->clock = in->clock;
1252 out->hdisplay = in->hdisplay;
1253 out->hsync_start = in->hsync_start;
1254 out->hsync_end = in->hsync_end;
1255 out->htotal = in->htotal;
1256 out->hskew = in->hskew;
1257 out->vdisplay = in->vdisplay;
1258 out->vsync_start = in->vsync_start;
1259 out->vsync_end = in->vsync_end;
1260 out->vtotal = in->vtotal;
1261 out->vscan = in->vscan;
1262 out->vrefresh = in->vrefresh;
1263 out->flags = in->flags;
1264 out->type = in->type;
1265 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1266 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001267
1268 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001269}
1270
1271/**
1272 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001273 * @dev: drm device for the ioctl
1274 * @data: data pointer for the ioctl
1275 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001276 *
Dave Airlief453ba02008-11-07 14:05:41 -08001277 * Construct a set of configuration description structures and return
1278 * them to the user, including CRTC, connector and framebuffer configuration.
1279 *
1280 * Called by the user via ioctl.
1281 *
1282 * RETURNS:
1283 * Zero on success, errno on failure.
1284 */
1285int drm_mode_getresources(struct drm_device *dev, void *data,
1286 struct drm_file *file_priv)
1287{
1288 struct drm_mode_card_res *card_res = data;
1289 struct list_head *lh;
1290 struct drm_framebuffer *fb;
1291 struct drm_connector *connector;
1292 struct drm_crtc *crtc;
1293 struct drm_encoder *encoder;
1294 int ret = 0;
1295 int connector_count = 0;
1296 int crtc_count = 0;
1297 int fb_count = 0;
1298 int encoder_count = 0;
1299 int copied = 0, i;
1300 uint32_t __user *fb_id;
1301 uint32_t __user *crtc_id;
1302 uint32_t __user *connector_id;
1303 uint32_t __user *encoder_id;
1304 struct drm_mode_group *mode_group;
1305
Dave Airliefb3b06c2011-02-08 13:55:21 +10001306 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1307 return -EINVAL;
1308
Dave Airlief453ba02008-11-07 14:05:41 -08001309
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001310 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001311 /*
1312 * For the non-control nodes we need to limit the list of resources
1313 * by IDs in the group list for this node
1314 */
1315 list_for_each(lh, &file_priv->fbs)
1316 fb_count++;
1317
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001318 /* handle this in 4 parts */
1319 /* FBs */
1320 if (card_res->count_fbs >= fb_count) {
1321 copied = 0;
1322 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1323 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1324 if (put_user(fb->base.id, fb_id + copied)) {
1325 mutex_unlock(&file_priv->fbs_lock);
1326 return -EFAULT;
1327 }
1328 copied++;
1329 }
1330 }
1331 card_res->count_fbs = fb_count;
1332 mutex_unlock(&file_priv->fbs_lock);
1333
1334 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001335 mode_group = &file_priv->master->minor->mode_group;
1336 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1337
1338 list_for_each(lh, &dev->mode_config.crtc_list)
1339 crtc_count++;
1340
1341 list_for_each(lh, &dev->mode_config.connector_list)
1342 connector_count++;
1343
1344 list_for_each(lh, &dev->mode_config.encoder_list)
1345 encoder_count++;
1346 } else {
1347
1348 crtc_count = mode_group->num_crtcs;
1349 connector_count = mode_group->num_connectors;
1350 encoder_count = mode_group->num_encoders;
1351 }
1352
1353 card_res->max_height = dev->mode_config.max_height;
1354 card_res->min_height = dev->mode_config.min_height;
1355 card_res->max_width = dev->mode_config.max_width;
1356 card_res->min_width = dev->mode_config.min_width;
1357
Dave Airlief453ba02008-11-07 14:05:41 -08001358 /* CRTCs */
1359 if (card_res->count_crtcs >= crtc_count) {
1360 copied = 0;
1361 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1362 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1363 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1364 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001365 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001366 if (put_user(crtc->base.id, crtc_id + copied)) {
1367 ret = -EFAULT;
1368 goto out;
1369 }
1370 copied++;
1371 }
1372 } else {
1373 for (i = 0; i < mode_group->num_crtcs; i++) {
1374 if (put_user(mode_group->id_list[i],
1375 crtc_id + copied)) {
1376 ret = -EFAULT;
1377 goto out;
1378 }
1379 copied++;
1380 }
1381 }
1382 }
1383 card_res->count_crtcs = crtc_count;
1384
1385 /* Encoders */
1386 if (card_res->count_encoders >= encoder_count) {
1387 copied = 0;
1388 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1389 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1390 list_for_each_entry(encoder,
1391 &dev->mode_config.encoder_list,
1392 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001393 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1394 drm_get_encoder_name(encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001395 if (put_user(encoder->base.id, encoder_id +
1396 copied)) {
1397 ret = -EFAULT;
1398 goto out;
1399 }
1400 copied++;
1401 }
1402 } else {
1403 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1404 if (put_user(mode_group->id_list[i],
1405 encoder_id + copied)) {
1406 ret = -EFAULT;
1407 goto out;
1408 }
1409 copied++;
1410 }
1411
1412 }
1413 }
1414 card_res->count_encoders = encoder_count;
1415
1416 /* Connectors */
1417 if (card_res->count_connectors >= connector_count) {
1418 copied = 0;
1419 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1420 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1421 list_for_each_entry(connector,
1422 &dev->mode_config.connector_list,
1423 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001424 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1425 connector->base.id,
1426 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08001427 if (put_user(connector->base.id,
1428 connector_id + copied)) {
1429 ret = -EFAULT;
1430 goto out;
1431 }
1432 copied++;
1433 }
1434 } else {
1435 int start = mode_group->num_crtcs +
1436 mode_group->num_encoders;
1437 for (i = start; i < start + mode_group->num_connectors; i++) {
1438 if (put_user(mode_group->id_list[i],
1439 connector_id + copied)) {
1440 ret = -EFAULT;
1441 goto out;
1442 }
1443 copied++;
1444 }
1445 }
1446 }
1447 card_res->count_connectors = connector_count;
1448
Jerome Glisse94401062010-07-15 15:43:25 -04001449 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001450 card_res->count_connectors, card_res->count_encoders);
1451
1452out:
Daniel Vetter84849902012-12-02 00:28:11 +01001453 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001454 return ret;
1455}
1456
1457/**
1458 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001459 * @dev: drm device for the ioctl
1460 * @data: data pointer for the ioctl
1461 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001462 *
Dave Airlief453ba02008-11-07 14:05:41 -08001463 * Construct a CRTC configuration structure to return to the user.
1464 *
1465 * Called by the user via ioctl.
1466 *
1467 * RETURNS:
1468 * Zero on success, errno on failure.
1469 */
1470int drm_mode_getcrtc(struct drm_device *dev,
1471 void *data, struct drm_file *file_priv)
1472{
1473 struct drm_mode_crtc *crtc_resp = data;
1474 struct drm_crtc *crtc;
1475 struct drm_mode_object *obj;
1476 int ret = 0;
1477
Dave Airliefb3b06c2011-02-08 13:55:21 +10001478 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1479 return -EINVAL;
1480
Daniel Vetter84849902012-12-02 00:28:11 +01001481 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001482
1483 obj = drm_mode_object_find(dev, crtc_resp->crtc_id,
1484 DRM_MODE_OBJECT_CRTC);
1485 if (!obj) {
1486 ret = -EINVAL;
1487 goto out;
1488 }
1489 crtc = obj_to_crtc(obj);
1490
1491 crtc_resp->x = crtc->x;
1492 crtc_resp->y = crtc->y;
1493 crtc_resp->gamma_size = crtc->gamma_size;
1494 if (crtc->fb)
1495 crtc_resp->fb_id = crtc->fb->base.id;
1496 else
1497 crtc_resp->fb_id = 0;
1498
1499 if (crtc->enabled) {
1500
1501 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1502 crtc_resp->mode_valid = 1;
1503
1504 } else {
1505 crtc_resp->mode_valid = 0;
1506 }
1507
1508out:
Daniel Vetter84849902012-12-02 00:28:11 +01001509 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001510 return ret;
1511}
1512
1513/**
1514 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001515 * @dev: drm device for the ioctl
1516 * @data: data pointer for the ioctl
1517 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001518 *
Dave Airlief453ba02008-11-07 14:05:41 -08001519 * Construct a connector configuration structure to return to the user.
1520 *
1521 * Called by the user via ioctl.
1522 *
1523 * RETURNS:
1524 * Zero on success, errno on failure.
1525 */
1526int drm_mode_getconnector(struct drm_device *dev, void *data,
1527 struct drm_file *file_priv)
1528{
1529 struct drm_mode_get_connector *out_resp = data;
1530 struct drm_mode_object *obj;
1531 struct drm_connector *connector;
1532 struct drm_display_mode *mode;
1533 int mode_count = 0;
1534 int props_count = 0;
1535 int encoders_count = 0;
1536 int ret = 0;
1537 int copied = 0;
1538 int i;
1539 struct drm_mode_modeinfo u_mode;
1540 struct drm_mode_modeinfo __user *mode_ptr;
1541 uint32_t __user *prop_ptr;
1542 uint64_t __user *prop_values;
1543 uint32_t __user *encoder_ptr;
1544
Dave Airliefb3b06c2011-02-08 13:55:21 +10001545 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1546 return -EINVAL;
1547
Dave Airlief453ba02008-11-07 14:05:41 -08001548 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1549
Jerome Glisse94401062010-07-15 15:43:25 -04001550 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001551
Daniel Vetter7b240562012-12-12 00:35:33 +01001552 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001553
1554 obj = drm_mode_object_find(dev, out_resp->connector_id,
1555 DRM_MODE_OBJECT_CONNECTOR);
1556 if (!obj) {
1557 ret = -EINVAL;
1558 goto out;
1559 }
1560 connector = obj_to_connector(obj);
1561
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001562 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08001563
1564 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1565 if (connector->encoder_ids[i] != 0) {
1566 encoders_count++;
1567 }
1568 }
1569
1570 if (out_resp->count_modes == 0) {
1571 connector->funcs->fill_modes(connector,
1572 dev->mode_config.max_width,
1573 dev->mode_config.max_height);
1574 }
1575
1576 /* delayed so we get modes regardless of pre-fill_modes state */
1577 list_for_each_entry(mode, &connector->modes, head)
1578 mode_count++;
1579
1580 out_resp->connector_id = connector->base.id;
1581 out_resp->connector_type = connector->connector_type;
1582 out_resp->connector_type_id = connector->connector_type_id;
1583 out_resp->mm_width = connector->display_info.width_mm;
1584 out_resp->mm_height = connector->display_info.height_mm;
1585 out_resp->subpixel = connector->display_info.subpixel_order;
1586 out_resp->connection = connector->status;
1587 if (connector->encoder)
1588 out_resp->encoder_id = connector->encoder->base.id;
1589 else
1590 out_resp->encoder_id = 0;
1591
1592 /*
1593 * This ioctl is called twice, once to determine how much space is
1594 * needed, and the 2nd time to fill it.
1595 */
1596 if ((out_resp->count_modes >= mode_count) && mode_count) {
1597 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001598 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001599 list_for_each_entry(mode, &connector->modes, head) {
1600 drm_crtc_convert_to_umode(&u_mode, mode);
1601 if (copy_to_user(mode_ptr + copied,
1602 &u_mode, sizeof(u_mode))) {
1603 ret = -EFAULT;
1604 goto out;
1605 }
1606 copied++;
1607 }
1608 }
1609 out_resp->count_modes = mode_count;
1610
1611 if ((out_resp->count_props >= props_count) && props_count) {
1612 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001613 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1614 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001615 for (i = 0; i < connector->properties.count; i++) {
1616 if (put_user(connector->properties.ids[i],
1617 prop_ptr + copied)) {
1618 ret = -EFAULT;
1619 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001620 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001621
1622 if (put_user(connector->properties.values[i],
1623 prop_values + copied)) {
1624 ret = -EFAULT;
1625 goto out;
1626 }
1627 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001628 }
1629 }
1630 out_resp->count_props = props_count;
1631
1632 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1633 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001634 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08001635 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1636 if (connector->encoder_ids[i] != 0) {
1637 if (put_user(connector->encoder_ids[i],
1638 encoder_ptr + copied)) {
1639 ret = -EFAULT;
1640 goto out;
1641 }
1642 copied++;
1643 }
1644 }
1645 }
1646 out_resp->count_encoders = encoders_count;
1647
1648out:
Daniel Vetter7b240562012-12-12 00:35:33 +01001649 mutex_unlock(&dev->mode_config.mutex);
1650
Dave Airlief453ba02008-11-07 14:05:41 -08001651 return ret;
1652}
1653
1654int drm_mode_getencoder(struct drm_device *dev, void *data,
1655 struct drm_file *file_priv)
1656{
1657 struct drm_mode_get_encoder *enc_resp = data;
1658 struct drm_mode_object *obj;
1659 struct drm_encoder *encoder;
1660 int ret = 0;
1661
Dave Airliefb3b06c2011-02-08 13:55:21 +10001662 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1663 return -EINVAL;
1664
Daniel Vetter84849902012-12-02 00:28:11 +01001665 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001666 obj = drm_mode_object_find(dev, enc_resp->encoder_id,
1667 DRM_MODE_OBJECT_ENCODER);
1668 if (!obj) {
1669 ret = -EINVAL;
1670 goto out;
1671 }
1672 encoder = obj_to_encoder(obj);
1673
1674 if (encoder->crtc)
1675 enc_resp->crtc_id = encoder->crtc->base.id;
1676 else
1677 enc_resp->crtc_id = 0;
1678 enc_resp->encoder_type = encoder->encoder_type;
1679 enc_resp->encoder_id = encoder->base.id;
1680 enc_resp->possible_crtcs = encoder->possible_crtcs;
1681 enc_resp->possible_clones = encoder->possible_clones;
1682
1683out:
Daniel Vetter84849902012-12-02 00:28:11 +01001684 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001685 return ret;
1686}
1687
1688/**
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001689 * drm_mode_getplane_res - get plane info
1690 * @dev: DRM device
1691 * @data: ioctl data
1692 * @file_priv: DRM file info
1693 *
1694 * Return an plane count and set of IDs.
1695 */
1696int drm_mode_getplane_res(struct drm_device *dev, void *data,
1697 struct drm_file *file_priv)
1698{
1699 struct drm_mode_get_plane_res *plane_resp = data;
1700 struct drm_mode_config *config;
1701 struct drm_plane *plane;
1702 uint32_t __user *plane_ptr;
1703 int copied = 0, ret = 0;
1704
1705 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1706 return -EINVAL;
1707
Daniel Vetter84849902012-12-02 00:28:11 +01001708 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001709 config = &dev->mode_config;
1710
1711 /*
1712 * This ioctl is called twice, once to determine how much space is
1713 * needed, and the 2nd time to fill it.
1714 */
1715 if (config->num_plane &&
1716 (plane_resp->count_planes >= config->num_plane)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001717 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001718
1719 list_for_each_entry(plane, &config->plane_list, head) {
1720 if (put_user(plane->base.id, plane_ptr + copied)) {
1721 ret = -EFAULT;
1722 goto out;
1723 }
1724 copied++;
1725 }
1726 }
1727 plane_resp->count_planes = config->num_plane;
1728
1729out:
Daniel Vetter84849902012-12-02 00:28:11 +01001730 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001731 return ret;
1732}
1733
1734/**
1735 * drm_mode_getplane - get plane info
1736 * @dev: DRM device
1737 * @data: ioctl data
1738 * @file_priv: DRM file info
1739 *
1740 * Return plane info, including formats supported, gamma size, any
1741 * current fb, etc.
1742 */
1743int drm_mode_getplane(struct drm_device *dev, void *data,
1744 struct drm_file *file_priv)
1745{
1746 struct drm_mode_get_plane *plane_resp = data;
1747 struct drm_mode_object *obj;
1748 struct drm_plane *plane;
1749 uint32_t __user *format_ptr;
1750 int ret = 0;
1751
1752 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1753 return -EINVAL;
1754
Daniel Vetter84849902012-12-02 00:28:11 +01001755 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001756 obj = drm_mode_object_find(dev, plane_resp->plane_id,
1757 DRM_MODE_OBJECT_PLANE);
1758 if (!obj) {
1759 ret = -ENOENT;
1760 goto out;
1761 }
1762 plane = obj_to_plane(obj);
1763
1764 if (plane->crtc)
1765 plane_resp->crtc_id = plane->crtc->base.id;
1766 else
1767 plane_resp->crtc_id = 0;
1768
1769 if (plane->fb)
1770 plane_resp->fb_id = plane->fb->base.id;
1771 else
1772 plane_resp->fb_id = 0;
1773
1774 plane_resp->plane_id = plane->base.id;
1775 plane_resp->possible_crtcs = plane->possible_crtcs;
1776 plane_resp->gamma_size = plane->gamma_size;
1777
1778 /*
1779 * This ioctl is called twice, once to determine how much space is
1780 * needed, and the 2nd time to fill it.
1781 */
1782 if (plane->format_count &&
1783 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001784 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001785 if (copy_to_user(format_ptr,
1786 plane->format_types,
1787 sizeof(uint32_t) * plane->format_count)) {
1788 ret = -EFAULT;
1789 goto out;
1790 }
1791 }
1792 plane_resp->count_format_types = plane->format_count;
1793
1794out:
Daniel Vetter84849902012-12-02 00:28:11 +01001795 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001796 return ret;
1797}
1798
1799/**
1800 * drm_mode_setplane - set up or tear down an plane
1801 * @dev: DRM device
1802 * @data: ioctl data*
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001803 * @file_priv: DRM file info
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001804 *
1805 * Set plane info, including placement, fb, scaling, and other factors.
1806 * Or pass a NULL fb to disable.
1807 */
1808int drm_mode_setplane(struct drm_device *dev, void *data,
1809 struct drm_file *file_priv)
1810{
1811 struct drm_mode_set_plane *plane_req = data;
1812 struct drm_mode_object *obj;
1813 struct drm_plane *plane;
1814 struct drm_crtc *crtc;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001815 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001816 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02001817 unsigned int fb_width, fb_height;
Ville Syrjälä62443be2011-12-20 00:06:47 +02001818 int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001819
1820 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1821 return -EINVAL;
1822
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001823 /*
1824 * First, find the plane, crtc, and fb objects. If not available,
1825 * we don't bother to call the driver.
1826 */
1827 obj = drm_mode_object_find(dev, plane_req->plane_id,
1828 DRM_MODE_OBJECT_PLANE);
1829 if (!obj) {
1830 DRM_DEBUG_KMS("Unknown plane ID %d\n",
1831 plane_req->plane_id);
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001832 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001833 }
1834 plane = obj_to_plane(obj);
1835
1836 /* No fb means shut it down */
1837 if (!plane_req->fb_id) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001838 drm_modeset_lock_all(dev);
1839 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001840 plane->funcs->disable_plane(plane);
Ville Syrjäläe5e3b442011-12-20 00:06:43 +02001841 plane->crtc = NULL;
1842 plane->fb = NULL;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001843 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001844 goto out;
1845 }
1846
1847 obj = drm_mode_object_find(dev, plane_req->crtc_id,
1848 DRM_MODE_OBJECT_CRTC);
1849 if (!obj) {
1850 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
1851 plane_req->crtc_id);
1852 ret = -ENOENT;
1853 goto out;
1854 }
1855 crtc = obj_to_crtc(obj);
1856
Daniel Vetter786b99e2012-12-02 21:53:40 +01001857 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
1858 if (!fb) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001859 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
1860 plane_req->fb_id);
1861 ret = -ENOENT;
1862 goto out;
1863 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001864
Ville Syrjälä62443be2011-12-20 00:06:47 +02001865 /* Check whether this plane supports the fb pixel format. */
1866 for (i = 0; i < plane->format_count; i++)
1867 if (fb->pixel_format == plane->format_types[i])
1868 break;
1869 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03001870 DRM_DEBUG_KMS("Invalid pixel format %s\n",
1871 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02001872 ret = -EINVAL;
1873 goto out;
1874 }
1875
Ville Syrjälä42ef8782011-12-20 00:06:44 +02001876 fb_width = fb->width << 16;
1877 fb_height = fb->height << 16;
1878
1879 /* Make sure source coordinates are inside the fb. */
1880 if (plane_req->src_w > fb_width ||
1881 plane_req->src_x > fb_width - plane_req->src_w ||
1882 plane_req->src_h > fb_height ||
1883 plane_req->src_y > fb_height - plane_req->src_h) {
1884 DRM_DEBUG_KMS("Invalid source coordinates "
1885 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
1886 plane_req->src_w >> 16,
1887 ((plane_req->src_w & 0xffff) * 15625) >> 10,
1888 plane_req->src_h >> 16,
1889 ((plane_req->src_h & 0xffff) * 15625) >> 10,
1890 plane_req->src_x >> 16,
1891 ((plane_req->src_x & 0xffff) * 15625) >> 10,
1892 plane_req->src_y >> 16,
1893 ((plane_req->src_y & 0xffff) * 15625) >> 10);
1894 ret = -ENOSPC;
1895 goto out;
1896 }
1897
Ville Syrjälä687a0402011-12-20 00:06:45 +02001898 /* Give drivers some help against integer overflows */
1899 if (plane_req->crtc_w > INT_MAX ||
1900 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
1901 plane_req->crtc_h > INT_MAX ||
1902 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
1903 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
1904 plane_req->crtc_w, plane_req->crtc_h,
1905 plane_req->crtc_x, plane_req->crtc_y);
1906 ret = -ERANGE;
1907 goto out;
1908 }
1909
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001910 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001911 ret = plane->funcs->update_plane(plane, crtc, fb,
1912 plane_req->crtc_x, plane_req->crtc_y,
1913 plane_req->crtc_w, plane_req->crtc_h,
1914 plane_req->src_x, plane_req->src_y,
1915 plane_req->src_w, plane_req->src_h);
1916 if (!ret) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001917 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001918 plane->crtc = crtc;
1919 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01001920 fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001921 }
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001922 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001923
1924out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01001925 if (fb)
1926 drm_framebuffer_unreference(fb);
1927 if (old_fb)
1928 drm_framebuffer_unreference(old_fb);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001929
1930 return ret;
1931}
1932
1933/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01001934 * drm_mode_set_config_internal - helper to call ->set_config
1935 * @set: modeset config to set
1936 *
1937 * This is a little helper to wrap internal calls to the ->set_config driver
1938 * interface. The only thing it adds is correct refcounting dance.
1939 */
1940int drm_mode_set_config_internal(struct drm_mode_set *set)
1941{
1942 struct drm_crtc *crtc = set->crtc;
Daniel Vetterb0d12322012-12-11 01:07:12 +01001943 struct drm_framebuffer *fb, *old_fb;
1944 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01001945
Daniel Vetterb0d12322012-12-11 01:07:12 +01001946 old_fb = crtc->fb;
1947 fb = set->fb;
1948
1949 ret = crtc->funcs->set_config(set);
1950 if (ret == 0) {
1951 if (old_fb)
1952 drm_framebuffer_unreference(old_fb);
1953 if (fb)
1954 drm_framebuffer_reference(fb);
1955 }
1956
1957 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01001958}
1959EXPORT_SYMBOL(drm_mode_set_config_internal);
1960
1961/**
Dave Airlief453ba02008-11-07 14:05:41 -08001962 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001963 * @dev: drm device for the ioctl
1964 * @data: data pointer for the ioctl
1965 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001966 *
Dave Airlief453ba02008-11-07 14:05:41 -08001967 * Build a new CRTC configuration based on user request.
1968 *
1969 * Called by the user via ioctl.
1970 *
1971 * RETURNS:
1972 * Zero on success, errno on failure.
1973 */
1974int drm_mode_setcrtc(struct drm_device *dev, void *data,
1975 struct drm_file *file_priv)
1976{
1977 struct drm_mode_config *config = &dev->mode_config;
1978 struct drm_mode_crtc *crtc_req = data;
1979 struct drm_mode_object *obj;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02001980 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001981 struct drm_connector **connector_set = NULL, *connector;
1982 struct drm_framebuffer *fb = NULL;
1983 struct drm_display_mode *mode = NULL;
1984 struct drm_mode_set set;
1985 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001986 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001987 int i;
1988
Dave Airliefb3b06c2011-02-08 13:55:21 +10001989 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1990 return -EINVAL;
1991
Ville Syrjälä1d97e912012-03-13 12:35:41 +02001992 /* For some reason crtc x/y offsets are signed internally. */
1993 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
1994 return -ERANGE;
1995
Daniel Vetter84849902012-12-02 00:28:11 +01001996 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001997 obj = drm_mode_object_find(dev, crtc_req->crtc_id,
1998 DRM_MODE_OBJECT_CRTC);
1999 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002000 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002001 ret = -EINVAL;
2002 goto out;
2003 }
2004 crtc = obj_to_crtc(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002005 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002006
2007 if (crtc_req->mode_valid) {
Rob Clark7c80e122012-09-04 16:35:56 +00002008 int hdisplay, vdisplay;
Dave Airlief453ba02008-11-07 14:05:41 -08002009 /* If we have a mode we need a framebuffer. */
2010 /* If we pass -1, set the mode with the currently bound fb */
2011 if (crtc_req->fb_id == -1) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002012 if (!crtc->fb) {
2013 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2014 ret = -EINVAL;
2015 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002016 }
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002017 fb = crtc->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002018 /* Make refcounting symmetric with the lookup path. */
2019 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002020 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002021 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2022 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002023 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2024 crtc_req->fb_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002025 ret = -EINVAL;
2026 goto out;
2027 }
Dave Airlief453ba02008-11-07 14:05:41 -08002028 }
2029
2030 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002031 if (!mode) {
2032 ret = -ENOMEM;
2033 goto out;
2034 }
2035
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002036 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2037 if (ret) {
2038 DRM_DEBUG_KMS("Invalid mode\n");
2039 goto out;
2040 }
2041
Dave Airlief453ba02008-11-07 14:05:41 -08002042 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002043
Rob Clark7c80e122012-09-04 16:35:56 +00002044 hdisplay = mode->hdisplay;
2045 vdisplay = mode->vdisplay;
2046
2047 if (crtc->invert_dimensions)
2048 swap(hdisplay, vdisplay);
2049
2050 if (hdisplay > fb->width ||
2051 vdisplay > fb->height ||
2052 crtc_req->x > fb->width - hdisplay ||
2053 crtc_req->y > fb->height - vdisplay) {
2054 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2055 fb->width, fb->height,
2056 hdisplay, vdisplay, crtc_req->x, crtc_req->y,
2057 crtc->invert_dimensions ? " (inverted)" : "");
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002058 ret = -ENOSPC;
2059 goto out;
2060 }
Dave Airlief453ba02008-11-07 14:05:41 -08002061 }
2062
2063 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002064 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002065 ret = -EINVAL;
2066 goto out;
2067 }
2068
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002069 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002070 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002071 crtc_req->count_connectors);
2072 ret = -EINVAL;
2073 goto out;
2074 }
2075
2076 if (crtc_req->count_connectors > 0) {
2077 u32 out_id;
2078
2079 /* Avoid unbounded kernel memory allocation */
2080 if (crtc_req->count_connectors > config->num_connector) {
2081 ret = -EINVAL;
2082 goto out;
2083 }
2084
2085 connector_set = kmalloc(crtc_req->count_connectors *
2086 sizeof(struct drm_connector *),
2087 GFP_KERNEL);
2088 if (!connector_set) {
2089 ret = -ENOMEM;
2090 goto out;
2091 }
2092
2093 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002094 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002095 if (get_user(out_id, &set_connectors_ptr[i])) {
2096 ret = -EFAULT;
2097 goto out;
2098 }
2099
2100 obj = drm_mode_object_find(dev, out_id,
2101 DRM_MODE_OBJECT_CONNECTOR);
2102 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002103 DRM_DEBUG_KMS("Connector id %d unknown\n",
2104 out_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002105 ret = -EINVAL;
2106 goto out;
2107 }
2108 connector = obj_to_connector(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002109 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2110 connector->base.id,
2111 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08002112
2113 connector_set[i] = connector;
2114 }
2115 }
2116
2117 set.crtc = crtc;
2118 set.x = crtc_req->x;
2119 set.y = crtc_req->y;
2120 set.mode = mode;
2121 set.connectors = connector_set;
2122 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002123 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002124 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002125
2126out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002127 if (fb)
2128 drm_framebuffer_unreference(fb);
2129
Dave Airlief453ba02008-11-07 14:05:41 -08002130 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002131 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002132 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002133 return ret;
2134}
2135
2136int drm_mode_cursor_ioctl(struct drm_device *dev,
2137 void *data, struct drm_file *file_priv)
2138{
2139 struct drm_mode_cursor *req = data;
2140 struct drm_mode_object *obj;
2141 struct drm_crtc *crtc;
2142 int ret = 0;
2143
Dave Airliefb3b06c2011-02-08 13:55:21 +10002144 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2145 return -EINVAL;
2146
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002147 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002148 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002149
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002150 obj = drm_mode_object_find(dev, req->crtc_id, DRM_MODE_OBJECT_CRTC);
Dave Airlief453ba02008-11-07 14:05:41 -08002151 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002152 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Daniel Vetterdac35662012-12-02 15:24:10 +01002153 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002154 }
2155 crtc = obj_to_crtc(obj);
2156
Daniel Vetterdac35662012-12-02 15:24:10 +01002157 mutex_lock(&crtc->mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002158 if (req->flags & DRM_MODE_CURSOR_BO) {
2159 if (!crtc->funcs->cursor_set) {
Dave Airlief453ba02008-11-07 14:05:41 -08002160 ret = -ENXIO;
2161 goto out;
2162 }
2163 /* Turns off the cursor if handle is 0 */
2164 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2165 req->width, req->height);
2166 }
2167
2168 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2169 if (crtc->funcs->cursor_move) {
2170 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2171 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002172 ret = -EFAULT;
2173 goto out;
2174 }
2175 }
2176out:
Daniel Vetterdac35662012-12-02 15:24:10 +01002177 mutex_unlock(&crtc->mutex);
2178
Dave Airlief453ba02008-11-07 14:05:41 -08002179 return ret;
2180}
2181
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002182/* Original addfb only supported RGB formats, so figure out which one */
2183uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2184{
2185 uint32_t fmt;
2186
2187 switch (bpp) {
2188 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002189 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002190 break;
2191 case 16:
2192 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002193 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002194 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002195 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002196 break;
2197 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002198 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002199 break;
2200 case 32:
2201 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002202 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002203 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002204 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002205 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002206 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002207 break;
2208 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002209 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2210 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002211 break;
2212 }
2213
2214 return fmt;
2215}
2216EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2217
Dave Airlief453ba02008-11-07 14:05:41 -08002218/**
2219 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002220 * @dev: drm device for the ioctl
2221 * @data: data pointer for the ioctl
2222 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002223 *
Dave Airlief453ba02008-11-07 14:05:41 -08002224 * Add a new FB to the specified CRTC, given a user request.
2225 *
2226 * Called by the user via ioctl.
2227 *
2228 * RETURNS:
2229 * Zero on success, errno on failure.
2230 */
2231int drm_mode_addfb(struct drm_device *dev,
2232 void *data, struct drm_file *file_priv)
2233{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002234 struct drm_mode_fb_cmd *or = data;
2235 struct drm_mode_fb_cmd2 r = {};
2236 struct drm_mode_config *config = &dev->mode_config;
2237 struct drm_framebuffer *fb;
2238 int ret = 0;
2239
2240 /* Use new struct with format internally */
2241 r.fb_id = or->fb_id;
2242 r.width = or->width;
2243 r.height = or->height;
2244 r.pitches[0] = or->pitch;
2245 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2246 r.handles[0] = or->handle;
2247
2248 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2249 return -EINVAL;
2250
Jesse Barnesacb4b992011-11-07 12:03:23 -08002251 if ((config->min_width > r.width) || (r.width > config->max_width))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002252 return -EINVAL;
Jesse Barnesacb4b992011-11-07 12:03:23 -08002253
2254 if ((config->min_height > r.height) || (r.height > config->max_height))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002255 return -EINVAL;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002256
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002257 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2258 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002259 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002260 return PTR_ERR(fb);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002261 }
2262
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002263 mutex_lock(&file_priv->fbs_lock);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002264 or->fb_id = fb->base.id;
2265 list_add(&fb->filp_head, &file_priv->fbs);
2266 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002267 mutex_unlock(&file_priv->fbs_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002268
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002269 return ret;
2270}
2271
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002272static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002273{
2274 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2275
2276 switch (format) {
2277 case DRM_FORMAT_C8:
2278 case DRM_FORMAT_RGB332:
2279 case DRM_FORMAT_BGR233:
2280 case DRM_FORMAT_XRGB4444:
2281 case DRM_FORMAT_XBGR4444:
2282 case DRM_FORMAT_RGBX4444:
2283 case DRM_FORMAT_BGRX4444:
2284 case DRM_FORMAT_ARGB4444:
2285 case DRM_FORMAT_ABGR4444:
2286 case DRM_FORMAT_RGBA4444:
2287 case DRM_FORMAT_BGRA4444:
2288 case DRM_FORMAT_XRGB1555:
2289 case DRM_FORMAT_XBGR1555:
2290 case DRM_FORMAT_RGBX5551:
2291 case DRM_FORMAT_BGRX5551:
2292 case DRM_FORMAT_ARGB1555:
2293 case DRM_FORMAT_ABGR1555:
2294 case DRM_FORMAT_RGBA5551:
2295 case DRM_FORMAT_BGRA5551:
2296 case DRM_FORMAT_RGB565:
2297 case DRM_FORMAT_BGR565:
2298 case DRM_FORMAT_RGB888:
2299 case DRM_FORMAT_BGR888:
2300 case DRM_FORMAT_XRGB8888:
2301 case DRM_FORMAT_XBGR8888:
2302 case DRM_FORMAT_RGBX8888:
2303 case DRM_FORMAT_BGRX8888:
2304 case DRM_FORMAT_ARGB8888:
2305 case DRM_FORMAT_ABGR8888:
2306 case DRM_FORMAT_RGBA8888:
2307 case DRM_FORMAT_BGRA8888:
2308 case DRM_FORMAT_XRGB2101010:
2309 case DRM_FORMAT_XBGR2101010:
2310 case DRM_FORMAT_RGBX1010102:
2311 case DRM_FORMAT_BGRX1010102:
2312 case DRM_FORMAT_ARGB2101010:
2313 case DRM_FORMAT_ABGR2101010:
2314 case DRM_FORMAT_RGBA1010102:
2315 case DRM_FORMAT_BGRA1010102:
2316 case DRM_FORMAT_YUYV:
2317 case DRM_FORMAT_YVYU:
2318 case DRM_FORMAT_UYVY:
2319 case DRM_FORMAT_VYUY:
2320 case DRM_FORMAT_AYUV:
2321 case DRM_FORMAT_NV12:
2322 case DRM_FORMAT_NV21:
2323 case DRM_FORMAT_NV16:
2324 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02002325 case DRM_FORMAT_NV24:
2326 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02002327 case DRM_FORMAT_YUV410:
2328 case DRM_FORMAT_YVU410:
2329 case DRM_FORMAT_YUV411:
2330 case DRM_FORMAT_YVU411:
2331 case DRM_FORMAT_YUV420:
2332 case DRM_FORMAT_YVU420:
2333 case DRM_FORMAT_YUV422:
2334 case DRM_FORMAT_YVU422:
2335 case DRM_FORMAT_YUV444:
2336 case DRM_FORMAT_YVU444:
2337 return 0;
2338 default:
2339 return -EINVAL;
2340 }
2341}
2342
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002343static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002344{
2345 int ret, hsub, vsub, num_planes, i;
2346
2347 ret = format_check(r);
2348 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002349 DRM_DEBUG_KMS("bad framebuffer format %s\n",
2350 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002351 return ret;
2352 }
2353
2354 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2355 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2356 num_planes = drm_format_num_planes(r->pixel_format);
2357
2358 if (r->width == 0 || r->width % hsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002359 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002360 return -EINVAL;
2361 }
2362
2363 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002364 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002365 return -EINVAL;
2366 }
2367
2368 for (i = 0; i < num_planes; i++) {
2369 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002370 unsigned int height = r->height / (i != 0 ? vsub : 1);
2371 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002372
2373 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002374 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002375 return -EINVAL;
2376 }
2377
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002378 if ((uint64_t) width * cpp > UINT_MAX)
2379 return -ERANGE;
2380
2381 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
2382 return -ERANGE;
2383
2384 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002385 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002386 return -EINVAL;
2387 }
2388 }
2389
2390 return 0;
2391}
2392
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002393/**
2394 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002395 * @dev: drm device for the ioctl
2396 * @data: data pointer for the ioctl
2397 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002398 *
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002399 * Add a new FB to the specified CRTC, given a user request with format.
2400 *
2401 * Called by the user via ioctl.
2402 *
2403 * RETURNS:
2404 * Zero on success, errno on failure.
2405 */
2406int drm_mode_addfb2(struct drm_device *dev,
2407 void *data, struct drm_file *file_priv)
2408{
2409 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002410 struct drm_mode_config *config = &dev->mode_config;
2411 struct drm_framebuffer *fb;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002412 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002413
Dave Airliefb3b06c2011-02-08 13:55:21 +10002414 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2415 return -EINVAL;
2416
Ville Syrjäläe3cc3522012-11-08 09:09:42 +00002417 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
2418 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
2419 return -EINVAL;
2420 }
2421
Dave Airlief453ba02008-11-07 14:05:41 -08002422 if ((config->min_width > r->width) || (r->width > config->max_width)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002423 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002424 r->width, config->min_width, config->max_width);
Dave Airlief453ba02008-11-07 14:05:41 -08002425 return -EINVAL;
2426 }
2427 if ((config->min_height > r->height) || (r->height > config->max_height)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002428 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002429 r->height, config->min_height, config->max_height);
Dave Airlief453ba02008-11-07 14:05:41 -08002430 return -EINVAL;
2431 }
2432
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002433 ret = framebuffer_check(r);
2434 if (ret)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002435 return ret;
Ville Syrjälä935b5972011-12-20 00:06:48 +02002436
Dave Airlief453ba02008-11-07 14:05:41 -08002437 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01002438 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002439 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002440 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002441 }
2442
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002443 mutex_lock(&file_priv->fbs_lock);
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002444 r->fb_id = fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002445 list_add(&fb->filp_head, &file_priv->fbs);
Jerome Glisse94401062010-07-15 15:43:25 -04002446 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002447 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002448
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002449
Dave Airlief453ba02008-11-07 14:05:41 -08002450 return ret;
2451}
2452
2453/**
2454 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002455 * @dev: drm device for the ioctl
2456 * @data: data pointer for the ioctl
2457 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002458 *
Dave Airlief453ba02008-11-07 14:05:41 -08002459 * Remove the FB specified by the user.
2460 *
2461 * Called by the user via ioctl.
2462 *
2463 * RETURNS:
2464 * Zero on success, errno on failure.
2465 */
2466int drm_mode_rmfb(struct drm_device *dev,
2467 void *data, struct drm_file *file_priv)
2468{
Dave Airlief453ba02008-11-07 14:05:41 -08002469 struct drm_framebuffer *fb = NULL;
2470 struct drm_framebuffer *fbl = NULL;
2471 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002472 int found = 0;
2473
Dave Airliefb3b06c2011-02-08 13:55:21 +10002474 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2475 return -EINVAL;
2476
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002477 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002478 mutex_lock(&dev->mode_config.fb_lock);
2479 fb = __drm_framebuffer_lookup(dev, *id);
2480 if (!fb)
2481 goto fail_lookup;
2482
Dave Airlief453ba02008-11-07 14:05:41 -08002483 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2484 if (fb == fbl)
2485 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01002486 if (!found)
2487 goto fail_lookup;
2488
2489 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2490 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002491
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002492 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002493 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002494 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002495
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002496 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002497
Daniel Vetter2b677e82012-12-10 21:16:05 +01002498 return 0;
2499
2500fail_lookup:
2501 mutex_unlock(&dev->mode_config.fb_lock);
2502 mutex_unlock(&file_priv->fbs_lock);
2503
2504 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002505}
2506
2507/**
2508 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002509 * @dev: drm device for the ioctl
2510 * @data: data pointer for the ioctl
2511 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002512 *
Dave Airlief453ba02008-11-07 14:05:41 -08002513 * Lookup the FB given its ID and return info about it.
2514 *
2515 * Called by the user via ioctl.
2516 *
2517 * RETURNS:
2518 * Zero on success, errno on failure.
2519 */
2520int drm_mode_getfb(struct drm_device *dev,
2521 void *data, struct drm_file *file_priv)
2522{
2523 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002524 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002525 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002526
Dave Airliefb3b06c2011-02-08 13:55:21 +10002527 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2528 return -EINVAL;
2529
Daniel Vetter786b99e2012-12-02 21:53:40 +01002530 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002531 if (!fb)
2532 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002533
2534 r->height = fb->height;
2535 r->width = fb->width;
2536 r->depth = fb->depth;
2537 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002538 r->pitch = fb->pitches[0];
Daniel Vetteraf26ef32012-12-13 23:07:50 +01002539 if (fb->funcs->create_handle)
2540 ret = fb->funcs->create_handle(fb, file_priv, &r->handle);
2541 else
2542 ret = -ENODEV;
Dave Airlief453ba02008-11-07 14:05:41 -08002543
Daniel Vetter58c0dca2012-12-13 23:06:08 +01002544 drm_framebuffer_unreference(fb);
2545
Dave Airlief453ba02008-11-07 14:05:41 -08002546 return ret;
2547}
2548
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002549int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
2550 void *data, struct drm_file *file_priv)
2551{
2552 struct drm_clip_rect __user *clips_ptr;
2553 struct drm_clip_rect *clips = NULL;
2554 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002555 struct drm_framebuffer *fb;
2556 unsigned flags;
2557 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002558 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002559
Dave Airliefb3b06c2011-02-08 13:55:21 +10002560 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2561 return -EINVAL;
2562
Daniel Vetter786b99e2012-12-02 21:53:40 +01002563 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002564 if (!fb)
2565 return -EINVAL;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002566
2567 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002568 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002569
2570 if (!num_clips != !clips_ptr) {
2571 ret = -EINVAL;
2572 goto out_err1;
2573 }
2574
2575 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
2576
2577 /* If userspace annotates copy, clips must come in pairs */
2578 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
2579 ret = -EINVAL;
2580 goto out_err1;
2581 }
2582
2583 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05002584 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
2585 ret = -EINVAL;
2586 goto out_err1;
2587 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002588 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
2589 if (!clips) {
2590 ret = -ENOMEM;
2591 goto out_err1;
2592 }
2593
2594 ret = copy_from_user(clips, clips_ptr,
2595 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02002596 if (ret) {
2597 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002598 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02002599 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002600 }
2601
2602 if (fb->funcs->dirty) {
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002603 drm_modeset_lock_all(dev);
Thomas Hellstrom02b00162010-10-05 12:43:02 +02002604 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
2605 clips, num_clips);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002606 drm_modeset_unlock_all(dev);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002607 } else {
2608 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002609 }
2610
2611out_err2:
2612 kfree(clips);
2613out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01002614 drm_framebuffer_unreference(fb);
2615
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002616 return ret;
2617}
2618
2619
Dave Airlief453ba02008-11-07 14:05:41 -08002620/**
2621 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002622 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08002623 *
Dave Airlief453ba02008-11-07 14:05:41 -08002624 * Destroy all the FBs associated with @filp.
2625 *
2626 * Called by the user via ioctl.
2627 *
2628 * RETURNS:
2629 * Zero on success, errno on failure.
2630 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05002631void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002632{
Dave Airlief453ba02008-11-07 14:05:41 -08002633 struct drm_device *dev = priv->minor->dev;
2634 struct drm_framebuffer *fb, *tfb;
2635
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002636 mutex_lock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002637 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01002638
2639 mutex_lock(&dev->mode_config.fb_lock);
2640 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2641 __drm_framebuffer_unregister(dev, fb);
2642 mutex_unlock(&dev->mode_config.fb_lock);
2643
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002644 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002645
2646 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00002647 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002648 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002649 mutex_unlock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002650}
2651
Dave Airlief453ba02008-11-07 14:05:41 -08002652struct drm_property *drm_property_create(struct drm_device *dev, int flags,
2653 const char *name, int num_values)
2654{
2655 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002656 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002657
2658 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
2659 if (!property)
2660 return NULL;
2661
2662 if (num_values) {
2663 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
2664 if (!property->values)
2665 goto fail;
2666 }
2667
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002668 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
2669 if (ret)
2670 goto fail;
2671
Dave Airlief453ba02008-11-07 14:05:41 -08002672 property->flags = flags;
2673 property->num_values = num_values;
2674 INIT_LIST_HEAD(&property->enum_blob_list);
2675
Vinson Lee471dd2e2011-11-10 11:55:40 -08002676 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08002677 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08002678 property->name[DRM_PROP_NAME_LEN-1] = '\0';
2679 }
Dave Airlief453ba02008-11-07 14:05:41 -08002680
2681 list_add_tail(&property->head, &dev->mode_config.property_list);
2682 return property;
2683fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002684 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08002685 kfree(property);
2686 return NULL;
2687}
2688EXPORT_SYMBOL(drm_property_create);
2689
Sascha Hauer4a67d392012-02-06 10:58:17 +01002690struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
2691 const char *name,
2692 const struct drm_prop_enum_list *props,
2693 int num_values)
2694{
2695 struct drm_property *property;
2696 int i, ret;
2697
2698 flags |= DRM_MODE_PROP_ENUM;
2699
2700 property = drm_property_create(dev, flags, name, num_values);
2701 if (!property)
2702 return NULL;
2703
2704 for (i = 0; i < num_values; i++) {
2705 ret = drm_property_add_enum(property, i,
2706 props[i].type,
2707 props[i].name);
2708 if (ret) {
2709 drm_property_destroy(dev, property);
2710 return NULL;
2711 }
2712 }
2713
2714 return property;
2715}
2716EXPORT_SYMBOL(drm_property_create_enum);
2717
Rob Clark49e27542012-05-17 02:23:26 -06002718struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
2719 int flags, const char *name,
2720 const struct drm_prop_enum_list *props,
2721 int num_values)
2722{
2723 struct drm_property *property;
2724 int i, ret;
2725
2726 flags |= DRM_MODE_PROP_BITMASK;
2727
2728 property = drm_property_create(dev, flags, name, num_values);
2729 if (!property)
2730 return NULL;
2731
2732 for (i = 0; i < num_values; i++) {
2733 ret = drm_property_add_enum(property, i,
2734 props[i].type,
2735 props[i].name);
2736 if (ret) {
2737 drm_property_destroy(dev, property);
2738 return NULL;
2739 }
2740 }
2741
2742 return property;
2743}
2744EXPORT_SYMBOL(drm_property_create_bitmask);
2745
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01002746struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
2747 const char *name,
2748 uint64_t min, uint64_t max)
2749{
2750 struct drm_property *property;
2751
2752 flags |= DRM_MODE_PROP_RANGE;
2753
2754 property = drm_property_create(dev, flags, name, 2);
2755 if (!property)
2756 return NULL;
2757
2758 property->values[0] = min;
2759 property->values[1] = max;
2760
2761 return property;
2762}
2763EXPORT_SYMBOL(drm_property_create_range);
2764
Dave Airlief453ba02008-11-07 14:05:41 -08002765int drm_property_add_enum(struct drm_property *property, int index,
2766 uint64_t value, const char *name)
2767{
2768 struct drm_property_enum *prop_enum;
2769
Rob Clark49e27542012-05-17 02:23:26 -06002770 if (!(property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)))
2771 return -EINVAL;
2772
2773 /*
2774 * Bitmask enum properties have the additional constraint of values
2775 * from 0 to 63
2776 */
2777 if ((property->flags & DRM_MODE_PROP_BITMASK) && (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08002778 return -EINVAL;
2779
2780 if (!list_empty(&property->enum_blob_list)) {
2781 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2782 if (prop_enum->value == value) {
2783 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2784 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2785 return 0;
2786 }
2787 }
2788 }
2789
2790 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
2791 if (!prop_enum)
2792 return -ENOMEM;
2793
2794 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2795 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2796 prop_enum->value = value;
2797
2798 property->values[index] = value;
2799 list_add_tail(&prop_enum->head, &property->enum_blob_list);
2800 return 0;
2801}
2802EXPORT_SYMBOL(drm_property_add_enum);
2803
2804void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
2805{
2806 struct drm_property_enum *prop_enum, *pt;
2807
2808 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
2809 list_del(&prop_enum->head);
2810 kfree(prop_enum);
2811 }
2812
2813 if (property->num_values)
2814 kfree(property->values);
2815 drm_mode_object_put(dev, &property->base);
2816 list_del(&property->head);
2817 kfree(property);
2818}
2819EXPORT_SYMBOL(drm_property_destroy);
2820
Paulo Zanonic5431882012-05-15 18:09:02 -03002821void drm_object_attach_property(struct drm_mode_object *obj,
2822 struct drm_property *property,
2823 uint64_t init_val)
2824{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002825 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03002826
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002827 if (count == DRM_OBJECT_MAX_PROPERTY) {
2828 WARN(1, "Failed to attach object property (type: 0x%x). Please "
2829 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
2830 "you see this message on the same object type.\n",
2831 obj->type);
2832 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03002833 }
2834
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002835 obj->properties->ids[count] = property->base.id;
2836 obj->properties->values[count] = init_val;
2837 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03002838}
2839EXPORT_SYMBOL(drm_object_attach_property);
2840
2841int drm_object_property_set_value(struct drm_mode_object *obj,
2842 struct drm_property *property, uint64_t val)
2843{
2844 int i;
2845
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002846 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03002847 if (obj->properties->ids[i] == property->base.id) {
2848 obj->properties->values[i] = val;
2849 return 0;
2850 }
2851 }
2852
2853 return -EINVAL;
2854}
2855EXPORT_SYMBOL(drm_object_property_set_value);
2856
2857int drm_object_property_get_value(struct drm_mode_object *obj,
2858 struct drm_property *property, uint64_t *val)
2859{
2860 int i;
2861
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002862 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03002863 if (obj->properties->ids[i] == property->base.id) {
2864 *val = obj->properties->values[i];
2865 return 0;
2866 }
2867 }
2868
2869 return -EINVAL;
2870}
2871EXPORT_SYMBOL(drm_object_property_get_value);
2872
Dave Airlief453ba02008-11-07 14:05:41 -08002873int drm_mode_getproperty_ioctl(struct drm_device *dev,
2874 void *data, struct drm_file *file_priv)
2875{
2876 struct drm_mode_object *obj;
2877 struct drm_mode_get_property *out_resp = data;
2878 struct drm_property *property;
2879 int enum_count = 0;
2880 int blob_count = 0;
2881 int value_count = 0;
2882 int ret = 0, i;
2883 int copied;
2884 struct drm_property_enum *prop_enum;
2885 struct drm_mode_property_enum __user *enum_ptr;
2886 struct drm_property_blob *prop_blob;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002887 uint32_t __user *blob_id_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002888 uint64_t __user *values_ptr;
2889 uint32_t __user *blob_length_ptr;
2890
Dave Airliefb3b06c2011-02-08 13:55:21 +10002891 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2892 return -EINVAL;
2893
Daniel Vetter84849902012-12-02 00:28:11 +01002894 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002895 obj = drm_mode_object_find(dev, out_resp->prop_id, DRM_MODE_OBJECT_PROPERTY);
2896 if (!obj) {
2897 ret = -EINVAL;
2898 goto done;
2899 }
2900 property = obj_to_property(obj);
2901
Rob Clark49e27542012-05-17 02:23:26 -06002902 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002903 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
2904 enum_count++;
2905 } else if (property->flags & DRM_MODE_PROP_BLOB) {
2906 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
2907 blob_count++;
2908 }
2909
2910 value_count = property->num_values;
2911
2912 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
2913 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
2914 out_resp->flags = property->flags;
2915
2916 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002917 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002918 for (i = 0; i < value_count; i++) {
2919 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
2920 ret = -EFAULT;
2921 goto done;
2922 }
2923 }
2924 }
2925 out_resp->count_values = value_count;
2926
Rob Clark49e27542012-05-17 02:23:26 -06002927 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002928 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
2929 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002930 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002931 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2932
2933 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
2934 ret = -EFAULT;
2935 goto done;
2936 }
2937
2938 if (copy_to_user(&enum_ptr[copied].name,
2939 &prop_enum->name, DRM_PROP_NAME_LEN)) {
2940 ret = -EFAULT;
2941 goto done;
2942 }
2943 copied++;
2944 }
2945 }
2946 out_resp->count_enum_blobs = enum_count;
2947 }
2948
2949 if (property->flags & DRM_MODE_PROP_BLOB) {
2950 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
2951 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002952 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
2953 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002954
2955 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
2956 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
2957 ret = -EFAULT;
2958 goto done;
2959 }
2960
2961 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
2962 ret = -EFAULT;
2963 goto done;
2964 }
2965
2966 copied++;
2967 }
2968 }
2969 out_resp->count_enum_blobs = blob_count;
2970 }
2971done:
Daniel Vetter84849902012-12-02 00:28:11 +01002972 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002973 return ret;
2974}
2975
2976static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
2977 void *data)
2978{
2979 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002980 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002981
2982 if (!length || !data)
2983 return NULL;
2984
2985 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
2986 if (!blob)
2987 return NULL;
2988
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002989 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
2990 if (ret) {
2991 kfree(blob);
2992 return NULL;
2993 }
2994
Dave Airlief453ba02008-11-07 14:05:41 -08002995 blob->length = length;
2996
2997 memcpy(blob->data, data, length);
2998
Dave Airlief453ba02008-11-07 14:05:41 -08002999 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3000 return blob;
3001}
3002
3003static void drm_property_destroy_blob(struct drm_device *dev,
3004 struct drm_property_blob *blob)
3005{
3006 drm_mode_object_put(dev, &blob->base);
3007 list_del(&blob->head);
3008 kfree(blob);
3009}
3010
3011int drm_mode_getblob_ioctl(struct drm_device *dev,
3012 void *data, struct drm_file *file_priv)
3013{
3014 struct drm_mode_object *obj;
3015 struct drm_mode_get_blob *out_resp = data;
3016 struct drm_property_blob *blob;
3017 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003018 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003019
Dave Airliefb3b06c2011-02-08 13:55:21 +10003020 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3021 return -EINVAL;
3022
Daniel Vetter84849902012-12-02 00:28:11 +01003023 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003024 obj = drm_mode_object_find(dev, out_resp->blob_id, DRM_MODE_OBJECT_BLOB);
3025 if (!obj) {
3026 ret = -EINVAL;
3027 goto done;
3028 }
3029 blob = obj_to_blob(obj);
3030
3031 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003032 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08003033 if (copy_to_user(blob_ptr, blob->data, blob->length)){
3034 ret = -EFAULT;
3035 goto done;
3036 }
3037 }
3038 out_resp->length = blob->length;
3039
3040done:
Daniel Vetter84849902012-12-02 00:28:11 +01003041 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003042 return ret;
3043}
3044
3045int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3046 struct edid *edid)
3047{
3048 struct drm_device *dev = connector->dev;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003049 int ret, size;
Dave Airlief453ba02008-11-07 14:05:41 -08003050
3051 if (connector->edid_blob_ptr)
3052 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3053
3054 /* Delete edid, when there is none. */
3055 if (!edid) {
3056 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05003057 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08003058 return ret;
3059 }
3060
Adam Jackson7466f4c2010-03-29 21:43:23 +00003061 size = EDID_LENGTH * (1 + edid->extensions);
3062 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3063 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00003064 if (!connector->edid_blob_ptr)
3065 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003066
Rob Clark58495562012-10-11 20:50:56 -05003067 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08003068 dev->mode_config.edid_property,
3069 connector->edid_blob_ptr->base.id);
3070
3071 return ret;
3072}
3073EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3074
Paulo Zanoni26a34812012-05-15 18:08:59 -03003075static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003076 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03003077{
3078 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3079 return false;
3080 if (property->flags & DRM_MODE_PROP_RANGE) {
3081 if (value < property->values[0] || value > property->values[1])
3082 return false;
3083 return true;
Rob Clark49e27542012-05-17 02:23:26 -06003084 } else if (property->flags & DRM_MODE_PROP_BITMASK) {
3085 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003086 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06003087 for (i = 0; i < property->num_values; i++)
3088 valid_mask |= (1ULL << property->values[i]);
3089 return !(value & ~valid_mask);
Ville Syrjäläc4a56752012-10-25 18:05:06 +00003090 } else if (property->flags & DRM_MODE_PROP_BLOB) {
3091 /* Only the driver knows */
3092 return true;
Paulo Zanoni26a34812012-05-15 18:08:59 -03003093 } else {
3094 int i;
3095 for (i = 0; i < property->num_values; i++)
3096 if (property->values[i] == value)
3097 return true;
3098 return false;
3099 }
3100}
3101
Dave Airlief453ba02008-11-07 14:05:41 -08003102int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3103 void *data, struct drm_file *file_priv)
3104{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003105 struct drm_mode_connector_set_property *conn_set_prop = data;
3106 struct drm_mode_obj_set_property obj_set_prop = {
3107 .value = conn_set_prop->value,
3108 .prop_id = conn_set_prop->prop_id,
3109 .obj_id = conn_set_prop->connector_id,
3110 .obj_type = DRM_MODE_OBJECT_CONNECTOR
3111 };
Dave Airlief453ba02008-11-07 14:05:41 -08003112
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003113 /* It does all the locking and checking we need */
3114 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003115}
3116
Paulo Zanonic5431882012-05-15 18:09:02 -03003117static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3118 struct drm_property *property,
3119 uint64_t value)
3120{
3121 int ret = -EINVAL;
3122 struct drm_connector *connector = obj_to_connector(obj);
3123
3124 /* Do DPMS ourselves */
3125 if (property == connector->dev->mode_config.dpms_property) {
3126 if (connector->funcs->dpms)
3127 (*connector->funcs->dpms)(connector, (int)value);
3128 ret = 0;
3129 } else if (connector->funcs->set_property)
3130 ret = connector->funcs->set_property(connector, property, value);
3131
3132 /* store the property value if successful */
3133 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05003134 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03003135 return ret;
3136}
3137
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003138static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3139 struct drm_property *property,
3140 uint64_t value)
3141{
3142 int ret = -EINVAL;
3143 struct drm_crtc *crtc = obj_to_crtc(obj);
3144
3145 if (crtc->funcs->set_property)
3146 ret = crtc->funcs->set_property(crtc, property, value);
3147 if (!ret)
3148 drm_object_property_set_value(obj, property, value);
3149
3150 return ret;
3151}
3152
Rob Clark4d939142012-05-17 02:23:27 -06003153static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3154 struct drm_property *property,
3155 uint64_t value)
3156{
3157 int ret = -EINVAL;
3158 struct drm_plane *plane = obj_to_plane(obj);
3159
3160 if (plane->funcs->set_property)
3161 ret = plane->funcs->set_property(plane, property, value);
3162 if (!ret)
3163 drm_object_property_set_value(obj, property, value);
3164
3165 return ret;
3166}
3167
Paulo Zanonic5431882012-05-15 18:09:02 -03003168int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3169 struct drm_file *file_priv)
3170{
3171 struct drm_mode_obj_get_properties *arg = data;
3172 struct drm_mode_object *obj;
3173 int ret = 0;
3174 int i;
3175 int copied = 0;
3176 int props_count = 0;
3177 uint32_t __user *props_ptr;
3178 uint64_t __user *prop_values_ptr;
3179
3180 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3181 return -EINVAL;
3182
Daniel Vetter84849902012-12-02 00:28:11 +01003183 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003184
3185 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3186 if (!obj) {
3187 ret = -EINVAL;
3188 goto out;
3189 }
3190 if (!obj->properties) {
3191 ret = -EINVAL;
3192 goto out;
3193 }
3194
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003195 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003196
3197 /* This ioctl is called twice, once to determine how much space is
3198 * needed, and the 2nd time to fill it. */
3199 if ((arg->count_props >= props_count) && props_count) {
3200 copied = 0;
3201 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3202 prop_values_ptr = (uint64_t __user *)(unsigned long)
3203 (arg->prop_values_ptr);
3204 for (i = 0; i < props_count; i++) {
3205 if (put_user(obj->properties->ids[i],
3206 props_ptr + copied)) {
3207 ret = -EFAULT;
3208 goto out;
3209 }
3210 if (put_user(obj->properties->values[i],
3211 prop_values_ptr + copied)) {
3212 ret = -EFAULT;
3213 goto out;
3214 }
3215 copied++;
3216 }
3217 }
3218 arg->count_props = props_count;
3219out:
Daniel Vetter84849902012-12-02 00:28:11 +01003220 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003221 return ret;
3222}
3223
3224int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
3225 struct drm_file *file_priv)
3226{
3227 struct drm_mode_obj_set_property *arg = data;
3228 struct drm_mode_object *arg_obj;
3229 struct drm_mode_object *prop_obj;
3230 struct drm_property *property;
3231 int ret = -EINVAL;
3232 int i;
3233
3234 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3235 return -EINVAL;
3236
Daniel Vetter84849902012-12-02 00:28:11 +01003237 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003238
3239 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3240 if (!arg_obj)
3241 goto out;
3242 if (!arg_obj->properties)
3243 goto out;
3244
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003245 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03003246 if (arg_obj->properties->ids[i] == arg->prop_id)
3247 break;
3248
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003249 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03003250 goto out;
3251
3252 prop_obj = drm_mode_object_find(dev, arg->prop_id,
3253 DRM_MODE_OBJECT_PROPERTY);
3254 if (!prop_obj)
3255 goto out;
3256 property = obj_to_property(prop_obj);
3257
3258 if (!drm_property_change_is_valid(property, arg->value))
3259 goto out;
3260
3261 switch (arg_obj->type) {
3262 case DRM_MODE_OBJECT_CONNECTOR:
3263 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
3264 arg->value);
3265 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003266 case DRM_MODE_OBJECT_CRTC:
3267 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
3268 break;
Rob Clark4d939142012-05-17 02:23:27 -06003269 case DRM_MODE_OBJECT_PLANE:
3270 ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
3271 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03003272 }
3273
3274out:
Daniel Vetter84849902012-12-02 00:28:11 +01003275 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003276 return ret;
3277}
3278
Dave Airlief453ba02008-11-07 14:05:41 -08003279int drm_mode_connector_attach_encoder(struct drm_connector *connector,
3280 struct drm_encoder *encoder)
3281{
3282 int i;
3283
3284 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3285 if (connector->encoder_ids[i] == 0) {
3286 connector->encoder_ids[i] = encoder->base.id;
3287 return 0;
3288 }
3289 }
3290 return -ENOMEM;
3291}
3292EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
3293
3294void drm_mode_connector_detach_encoder(struct drm_connector *connector,
3295 struct drm_encoder *encoder)
3296{
3297 int i;
3298 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3299 if (connector->encoder_ids[i] == encoder->base.id) {
3300 connector->encoder_ids[i] = 0;
3301 if (connector->encoder == encoder)
3302 connector->encoder = NULL;
3303 break;
3304 }
3305 }
3306}
3307EXPORT_SYMBOL(drm_mode_connector_detach_encoder);
3308
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003309int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -08003310 int gamma_size)
3311{
3312 crtc->gamma_size = gamma_size;
3313
3314 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
3315 if (!crtc->gamma_store) {
3316 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003317 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08003318 }
3319
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003320 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003321}
3322EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
3323
3324int drm_mode_gamma_set_ioctl(struct drm_device *dev,
3325 void *data, struct drm_file *file_priv)
3326{
3327 struct drm_mode_crtc_lut *crtc_lut = data;
3328 struct drm_mode_object *obj;
3329 struct drm_crtc *crtc;
3330 void *r_base, *g_base, *b_base;
3331 int size;
3332 int ret = 0;
3333
Dave Airliefb3b06c2011-02-08 13:55:21 +10003334 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3335 return -EINVAL;
3336
Daniel Vetter84849902012-12-02 00:28:11 +01003337 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003338 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3339 if (!obj) {
3340 ret = -EINVAL;
3341 goto out;
3342 }
3343 crtc = obj_to_crtc(obj);
3344
Laurent Pinchartebe0f242012-05-17 13:27:24 +02003345 if (crtc->funcs->gamma_set == NULL) {
3346 ret = -ENOSYS;
3347 goto out;
3348 }
3349
Dave Airlief453ba02008-11-07 14:05:41 -08003350 /* memcpy into gamma store */
3351 if (crtc_lut->gamma_size != crtc->gamma_size) {
3352 ret = -EINVAL;
3353 goto out;
3354 }
3355
3356 size = crtc_lut->gamma_size * (sizeof(uint16_t));
3357 r_base = crtc->gamma_store;
3358 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
3359 ret = -EFAULT;
3360 goto out;
3361 }
3362
3363 g_base = r_base + size;
3364 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
3365 ret = -EFAULT;
3366 goto out;
3367 }
3368
3369 b_base = g_base + size;
3370 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
3371 ret = -EFAULT;
3372 goto out;
3373 }
3374
James Simmons72034252010-08-03 01:33:19 +01003375 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08003376
3377out:
Daniel Vetter84849902012-12-02 00:28:11 +01003378 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003379 return ret;
3380
3381}
3382
3383int drm_mode_gamma_get_ioctl(struct drm_device *dev,
3384 void *data, struct drm_file *file_priv)
3385{
3386 struct drm_mode_crtc_lut *crtc_lut = data;
3387 struct drm_mode_object *obj;
3388 struct drm_crtc *crtc;
3389 void *r_base, *g_base, *b_base;
3390 int size;
3391 int ret = 0;
3392
Dave Airliefb3b06c2011-02-08 13:55:21 +10003393 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3394 return -EINVAL;
3395
Daniel Vetter84849902012-12-02 00:28:11 +01003396 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003397 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3398 if (!obj) {
3399 ret = -EINVAL;
3400 goto out;
3401 }
3402 crtc = obj_to_crtc(obj);
3403
3404 /* memcpy into gamma store */
3405 if (crtc_lut->gamma_size != crtc->gamma_size) {
3406 ret = -EINVAL;
3407 goto out;
3408 }
3409
3410 size = crtc_lut->gamma_size * (sizeof(uint16_t));
3411 r_base = crtc->gamma_store;
3412 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
3413 ret = -EFAULT;
3414 goto out;
3415 }
3416
3417 g_base = r_base + size;
3418 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
3419 ret = -EFAULT;
3420 goto out;
3421 }
3422
3423 b_base = g_base + size;
3424 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
3425 ret = -EFAULT;
3426 goto out;
3427 }
3428out:
Daniel Vetter84849902012-12-02 00:28:11 +01003429 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003430 return ret;
3431}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003432
3433int drm_mode_page_flip_ioctl(struct drm_device *dev,
3434 void *data, struct drm_file *file_priv)
3435{
3436 struct drm_mode_crtc_page_flip *page_flip = data;
3437 struct drm_mode_object *obj;
3438 struct drm_crtc *crtc;
Daniel Vetterb0d12322012-12-11 01:07:12 +01003439 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003440 struct drm_pending_vblank_event *e = NULL;
3441 unsigned long flags;
Rob Clark7c80e122012-09-04 16:35:56 +00003442 int hdisplay, vdisplay;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003443 int ret = -EINVAL;
3444
3445 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
3446 page_flip->reserved != 0)
3447 return -EINVAL;
3448
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003449 obj = drm_mode_object_find(dev, page_flip->crtc_id, DRM_MODE_OBJECT_CRTC);
3450 if (!obj)
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01003451 return -EINVAL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003452 crtc = obj_to_crtc(obj);
3453
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01003454 mutex_lock(&crtc->mutex);
Chris Wilson90c1efd2010-07-17 20:23:26 +01003455 if (crtc->fb == NULL) {
3456 /* The framebuffer is currently unbound, presumably
3457 * due to a hotplug event, that userspace has not
3458 * yet discovered.
3459 */
3460 ret = -EBUSY;
3461 goto out;
3462 }
3463
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003464 if (crtc->funcs->page_flip == NULL)
3465 goto out;
3466
Daniel Vetter786b99e2012-12-02 21:53:40 +01003467 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
3468 if (!fb)
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003469 goto out;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003470
Rob Clark7c80e122012-09-04 16:35:56 +00003471 hdisplay = crtc->mode.hdisplay;
3472 vdisplay = crtc->mode.vdisplay;
3473
3474 if (crtc->invert_dimensions)
3475 swap(hdisplay, vdisplay);
3476
3477 if (hdisplay > fb->width ||
3478 vdisplay > fb->height ||
3479 crtc->x > fb->width - hdisplay ||
3480 crtc->y > fb->height - vdisplay) {
3481 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
3482 fb->width, fb->height, hdisplay, vdisplay, crtc->x, crtc->y,
3483 crtc->invert_dimensions ? " (inverted)" : "");
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02003484 ret = -ENOSPC;
3485 goto out;
3486 }
3487
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02003488 if (crtc->fb->pixel_format != fb->pixel_format) {
3489 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
3490 ret = -EINVAL;
3491 goto out;
3492 }
3493
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003494 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3495 ret = -ENOMEM;
3496 spin_lock_irqsave(&dev->event_lock, flags);
3497 if (file_priv->event_space < sizeof e->event) {
3498 spin_unlock_irqrestore(&dev->event_lock, flags);
3499 goto out;
3500 }
3501 file_priv->event_space -= sizeof e->event;
3502 spin_unlock_irqrestore(&dev->event_lock, flags);
3503
3504 e = kzalloc(sizeof *e, GFP_KERNEL);
3505 if (e == NULL) {
3506 spin_lock_irqsave(&dev->event_lock, flags);
3507 file_priv->event_space += sizeof e->event;
3508 spin_unlock_irqrestore(&dev->event_lock, flags);
3509 goto out;
3510 }
3511
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08003512 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003513 e->event.base.length = sizeof e->event;
3514 e->event.user_data = page_flip->user_data;
3515 e->base.event = &e->event.base;
3516 e->base.file_priv = file_priv;
3517 e->base.destroy =
3518 (void (*) (struct drm_pending_event *)) kfree;
3519 }
3520
Daniel Vetterb0d12322012-12-11 01:07:12 +01003521 old_fb = crtc->fb;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003522 ret = crtc->funcs->page_flip(crtc, fb, e);
3523 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09003524 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3525 spin_lock_irqsave(&dev->event_lock, flags);
3526 file_priv->event_space += sizeof e->event;
3527 spin_unlock_irqrestore(&dev->event_lock, flags);
3528 kfree(e);
3529 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01003530 /* Keep the old fb, don't unref it. */
3531 old_fb = NULL;
3532 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01003533 /*
3534 * Warn if the driver hasn't properly updated the crtc->fb
3535 * field to reflect that the new framebuffer is now used.
3536 * Failing to do so will screw with the reference counting
3537 * on framebuffers.
3538 */
3539 WARN_ON(crtc->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01003540 /* Unref only the old framebuffer. */
3541 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003542 }
3543
3544out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01003545 if (fb)
3546 drm_framebuffer_unreference(fb);
3547 if (old_fb)
3548 drm_framebuffer_unreference(old_fb);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01003549 mutex_unlock(&crtc->mutex);
3550
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003551 return ret;
3552}
Chris Wilsoneb033552011-01-24 15:11:08 +00003553
3554void drm_mode_config_reset(struct drm_device *dev)
3555{
3556 struct drm_crtc *crtc;
3557 struct drm_encoder *encoder;
3558 struct drm_connector *connector;
3559
3560 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3561 if (crtc->funcs->reset)
3562 crtc->funcs->reset(crtc);
3563
3564 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
3565 if (encoder->funcs->reset)
3566 encoder->funcs->reset(encoder);
3567
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00003568 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3569 connector->status = connector_status_unknown;
3570
Chris Wilsoneb033552011-01-24 15:11:08 +00003571 if (connector->funcs->reset)
3572 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00003573 }
Chris Wilsoneb033552011-01-24 15:11:08 +00003574}
3575EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10003576
3577int drm_mode_create_dumb_ioctl(struct drm_device *dev,
3578 void *data, struct drm_file *file_priv)
3579{
3580 struct drm_mode_create_dumb *args = data;
3581
3582 if (!dev->driver->dumb_create)
3583 return -ENOSYS;
3584 return dev->driver->dumb_create(file_priv, dev, args);
3585}
3586
3587int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
3588 void *data, struct drm_file *file_priv)
3589{
3590 struct drm_mode_map_dumb *args = data;
3591
3592 /* call driver ioctl to get mmap offset */
3593 if (!dev->driver->dumb_map_offset)
3594 return -ENOSYS;
3595
3596 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
3597}
3598
3599int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
3600 void *data, struct drm_file *file_priv)
3601{
3602 struct drm_mode_destroy_dumb *args = data;
3603
3604 if (!dev->driver->dumb_destroy)
3605 return -ENOSYS;
3606
3607 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
3608}
Dave Airlie248dbc22011-11-29 20:02:54 +00003609
3610/*
3611 * Just need to support RGB formats here for compat with code that doesn't
3612 * use pixel formats directly yet.
3613 */
3614void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
3615 int *bpp)
3616{
3617 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02003618 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003619 case DRM_FORMAT_RGB332:
3620 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00003621 *depth = 8;
3622 *bpp = 8;
3623 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003624 case DRM_FORMAT_XRGB1555:
3625 case DRM_FORMAT_XBGR1555:
3626 case DRM_FORMAT_RGBX5551:
3627 case DRM_FORMAT_BGRX5551:
3628 case DRM_FORMAT_ARGB1555:
3629 case DRM_FORMAT_ABGR1555:
3630 case DRM_FORMAT_RGBA5551:
3631 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00003632 *depth = 15;
3633 *bpp = 16;
3634 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003635 case DRM_FORMAT_RGB565:
3636 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00003637 *depth = 16;
3638 *bpp = 16;
3639 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003640 case DRM_FORMAT_RGB888:
3641 case DRM_FORMAT_BGR888:
3642 *depth = 24;
3643 *bpp = 24;
3644 break;
3645 case DRM_FORMAT_XRGB8888:
3646 case DRM_FORMAT_XBGR8888:
3647 case DRM_FORMAT_RGBX8888:
3648 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00003649 *depth = 24;
3650 *bpp = 32;
3651 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003652 case DRM_FORMAT_XRGB2101010:
3653 case DRM_FORMAT_XBGR2101010:
3654 case DRM_FORMAT_RGBX1010102:
3655 case DRM_FORMAT_BGRX1010102:
3656 case DRM_FORMAT_ARGB2101010:
3657 case DRM_FORMAT_ABGR2101010:
3658 case DRM_FORMAT_RGBA1010102:
3659 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00003660 *depth = 30;
3661 *bpp = 32;
3662 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003663 case DRM_FORMAT_ARGB8888:
3664 case DRM_FORMAT_ABGR8888:
3665 case DRM_FORMAT_RGBA8888:
3666 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00003667 *depth = 32;
3668 *bpp = 32;
3669 break;
3670 default:
3671 DRM_DEBUG_KMS("unsupported pixel format\n");
3672 *depth = 0;
3673 *bpp = 0;
3674 break;
3675 }
3676}
3677EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03003678
3679/**
3680 * drm_format_num_planes - get the number of planes for format
3681 * @format: pixel format (DRM_FORMAT_*)
3682 *
3683 * RETURNS:
3684 * The number of planes used by the specified pixel format.
3685 */
3686int drm_format_num_planes(uint32_t format)
3687{
3688 switch (format) {
3689 case DRM_FORMAT_YUV410:
3690 case DRM_FORMAT_YVU410:
3691 case DRM_FORMAT_YUV411:
3692 case DRM_FORMAT_YVU411:
3693 case DRM_FORMAT_YUV420:
3694 case DRM_FORMAT_YVU420:
3695 case DRM_FORMAT_YUV422:
3696 case DRM_FORMAT_YVU422:
3697 case DRM_FORMAT_YUV444:
3698 case DRM_FORMAT_YVU444:
3699 return 3;
3700 case DRM_FORMAT_NV12:
3701 case DRM_FORMAT_NV21:
3702 case DRM_FORMAT_NV16:
3703 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003704 case DRM_FORMAT_NV24:
3705 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03003706 return 2;
3707 default:
3708 return 1;
3709 }
3710}
3711EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03003712
3713/**
3714 * drm_format_plane_cpp - determine the bytes per pixel value
3715 * @format: pixel format (DRM_FORMAT_*)
3716 * @plane: plane index
3717 *
3718 * RETURNS:
3719 * The bytes per pixel value for the specified plane.
3720 */
3721int drm_format_plane_cpp(uint32_t format, int plane)
3722{
3723 unsigned int depth;
3724 int bpp;
3725
3726 if (plane >= drm_format_num_planes(format))
3727 return 0;
3728
3729 switch (format) {
3730 case DRM_FORMAT_YUYV:
3731 case DRM_FORMAT_YVYU:
3732 case DRM_FORMAT_UYVY:
3733 case DRM_FORMAT_VYUY:
3734 return 2;
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ä5a86bd52012-04-05 21:35:16 +03003741 return plane ? 2 : 1;
3742 case DRM_FORMAT_YUV410:
3743 case DRM_FORMAT_YVU410:
3744 case DRM_FORMAT_YUV411:
3745 case DRM_FORMAT_YVU411:
3746 case DRM_FORMAT_YUV420:
3747 case DRM_FORMAT_YVU420:
3748 case DRM_FORMAT_YUV422:
3749 case DRM_FORMAT_YVU422:
3750 case DRM_FORMAT_YUV444:
3751 case DRM_FORMAT_YVU444:
3752 return 1;
3753 default:
3754 drm_fb_get_bpp_depth(format, &depth, &bpp);
3755 return bpp >> 3;
3756 }
3757}
3758EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03003759
3760/**
3761 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
3762 * @format: pixel format (DRM_FORMAT_*)
3763 *
3764 * RETURNS:
3765 * The horizontal chroma subsampling factor for the
3766 * specified pixel format.
3767 */
3768int drm_format_horz_chroma_subsampling(uint32_t format)
3769{
3770 switch (format) {
3771 case DRM_FORMAT_YUV411:
3772 case DRM_FORMAT_YVU411:
3773 case DRM_FORMAT_YUV410:
3774 case DRM_FORMAT_YVU410:
3775 return 4;
3776 case DRM_FORMAT_YUYV:
3777 case DRM_FORMAT_YVYU:
3778 case DRM_FORMAT_UYVY:
3779 case DRM_FORMAT_VYUY:
3780 case DRM_FORMAT_NV12:
3781 case DRM_FORMAT_NV21:
3782 case DRM_FORMAT_NV16:
3783 case DRM_FORMAT_NV61:
3784 case DRM_FORMAT_YUV422:
3785 case DRM_FORMAT_YVU422:
3786 case DRM_FORMAT_YUV420:
3787 case DRM_FORMAT_YVU420:
3788 return 2;
3789 default:
3790 return 1;
3791 }
3792}
3793EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
3794
3795/**
3796 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
3797 * @format: pixel format (DRM_FORMAT_*)
3798 *
3799 * RETURNS:
3800 * The vertical chroma subsampling factor for the
3801 * specified pixel format.
3802 */
3803int drm_format_vert_chroma_subsampling(uint32_t format)
3804{
3805 switch (format) {
3806 case DRM_FORMAT_YUV410:
3807 case DRM_FORMAT_YVU410:
3808 return 4;
3809 case DRM_FORMAT_YUV420:
3810 case DRM_FORMAT_YVU420:
3811 case DRM_FORMAT_NV12:
3812 case DRM_FORMAT_NV21:
3813 return 2;
3814 default:
3815 return 1;
3816 }
3817}
3818EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02003819
3820/**
3821 * drm_mode_config_init - initialize DRM mode_configuration structure
3822 * @dev: DRM device
3823 *
3824 * Initialize @dev's mode_config structure, used for tracking the graphics
3825 * configuration of @dev.
3826 *
3827 * Since this initializes the modeset locks, no locking is possible. Which is no
3828 * problem, since this should happen single threaded at init time. It is the
3829 * driver's problem to ensure this guarantee.
3830 *
3831 */
3832void drm_mode_config_init(struct drm_device *dev)
3833{
3834 mutex_init(&dev->mode_config.mutex);
3835 mutex_init(&dev->mode_config.idr_mutex);
3836 mutex_init(&dev->mode_config.fb_lock);
3837 INIT_LIST_HEAD(&dev->mode_config.fb_list);
3838 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
3839 INIT_LIST_HEAD(&dev->mode_config.connector_list);
3840 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
3841 INIT_LIST_HEAD(&dev->mode_config.property_list);
3842 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
3843 INIT_LIST_HEAD(&dev->mode_config.plane_list);
3844 idr_init(&dev->mode_config.crtc_idr);
3845
3846 drm_modeset_lock_all(dev);
3847 drm_mode_create_standard_connector_properties(dev);
3848 drm_modeset_unlock_all(dev);
3849
3850 /* Just to be sure */
3851 dev->mode_config.num_fb = 0;
3852 dev->mode_config.num_connector = 0;
3853 dev->mode_config.num_crtc = 0;
3854 dev->mode_config.num_encoder = 0;
3855}
3856EXPORT_SYMBOL(drm_mode_config_init);
3857
3858/**
3859 * drm_mode_config_cleanup - free up DRM mode_config info
3860 * @dev: DRM device
3861 *
3862 * Free up all the connectors and CRTCs associated with this DRM device, then
3863 * free up the framebuffers and associated buffer objects.
3864 *
3865 * Note that since this /should/ happen single-threaded at driver/device
3866 * teardown time, no locking is required. It's the driver's job to ensure that
3867 * this guarantee actually holds true.
3868 *
3869 * FIXME: cleanup any dangling user buffer objects too
3870 */
3871void drm_mode_config_cleanup(struct drm_device *dev)
3872{
3873 struct drm_connector *connector, *ot;
3874 struct drm_crtc *crtc, *ct;
3875 struct drm_encoder *encoder, *enct;
3876 struct drm_framebuffer *fb, *fbt;
3877 struct drm_property *property, *pt;
3878 struct drm_property_blob *blob, *bt;
3879 struct drm_plane *plane, *plt;
3880
3881 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
3882 head) {
3883 encoder->funcs->destroy(encoder);
3884 }
3885
3886 list_for_each_entry_safe(connector, ot,
3887 &dev->mode_config.connector_list, head) {
3888 connector->funcs->destroy(connector);
3889 }
3890
3891 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
3892 head) {
3893 drm_property_destroy(dev, property);
3894 }
3895
3896 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
3897 head) {
3898 drm_property_destroy_blob(dev, blob);
3899 }
3900
3901 /*
3902 * Single-threaded teardown context, so it's not required to grab the
3903 * fb_lock to protect against concurrent fb_list access. Contrary, it
3904 * would actually deadlock with the drm_framebuffer_cleanup function.
3905 *
3906 * Also, if there are any framebuffers left, that's a driver leak now,
3907 * so politely WARN about this.
3908 */
3909 WARN_ON(!list_empty(&dev->mode_config.fb_list));
3910 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
3911 drm_framebuffer_remove(fb);
3912 }
3913
3914 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
3915 head) {
3916 plane->funcs->destroy(plane);
3917 }
3918
3919 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
3920 crtc->funcs->destroy(crtc);
3921 }
3922
3923 idr_destroy(&dev->mode_config.crtc_idr);
3924}
3925EXPORT_SYMBOL(drm_mode_config_cleanup);