]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/gpu/drm/drm_crtc.c
drm/udl: use container_of to resolve udl_fbdev from drm_fb_helper
[mirror_ubuntu-zesty-kernel.git] / drivers / gpu / drm / drm_crtc.c
CommitLineData
f453ba04
DA
1/*
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 */
6ba6d03e 32#include <linux/ctype.h>
f453ba04 33#include <linux/list.h>
5a0e3ad6 34#include <linux/slab.h>
2d1a8a48 35#include <linux/export.h>
760285e7
DH
36#include <drm/drmP.h>
37#include <drm/drm_crtc.h>
38#include <drm/drm_edid.h>
39#include <drm/drm_fourcc.h>
51fd371b 40#include <drm/drm_modeset_lock.h>
f453ba04 41
8bd441b2 42#include "drm_crtc_internal.h"
67d0ec4e 43#include "drm_internal.h"
8bd441b2 44
c394c2b0
MR
45static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
46 struct drm_mode_fb_cmd2 *r,
47 struct drm_file *file_priv);
48
f453ba04
DA
49/* Avoid boilerplate. I'm tired of typing. */
50#define DRM_ENUM_NAME_FN(fnname, list) \
d20d3174 51 const char *fnname(int val) \
f453ba04
DA
52 { \
53 int i; \
54 for (i = 0; i < ARRAY_SIZE(list); i++) { \
55 if (list[i].type == val) \
56 return list[i].name; \
57 } \
58 return "(unknown)"; \
59 }
60
61/*
62 * Global properties
63 */
d20d3174 64static const struct drm_prop_enum_list drm_dpms_enum_list[] =
f453ba04
DA
65{ { DRM_MODE_DPMS_ON, "On" },
66 { DRM_MODE_DPMS_STANDBY, "Standby" },
67 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
68 { DRM_MODE_DPMS_OFF, "Off" }
69};
70
71DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
72
9922ab5a
RC
73static const struct drm_prop_enum_list drm_plane_type_enum_list[] =
74{
75 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
76 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
77 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
78};
79
f453ba04
DA
80/*
81 * Optional properties
82 */
d20d3174 83static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
f453ba04 84{
53bd8389
JB
85 { DRM_MODE_SCALE_NONE, "None" },
86 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
87 { DRM_MODE_SCALE_CENTER, "Center" },
88 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
f453ba04
DA
89};
90
ff587e45
VK
91static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
92 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
93 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
94 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
95};
96
f453ba04
DA
97/*
98 * Non-global properties, but "required" for certain connectors.
99 */
d20d3174 100static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
f453ba04
DA
101{
102 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
103 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
104 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
105};
106
107DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
108
d20d3174 109static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
f453ba04
DA
110{
111 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
112 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
113 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
114};
115
116DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
117 drm_dvi_i_subconnector_enum_list)
118
d20d3174 119static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
f453ba04
DA
120{
121 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
122 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
123 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
124 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
aeaa1ad3 125 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
f453ba04
DA
126};
127
128DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
129
d20d3174 130static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
f453ba04
DA
131{
132 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
133 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
134 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
135 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
aeaa1ad3 136 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
f453ba04
DA
137};
138
139DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
140 drm_tv_subconnector_enum_list)
141
d20d3174 142static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
884840aa
JB
143 { DRM_MODE_DIRTY_OFF, "Off" },
144 { DRM_MODE_DIRTY_ON, "On" },
145 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
146};
147
f453ba04
DA
148struct drm_conn_prop_enum_list {
149 int type;
d20d3174 150 const char *name;
b21e3afe 151 struct ida ida;
f453ba04
DA
152};
153
154/*
155 * Connector and encoder types.
156 */
157static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
b21e3afe
IM
158{ { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
159 { DRM_MODE_CONNECTOR_VGA, "VGA" },
160 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
161 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
162 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
163 { DRM_MODE_CONNECTOR_Composite, "Composite" },
164 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
165 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
166 { DRM_MODE_CONNECTOR_Component, "Component" },
167 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
168 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
169 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
170 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
171 { DRM_MODE_CONNECTOR_TV, "TV" },
172 { DRM_MODE_CONNECTOR_eDP, "eDP" },
173 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
b8923273 174 { DRM_MODE_CONNECTOR_DSI, "DSI" },
f453ba04
DA
175};
176
d20d3174 177static const struct drm_prop_enum_list drm_encoder_enum_list[] =
f453ba04
DA
178{ { DRM_MODE_ENCODER_NONE, "None" },
179 { DRM_MODE_ENCODER_DAC, "DAC" },
180 { DRM_MODE_ENCODER_TMDS, "TMDS" },
181 { DRM_MODE_ENCODER_LVDS, "LVDS" },
182 { DRM_MODE_ENCODER_TVDAC, "TV" },
a7331e5c 183 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
b8923273 184 { DRM_MODE_ENCODER_DSI, "DSI" },
182407a6 185 { DRM_MODE_ENCODER_DPMST, "DP MST" },
f453ba04
DA
186};
187
ac1bb36c
JB
188static const struct drm_prop_enum_list drm_subpixel_enum_list[] =
189{
190 { SubPixelUnknown, "Unknown" },
191 { SubPixelHorizontalRGB, "Horizontal RGB" },
192 { SubPixelHorizontalBGR, "Horizontal BGR" },
193 { SubPixelVerticalRGB, "Vertical RGB" },
194 { SubPixelVerticalBGR, "Vertical BGR" },
195 { SubPixelNone, "None" },
196};
197
b21e3afe
IM
198void drm_connector_ida_init(void)
199{
200 int i;
201
202 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
203 ida_init(&drm_connector_enum_list[i].ida);
204}
205
206void drm_connector_ida_destroy(void)
207{
208 int i;
209
210 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
211 ida_destroy(&drm_connector_enum_list[i].ida);
212}
213
c8e32cc1
DV
214/**
215 * drm_get_connector_status_name - return a string for connector status
216 * @status: connector status to compute name of
217 *
218 * In contrast to the other drm_get_*_name functions this one here returns a
219 * const pointer and hence is threadsafe.
220 */
d20d3174 221const char *drm_get_connector_status_name(enum drm_connector_status status)
f453ba04
DA
222{
223 if (status == connector_status_connected)
224 return "connected";
225 else if (status == connector_status_disconnected)
226 return "disconnected";
227 else
228 return "unknown";
229}
ed7951dc 230EXPORT_SYMBOL(drm_get_connector_status_name);
f453ba04 231
ac1bb36c
JB
232/**
233 * drm_get_subpixel_order_name - return a string for a given subpixel enum
234 * @order: enum of subpixel_order
235 *
236 * Note you could abuse this and return something out of bounds, but that
237 * would be a caller error. No unscrubbed user data should make it here.
238 */
239const char *drm_get_subpixel_order_name(enum subpixel_order order)
240{
241 return drm_subpixel_enum_list[order].name;
242}
243EXPORT_SYMBOL(drm_get_subpixel_order_name);
244
6ba6d03e
VS
245static char printable_char(int c)
246{
247 return isascii(c) && isprint(c) ? c : '?';
248}
249
c8e32cc1
DV
250/**
251 * drm_get_format_name - return a string for drm fourcc format
252 * @format: format to compute name of
253 *
254 * Note that the buffer used by this function is globally shared and owned by
255 * the function itself.
256 *
257 * FIXME: This isn't really multithreading safe.
258 */
d20d3174 259const char *drm_get_format_name(uint32_t format)
6ba6d03e
VS
260{
261 static char buf[32];
262
263 snprintf(buf, sizeof(buf),
264 "%c%c%c%c %s-endian (0x%08x)",
265 printable_char(format & 0xff),
266 printable_char((format >> 8) & 0xff),
267 printable_char((format >> 16) & 0xff),
268 printable_char((format >> 24) & 0x7f),
269 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
270 format);
271
272 return buf;
273}
274EXPORT_SYMBOL(drm_get_format_name);
275
2ee39452
DA
276/*
277 * Internal function to assign a slot in the object idr and optionally
278 * register the object into the idr.
279 */
280static int drm_mode_object_get_reg(struct drm_device *dev,
281 struct drm_mode_object *obj,
282 uint32_t obj_type,
283 bool register_obj)
284{
285 int ret;
286
287 mutex_lock(&dev->mode_config.idr_mutex);
288 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
289 if (ret >= 0) {
290 /*
291 * Set up the object linking under the protection of the idr
292 * lock so that other users can't see inconsistent state.
293 */
294 obj->id = ret;
295 obj->type = obj_type;
296 }
297 mutex_unlock(&dev->mode_config.idr_mutex);
298
299 return ret < 0 ? ret : 0;
300}
301
f453ba04 302/**
065a50ed 303 * drm_mode_object_get - allocate a new modeset identifier
f453ba04 304 * @dev: DRM device
065a50ed
DV
305 * @obj: object pointer, used to generate unique ID
306 * @obj_type: object type
f453ba04 307 *
f453ba04 308 * Create a unique identifier based on @ptr in @dev's identifier space. Used
c8e32cc1
DV
309 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
310 * modeset identifiers are _not_ reference counted. Hence don't use this for
311 * reference counted modeset objects like framebuffers.
f453ba04 312 *
c8e32cc1 313 * Returns:
f453ba04
DA
314 * New unique (relative to other objects in @dev) integer identifier for the
315 * object.
316 */
8bd441b2
DV
317int drm_mode_object_get(struct drm_device *dev,
318 struct drm_mode_object *obj, uint32_t obj_type)
f453ba04 319{
2ee39452
DA
320 return drm_mode_object_get_reg(dev, obj, obj_type, true);
321}
f453ba04 322
2ee39452
DA
323static void drm_mode_object_register(struct drm_device *dev,
324 struct drm_mode_object *obj)
325{
ad2563c2 326 mutex_lock(&dev->mode_config.idr_mutex);
2ee39452 327 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
ad2563c2 328 mutex_unlock(&dev->mode_config.idr_mutex);
f453ba04
DA
329}
330
331/**
065a50ed 332 * drm_mode_object_put - free a modeset identifer
f453ba04 333 * @dev: DRM device
065a50ed 334 * @object: object to free
f453ba04 335 *
c8e32cc1
DV
336 * Free @id from @dev's unique identifier pool. Note that despite the _get
337 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
338 * for reference counted modeset objects like framebuffers.
f453ba04 339 */
8bd441b2
DV
340void drm_mode_object_put(struct drm_device *dev,
341 struct drm_mode_object *object)
f453ba04 342{
ad2563c2 343 mutex_lock(&dev->mode_config.idr_mutex);
f453ba04 344 idr_remove(&dev->mode_config.crtc_idr, object->id);
ad2563c2 345 mutex_unlock(&dev->mode_config.idr_mutex);
f453ba04
DA
346}
347
98f75de4
RC
348static struct drm_mode_object *_object_find(struct drm_device *dev,
349 uint32_t id, uint32_t type)
350{
351 struct drm_mode_object *obj = NULL;
352
353 mutex_lock(&dev->mode_config.idr_mutex);
354 obj = idr_find(&dev->mode_config.crtc_idr, id);
168c02ec
DV
355 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
356 obj = NULL;
357 if (obj && obj->id != id)
358 obj = NULL;
359 /* don't leak out unref'd fb's */
360 if (obj && (obj->type == DRM_MODE_OBJECT_FB))
98f75de4
RC
361 obj = NULL;
362 mutex_unlock(&dev->mode_config.idr_mutex);
363
364 return obj;
365}
366
786b99ed
DV
367/**
368 * drm_mode_object_find - look up a drm object with static lifetime
369 * @dev: drm device
370 * @id: id of the mode object
371 * @type: type of the mode object
372 *
373 * Note that framebuffers cannot be looked up with this functions - since those
98f75de4
RC
374 * are reference counted, they need special treatment. Even with
375 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
376 * rather than WARN_ON()).
786b99ed 377 */
7a9c9060
DV
378struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
379 uint32_t id, uint32_t type)
f453ba04 380{
ad2563c2 381 struct drm_mode_object *obj = NULL;
f453ba04 382
786b99ed
DV
383 /* Framebuffers are reference counted and need their own lookup
384 * function.*/
385 WARN_ON(type == DRM_MODE_OBJECT_FB);
98f75de4 386 obj = _object_find(dev, id, type);
f453ba04
DA
387 return obj;
388}
389EXPORT_SYMBOL(drm_mode_object_find);
390
f453ba04
DA
391/**
392 * drm_framebuffer_init - initialize a framebuffer
393 * @dev: DRM device
065a50ed
DV
394 * @fb: framebuffer to be initialized
395 * @funcs: ... with these functions
f453ba04 396 *
f453ba04
DA
397 * Allocates an ID for the framebuffer's parent mode object, sets its mode
398 * functions & device file and adds it to the master fd list.
399 *
4b096ac1
DV
400 * IMPORTANT:
401 * This functions publishes the fb and makes it available for concurrent access
402 * by other users. Which means by this point the fb _must_ be fully set up -
403 * since all the fb attributes are invariant over its lifetime, no further
404 * locking but only correct reference counting is required.
405 *
c8e32cc1 406 * Returns:
af901ca1 407 * Zero on success, error code on failure.
f453ba04
DA
408 */
409int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
410 const struct drm_framebuffer_funcs *funcs)
411{
412 int ret;
413
4b096ac1 414 mutex_lock(&dev->mode_config.fb_lock);
f7eff60e 415 kref_init(&fb->refcount);
4b096ac1
DV
416 INIT_LIST_HEAD(&fb->filp_head);
417 fb->dev = dev;
418 fb->funcs = funcs;
f7eff60e 419
f453ba04 420 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
6bfc56aa 421 if (ret)
4b096ac1 422 goto out;
f453ba04 423
f453ba04
DA
424 dev->mode_config.num_fb++;
425 list_add(&fb->head, &dev->mode_config.fb_list);
4b096ac1
DV
426out:
427 mutex_unlock(&dev->mode_config.fb_lock);
f453ba04
DA
428
429 return 0;
430}
431EXPORT_SYMBOL(drm_framebuffer_init);
432
83f45fc3
DV
433/* dev->mode_config.fb_lock must be held! */
434static void __drm_framebuffer_unregister(struct drm_device *dev,
435 struct drm_framebuffer *fb)
436{
437 mutex_lock(&dev->mode_config.idr_mutex);
438 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
439 mutex_unlock(&dev->mode_config.idr_mutex);
440
441 fb->base.id = 0;
442}
443
f7eff60e
RC
444static void drm_framebuffer_free(struct kref *kref)
445{
446 struct drm_framebuffer *fb =
447 container_of(kref, struct drm_framebuffer, refcount);
83f45fc3
DV
448 struct drm_device *dev = fb->dev;
449
450 /*
451 * The lookup idr holds a weak reference, which has not necessarily been
452 * removed at this point. Check for that.
453 */
454 mutex_lock(&dev->mode_config.fb_lock);
455 if (fb->base.id) {
456 /* Mark fb as reaped and drop idr ref. */
457 __drm_framebuffer_unregister(dev, fb);
458 }
459 mutex_unlock(&dev->mode_config.fb_lock);
460
f7eff60e
RC
461 fb->funcs->destroy(fb);
462}
463
2b677e8c
DV
464static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
465 uint32_t id)
466{
467 struct drm_mode_object *obj = NULL;
468 struct drm_framebuffer *fb;
469
470 mutex_lock(&dev->mode_config.idr_mutex);
471 obj = idr_find(&dev->mode_config.crtc_idr, id);
472 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
473 fb = NULL;
474 else
475 fb = obj_to_fb(obj);
476 mutex_unlock(&dev->mode_config.idr_mutex);
477
478 return fb;
479}
480
786b99ed
DV
481/**
482 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
483 * @dev: drm device
484 * @id: id of the fb object
485 *
486 * If successful, this grabs an additional reference to the framebuffer -
487 * callers need to make sure to eventually unreference the returned framebuffer
c8e32cc1 488 * again, using @drm_framebuffer_unreference.
786b99ed
DV
489 */
490struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
491 uint32_t id)
492{
786b99ed
DV
493 struct drm_framebuffer *fb;
494
495 mutex_lock(&dev->mode_config.fb_lock);
2b677e8c 496 fb = __drm_framebuffer_lookup(dev, id);
83f45fc3
DV
497 if (fb) {
498 if (!kref_get_unless_zero(&fb->refcount))
499 fb = NULL;
500 }
786b99ed
DV
501 mutex_unlock(&dev->mode_config.fb_lock);
502
503 return fb;
504}
505EXPORT_SYMBOL(drm_framebuffer_lookup);
506
f7eff60e
RC
507/**
508 * drm_framebuffer_unreference - unref a framebuffer
065a50ed
DV
509 * @fb: framebuffer to unref
510 *
511 * This functions decrements the fb's refcount and frees it if it drops to zero.
f7eff60e
RC
512 */
513void drm_framebuffer_unreference(struct drm_framebuffer *fb)
514{
8291272a 515 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
f7eff60e
RC
516 kref_put(&fb->refcount, drm_framebuffer_free);
517}
518EXPORT_SYMBOL(drm_framebuffer_unreference);
519
520/**
521 * drm_framebuffer_reference - incr the fb refcnt
065a50ed 522 * @fb: framebuffer
c8e32cc1
DV
523 *
524 * This functions increments the fb's refcount.
f7eff60e
RC
525 */
526void drm_framebuffer_reference(struct drm_framebuffer *fb)
527{
8291272a 528 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
f7eff60e
RC
529 kref_get(&fb->refcount);
530}
531EXPORT_SYMBOL(drm_framebuffer_reference);
532
2b677e8c
DV
533static void drm_framebuffer_free_bug(struct kref *kref)
534{
535 BUG();
536}
537
6c2a7532
DV
538static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
539{
8291272a 540 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
6c2a7532
DV
541 kref_put(&fb->refcount, drm_framebuffer_free_bug);
542}
543
36206361
DV
544/**
545 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
546 * @fb: fb to unregister
547 *
548 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
549 * those used for fbdev. Note that the caller must hold a reference of it's own,
550 * i.e. the object may not be destroyed through this call (since it'll lead to a
551 * locking inversion).
552 */
553void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
554{
2b677e8c
DV
555 struct drm_device *dev = fb->dev;
556
557 mutex_lock(&dev->mode_config.fb_lock);
558 /* Mark fb as reaped and drop idr ref. */
559 __drm_framebuffer_unregister(dev, fb);
560 mutex_unlock(&dev->mode_config.fb_lock);
36206361
DV
561}
562EXPORT_SYMBOL(drm_framebuffer_unregister_private);
563
f453ba04
DA
564/**
565 * drm_framebuffer_cleanup - remove a framebuffer object
566 * @fb: framebuffer to remove
567 *
c8e32cc1
DV
568 * Cleanup framebuffer. This function is intended to be used from the drivers
569 * ->destroy callback. It can also be used to clean up driver private
570 * framebuffers embedded into a larger structure.
36206361
DV
571 *
572 * Note that this function does not remove the fb from active usuage - if it is
573 * still used anywhere, hilarity can ensue since userspace could call getfb on
574 * the id and get back -EINVAL. Obviously no concern at driver unload time.
575 *
576 * Also, the framebuffer will not be removed from the lookup idr - for
577 * user-created framebuffers this will happen in in the rmfb ioctl. For
578 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
579 * drm_framebuffer_unregister_private.
f453ba04
DA
580 */
581void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
f7eff60e
RC
582{
583 struct drm_device *dev = fb->dev;
8faf6b18 584
4b096ac1 585 mutex_lock(&dev->mode_config.fb_lock);
f7eff60e
RC
586 list_del(&fb->head);
587 dev->mode_config.num_fb--;
4b096ac1 588 mutex_unlock(&dev->mode_config.fb_lock);
f7eff60e
RC
589}
590EXPORT_SYMBOL(drm_framebuffer_cleanup);
591
592/**
593 * drm_framebuffer_remove - remove and unreference a framebuffer object
594 * @fb: framebuffer to remove
595 *
f7eff60e 596 * Scans all the CRTCs and planes in @dev's mode_config. If they're
36206361 597 * using @fb, removes it, setting it to NULL. Then drops the reference to the
b62584e3
DV
598 * passed-in framebuffer. Might take the modeset locks.
599 *
600 * Note that this function optimizes the cleanup away if the caller holds the
601 * last reference to the framebuffer. It is also guaranteed to not take the
602 * modeset locks in this case.
f7eff60e
RC
603 */
604void drm_framebuffer_remove(struct drm_framebuffer *fb)
f453ba04
DA
605{
606 struct drm_device *dev = fb->dev;
607 struct drm_crtc *crtc;
8cf5c917 608 struct drm_plane *plane;
5ef5f72f
DA
609 struct drm_mode_set set;
610 int ret;
f453ba04 611
4b096ac1 612 WARN_ON(!list_empty(&fb->filp_head));
8faf6b18 613
b62584e3
DV
614 /*
615 * drm ABI mandates that we remove any deleted framebuffers from active
616 * useage. But since most sane clients only remove framebuffers they no
617 * longer need, try to optimize this away.
618 *
619 * Since we're holding a reference ourselves, observing a refcount of 1
620 * means that we're the last holder and can skip it. Also, the refcount
621 * can never increase from 1 again, so we don't need any barriers or
622 * locks.
623 *
624 * Note that userspace could try to race with use and instate a new
625 * usage _after_ we've cleared all current ones. End result will be an
626 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
627 * in this manner.
628 */
629 if (atomic_read(&fb->refcount.refcount) > 1) {
630 drm_modeset_lock_all(dev);
631 /* remove from any CRTC */
632 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
f4510a27 633 if (crtc->primary->fb == fb) {
b62584e3
DV
634 /* should turn off the crtc */
635 memset(&set, 0, sizeof(struct drm_mode_set));
636 set.crtc = crtc;
637 set.fb = NULL;
638 ret = drm_mode_set_config_internal(&set);
639 if (ret)
640 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
641 }
5ef5f72f 642 }
f453ba04 643
b62584e3 644 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
9125e618
VS
645 if (plane->fb == fb)
646 drm_plane_force_disable(plane);
8cf5c917 647 }
b62584e3 648 drm_modeset_unlock_all(dev);
8cf5c917
JB
649 }
650
f7eff60e 651 drm_framebuffer_unreference(fb);
f453ba04 652}
f7eff60e 653EXPORT_SYMBOL(drm_framebuffer_remove);
f453ba04 654
51fd371b
RC
655DEFINE_WW_CLASS(crtc_ww_class);
656
f453ba04 657/**
e13161af
MR
658 * drm_crtc_init_with_planes - Initialise a new CRTC object with
659 * specified primary and cursor planes.
f453ba04
DA
660 * @dev: DRM device
661 * @crtc: CRTC object to init
e13161af
MR
662 * @primary: Primary plane for CRTC
663 * @cursor: Cursor plane for CRTC
f453ba04
DA
664 * @funcs: callbacks for the new CRTC
665 *
ad6f5c34 666 * Inits a new object created as base part of a driver crtc object.
6bfc56aa 667 *
c8e32cc1 668 * Returns:
6bfc56aa 669 * Zero on success, error code on failure.
f453ba04 670 */
e13161af
MR
671int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
672 struct drm_plane *primary,
fc1d3e44 673 struct drm_plane *cursor,
e13161af 674 const struct drm_crtc_funcs *funcs)
f453ba04 675{
51fd371b 676 struct drm_mode_config *config = &dev->mode_config;
6bfc56aa
VS
677 int ret;
678
f453ba04
DA
679 crtc->dev = dev;
680 crtc->funcs = funcs;
7c80e128 681 crtc->invert_dimensions = false;
f453ba04 682
51fd371b 683 drm_modeset_lock_init(&crtc->mutex);
6bfc56aa
VS
684 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
685 if (ret)
686 goto out;
f453ba04 687
bffd9de0
PZ
688 crtc->base.properties = &crtc->properties;
689
51fd371b
RC
690 list_add_tail(&crtc->head, &config->crtc_list);
691 config->num_crtc++;
6bfc56aa 692
e13161af 693 crtc->primary = primary;
fc1d3e44 694 crtc->cursor = cursor;
e13161af
MR
695 if (primary)
696 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
fc1d3e44
MR
697 if (cursor)
698 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
e13161af 699
6bfc56aa 700 out:
6bfc56aa
VS
701
702 return ret;
f453ba04 703}
e13161af 704EXPORT_SYMBOL(drm_crtc_init_with_planes);
f453ba04
DA
705
706/**
ad6f5c34 707 * drm_crtc_cleanup - Clean up the core crtc usage
f453ba04
DA
708 * @crtc: CRTC to cleanup
709 *
ad6f5c34
VS
710 * This function cleans up @crtc and removes it from the DRM mode setting
711 * core. Note that the function does *not* free the crtc structure itself,
712 * this is the responsibility of the caller.
f453ba04
DA
713 */
714void drm_crtc_cleanup(struct drm_crtc *crtc)
715{
716 struct drm_device *dev = crtc->dev;
717
9e1c156f
SK
718 kfree(crtc->gamma_store);
719 crtc->gamma_store = NULL;
f453ba04 720
51fd371b
RC
721 drm_modeset_lock_fini(&crtc->mutex);
722
f453ba04
DA
723 drm_mode_object_put(dev, &crtc->base);
724 list_del(&crtc->head);
725 dev->mode_config.num_crtc--;
726}
727EXPORT_SYMBOL(drm_crtc_cleanup);
728
db5f7a6e
RK
729/**
730 * drm_crtc_index - find the index of a registered CRTC
731 * @crtc: CRTC to find index for
732 *
733 * Given a registered CRTC, return the index of that CRTC within a DRM
734 * device's list of CRTCs.
735 */
736unsigned int drm_crtc_index(struct drm_crtc *crtc)
737{
738 unsigned int index = 0;
739 struct drm_crtc *tmp;
740
741 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
742 if (tmp == crtc)
743 return index;
744
745 index++;
746 }
747
748 BUG();
749}
750EXPORT_SYMBOL(drm_crtc_index);
751
86f422d5 752/*
f453ba04
DA
753 * drm_mode_remove - remove and free a mode
754 * @connector: connector list to modify
755 * @mode: mode to remove
756 *
f453ba04
DA
757 * Remove @mode from @connector's mode list, then free it.
758 */
86f422d5
LD
759static void drm_mode_remove(struct drm_connector *connector,
760 struct drm_display_mode *mode)
f453ba04
DA
761{
762 list_del(&mode->head);
554f1d78 763 drm_mode_destroy(connector->dev, mode);
f453ba04 764}
f453ba04 765
eaf99c74
CW
766/**
767 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
768 * @connector: connector to quwery
769 * @mode: returned mode
770 *
771 * The kernel supports per-connector configration of its consoles through
772 * use of the video= parameter. This function parses that option and
773 * extracts the user's specified mode (or enable/disable status) for a
774 * particular connector. This is typically only used during the early fbdev
775 * setup.
776 */
777static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
778{
779 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
780 char *option = NULL;
781
782 if (fb_get_options(connector->name, &option))
783 return;
784
785 if (!drm_mode_parse_command_line_for_connector(option,
786 connector,
787 mode))
788 return;
789
790 if (mode->force) {
791 const char *s;
792
793 switch (mode->force) {
794 case DRM_FORCE_OFF:
795 s = "OFF";
796 break;
797 case DRM_FORCE_ON_DIGITAL:
798 s = "ON - dig";
799 break;
800 default:
801 case DRM_FORCE_ON:
802 s = "ON";
803 break;
804 }
805
806 DRM_INFO("forcing %s connector %s\n", connector->name, s);
807 connector->force = mode->force;
808 }
809
810 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
811 connector->name,
812 mode->xres, mode->yres,
813 mode->refresh_specified ? mode->refresh : 60,
814 mode->rb ? " reduced blanking" : "",
815 mode->margins ? " with margins" : "",
816 mode->interlace ? " interlaced" : "");
817}
818
f453ba04
DA
819/**
820 * drm_connector_init - Init a preallocated connector
821 * @dev: DRM device
822 * @connector: the connector to init
823 * @funcs: callbacks for this connector
065a50ed 824 * @connector_type: user visible type of the connector
f453ba04 825 *
f453ba04
DA
826 * Initialises a preallocated connector. Connectors should be
827 * subclassed as part of driver connector objects.
6bfc56aa 828 *
c8e32cc1 829 * Returns:
6bfc56aa 830 * Zero on success, error code on failure.
f453ba04 831 */
6bfc56aa
VS
832int drm_connector_init(struct drm_device *dev,
833 struct drm_connector *connector,
834 const struct drm_connector_funcs *funcs,
835 int connector_type)
f453ba04 836{
6bfc56aa 837 int ret;
b21e3afe
IM
838 struct ida *connector_ida =
839 &drm_connector_enum_list[connector_type].ida;
6bfc56aa 840
84849903 841 drm_modeset_lock_all(dev);
f453ba04 842
2ee39452 843 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
6bfc56aa 844 if (ret)
2abdd313 845 goto out_unlock;
6bfc56aa 846
7e3bdf4a 847 connector->base.properties = &connector->properties;
f453ba04
DA
848 connector->dev = dev;
849 connector->funcs = funcs;
f453ba04
DA
850 connector->connector_type = connector_type;
851 connector->connector_type_id =
b21e3afe
IM
852 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
853 if (connector->connector_type_id < 0) {
854 ret = connector->connector_type_id;
2abdd313 855 goto out_put;
b21e3afe 856 }
2abdd313
JN
857 connector->name =
858 kasprintf(GFP_KERNEL, "%s-%d",
859 drm_connector_enum_list[connector_type].name,
860 connector->connector_type_id);
861 if (!connector->name) {
862 ret = -ENOMEM;
863 goto out_put;
864 }
865
f453ba04
DA
866 INIT_LIST_HEAD(&connector->probed_modes);
867 INIT_LIST_HEAD(&connector->modes);
868 connector->edid_blob_ptr = NULL;
5e2cb2f6 869 connector->status = connector_status_unknown;
f453ba04 870
eaf99c74
CW
871 drm_connector_get_cmdline_mode(connector);
872
f453ba04
DA
873 list_add_tail(&connector->head, &dev->mode_config.connector_list);
874 dev->mode_config.num_connector++;
875
a7331e5c 876 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
58495563 877 drm_object_attach_property(&connector->base,
a7331e5c
TH
878 dev->mode_config.edid_property,
879 0);
f453ba04 880
58495563 881 drm_object_attach_property(&connector->base,
f453ba04
DA
882 dev->mode_config.dpms_property, 0);
883
30f65707
TW
884 connector->debugfs_entry = NULL;
885
2abdd313
JN
886out_put:
887 if (ret)
888 drm_mode_object_put(dev, &connector->base);
889
890out_unlock:
84849903 891 drm_modeset_unlock_all(dev);
6bfc56aa
VS
892
893 return ret;
f453ba04
DA
894}
895EXPORT_SYMBOL(drm_connector_init);
896
897/**
898 * drm_connector_cleanup - cleans up an initialised connector
899 * @connector: connector to cleanup
900 *
f453ba04
DA
901 * Cleans up the connector but doesn't free the object.
902 */
903void drm_connector_cleanup(struct drm_connector *connector)
904{
905 struct drm_device *dev = connector->dev;
906 struct drm_display_mode *mode, *t;
907
908 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
909 drm_mode_remove(connector, mode);
910
911 list_for_each_entry_safe(mode, t, &connector->modes, head)
912 drm_mode_remove(connector, mode);
913
b21e3afe
IM
914 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
915 connector->connector_type_id);
916
f453ba04 917 drm_mode_object_put(dev, &connector->base);
2abdd313
JN
918 kfree(connector->name);
919 connector->name = NULL;
f453ba04 920 list_del(&connector->head);
6380c509 921 dev->mode_config.num_connector--;
f453ba04
DA
922}
923EXPORT_SYMBOL(drm_connector_cleanup);
924
10f637bf
DV
925/**
926 * drm_connector_index - find the index of a registered connector
927 * @connector: connector to find index for
928 *
929 * Given a registered connector, return the index of that connector within a DRM
930 * device's list of connectors.
931 */
932unsigned int drm_connector_index(struct drm_connector *connector)
933{
934 unsigned int index = 0;
935 struct drm_connector *tmp;
936
937 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
938 if (tmp == connector)
939 return index;
940
941 index++;
942 }
943
944 BUG();
945}
946EXPORT_SYMBOL(drm_connector_index);
947
34ea3d38
TW
948/**
949 * drm_connector_register - register a connector
950 * @connector: the connector to register
951 *
952 * Register userspace interfaces for a connector
953 *
954 * Returns:
955 * Zero on success, error code on failure.
956 */
957int drm_connector_register(struct drm_connector *connector)
958{
30f65707
TW
959 int ret;
960
2ee39452
DA
961 drm_mode_object_register(connector->dev, &connector->base);
962
30f65707
TW
963 ret = drm_sysfs_connector_add(connector);
964 if (ret)
965 return ret;
966
967 ret = drm_debugfs_connector_add(connector);
968 if (ret) {
969 drm_sysfs_connector_remove(connector);
970 return ret;
971 }
972
973 return 0;
34ea3d38
TW
974}
975EXPORT_SYMBOL(drm_connector_register);
976
977/**
978 * drm_connector_unregister - unregister a connector
979 * @connector: the connector to unregister
980 *
981 * Unregister userspace interfaces for a connector
982 */
983void drm_connector_unregister(struct drm_connector *connector)
984{
985 drm_sysfs_connector_remove(connector);
30f65707 986 drm_debugfs_connector_remove(connector);
34ea3d38
TW
987}
988EXPORT_SYMBOL(drm_connector_unregister);
989
990
c8e32cc1
DV
991/**
992 * drm_connector_unplug_all - unregister connector userspace interfaces
993 * @dev: drm device
994 *
995 * This function unregisters all connector userspace interfaces in sysfs. Should
996 * be call when the device is disconnected, e.g. from an usb driver's
997 * ->disconnect callback.
998 */
cbc7e221
DA
999void drm_connector_unplug_all(struct drm_device *dev)
1000{
1001 struct drm_connector *connector;
1002
1003 /* taking the mode config mutex ends up in a clash with sysfs */
1004 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
34ea3d38 1005 drm_connector_unregister(connector);
cbc7e221
DA
1006
1007}
1008EXPORT_SYMBOL(drm_connector_unplug_all);
1009
c8e32cc1
DV
1010/**
1011 * drm_bridge_init - initialize a drm transcoder/bridge
1012 * @dev: drm device
1013 * @bridge: transcoder/bridge to set up
1014 * @funcs: bridge function table
1015 *
1016 * Initialises a preallocated bridge. Bridges should be
1017 * subclassed as part of driver connector objects.
1018 *
1019 * Returns:
1020 * Zero on success, error code on failure.
1021 */
3b336ec4
SP
1022int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1023 const struct drm_bridge_funcs *funcs)
1024{
1025 int ret;
1026
1027 drm_modeset_lock_all(dev);
1028
1029 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1030 if (ret)
1031 goto out;
1032
1033 bridge->dev = dev;
1034 bridge->funcs = funcs;
1035
1036 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1037 dev->mode_config.num_bridge++;
1038
1039 out:
1040 drm_modeset_unlock_all(dev);
1041 return ret;
1042}
1043EXPORT_SYMBOL(drm_bridge_init);
1044
c8e32cc1
DV
1045/**
1046 * drm_bridge_cleanup - cleans up an initialised bridge
1047 * @bridge: bridge to cleanup
1048 *
1049 * Cleans up the bridge but doesn't free the object.
1050 */
3b336ec4
SP
1051void drm_bridge_cleanup(struct drm_bridge *bridge)
1052{
1053 struct drm_device *dev = bridge->dev;
1054
1055 drm_modeset_lock_all(dev);
1056 drm_mode_object_put(dev, &bridge->base);
1057 list_del(&bridge->head);
1058 dev->mode_config.num_bridge--;
1059 drm_modeset_unlock_all(dev);
1060}
1061EXPORT_SYMBOL(drm_bridge_cleanup);
1062
c8e32cc1
DV
1063/**
1064 * drm_encoder_init - Init a preallocated encoder
1065 * @dev: drm device
1066 * @encoder: the encoder to init
1067 * @funcs: callbacks for this encoder
1068 * @encoder_type: user visible type of the encoder
1069 *
1070 * Initialises a preallocated encoder. Encoder should be
1071 * subclassed as part of driver encoder objects.
1072 *
1073 * Returns:
1074 * Zero on success, error code on failure.
1075 */
6bfc56aa 1076int drm_encoder_init(struct drm_device *dev,
cbc7e221
DA
1077 struct drm_encoder *encoder,
1078 const struct drm_encoder_funcs *funcs,
1079 int encoder_type)
f453ba04 1080{
6bfc56aa
VS
1081 int ret;
1082
84849903 1083 drm_modeset_lock_all(dev);
f453ba04 1084
6bfc56aa
VS
1085 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1086 if (ret)
e5748946 1087 goto out_unlock;
f453ba04 1088
6bfc56aa 1089 encoder->dev = dev;
f453ba04
DA
1090 encoder->encoder_type = encoder_type;
1091 encoder->funcs = funcs;
e5748946
JN
1092 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1093 drm_encoder_enum_list[encoder_type].name,
1094 encoder->base.id);
1095 if (!encoder->name) {
1096 ret = -ENOMEM;
1097 goto out_put;
1098 }
f453ba04
DA
1099
1100 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1101 dev->mode_config.num_encoder++;
1102
e5748946
JN
1103out_put:
1104 if (ret)
1105 drm_mode_object_put(dev, &encoder->base);
1106
1107out_unlock:
84849903 1108 drm_modeset_unlock_all(dev);
6bfc56aa
VS
1109
1110 return ret;
f453ba04
DA
1111}
1112EXPORT_SYMBOL(drm_encoder_init);
1113
c8e32cc1
DV
1114/**
1115 * drm_encoder_cleanup - cleans up an initialised encoder
1116 * @encoder: encoder to cleanup
1117 *
1118 * Cleans up the encoder but doesn't free the object.
1119 */
f453ba04
DA
1120void drm_encoder_cleanup(struct drm_encoder *encoder)
1121{
1122 struct drm_device *dev = encoder->dev;
84849903 1123 drm_modeset_lock_all(dev);
f453ba04 1124 drm_mode_object_put(dev, &encoder->base);
e5748946
JN
1125 kfree(encoder->name);
1126 encoder->name = NULL;
f453ba04 1127 list_del(&encoder->head);
6380c509 1128 dev->mode_config.num_encoder--;
84849903 1129 drm_modeset_unlock_all(dev);
f453ba04
DA
1130}
1131EXPORT_SYMBOL(drm_encoder_cleanup);
1132
35f2c3ae 1133/**
dc415ff9 1134 * drm_universal_plane_init - Initialize a new universal plane object
35f2c3ae
VS
1135 * @dev: DRM device
1136 * @plane: plane object to init
1137 * @possible_crtcs: bitmask of possible CRTCs
1138 * @funcs: callbacks for the new plane
1139 * @formats: array of supported formats (%DRM_FORMAT_*)
1140 * @format_count: number of elements in @formats
dc415ff9 1141 * @type: type of plane (overlay, primary, cursor)
35f2c3ae 1142 *
dc415ff9 1143 * Initializes a plane object of type @type.
35f2c3ae 1144 *
c8e32cc1 1145 * Returns:
35f2c3ae
VS
1146 * Zero on success, error code on failure.
1147 */
dc415ff9
MR
1148int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1149 unsigned long possible_crtcs,
1150 const struct drm_plane_funcs *funcs,
1151 const uint32_t *formats, uint32_t format_count,
1152 enum drm_plane_type type)
8cf5c917 1153{
6bfc56aa
VS
1154 int ret;
1155
84849903 1156 drm_modeset_lock_all(dev);
8cf5c917 1157
6bfc56aa
VS
1158 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1159 if (ret)
1160 goto out;
1161
4d93914a 1162 plane->base.properties = &plane->properties;
8cf5c917 1163 plane->dev = dev;
8cf5c917
JB
1164 plane->funcs = funcs;
1165 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1166 GFP_KERNEL);
1167 if (!plane->format_types) {
1168 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1169 drm_mode_object_put(dev, &plane->base);
6bfc56aa
VS
1170 ret = -ENOMEM;
1171 goto out;
8cf5c917
JB
1172 }
1173
308e5bcb 1174 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
8cf5c917
JB
1175 plane->format_count = format_count;
1176 plane->possible_crtcs = possible_crtcs;
dc415ff9 1177 plane->type = type;
8cf5c917 1178
dc415ff9
MR
1179 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1180 dev->mode_config.num_total_plane++;
1181 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1182 dev->mode_config.num_overlay_plane++;
8cf5c917 1183
9922ab5a
RC
1184 drm_object_attach_property(&plane->base,
1185 dev->mode_config.plane_type_property,
1186 plane->type);
1187
6bfc56aa 1188 out:
84849903 1189 drm_modeset_unlock_all(dev);
8cf5c917 1190
6bfc56aa 1191 return ret;
8cf5c917 1192}
dc415ff9
MR
1193EXPORT_SYMBOL(drm_universal_plane_init);
1194
1195/**
1196 * drm_plane_init - Initialize a legacy plane
1197 * @dev: DRM device
1198 * @plane: plane object to init
1199 * @possible_crtcs: bitmask of possible CRTCs
1200 * @funcs: callbacks for the new plane
1201 * @formats: array of supported formats (%DRM_FORMAT_*)
1202 * @format_count: number of elements in @formats
1203 * @is_primary: plane type (primary vs overlay)
1204 *
1205 * Legacy API to initialize a DRM plane.
1206 *
1207 * New drivers should call drm_universal_plane_init() instead.
1208 *
1209 * Returns:
1210 * Zero on success, error code on failure.
1211 */
1212int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1213 unsigned long possible_crtcs,
1214 const struct drm_plane_funcs *funcs,
1215 const uint32_t *formats, uint32_t format_count,
1216 bool is_primary)
1217{
1218 enum drm_plane_type type;
1219
1220 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1221 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1222 formats, format_count, type);
1223}
8cf5c917
JB
1224EXPORT_SYMBOL(drm_plane_init);
1225
35f2c3ae
VS
1226/**
1227 * drm_plane_cleanup - Clean up the core plane usage
1228 * @plane: plane to cleanup
1229 *
1230 * This function cleans up @plane and removes it from the DRM mode setting
1231 * core. Note that the function does *not* free the plane structure itself,
1232 * this is the responsibility of the caller.
1233 */
8cf5c917
JB
1234void drm_plane_cleanup(struct drm_plane *plane)
1235{
1236 struct drm_device *dev = plane->dev;
1237
84849903 1238 drm_modeset_lock_all(dev);
8cf5c917
JB
1239 kfree(plane->format_types);
1240 drm_mode_object_put(dev, &plane->base);
dc415ff9
MR
1241
1242 BUG_ON(list_empty(&plane->head));
1243
1244 list_del(&plane->head);
1245 dev->mode_config.num_total_plane--;
1246 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1247 dev->mode_config.num_overlay_plane--;
84849903 1248 drm_modeset_unlock_all(dev);
8cf5c917
JB
1249}
1250EXPORT_SYMBOL(drm_plane_cleanup);
1251
10f637bf
DV
1252/**
1253 * drm_plane_index - find the index of a registered plane
1254 * @plane: plane to find index for
1255 *
1256 * Given a registered plane, return the index of that CRTC within a DRM
1257 * device's list of planes.
1258 */
1259unsigned int drm_plane_index(struct drm_plane *plane)
1260{
1261 unsigned int index = 0;
1262 struct drm_plane *tmp;
1263
1264 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1265 if (tmp == plane)
1266 return index;
1267
1268 index++;
1269 }
1270
1271 BUG();
1272}
1273EXPORT_SYMBOL(drm_plane_index);
1274
35f2c3ae
VS
1275/**
1276 * drm_plane_force_disable - Forcibly disable a plane
1277 * @plane: plane to disable
1278 *
1279 * Forces the plane to be disabled.
1280 *
1281 * Used when the plane's current framebuffer is destroyed,
1282 * and when restoring fbdev mode.
1283 */
9125e618
VS
1284void drm_plane_force_disable(struct drm_plane *plane)
1285{
1286 int ret;
1287
3d30a59b 1288 if (!plane->fb)
9125e618
VS
1289 return;
1290
3d30a59b 1291 plane->old_fb = plane->fb;
9125e618 1292 ret = plane->funcs->disable_plane(plane);
731cce48 1293 if (ret) {
9125e618 1294 DRM_ERROR("failed to disable plane with busy fb\n");
3d30a59b 1295 plane->old_fb = NULL;
731cce48
DV
1296 return;
1297 }
9125e618 1298 /* disconnect the plane from the fb and crtc: */
3d30a59b
DV
1299 __drm_framebuffer_unreference(plane->old_fb);
1300 plane->old_fb = NULL;
9125e618
VS
1301 plane->fb = NULL;
1302 plane->crtc = NULL;
1303}
1304EXPORT_SYMBOL(drm_plane_force_disable);
1305
f453ba04
DA
1306static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1307{
1308 struct drm_property *edid;
1309 struct drm_property *dpms;
43aba7eb 1310 struct drm_property *dev_path;
f453ba04
DA
1311
1312 /*
1313 * Standard properties (apply to all connectors)
1314 */
1315 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1316 DRM_MODE_PROP_IMMUTABLE,
1317 "EDID", 0);
1318 dev->mode_config.edid_property = edid;
1319
4a67d391
SH
1320 dpms = drm_property_create_enum(dev, 0,
1321 "DPMS", drm_dpms_enum_list,
1322 ARRAY_SIZE(drm_dpms_enum_list));
f453ba04
DA
1323 dev->mode_config.dpms_property = dpms;
1324
43aba7eb
DA
1325 dev_path = drm_property_create(dev,
1326 DRM_MODE_PROP_BLOB |
1327 DRM_MODE_PROP_IMMUTABLE,
1328 "PATH", 0);
1329 dev->mode_config.path_property = dev_path;
1330
f453ba04
DA
1331 return 0;
1332}
1333
9922ab5a
RC
1334static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1335{
1336 struct drm_property *type;
1337
1338 /*
1339 * Standard properties (apply to all planes)
1340 */
1341 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1342 "type", drm_plane_type_enum_list,
1343 ARRAY_SIZE(drm_plane_type_enum_list));
1344 dev->mode_config.plane_type_property = type;
1345
1346 return 0;
1347}
1348
f453ba04
DA
1349/**
1350 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1351 * @dev: DRM device
1352 *
1353 * Called by a driver the first time a DVI-I connector is made.
1354 */
1355int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1356{
1357 struct drm_property *dvi_i_selector;
1358 struct drm_property *dvi_i_subconnector;
f453ba04
DA
1359
1360 if (dev->mode_config.dvi_i_select_subconnector_property)
1361 return 0;
1362
1363 dvi_i_selector =
4a67d391 1364 drm_property_create_enum(dev, 0,
f453ba04 1365 "select subconnector",
4a67d391 1366 drm_dvi_i_select_enum_list,
f453ba04 1367 ARRAY_SIZE(drm_dvi_i_select_enum_list));
f453ba04
DA
1368 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1369
4a67d391 1370 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
f453ba04 1371 "subconnector",
4a67d391 1372 drm_dvi_i_subconnector_enum_list,
f453ba04 1373 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
f453ba04
DA
1374 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1375
1376 return 0;
1377}
1378EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1379
1380/**
1381 * drm_create_tv_properties - create TV specific connector properties
1382 * @dev: DRM device
1383 * @num_modes: number of different TV formats (modes) supported
1384 * @modes: array of pointers to strings containing name of each format
1385 *
1386 * Called by a driver's TV initialization routine, this function creates
1387 * the TV specific connector properties for a given device. Caller is
1388 * responsible for allocating a list of format names and passing them to
1389 * this routine.
1390 */
1391int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1392 char *modes[])
1393{
1394 struct drm_property *tv_selector;
1395 struct drm_property *tv_subconnector;
1396 int i;
1397
1398 if (dev->mode_config.tv_select_subconnector_property)
1399 return 0;
1400
1401 /*
1402 * Basic connector properties
1403 */
4a67d391 1404 tv_selector = drm_property_create_enum(dev, 0,
f453ba04 1405 "select subconnector",
4a67d391 1406 drm_tv_select_enum_list,
f453ba04 1407 ARRAY_SIZE(drm_tv_select_enum_list));
f453ba04
DA
1408 dev->mode_config.tv_select_subconnector_property = tv_selector;
1409
1410 tv_subconnector =
4a67d391
SH
1411 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1412 "subconnector",
1413 drm_tv_subconnector_enum_list,
f453ba04 1414 ARRAY_SIZE(drm_tv_subconnector_enum_list));
f453ba04
DA
1415 dev->mode_config.tv_subconnector_property = tv_subconnector;
1416
1417 /*
1418 * Other, TV specific properties: margins & TV modes.
1419 */
1420 dev->mode_config.tv_left_margin_property =
d9bc3c02 1421 drm_property_create_range(dev, 0, "left margin", 0, 100);
f453ba04
DA
1422
1423 dev->mode_config.tv_right_margin_property =
d9bc3c02 1424 drm_property_create_range(dev, 0, "right margin", 0, 100);
f453ba04
DA
1425
1426 dev->mode_config.tv_top_margin_property =
d9bc3c02 1427 drm_property_create_range(dev, 0, "top margin", 0, 100);
f453ba04
DA
1428
1429 dev->mode_config.tv_bottom_margin_property =
d9bc3c02 1430 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
f453ba04
DA
1431
1432 dev->mode_config.tv_mode_property =
1433 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1434 "mode", num_modes);
1435 for (i = 0; i < num_modes; i++)
1436 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1437 i, modes[i]);
1438
b6b7902e 1439 dev->mode_config.tv_brightness_property =
d9bc3c02 1440 drm_property_create_range(dev, 0, "brightness", 0, 100);
b6b7902e
FJ
1441
1442 dev->mode_config.tv_contrast_property =
d9bc3c02 1443 drm_property_create_range(dev, 0, "contrast", 0, 100);
b6b7902e
FJ
1444
1445 dev->mode_config.tv_flicker_reduction_property =
d9bc3c02 1446 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
b6b7902e 1447
a75f0236 1448 dev->mode_config.tv_overscan_property =
d9bc3c02 1449 drm_property_create_range(dev, 0, "overscan", 0, 100);
a75f0236
FJ
1450
1451 dev->mode_config.tv_saturation_property =
d9bc3c02 1452 drm_property_create_range(dev, 0, "saturation", 0, 100);
a75f0236
FJ
1453
1454 dev->mode_config.tv_hue_property =
d9bc3c02 1455 drm_property_create_range(dev, 0, "hue", 0, 100);
a75f0236 1456
f453ba04
DA
1457 return 0;
1458}
1459EXPORT_SYMBOL(drm_mode_create_tv_properties);
1460
1461/**
1462 * drm_mode_create_scaling_mode_property - create scaling mode property
1463 * @dev: DRM device
1464 *
1465 * Called by a driver the first time it's needed, must be attached to desired
1466 * connectors.
1467 */
1468int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1469{
1470 struct drm_property *scaling_mode;
f453ba04
DA
1471
1472 if (dev->mode_config.scaling_mode_property)
1473 return 0;
1474
1475 scaling_mode =
4a67d391
SH
1476 drm_property_create_enum(dev, 0, "scaling mode",
1477 drm_scaling_mode_enum_list,
f453ba04 1478 ARRAY_SIZE(drm_scaling_mode_enum_list));
f453ba04
DA
1479
1480 dev->mode_config.scaling_mode_property = scaling_mode;
1481
1482 return 0;
1483}
1484EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1485
ff587e45
VK
1486/**
1487 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1488 * @dev: DRM device
1489 *
1490 * Called by a driver the first time it's needed, must be attached to desired
1491 * connectors.
1492 *
1493 * Returns:
1494 * Zero on success, errno on failure.
1495 */
1496int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1497{
1498 if (dev->mode_config.aspect_ratio_property)
1499 return 0;
1500
1501 dev->mode_config.aspect_ratio_property =
1502 drm_property_create_enum(dev, 0, "aspect ratio",
1503 drm_aspect_ratio_enum_list,
1504 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1505
1506 if (dev->mode_config.aspect_ratio_property == NULL)
1507 return -ENOMEM;
1508
1509 return 0;
1510}
1511EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1512
884840aa
JB
1513/**
1514 * drm_mode_create_dirty_property - create dirty property
1515 * @dev: DRM device
1516 *
1517 * Called by a driver the first time it's needed, must be attached to desired
1518 * connectors.
1519 */
1520int drm_mode_create_dirty_info_property(struct drm_device *dev)
1521{
1522 struct drm_property *dirty_info;
884840aa
JB
1523
1524 if (dev->mode_config.dirty_info_property)
1525 return 0;
1526
1527 dirty_info =
4a67d391 1528 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
884840aa 1529 "dirty",
4a67d391 1530 drm_dirty_info_enum_list,
884840aa 1531 ARRAY_SIZE(drm_dirty_info_enum_list));
884840aa
JB
1532 dev->mode_config.dirty_info_property = dirty_info;
1533
1534 return 0;
1535}
1536EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1537
ea9cbb06 1538static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
f453ba04
DA
1539{
1540 uint32_t total_objects = 0;
1541
1542 total_objects += dev->mode_config.num_crtc;
1543 total_objects += dev->mode_config.num_connector;
1544 total_objects += dev->mode_config.num_encoder;
3b336ec4 1545 total_objects += dev->mode_config.num_bridge;
f453ba04 1546
f453ba04
DA
1547 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1548 if (!group->id_list)
1549 return -ENOMEM;
1550
1551 group->num_crtcs = 0;
1552 group->num_connectors = 0;
1553 group->num_encoders = 0;
3b336ec4 1554 group->num_bridges = 0;
f453ba04
DA
1555 return 0;
1556}
1557
ad222799
DA
1558void drm_mode_group_destroy(struct drm_mode_group *group)
1559{
1560 kfree(group->id_list);
1561 group->id_list = NULL;
1562}
1563
c8e32cc1
DV
1564/*
1565 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1566 * the drm core's responsibility to set up mode control groups.
1567 */
f453ba04
DA
1568int drm_mode_group_init_legacy_group(struct drm_device *dev,
1569 struct drm_mode_group *group)
1570{
1571 struct drm_crtc *crtc;
1572 struct drm_encoder *encoder;
1573 struct drm_connector *connector;
3b336ec4 1574 struct drm_bridge *bridge;
f453ba04
DA
1575 int ret;
1576
1577 if ((ret = drm_mode_group_init(dev, group)))
1578 return ret;
1579
1580 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1581 group->id_list[group->num_crtcs++] = crtc->base.id;
1582
1583 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1584 group->id_list[group->num_crtcs + group->num_encoders++] =
1585 encoder->base.id;
1586
1587 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1588 group->id_list[group->num_crtcs + group->num_encoders +
1589 group->num_connectors++] = connector->base.id;
1590
3b336ec4
SP
1591 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1592 group->id_list[group->num_crtcs + group->num_encoders +
1593 group->num_connectors + group->num_bridges++] =
1594 bridge->base.id;
1595
f453ba04
DA
1596 return 0;
1597}
9c1dfc55 1598EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
f453ba04 1599
2390cd11
DA
1600void drm_reinit_primary_mode_group(struct drm_device *dev)
1601{
1602 drm_modeset_lock_all(dev);
1603 drm_mode_group_destroy(&dev->primary->mode_group);
1604 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1605 drm_modeset_unlock_all(dev);
1606}
1607EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1608
f453ba04
DA
1609/**
1610 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1611 * @out: drm_mode_modeinfo struct to return to the user
1612 * @in: drm_display_mode to use
1613 *
f453ba04
DA
1614 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1615 * the user.
1616 */
93bbf6db
VS
1617static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1618 const struct drm_display_mode *in)
f453ba04 1619{
e36fae38
VS
1620 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1621 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1622 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1623 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1624 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1625 "timing values too large for mode info\n");
1626
f453ba04
DA
1627 out->clock = in->clock;
1628 out->hdisplay = in->hdisplay;
1629 out->hsync_start = in->hsync_start;
1630 out->hsync_end = in->hsync_end;
1631 out->htotal = in->htotal;
1632 out->hskew = in->hskew;
1633 out->vdisplay = in->vdisplay;
1634 out->vsync_start = in->vsync_start;
1635 out->vsync_end = in->vsync_end;
1636 out->vtotal = in->vtotal;
1637 out->vscan = in->vscan;
1638 out->vrefresh = in->vrefresh;
1639 out->flags = in->flags;
1640 out->type = in->type;
1641 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1642 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1643}
1644
1645/**
74afee7d 1646 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
f453ba04
DA
1647 * @out: drm_display_mode to return to the user
1648 * @in: drm_mode_modeinfo to use
1649 *
f453ba04
DA
1650 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1651 * the caller.
90367bf6 1652 *
c8e32cc1 1653 * Returns:
90367bf6 1654 * Zero on success, errno on failure.
f453ba04 1655 */
93bbf6db
VS
1656static int drm_crtc_convert_umode(struct drm_display_mode *out,
1657 const struct drm_mode_modeinfo *in)
f453ba04 1658{
90367bf6
VS
1659 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1660 return -ERANGE;
1661
5848ad40
DL
1662 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1663 return -EINVAL;
1664
f453ba04
DA
1665 out->clock = in->clock;
1666 out->hdisplay = in->hdisplay;
1667 out->hsync_start = in->hsync_start;
1668 out->hsync_end = in->hsync_end;
1669 out->htotal = in->htotal;
1670 out->hskew = in->hskew;
1671 out->vdisplay = in->vdisplay;
1672 out->vsync_start = in->vsync_start;
1673 out->vsync_end = in->vsync_end;
1674 out->vtotal = in->vtotal;
1675 out->vscan = in->vscan;
1676 out->vrefresh = in->vrefresh;
1677 out->flags = in->flags;
1678 out->type = in->type;
1679 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1680 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
90367bf6
VS
1681
1682 return 0;
f453ba04
DA
1683}
1684
1685/**
1686 * drm_mode_getresources - get graphics configuration
065a50ed
DV
1687 * @dev: drm device for the ioctl
1688 * @data: data pointer for the ioctl
1689 * @file_priv: drm file for the ioctl call
f453ba04 1690 *
f453ba04
DA
1691 * Construct a set of configuration description structures and return
1692 * them to the user, including CRTC, connector and framebuffer configuration.
1693 *
1694 * Called by the user via ioctl.
1695 *
c8e32cc1 1696 * Returns:
f453ba04
DA
1697 * Zero on success, errno on failure.
1698 */
1699int drm_mode_getresources(struct drm_device *dev, void *data,
1700 struct drm_file *file_priv)
1701{
1702 struct drm_mode_card_res *card_res = data;
1703 struct list_head *lh;
1704 struct drm_framebuffer *fb;
1705 struct drm_connector *connector;
1706 struct drm_crtc *crtc;
1707 struct drm_encoder *encoder;
1708 int ret = 0;
1709 int connector_count = 0;
1710 int crtc_count = 0;
1711 int fb_count = 0;
1712 int encoder_count = 0;
1713 int copied = 0, i;
1714 uint32_t __user *fb_id;
1715 uint32_t __user *crtc_id;
1716 uint32_t __user *connector_id;
1717 uint32_t __user *encoder_id;
1718 struct drm_mode_group *mode_group;
1719
fb3b06c8
DA
1720 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1721 return -EINVAL;
1722
f453ba04 1723
4b096ac1 1724 mutex_lock(&file_priv->fbs_lock);
f453ba04
DA
1725 /*
1726 * For the non-control nodes we need to limit the list of resources
1727 * by IDs in the group list for this node
1728 */
1729 list_for_each(lh, &file_priv->fbs)
1730 fb_count++;
1731
4b096ac1
DV
1732 /* handle this in 4 parts */
1733 /* FBs */
1734 if (card_res->count_fbs >= fb_count) {
1735 copied = 0;
1736 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1737 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1738 if (put_user(fb->base.id, fb_id + copied)) {
1739 mutex_unlock(&file_priv->fbs_lock);
1740 return -EFAULT;
1741 }
1742 copied++;
1743 }
1744 }
1745 card_res->count_fbs = fb_count;
1746 mutex_unlock(&file_priv->fbs_lock);
1747
1748 drm_modeset_lock_all(dev);
43683057 1749 if (!drm_is_primary_client(file_priv)) {
f453ba04 1750
09f308f7 1751 mode_group = NULL;
f453ba04
DA
1752 list_for_each(lh, &dev->mode_config.crtc_list)
1753 crtc_count++;
1754
1755 list_for_each(lh, &dev->mode_config.connector_list)
1756 connector_count++;
1757
1758 list_for_each(lh, &dev->mode_config.encoder_list)
1759 encoder_count++;
1760 } else {
1761
09f308f7 1762 mode_group = &file_priv->master->minor->mode_group;
f453ba04
DA
1763 crtc_count = mode_group->num_crtcs;
1764 connector_count = mode_group->num_connectors;
1765 encoder_count = mode_group->num_encoders;
1766 }
1767
1768 card_res->max_height = dev->mode_config.max_height;
1769 card_res->min_height = dev->mode_config.min_height;
1770 card_res->max_width = dev->mode_config.max_width;
1771 card_res->min_width = dev->mode_config.min_width;
1772
f453ba04
DA
1773 /* CRTCs */
1774 if (card_res->count_crtcs >= crtc_count) {
1775 copied = 0;
1776 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
09f308f7 1777 if (!mode_group) {
f453ba04
DA
1778 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1779 head) {
9440106b 1780 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
f453ba04
DA
1781 if (put_user(crtc->base.id, crtc_id + copied)) {
1782 ret = -EFAULT;
1783 goto out;
1784 }
1785 copied++;
1786 }
1787 } else {
1788 for (i = 0; i < mode_group->num_crtcs; i++) {
1789 if (put_user(mode_group->id_list[i],
1790 crtc_id + copied)) {
1791 ret = -EFAULT;
1792 goto out;
1793 }
1794 copied++;
1795 }
1796 }
1797 }
1798 card_res->count_crtcs = crtc_count;
1799
1800 /* Encoders */
1801 if (card_res->count_encoders >= encoder_count) {
1802 copied = 0;
1803 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
09f308f7 1804 if (!mode_group) {
f453ba04
DA
1805 list_for_each_entry(encoder,
1806 &dev->mode_config.encoder_list,
1807 head) {
9440106b 1808 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
83a8cfd3 1809 encoder->name);
f453ba04
DA
1810 if (put_user(encoder->base.id, encoder_id +
1811 copied)) {
1812 ret = -EFAULT;
1813 goto out;
1814 }
1815 copied++;
1816 }
1817 } else {
1818 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1819 if (put_user(mode_group->id_list[i],
1820 encoder_id + copied)) {
1821 ret = -EFAULT;
1822 goto out;
1823 }
1824 copied++;
1825 }
1826
1827 }
1828 }
1829 card_res->count_encoders = encoder_count;
1830
1831 /* Connectors */
1832 if (card_res->count_connectors >= connector_count) {
1833 copied = 0;
1834 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
09f308f7 1835 if (!mode_group) {
f453ba04
DA
1836 list_for_each_entry(connector,
1837 &dev->mode_config.connector_list,
1838 head) {
9440106b
JG
1839 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1840 connector->base.id,
25933820 1841 connector->name);
f453ba04
DA
1842 if (put_user(connector->base.id,
1843 connector_id + copied)) {
1844 ret = -EFAULT;
1845 goto out;
1846 }
1847 copied++;
1848 }
1849 } else {
1850 int start = mode_group->num_crtcs +
1851 mode_group->num_encoders;
1852 for (i = start; i < start + mode_group->num_connectors; i++) {
1853 if (put_user(mode_group->id_list[i],
1854 connector_id + copied)) {
1855 ret = -EFAULT;
1856 goto out;
1857 }
1858 copied++;
1859 }
1860 }
1861 }
1862 card_res->count_connectors = connector_count;
1863
9440106b 1864 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
f453ba04
DA
1865 card_res->count_connectors, card_res->count_encoders);
1866
1867out:
84849903 1868 drm_modeset_unlock_all(dev);
f453ba04
DA
1869 return ret;
1870}
1871
1872/**
1873 * drm_mode_getcrtc - get CRTC configuration
065a50ed
DV
1874 * @dev: drm device for the ioctl
1875 * @data: data pointer for the ioctl
1876 * @file_priv: drm file for the ioctl call
f453ba04 1877 *
f453ba04
DA
1878 * Construct a CRTC configuration structure to return to the user.
1879 *
1880 * Called by the user via ioctl.
1881 *
c8e32cc1 1882 * Returns:
f453ba04
DA
1883 * Zero on success, errno on failure.
1884 */
1885int drm_mode_getcrtc(struct drm_device *dev,
1886 void *data, struct drm_file *file_priv)
1887{
1888 struct drm_mode_crtc *crtc_resp = data;
1889 struct drm_crtc *crtc;
f453ba04
DA
1890 int ret = 0;
1891
fb3b06c8
DA
1892 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1893 return -EINVAL;
1894
84849903 1895 drm_modeset_lock_all(dev);
f453ba04 1896
a2b34e22
RC
1897 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
1898 if (!crtc) {
f27657f2 1899 ret = -ENOENT;
f453ba04
DA
1900 goto out;
1901 }
f453ba04
DA
1902
1903 crtc_resp->x = crtc->x;
1904 crtc_resp->y = crtc->y;
1905 crtc_resp->gamma_size = crtc->gamma_size;
f4510a27
MR
1906 if (crtc->primary->fb)
1907 crtc_resp->fb_id = crtc->primary->fb->base.id;
f453ba04
DA
1908 else
1909 crtc_resp->fb_id = 0;
1910
1911 if (crtc->enabled) {
1912
1913 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1914 crtc_resp->mode_valid = 1;
1915
1916 } else {
1917 crtc_resp->mode_valid = 0;
1918 }
1919
1920out:
84849903 1921 drm_modeset_unlock_all(dev);
f453ba04
DA
1922 return ret;
1923}
1924
61d8e328
DL
1925static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1926 const struct drm_file *file_priv)
1927{
1928 /*
1929 * If user-space hasn't configured the driver to expose the stereo 3D
1930 * modes, don't expose them.
1931 */
1932 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1933 return false;
1934
1935 return true;
1936}
1937
f453ba04
DA
1938/**
1939 * drm_mode_getconnector - get connector configuration
065a50ed
DV
1940 * @dev: drm device for the ioctl
1941 * @data: data pointer for the ioctl
1942 * @file_priv: drm file for the ioctl call
f453ba04 1943 *
f453ba04
DA
1944 * Construct a connector configuration structure to return to the user.
1945 *
1946 * Called by the user via ioctl.
1947 *
c8e32cc1 1948 * Returns:
f453ba04
DA
1949 * Zero on success, errno on failure.
1950 */
1951int drm_mode_getconnector(struct drm_device *dev, void *data,
1952 struct drm_file *file_priv)
1953{
1954 struct drm_mode_get_connector *out_resp = data;
f453ba04
DA
1955 struct drm_connector *connector;
1956 struct drm_display_mode *mode;
1957 int mode_count = 0;
1958 int props_count = 0;
1959 int encoders_count = 0;
1960 int ret = 0;
1961 int copied = 0;
1962 int i;
1963 struct drm_mode_modeinfo u_mode;
1964 struct drm_mode_modeinfo __user *mode_ptr;
1965 uint32_t __user *prop_ptr;
1966 uint64_t __user *prop_values;
1967 uint32_t __user *encoder_ptr;
1968
fb3b06c8
DA
1969 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1970 return -EINVAL;
1971
f453ba04
DA
1972 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1973
9440106b 1974 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
f453ba04 1975
7b24056b 1976 mutex_lock(&dev->mode_config.mutex);
f453ba04 1977
a2b34e22
RC
1978 connector = drm_connector_find(dev, out_resp->connector_id);
1979 if (!connector) {
f27657f2 1980 ret = -ENOENT;
f453ba04
DA
1981 goto out;
1982 }
f453ba04 1983
7f88a9be 1984 props_count = connector->properties.count;
f453ba04
DA
1985
1986 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1987 if (connector->encoder_ids[i] != 0) {
1988 encoders_count++;
1989 }
1990 }
1991
1992 if (out_resp->count_modes == 0) {
1993 connector->funcs->fill_modes(connector,
1994 dev->mode_config.max_width,
1995 dev->mode_config.max_height);
1996 }
1997
1998 /* delayed so we get modes regardless of pre-fill_modes state */
1999 list_for_each_entry(mode, &connector->modes, head)
61d8e328
DL
2000 if (drm_mode_expose_to_userspace(mode, file_priv))
2001 mode_count++;
f453ba04
DA
2002
2003 out_resp->connector_id = connector->base.id;
2004 out_resp->connector_type = connector->connector_type;
2005 out_resp->connector_type_id = connector->connector_type_id;
2006 out_resp->mm_width = connector->display_info.width_mm;
2007 out_resp->mm_height = connector->display_info.height_mm;
2008 out_resp->subpixel = connector->display_info.subpixel_order;
2009 out_resp->connection = connector->status;
832fd395 2010 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
f453ba04
DA
2011 if (connector->encoder)
2012 out_resp->encoder_id = connector->encoder->base.id;
2013 else
2014 out_resp->encoder_id = 0;
832fd395 2015 drm_modeset_unlock(&dev->mode_config.connection_mutex);
f453ba04
DA
2016
2017 /*
2018 * This ioctl is called twice, once to determine how much space is
2019 * needed, and the 2nd time to fill it.
2020 */
2021 if ((out_resp->count_modes >= mode_count) && mode_count) {
2022 copied = 0;
81f6c7f8 2023 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
f453ba04 2024 list_for_each_entry(mode, &connector->modes, head) {
61d8e328
DL
2025 if (!drm_mode_expose_to_userspace(mode, file_priv))
2026 continue;
2027
f453ba04
DA
2028 drm_crtc_convert_to_umode(&u_mode, mode);
2029 if (copy_to_user(mode_ptr + copied,
2030 &u_mode, sizeof(u_mode))) {
2031 ret = -EFAULT;
2032 goto out;
2033 }
2034 copied++;
2035 }
2036 }
2037 out_resp->count_modes = mode_count;
2038
2039 if ((out_resp->count_props >= props_count) && props_count) {
2040 copied = 0;
81f6c7f8
VS
2041 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
2042 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
7f88a9be
PZ
2043 for (i = 0; i < connector->properties.count; i++) {
2044 if (put_user(connector->properties.ids[i],
2045 prop_ptr + copied)) {
2046 ret = -EFAULT;
2047 goto out;
2048 }
f453ba04 2049
7f88a9be
PZ
2050 if (put_user(connector->properties.values[i],
2051 prop_values + copied)) {
2052 ret = -EFAULT;
2053 goto out;
f453ba04 2054 }
7f88a9be 2055 copied++;
f453ba04
DA
2056 }
2057 }
2058 out_resp->count_props = props_count;
2059
2060 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2061 copied = 0;
81f6c7f8 2062 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
f453ba04
DA
2063 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2064 if (connector->encoder_ids[i] != 0) {
2065 if (put_user(connector->encoder_ids[i],
2066 encoder_ptr + copied)) {
2067 ret = -EFAULT;
2068 goto out;
2069 }
2070 copied++;
2071 }
2072 }
2073 }
2074 out_resp->count_encoders = encoders_count;
2075
2076out:
7b24056b
DV
2077 mutex_unlock(&dev->mode_config.mutex);
2078
f453ba04
DA
2079 return ret;
2080}
2081
c8e32cc1
DV
2082/**
2083 * drm_mode_getencoder - get encoder configuration
2084 * @dev: drm device for the ioctl
2085 * @data: data pointer for the ioctl
2086 * @file_priv: drm file for the ioctl call
2087 *
2088 * Construct a encoder configuration structure to return to the user.
2089 *
2090 * Called by the user via ioctl.
2091 *
2092 * Returns:
2093 * Zero on success, errno on failure.
2094 */
f453ba04
DA
2095int drm_mode_getencoder(struct drm_device *dev, void *data,
2096 struct drm_file *file_priv)
2097{
2098 struct drm_mode_get_encoder *enc_resp = data;
f453ba04
DA
2099 struct drm_encoder *encoder;
2100 int ret = 0;
2101
fb3b06c8
DA
2102 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2103 return -EINVAL;
2104
84849903 2105 drm_modeset_lock_all(dev);
a2b34e22
RC
2106 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
2107 if (!encoder) {
f27657f2 2108 ret = -ENOENT;
f453ba04
DA
2109 goto out;
2110 }
f453ba04
DA
2111
2112 if (encoder->crtc)
2113 enc_resp->crtc_id = encoder->crtc->base.id;
2114 else
2115 enc_resp->crtc_id = 0;
2116 enc_resp->encoder_type = encoder->encoder_type;
2117 enc_resp->encoder_id = encoder->base.id;
2118 enc_resp->possible_crtcs = encoder->possible_crtcs;
2119 enc_resp->possible_clones = encoder->possible_clones;
2120
2121out:
84849903 2122 drm_modeset_unlock_all(dev);
f453ba04
DA
2123 return ret;
2124}
2125
8cf5c917 2126/**
c8e32cc1 2127 * drm_mode_getplane_res - enumerate all plane resources
8cf5c917
JB
2128 * @dev: DRM device
2129 * @data: ioctl data
2130 * @file_priv: DRM file info
2131 *
c8e32cc1
DV
2132 * Construct a list of plane ids to return to the user.
2133 *
2134 * Called by the user via ioctl.
2135 *
2136 * Returns:
2137 * Zero on success, errno on failure.
8cf5c917
JB
2138 */
2139int drm_mode_getplane_res(struct drm_device *dev, void *data,
c8e32cc1 2140 struct drm_file *file_priv)
8cf5c917
JB
2141{
2142 struct drm_mode_get_plane_res *plane_resp = data;
2143 struct drm_mode_config *config;
2144 struct drm_plane *plane;
2145 uint32_t __user *plane_ptr;
2146 int copied = 0, ret = 0;
681e7ec7 2147 unsigned num_planes;
8cf5c917
JB
2148
2149 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2150 return -EINVAL;
2151
84849903 2152 drm_modeset_lock_all(dev);
8cf5c917
JB
2153 config = &dev->mode_config;
2154
681e7ec7
MR
2155 if (file_priv->universal_planes)
2156 num_planes = config->num_total_plane;
2157 else
2158 num_planes = config->num_overlay_plane;
2159
8cf5c917
JB
2160 /*
2161 * This ioctl is called twice, once to determine how much space is
2162 * needed, and the 2nd time to fill it.
2163 */
681e7ec7
MR
2164 if (num_planes &&
2165 (plane_resp->count_planes >= num_planes)) {
81f6c7f8 2166 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
8cf5c917
JB
2167
2168 list_for_each_entry(plane, &config->plane_list, head) {
681e7ec7
MR
2169 /*
2170 * Unless userspace set the 'universal planes'
2171 * capability bit, only advertise overlays.
2172 */
2173 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2174 !file_priv->universal_planes)
e27dde3e
MR
2175 continue;
2176
8cf5c917
JB
2177 if (put_user(plane->base.id, plane_ptr + copied)) {
2178 ret = -EFAULT;
2179 goto out;
2180 }
2181 copied++;
2182 }
2183 }
681e7ec7 2184 plane_resp->count_planes = num_planes;
8cf5c917
JB
2185
2186out:
84849903 2187 drm_modeset_unlock_all(dev);
8cf5c917
JB
2188 return ret;
2189}
2190
2191/**
c8e32cc1 2192 * drm_mode_getplane - get plane configuration
8cf5c917
JB
2193 * @dev: DRM device
2194 * @data: ioctl data
2195 * @file_priv: DRM file info
2196 *
c8e32cc1
DV
2197 * Construct a plane configuration structure to return to the user.
2198 *
2199 * Called by the user via ioctl.
2200 *
2201 * Returns:
2202 * Zero on success, errno on failure.
8cf5c917
JB
2203 */
2204int drm_mode_getplane(struct drm_device *dev, void *data,
c8e32cc1 2205 struct drm_file *file_priv)
8cf5c917
JB
2206{
2207 struct drm_mode_get_plane *plane_resp = data;
8cf5c917
JB
2208 struct drm_plane *plane;
2209 uint32_t __user *format_ptr;
2210 int ret = 0;
2211
2212 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2213 return -EINVAL;
2214
84849903 2215 drm_modeset_lock_all(dev);
a2b34e22
RC
2216 plane = drm_plane_find(dev, plane_resp->plane_id);
2217 if (!plane) {
8cf5c917
JB
2218 ret = -ENOENT;
2219 goto out;
2220 }
8cf5c917
JB
2221
2222 if (plane->crtc)
2223 plane_resp->crtc_id = plane->crtc->base.id;
2224 else
2225 plane_resp->crtc_id = 0;
2226
2227 if (plane->fb)
2228 plane_resp->fb_id = plane->fb->base.id;
2229 else
2230 plane_resp->fb_id = 0;
2231
2232 plane_resp->plane_id = plane->base.id;
2233 plane_resp->possible_crtcs = plane->possible_crtcs;
778ad903 2234 plane_resp->gamma_size = 0;
8cf5c917
JB
2235
2236 /*
2237 * This ioctl is called twice, once to determine how much space is
2238 * needed, and the 2nd time to fill it.
2239 */
2240 if (plane->format_count &&
2241 (plane_resp->count_format_types >= plane->format_count)) {
81f6c7f8 2242 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
8cf5c917
JB
2243 if (copy_to_user(format_ptr,
2244 plane->format_types,
2245 sizeof(uint32_t) * plane->format_count)) {
2246 ret = -EFAULT;
2247 goto out;
2248 }
2249 }
2250 plane_resp->count_format_types = plane->format_count;
2251
2252out:
84849903 2253 drm_modeset_unlock_all(dev);
8cf5c917
JB
2254 return ret;
2255}
2256
b36552b3
MR
2257/*
2258 * setplane_internal - setplane handler for internal callers
8cf5c917 2259 *
b36552b3
MR
2260 * Note that we assume an extra reference has already been taken on fb. If the
2261 * update fails, this reference will be dropped before return; if it succeeds,
2262 * the previous framebuffer (if any) will be unreferenced instead.
c8e32cc1 2263 *
b36552b3 2264 * src_{x,y,w,h} are provided in 16.16 fixed point format
8cf5c917 2265 */
f2b50c11
DV
2266static int __setplane_internal(struct drm_plane *plane,
2267 struct drm_crtc *crtc,
2268 struct drm_framebuffer *fb,
2269 int32_t crtc_x, int32_t crtc_y,
2270 uint32_t crtc_w, uint32_t crtc_h,
2271 /* src_{x,y,w,h} values are 16.16 fixed point */
2272 uint32_t src_x, uint32_t src_y,
2273 uint32_t src_w, uint32_t src_h)
8cf5c917 2274{
8cf5c917 2275 int ret = 0;
42ef8789 2276 unsigned int fb_width, fb_height;
62443be6 2277 int i;
8cf5c917 2278
8cf5c917 2279 /* No fb means shut it down */
b36552b3 2280 if (!fb) {
3d30a59b 2281 plane->old_fb = plane->fb;
731cce48
DV
2282 ret = plane->funcs->disable_plane(plane);
2283 if (!ret) {
2284 plane->crtc = NULL;
2285 plane->fb = NULL;
2286 } else {
3d30a59b 2287 plane->old_fb = NULL;
731cce48 2288 }
8cf5c917
JB
2289 goto out;
2290 }
2291
7f994f3f
MR
2292 /* Check whether this plane is usable on this CRTC */
2293 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2294 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2295 ret = -EINVAL;
2296 goto out;
2297 }
2298
62443be6
VS
2299 /* Check whether this plane supports the fb pixel format. */
2300 for (i = 0; i < plane->format_count; i++)
2301 if (fb->pixel_format == plane->format_types[i])
2302 break;
2303 if (i == plane->format_count) {
6ba6d03e
VS
2304 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2305 drm_get_format_name(fb->pixel_format));
62443be6
VS
2306 ret = -EINVAL;
2307 goto out;
2308 }
2309
42ef8789
VS
2310 fb_width = fb->width << 16;
2311 fb_height = fb->height << 16;
2312
2313 /* Make sure source coordinates are inside the fb. */
b36552b3
MR
2314 if (src_w > fb_width ||
2315 src_x > fb_width - src_w ||
2316 src_h > fb_height ||
2317 src_y > fb_height - src_h) {
42ef8789
VS
2318 DRM_DEBUG_KMS("Invalid source coordinates "
2319 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
b36552b3
MR
2320 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2321 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2322 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2323 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
42ef8789
VS
2324 ret = -ENOSPC;
2325 goto out;
2326 }
2327
3d30a59b 2328 plane->old_fb = plane->fb;
8cf5c917 2329 ret = plane->funcs->update_plane(plane, crtc, fb,
b36552b3
MR
2330 crtc_x, crtc_y, crtc_w, crtc_h,
2331 src_x, src_y, src_w, src_h);
8cf5c917
JB
2332 if (!ret) {
2333 plane->crtc = crtc;
2334 plane->fb = fb;
35f8badc 2335 fb = NULL;
0fe27f06 2336 } else {
3d30a59b 2337 plane->old_fb = NULL;
8cf5c917
JB
2338 }
2339
2340out:
6c2a7532
DV
2341 if (fb)
2342 drm_framebuffer_unreference(fb);
3d30a59b
DV
2343 if (plane->old_fb)
2344 drm_framebuffer_unreference(plane->old_fb);
2345 plane->old_fb = NULL;
8cf5c917
JB
2346
2347 return ret;
f2b50c11 2348}
b36552b3 2349
f2b50c11
DV
2350static int setplane_internal(struct drm_plane *plane,
2351 struct drm_crtc *crtc,
2352 struct drm_framebuffer *fb,
2353 int32_t crtc_x, int32_t crtc_y,
2354 uint32_t crtc_w, uint32_t crtc_h,
2355 /* src_{x,y,w,h} values are 16.16 fixed point */
2356 uint32_t src_x, uint32_t src_y,
2357 uint32_t src_w, uint32_t src_h)
2358{
2359 int ret;
2360
2361 drm_modeset_lock_all(plane->dev);
2362 ret = __setplane_internal(plane, crtc, fb,
2363 crtc_x, crtc_y, crtc_w, crtc_h,
2364 src_x, src_y, src_w, src_h);
2365 drm_modeset_unlock_all(plane->dev);
2366
2367 return ret;
b36552b3
MR
2368}
2369
2370/**
2371 * drm_mode_setplane - configure a plane's configuration
2372 * @dev: DRM device
2373 * @data: ioctl data*
2374 * @file_priv: DRM file info
2375 *
2376 * Set plane configuration, including placement, fb, scaling, and other factors.
2377 * Or pass a NULL fb to disable (planes may be disabled without providing a
2378 * valid crtc).
2379 *
2380 * Returns:
2381 * Zero on success, errno on failure.
2382 */
2383int drm_mode_setplane(struct drm_device *dev, void *data,
2384 struct drm_file *file_priv)
2385{
2386 struct drm_mode_set_plane *plane_req = data;
2387 struct drm_mode_object *obj;
2388 struct drm_plane *plane;
2389 struct drm_crtc *crtc = NULL;
2390 struct drm_framebuffer *fb = NULL;
2391
2392 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2393 return -EINVAL;
2394
2395 /* Give drivers some help against integer overflows */
2396 if (plane_req->crtc_w > INT_MAX ||
2397 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2398 plane_req->crtc_h > INT_MAX ||
2399 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2400 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2401 plane_req->crtc_w, plane_req->crtc_h,
2402 plane_req->crtc_x, plane_req->crtc_y);
2403 return -ERANGE;
2404 }
2405
2406 /*
2407 * First, find the plane, crtc, and fb objects. If not available,
2408 * we don't bother to call the driver.
2409 */
2410 obj = drm_mode_object_find(dev, plane_req->plane_id,
2411 DRM_MODE_OBJECT_PLANE);
2412 if (!obj) {
2413 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2414 plane_req->plane_id);
2415 return -ENOENT;
2416 }
2417 plane = obj_to_plane(obj);
2418
2419 if (plane_req->fb_id) {
2420 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2421 if (!fb) {
2422 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2423 plane_req->fb_id);
2424 return -ENOENT;
2425 }
2426
2427 obj = drm_mode_object_find(dev, plane_req->crtc_id,
2428 DRM_MODE_OBJECT_CRTC);
2429 if (!obj) {
2430 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2431 plane_req->crtc_id);
2432 return -ENOENT;
2433 }
2434 crtc = obj_to_crtc(obj);
2435 }
2436
161d0dc1
MR
2437 /*
2438 * setplane_internal will take care of deref'ing either the old or new
2439 * framebuffer depending on success.
2440 */
17cfd91f 2441 return setplane_internal(plane, crtc, fb,
b36552b3
MR
2442 plane_req->crtc_x, plane_req->crtc_y,
2443 plane_req->crtc_w, plane_req->crtc_h,
2444 plane_req->src_x, plane_req->src_y,
2445 plane_req->src_w, plane_req->src_h);
8cf5c917
JB
2446}
2447
2d13b679
DV
2448/**
2449 * drm_mode_set_config_internal - helper to call ->set_config
2450 * @set: modeset config to set
2451 *
2452 * This is a little helper to wrap internal calls to the ->set_config driver
2453 * interface. The only thing it adds is correct refcounting dance.
c8e32cc1
DV
2454 *
2455 * Returns:
2456 * Zero on success, errno on failure.
2d13b679
DV
2457 */
2458int drm_mode_set_config_internal(struct drm_mode_set *set)
2459{
2460 struct drm_crtc *crtc = set->crtc;
5cef29aa
DV
2461 struct drm_framebuffer *fb;
2462 struct drm_crtc *tmp;
b0d12325
DV
2463 int ret;
2464
5cef29aa
DV
2465 /*
2466 * NOTE: ->set_config can also disable other crtcs (if we steal all
2467 * connectors from it), hence we need to refcount the fbs across all
2468 * crtcs. Atomic modeset will have saner semantics ...
2469 */
2470 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
3d30a59b 2471 tmp->primary->old_fb = tmp->primary->fb;
5cef29aa 2472
b0d12325 2473 fb = set->fb;
2d13b679 2474
b0d12325
DV
2475 ret = crtc->funcs->set_config(set);
2476 if (ret == 0) {
e13161af 2477 crtc->primary->crtc = crtc;
0fe27f06 2478 crtc->primary->fb = fb;
5cef29aa 2479 }
cc85e121 2480
5cef29aa 2481 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
f4510a27
MR
2482 if (tmp->primary->fb)
2483 drm_framebuffer_reference(tmp->primary->fb);
3d30a59b
DV
2484 if (tmp->primary->old_fb)
2485 drm_framebuffer_unreference(tmp->primary->old_fb);
2486 tmp->primary->old_fb = NULL;
b0d12325
DV
2487 }
2488
2489 return ret;
2d13b679
DV
2490}
2491EXPORT_SYMBOL(drm_mode_set_config_internal);
2492
af93629d
MR
2493/**
2494 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2495 * CRTC viewport
2496 * @crtc: CRTC that framebuffer will be displayed on
2497 * @x: x panning
2498 * @y: y panning
2499 * @mode: mode that framebuffer will be displayed under
2500 * @fb: framebuffer to check size of
c11e9283 2501 */
af93629d
MR
2502int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2503 int x, int y,
2504 const struct drm_display_mode *mode,
2505 const struct drm_framebuffer *fb)
c11e9283
DL
2506
2507{
2508 int hdisplay, vdisplay;
2509
2510 hdisplay = mode->hdisplay;
2511 vdisplay = mode->vdisplay;
2512
a0c1bbb0
DL
2513 if (drm_mode_is_stereo(mode)) {
2514 struct drm_display_mode adjusted = *mode;
2515
2516 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2517 hdisplay = adjusted.crtc_hdisplay;
2518 vdisplay = adjusted.crtc_vdisplay;
2519 }
2520
c11e9283
DL
2521 if (crtc->invert_dimensions)
2522 swap(hdisplay, vdisplay);
2523
2524 if (hdisplay > fb->width ||
2525 vdisplay > fb->height ||
2526 x > fb->width - hdisplay ||
2527 y > fb->height - vdisplay) {
2528 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2529 fb->width, fb->height, hdisplay, vdisplay, x, y,
2530 crtc->invert_dimensions ? " (inverted)" : "");
2531 return -ENOSPC;
2532 }
2533
2534 return 0;
2535}
af93629d 2536EXPORT_SYMBOL(drm_crtc_check_viewport);
c11e9283 2537
f453ba04
DA
2538/**
2539 * drm_mode_setcrtc - set CRTC configuration
065a50ed
DV
2540 * @dev: drm device for the ioctl
2541 * @data: data pointer for the ioctl
2542 * @file_priv: drm file for the ioctl call
f453ba04 2543 *
f453ba04
DA
2544 * Build a new CRTC configuration based on user request.
2545 *
2546 * Called by the user via ioctl.
2547 *
c8e32cc1 2548 * Returns:
f453ba04
DA
2549 * Zero on success, errno on failure.
2550 */
2551int drm_mode_setcrtc(struct drm_device *dev, void *data,
2552 struct drm_file *file_priv)
2553{
2554 struct drm_mode_config *config = &dev->mode_config;
2555 struct drm_mode_crtc *crtc_req = data;
6653cc8d 2556 struct drm_crtc *crtc;
f453ba04
DA
2557 struct drm_connector **connector_set = NULL, *connector;
2558 struct drm_framebuffer *fb = NULL;
2559 struct drm_display_mode *mode = NULL;
2560 struct drm_mode_set set;
2561 uint32_t __user *set_connectors_ptr;
4a1b0714 2562 int ret;
f453ba04
DA
2563 int i;
2564
fb3b06c8
DA
2565 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2566 return -EINVAL;
2567
1d97e915
VS
2568 /* For some reason crtc x/y offsets are signed internally. */
2569 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2570 return -ERANGE;
2571
84849903 2572 drm_modeset_lock_all(dev);
a2b34e22
RC
2573 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2574 if (!crtc) {
58367ed6 2575 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
f27657f2 2576 ret = -ENOENT;
f453ba04
DA
2577 goto out;
2578 }
9440106b 2579 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
f453ba04
DA
2580
2581 if (crtc_req->mode_valid) {
2582 /* If we have a mode we need a framebuffer. */
2583 /* If we pass -1, set the mode with the currently bound fb */
2584 if (crtc_req->fb_id == -1) {
f4510a27 2585 if (!crtc->primary->fb) {
6653cc8d
VS
2586 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2587 ret = -EINVAL;
2588 goto out;
f453ba04 2589 }
f4510a27 2590 fb = crtc->primary->fb;
b0d12325
DV
2591 /* Make refcounting symmetric with the lookup path. */
2592 drm_framebuffer_reference(fb);
f453ba04 2593 } else {
786b99ed
DV
2594 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2595 if (!fb) {
58367ed6
ZY
2596 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2597 crtc_req->fb_id);
37c4e705 2598 ret = -ENOENT;
f453ba04
DA
2599 goto out;
2600 }
f453ba04
DA
2601 }
2602
2603 mode = drm_mode_create(dev);
ee34ab5b
VS
2604 if (!mode) {
2605 ret = -ENOMEM;
2606 goto out;
2607 }
2608
90367bf6
VS
2609 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2610 if (ret) {
2611 DRM_DEBUG_KMS("Invalid mode\n");
2612 goto out;
2613 }
2614
f453ba04 2615 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
5f61bb42 2616
c11e9283
DL
2617 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2618 mode, fb);
2619 if (ret)
5f61bb42 2620 goto out;
c11e9283 2621
f453ba04
DA
2622 }
2623
2624 if (crtc_req->count_connectors == 0 && mode) {
58367ed6 2625 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
f453ba04
DA
2626 ret = -EINVAL;
2627 goto out;
2628 }
2629
7781de74 2630 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
58367ed6 2631 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
f453ba04
DA
2632 crtc_req->count_connectors);
2633 ret = -EINVAL;
2634 goto out;
2635 }
2636
2637 if (crtc_req->count_connectors > 0) {
2638 u32 out_id;
2639
2640 /* Avoid unbounded kernel memory allocation */
2641 if (crtc_req->count_connectors > config->num_connector) {
2642 ret = -EINVAL;
2643 goto out;
2644 }
2645
2646 connector_set = kmalloc(crtc_req->count_connectors *
2647 sizeof(struct drm_connector *),
2648 GFP_KERNEL);
2649 if (!connector_set) {
2650 ret = -ENOMEM;
2651 goto out;
2652 }
2653
2654 for (i = 0; i < crtc_req->count_connectors; i++) {
81f6c7f8 2655 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
f453ba04
DA
2656 if (get_user(out_id, &set_connectors_ptr[i])) {
2657 ret = -EFAULT;
2658 goto out;
2659 }
2660
a2b34e22
RC
2661 connector = drm_connector_find(dev, out_id);
2662 if (!connector) {
58367ed6
ZY
2663 DRM_DEBUG_KMS("Connector id %d unknown\n",
2664 out_id);
f27657f2 2665 ret = -ENOENT;
f453ba04
DA
2666 goto out;
2667 }
9440106b
JG
2668 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2669 connector->base.id,
25933820 2670 connector->name);
f453ba04
DA
2671
2672 connector_set[i] = connector;
2673 }
2674 }
2675
2676 set.crtc = crtc;
2677 set.x = crtc_req->x;
2678 set.y = crtc_req->y;
2679 set.mode = mode;
2680 set.connectors = connector_set;
2681 set.num_connectors = crtc_req->count_connectors;
5ef5f72f 2682 set.fb = fb;
2d13b679 2683 ret = drm_mode_set_config_internal(&set);
f453ba04
DA
2684
2685out:
b0d12325
DV
2686 if (fb)
2687 drm_framebuffer_unreference(fb);
2688
f453ba04 2689 kfree(connector_set);
ee34ab5b 2690 drm_mode_destroy(dev, mode);
84849903 2691 drm_modeset_unlock_all(dev);
f453ba04
DA
2692 return ret;
2693}
2694
161d0dc1
MR
2695/**
2696 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2697 * universal plane handler call
2698 * @crtc: crtc to update cursor for
2699 * @req: data pointer for the ioctl
2700 * @file_priv: drm file for the ioctl call
2701 *
2702 * Legacy cursor ioctl's work directly with driver buffer handles. To
2703 * translate legacy ioctl calls into universal plane handler calls, we need to
2704 * wrap the native buffer handle in a drm_framebuffer.
2705 *
2706 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2707 * buffer with a pitch of 4*width; the universal plane interface should be used
2708 * directly in cases where the hardware can support other buffer settings and
2709 * userspace wants to make use of these capabilities.
2710 *
2711 * Returns:
2712 * Zero on success, errno on failure.
2713 */
2714static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2715 struct drm_mode_cursor2 *req,
2716 struct drm_file *file_priv)
2717{
2718 struct drm_device *dev = crtc->dev;
2719 struct drm_framebuffer *fb = NULL;
2720 struct drm_mode_fb_cmd2 fbreq = {
2721 .width = req->width,
2722 .height = req->height,
2723 .pixel_format = DRM_FORMAT_ARGB8888,
2724 .pitches = { req->width * 4 },
2725 .handles = { req->handle },
2726 };
2727 int32_t crtc_x, crtc_y;
2728 uint32_t crtc_w = 0, crtc_h = 0;
2729 uint32_t src_w = 0, src_h = 0;
2730 int ret = 0;
2731
2732 BUG_ON(!crtc->cursor);
f2b50c11 2733 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
161d0dc1
MR
2734
2735 /*
2736 * Obtain fb we'll be using (either new or existing) and take an extra
2737 * reference to it if fb != null. setplane will take care of dropping
2738 * the reference if the plane update fails.
2739 */
2740 if (req->flags & DRM_MODE_CURSOR_BO) {
2741 if (req->handle) {
2742 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2743 if (IS_ERR(fb)) {
2744 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2745 return PTR_ERR(fb);
2746 }
2747
2748 drm_framebuffer_reference(fb);
2749 } else {
2750 fb = NULL;
2751 }
2752 } else {
161d0dc1
MR
2753 fb = crtc->cursor->fb;
2754 if (fb)
2755 drm_framebuffer_reference(fb);
161d0dc1
MR
2756 }
2757
2758 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2759 crtc_x = req->x;
2760 crtc_y = req->y;
2761 } else {
2762 crtc_x = crtc->cursor_x;
2763 crtc_y = crtc->cursor_y;
2764 }
2765
2766 if (fb) {
2767 crtc_w = fb->width;
2768 crtc_h = fb->height;
2769 src_w = fb->width << 16;
2770 src_h = fb->height << 16;
2771 }
2772
2773 /*
2774 * setplane_internal will take care of deref'ing either the old or new
2775 * framebuffer depending on success.
2776 */
f2b50c11 2777 ret = __setplane_internal(crtc->cursor, crtc, fb,
161d0dc1
MR
2778 crtc_x, crtc_y, crtc_w, crtc_h,
2779 0, 0, src_w, src_h);
2780
2781 /* Update successful; save new cursor position, if necessary */
2782 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2783 crtc->cursor_x = req->x;
2784 crtc->cursor_y = req->y;
2785 }
2786
2787 return ret;
2788}
2789
4c813d4d
DA
2790static int drm_mode_cursor_common(struct drm_device *dev,
2791 struct drm_mode_cursor2 *req,
2792 struct drm_file *file_priv)
f453ba04 2793{
f453ba04
DA
2794 struct drm_crtc *crtc;
2795 int ret = 0;
2796
fb3b06c8
DA
2797 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2798 return -EINVAL;
2799
7c4eaca4 2800 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
f453ba04 2801 return -EINVAL;
f453ba04 2802
a2b34e22
RC
2803 crtc = drm_crtc_find(dev, req->crtc_id);
2804 if (!crtc) {
58367ed6 2805 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
f27657f2 2806 return -ENOENT;
f453ba04 2807 }
f453ba04 2808
161d0dc1
MR
2809 /*
2810 * If this crtc has a universal cursor plane, call that plane's update
2811 * handler rather than using legacy cursor handlers.
2812 */
d059f652 2813 drm_modeset_lock_crtc(crtc);
f2b50c11
DV
2814 if (crtc->cursor) {
2815 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2816 goto out;
2817 }
2818
f453ba04 2819 if (req->flags & DRM_MODE_CURSOR_BO) {
4c813d4d 2820 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
f453ba04
DA
2821 ret = -ENXIO;
2822 goto out;
2823 }
2824 /* Turns off the cursor if handle is 0 */
4c813d4d
DA
2825 if (crtc->funcs->cursor_set2)
2826 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2827 req->width, req->height, req->hot_x, req->hot_y);
2828 else
2829 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2830 req->width, req->height);
f453ba04
DA
2831 }
2832
2833 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2834 if (crtc->funcs->cursor_move) {
2835 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2836 } else {
f453ba04
DA
2837 ret = -EFAULT;
2838 goto out;
2839 }
2840 }
2841out:
d059f652 2842 drm_modeset_unlock_crtc(crtc);
dac35663 2843
f453ba04 2844 return ret;
4c813d4d
DA
2845
2846}
c8e32cc1
DV
2847
2848
2849/**
2850 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2851 * @dev: drm device for the ioctl
2852 * @data: data pointer for the ioctl
2853 * @file_priv: drm file for the ioctl call
2854 *
2855 * Set the cursor configuration based on user request.
2856 *
2857 * Called by the user via ioctl.
2858 *
2859 * Returns:
2860 * Zero on success, errno on failure.
2861 */
4c813d4d 2862int drm_mode_cursor_ioctl(struct drm_device *dev,
c8e32cc1 2863 void *data, struct drm_file *file_priv)
4c813d4d
DA
2864{
2865 struct drm_mode_cursor *req = data;
2866 struct drm_mode_cursor2 new_req;
2867
2868 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2869 new_req.hot_x = new_req.hot_y = 0;
2870
2871 return drm_mode_cursor_common(dev, &new_req, file_priv);
2872}
2873
c8e32cc1
DV
2874/**
2875 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2876 * @dev: drm device for the ioctl
2877 * @data: data pointer for the ioctl
2878 * @file_priv: drm file for the ioctl call
2879 *
2880 * Set the cursor configuration based on user request. This implements the 2nd
2881 * version of the cursor ioctl, which allows userspace to additionally specify
2882 * the hotspot of the pointer.
2883 *
2884 * Called by the user via ioctl.
2885 *
2886 * Returns:
2887 * Zero on success, errno on failure.
2888 */
4c813d4d
DA
2889int drm_mode_cursor2_ioctl(struct drm_device *dev,
2890 void *data, struct drm_file *file_priv)
2891{
2892 struct drm_mode_cursor2 *req = data;
2893 return drm_mode_cursor_common(dev, req, file_priv);
f453ba04
DA
2894}
2895
c8e32cc1
DV
2896/**
2897 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2898 * @bpp: bits per pixels
2899 * @depth: bit depth per pixel
2900 *
2901 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2902 * Useful in fbdev emulation code, since that deals in those values.
2903 */
308e5bcb
JB
2904uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2905{
2906 uint32_t fmt;
2907
2908 switch (bpp) {
2909 case 8:
d84f031b 2910 fmt = DRM_FORMAT_C8;
308e5bcb
JB
2911 break;
2912 case 16:
2913 if (depth == 15)
04b3924d 2914 fmt = DRM_FORMAT_XRGB1555;
308e5bcb 2915 else
04b3924d 2916 fmt = DRM_FORMAT_RGB565;
308e5bcb
JB
2917 break;
2918 case 24:
04b3924d 2919 fmt = DRM_FORMAT_RGB888;
308e5bcb
JB
2920 break;
2921 case 32:
2922 if (depth == 24)
04b3924d 2923 fmt = DRM_FORMAT_XRGB8888;
308e5bcb 2924 else if (depth == 30)
04b3924d 2925 fmt = DRM_FORMAT_XRGB2101010;
308e5bcb 2926 else
04b3924d 2927 fmt = DRM_FORMAT_ARGB8888;
308e5bcb
JB
2928 break;
2929 default:
04b3924d
VS
2930 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2931 fmt = DRM_FORMAT_XRGB8888;
308e5bcb
JB
2932 break;
2933 }
2934
2935 return fmt;
2936}
2937EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2938
f453ba04
DA
2939/**
2940 * drm_mode_addfb - add an FB to the graphics configuration
065a50ed
DV
2941 * @dev: drm device for the ioctl
2942 * @data: data pointer for the ioctl
2943 * @file_priv: drm file for the ioctl call
f453ba04 2944 *
c8e32cc1
DV
2945 * Add a new FB to the specified CRTC, given a user request. This is the
2946 * original addfb ioclt which only supported RGB formats.
f453ba04
DA
2947 *
2948 * Called by the user via ioctl.
2949 *
c8e32cc1 2950 * Returns:
f453ba04
DA
2951 * Zero on success, errno on failure.
2952 */
2953int drm_mode_addfb(struct drm_device *dev,
2954 void *data, struct drm_file *file_priv)
2955{
308e5bcb
JB
2956 struct drm_mode_fb_cmd *or = data;
2957 struct drm_mode_fb_cmd2 r = {};
2958 struct drm_mode_config *config = &dev->mode_config;
2959 struct drm_framebuffer *fb;
2960 int ret = 0;
2961
2962 /* Use new struct with format internally */
2963 r.fb_id = or->fb_id;
2964 r.width = or->width;
2965 r.height = or->height;
2966 r.pitches[0] = or->pitch;
2967 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2968 r.handles[0] = or->handle;
2969
2970 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2971 return -EINVAL;
2972
acb4b992 2973 if ((config->min_width > r.width) || (r.width > config->max_width))
308e5bcb 2974 return -EINVAL;
acb4b992
JB
2975
2976 if ((config->min_height > r.height) || (r.height > config->max_height))
308e5bcb 2977 return -EINVAL;
308e5bcb 2978
308e5bcb
JB
2979 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2980 if (IS_ERR(fb)) {
1aa1b11c 2981 DRM_DEBUG_KMS("could not create framebuffer\n");
4b096ac1 2982 return PTR_ERR(fb);
308e5bcb
JB
2983 }
2984
4b096ac1 2985 mutex_lock(&file_priv->fbs_lock);
308e5bcb
JB
2986 or->fb_id = fb->base.id;
2987 list_add(&fb->filp_head, &file_priv->fbs);
2988 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
4b096ac1 2989 mutex_unlock(&file_priv->fbs_lock);
4b096ac1 2990
308e5bcb
JB
2991 return ret;
2992}
2993
cff91b62 2994static int format_check(const struct drm_mode_fb_cmd2 *r)
935b5977
VS
2995{
2996 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2997
2998 switch (format) {
2999 case DRM_FORMAT_C8:
3000 case DRM_FORMAT_RGB332:
3001 case DRM_FORMAT_BGR233:
3002 case DRM_FORMAT_XRGB4444:
3003 case DRM_FORMAT_XBGR4444:
3004 case DRM_FORMAT_RGBX4444:
3005 case DRM_FORMAT_BGRX4444:
3006 case DRM_FORMAT_ARGB4444:
3007 case DRM_FORMAT_ABGR4444:
3008 case DRM_FORMAT_RGBA4444:
3009 case DRM_FORMAT_BGRA4444:
3010 case DRM_FORMAT_XRGB1555:
3011 case DRM_FORMAT_XBGR1555:
3012 case DRM_FORMAT_RGBX5551:
3013 case DRM_FORMAT_BGRX5551:
3014 case DRM_FORMAT_ARGB1555:
3015 case DRM_FORMAT_ABGR1555:
3016 case DRM_FORMAT_RGBA5551:
3017 case DRM_FORMAT_BGRA5551:
3018 case DRM_FORMAT_RGB565:
3019 case DRM_FORMAT_BGR565:
3020 case DRM_FORMAT_RGB888:
3021 case DRM_FORMAT_BGR888:
3022 case DRM_FORMAT_XRGB8888:
3023 case DRM_FORMAT_XBGR8888:
3024 case DRM_FORMAT_RGBX8888:
3025 case DRM_FORMAT_BGRX8888:
3026 case DRM_FORMAT_ARGB8888:
3027 case DRM_FORMAT_ABGR8888:
3028 case DRM_FORMAT_RGBA8888:
3029 case DRM_FORMAT_BGRA8888:
3030 case DRM_FORMAT_XRGB2101010:
3031 case DRM_FORMAT_XBGR2101010:
3032 case DRM_FORMAT_RGBX1010102:
3033 case DRM_FORMAT_BGRX1010102:
3034 case DRM_FORMAT_ARGB2101010:
3035 case DRM_FORMAT_ABGR2101010:
3036 case DRM_FORMAT_RGBA1010102:
3037 case DRM_FORMAT_BGRA1010102:
3038 case DRM_FORMAT_YUYV:
3039 case DRM_FORMAT_YVYU:
3040 case DRM_FORMAT_UYVY:
3041 case DRM_FORMAT_VYUY:
3042 case DRM_FORMAT_AYUV:
3043 case DRM_FORMAT_NV12:
3044 case DRM_FORMAT_NV21:
3045 case DRM_FORMAT_NV16:
3046 case DRM_FORMAT_NV61:
ba623f6a
LP
3047 case DRM_FORMAT_NV24:
3048 case DRM_FORMAT_NV42:
935b5977
VS
3049 case DRM_FORMAT_YUV410:
3050 case DRM_FORMAT_YVU410:
3051 case DRM_FORMAT_YUV411:
3052 case DRM_FORMAT_YVU411:
3053 case DRM_FORMAT_YUV420:
3054 case DRM_FORMAT_YVU420:
3055 case DRM_FORMAT_YUV422:
3056 case DRM_FORMAT_YVU422:
3057 case DRM_FORMAT_YUV444:
3058 case DRM_FORMAT_YVU444:
3059 return 0;
3060 default:
23c453a4
VS
3061 DRM_DEBUG_KMS("invalid pixel format %s\n",
3062 drm_get_format_name(r->pixel_format));
935b5977
VS
3063 return -EINVAL;
3064 }
3065}
3066
cff91b62 3067static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
d1b45d5f
VS
3068{
3069 int ret, hsub, vsub, num_planes, i;
3070
3071 ret = format_check(r);
3072 if (ret) {
6ba6d03e
VS
3073 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3074 drm_get_format_name(r->pixel_format));
d1b45d5f
VS
3075 return ret;
3076 }
3077
3078 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3079 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3080 num_planes = drm_format_num_planes(r->pixel_format);
3081
3082 if (r->width == 0 || r->width % hsub) {
1aa1b11c 3083 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
d1b45d5f
VS
3084 return -EINVAL;
3085 }
3086
3087 if (r->height == 0 || r->height % vsub) {
1aa1b11c 3088 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
d1b45d5f
VS
3089 return -EINVAL;
3090 }
3091
3092 for (i = 0; i < num_planes; i++) {
3093 unsigned int width = r->width / (i != 0 ? hsub : 1);
b180b5d1
VS
3094 unsigned int height = r->height / (i != 0 ? vsub : 1);
3095 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
d1b45d5f
VS
3096
3097 if (!r->handles[i]) {
1aa1b11c 3098 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
d1b45d5f
VS
3099 return -EINVAL;
3100 }
3101
b180b5d1
VS
3102 if ((uint64_t) width * cpp > UINT_MAX)
3103 return -ERANGE;
3104
3105 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3106 return -ERANGE;
3107
3108 if (r->pitches[i] < width * cpp) {
1aa1b11c 3109 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
d1b45d5f
VS
3110 return -EINVAL;
3111 }
3112 }
3113
3114 return 0;
3115}
3116
c394c2b0
MR
3117static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3118 struct drm_mode_fb_cmd2 *r,
3119 struct drm_file *file_priv)
308e5bcb 3120{
f453ba04
DA
3121 struct drm_mode_config *config = &dev->mode_config;
3122 struct drm_framebuffer *fb;
4a1b0714 3123 int ret;
f453ba04 3124
e3cc3520
VS
3125 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3126 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
c394c2b0 3127 return ERR_PTR(-EINVAL);
e3cc3520
VS
3128 }
3129
f453ba04 3130 if ((config->min_width > r->width) || (r->width > config->max_width)) {
1aa1b11c 3131 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
8cf5c917 3132 r->width, config->min_width, config->max_width);
c394c2b0 3133 return ERR_PTR(-EINVAL);
f453ba04
DA
3134 }
3135 if ((config->min_height > r->height) || (r->height > config->max_height)) {
1aa1b11c 3136 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
8cf5c917 3137 r->height, config->min_height, config->max_height);
c394c2b0 3138 return ERR_PTR(-EINVAL);
f453ba04
DA
3139 }
3140
d1b45d5f
VS
3141 ret = framebuffer_check(r);
3142 if (ret)
c394c2b0 3143 return ERR_PTR(ret);
935b5977 3144
f453ba04 3145 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
cce13ff7 3146 if (IS_ERR(fb)) {
1aa1b11c 3147 DRM_DEBUG_KMS("could not create framebuffer\n");
c394c2b0 3148 return fb;
f453ba04
DA
3149 }
3150
4b096ac1 3151 mutex_lock(&file_priv->fbs_lock);
e0c8463a 3152 r->fb_id = fb->base.id;
f453ba04 3153 list_add(&fb->filp_head, &file_priv->fbs);
9440106b 3154 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
4b096ac1 3155 mutex_unlock(&file_priv->fbs_lock);
f453ba04 3156
c394c2b0
MR
3157 return fb;
3158}
4b096ac1 3159
c394c2b0
MR
3160/**
3161 * drm_mode_addfb2 - add an FB to the graphics configuration
3162 * @dev: drm device for the ioctl
3163 * @data: data pointer for the ioctl
3164 * @file_priv: drm file for the ioctl call
3165 *
3166 * Add a new FB to the specified CRTC, given a user request with format. This is
3167 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3168 * and uses fourcc codes as pixel format specifiers.
3169 *
3170 * Called by the user via ioctl.
3171 *
3172 * Returns:
3173 * Zero on success, errno on failure.
3174 */
3175int drm_mode_addfb2(struct drm_device *dev,
3176 void *data, struct drm_file *file_priv)
3177{
3178 struct drm_framebuffer *fb;
3179
3180 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3181 return -EINVAL;
3182
3183 fb = add_framebuffer_internal(dev, data, file_priv);
3184 if (IS_ERR(fb))
3185 return PTR_ERR(fb);
3186
3187 return 0;
f453ba04
DA
3188}
3189
3190/**
3191 * drm_mode_rmfb - remove an FB from the configuration
065a50ed
DV
3192 * @dev: drm device for the ioctl
3193 * @data: data pointer for the ioctl
3194 * @file_priv: drm file for the ioctl call
f453ba04 3195 *
f453ba04
DA
3196 * Remove the FB specified by the user.
3197 *
3198 * Called by the user via ioctl.
3199 *
c8e32cc1 3200 * Returns:
f453ba04
DA
3201 * Zero on success, errno on failure.
3202 */
3203int drm_mode_rmfb(struct drm_device *dev,
3204 void *data, struct drm_file *file_priv)
3205{
f453ba04
DA
3206 struct drm_framebuffer *fb = NULL;
3207 struct drm_framebuffer *fbl = NULL;
3208 uint32_t *id = data;
f453ba04
DA
3209 int found = 0;
3210
fb3b06c8
DA
3211 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3212 return -EINVAL;
3213
4b096ac1 3214 mutex_lock(&file_priv->fbs_lock);
2b677e8c
DV
3215 mutex_lock(&dev->mode_config.fb_lock);
3216 fb = __drm_framebuffer_lookup(dev, *id);
3217 if (!fb)
3218 goto fail_lookup;
3219
f453ba04
DA
3220 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3221 if (fb == fbl)
3222 found = 1;
2b677e8c
DV
3223 if (!found)
3224 goto fail_lookup;
3225
3226 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3227 __drm_framebuffer_unregister(dev, fb);
f453ba04 3228
4b096ac1 3229 list_del_init(&fb->filp_head);
2b677e8c 3230 mutex_unlock(&dev->mode_config.fb_lock);
4b096ac1 3231 mutex_unlock(&file_priv->fbs_lock);
f453ba04 3232
4b096ac1 3233 drm_framebuffer_remove(fb);
4b096ac1 3234
2b677e8c
DV
3235 return 0;
3236
3237fail_lookup:
3238 mutex_unlock(&dev->mode_config.fb_lock);
3239 mutex_unlock(&file_priv->fbs_lock);
3240
37c4e705 3241 return -ENOENT;
f453ba04
DA
3242}
3243
3244/**
3245 * drm_mode_getfb - get FB info
065a50ed
DV
3246 * @dev: drm device for the ioctl
3247 * @data: data pointer for the ioctl
3248 * @file_priv: drm file for the ioctl call
f453ba04 3249 *
f453ba04
DA
3250 * Lookup the FB given its ID and return info about it.
3251 *
3252 * Called by the user via ioctl.
3253 *
c8e32cc1 3254 * Returns:
f453ba04
DA
3255 * Zero on success, errno on failure.
3256 */
3257int drm_mode_getfb(struct drm_device *dev,
3258 void *data, struct drm_file *file_priv)
3259{
3260 struct drm_mode_fb_cmd *r = data;
f453ba04 3261 struct drm_framebuffer *fb;
58c0dca1 3262 int ret;
f453ba04 3263
fb3b06c8
DA
3264 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3265 return -EINVAL;
3266
786b99ed 3267 fb = drm_framebuffer_lookup(dev, r->fb_id);
58c0dca1 3268 if (!fb)
37c4e705 3269 return -ENOENT;
f453ba04
DA
3270
3271 r->height = fb->height;
3272 r->width = fb->width;
3273 r->depth = fb->depth;
3274 r->bpp = fb->bits_per_pixel;
01f2c773 3275 r->pitch = fb->pitches[0];
101b96f3 3276 if (fb->funcs->create_handle) {
09f308f7 3277 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
43683057 3278 drm_is_control_client(file_priv)) {
101b96f3
DH
3279 ret = fb->funcs->create_handle(fb, file_priv,
3280 &r->handle);
3281 } else {
3282 /* GET_FB() is an unprivileged ioctl so we must not
3283 * return a buffer-handle to non-master processes! For
3284 * backwards-compatibility reasons, we cannot make
3285 * GET_FB() privileged, so just return an invalid handle
3286 * for non-masters. */
3287 r->handle = 0;
3288 ret = 0;
3289 }
3290 } else {
af26ef3b 3291 ret = -ENODEV;
101b96f3 3292 }
f453ba04 3293
58c0dca1
DV
3294 drm_framebuffer_unreference(fb);
3295
f453ba04
DA
3296 return ret;
3297}
3298
c8e32cc1
DV
3299/**
3300 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3301 * @dev: drm device for the ioctl
3302 * @data: data pointer for the ioctl
3303 * @file_priv: drm file for the ioctl call
3304 *
3305 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3306 * rectangle list. Generic userspace which does frontbuffer rendering must call
3307 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3308 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3309 *
3310 * Modesetting drivers which always update the frontbuffer do not need to
3311 * implement the corresponding ->dirty framebuffer callback.
3312 *
3313 * Called by the user via ioctl.
3314 *
3315 * Returns:
3316 * Zero on success, errno on failure.
3317 */
884840aa
JB
3318int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3319 void *data, struct drm_file *file_priv)
3320{
3321 struct drm_clip_rect __user *clips_ptr;
3322 struct drm_clip_rect *clips = NULL;
3323 struct drm_mode_fb_dirty_cmd *r = data;
884840aa
JB
3324 struct drm_framebuffer *fb;
3325 unsigned flags;
3326 int num_clips;
4a1b0714 3327 int ret;
884840aa 3328
fb3b06c8
DA
3329 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3330 return -EINVAL;
3331
786b99ed 3332 fb = drm_framebuffer_lookup(dev, r->fb_id);
4ccf097f 3333 if (!fb)
37c4e705 3334 return -ENOENT;
884840aa
JB
3335
3336 num_clips = r->num_clips;
81f6c7f8 3337 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
884840aa
JB
3338
3339 if (!num_clips != !clips_ptr) {
3340 ret = -EINVAL;
3341 goto out_err1;
3342 }
3343
3344 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3345
3346 /* If userspace annotates copy, clips must come in pairs */
3347 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3348 ret = -EINVAL;
3349 goto out_err1;
3350 }
3351
3352 if (num_clips && clips_ptr) {
a5cd3351
XW
3353 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3354 ret = -EINVAL;
3355 goto out_err1;
3356 }
884840aa
JB
3357 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3358 if (!clips) {
3359 ret = -ENOMEM;
3360 goto out_err1;
3361 }
3362
3363 ret = copy_from_user(clips, clips_ptr,
3364 num_clips * sizeof(*clips));
e902a358
DC
3365 if (ret) {
3366 ret = -EFAULT;
884840aa 3367 goto out_err2;
e902a358 3368 }
884840aa
JB
3369 }
3370
3371 if (fb->funcs->dirty) {
02b00162
TH
3372 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3373 clips, num_clips);
884840aa
JB
3374 } else {
3375 ret = -ENOSYS;
884840aa
JB
3376 }
3377
3378out_err2:
3379 kfree(clips);
3380out_err1:
4ccf097f
DV
3381 drm_framebuffer_unreference(fb);
3382
884840aa
JB
3383 return ret;
3384}
3385
3386
f453ba04
DA
3387/**
3388 * drm_fb_release - remove and free the FBs on this file
065a50ed 3389 * @priv: drm file for the ioctl
f453ba04 3390 *
f453ba04
DA
3391 * Destroy all the FBs associated with @filp.
3392 *
3393 * Called by the user via ioctl.
3394 *
c8e32cc1 3395 * Returns:
f453ba04
DA
3396 * Zero on success, errno on failure.
3397 */
ea39f835 3398void drm_fb_release(struct drm_file *priv)
f453ba04 3399{
f453ba04
DA
3400 struct drm_device *dev = priv->minor->dev;
3401 struct drm_framebuffer *fb, *tfb;
3402
4b096ac1 3403 mutex_lock(&priv->fbs_lock);
f453ba04 3404 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
2b677e8c
DV
3405
3406 mutex_lock(&dev->mode_config.fb_lock);
3407 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3408 __drm_framebuffer_unregister(dev, fb);
3409 mutex_unlock(&dev->mode_config.fb_lock);
3410
4b096ac1 3411 list_del_init(&fb->filp_head);
2b677e8c
DV
3412
3413 /* This will also drop the fpriv->fbs reference. */
f7eff60e 3414 drm_framebuffer_remove(fb);
f453ba04 3415 }
4b096ac1 3416 mutex_unlock(&priv->fbs_lock);
f453ba04
DA
3417}
3418
c8e32cc1
DV
3419/**
3420 * drm_property_create - create a new property type
3421 * @dev: drm device
3422 * @flags: flags specifying the property type
3423 * @name: name of the property
3424 * @num_values: number of pre-defined values
3425 *
3426 * This creates a new generic drm property which can then be attached to a drm
3427 * object with drm_object_attach_property. The returned property object must be
3428 * freed with drm_property_destroy.
3429 *
3430 * Returns:
3431 * A pointer to the newly created property on success, NULL on failure.
3432 */
f453ba04
DA
3433struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3434 const char *name, int num_values)
3435{
3436 struct drm_property *property = NULL;
6bfc56aa 3437 int ret;
f453ba04
DA
3438
3439 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3440 if (!property)
3441 return NULL;
3442
98f75de4
RC
3443 property->dev = dev;
3444
f453ba04
DA
3445 if (num_values) {
3446 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3447 if (!property->values)
3448 goto fail;
3449 }
3450
6bfc56aa
VS
3451 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3452 if (ret)
3453 goto fail;
3454
f453ba04
DA
3455 property->flags = flags;
3456 property->num_values = num_values;
3457 INIT_LIST_HEAD(&property->enum_blob_list);
3458
471dd2ef 3459 if (name) {
f453ba04 3460 strncpy(property->name, name, DRM_PROP_NAME_LEN);
471dd2ef
VL
3461 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3462 }
f453ba04
DA
3463
3464 list_add_tail(&property->head, &dev->mode_config.property_list);
5ea22f24
RC
3465
3466 WARN_ON(!drm_property_type_valid(property));
3467
f453ba04
DA
3468 return property;
3469fail:
6bfc56aa 3470 kfree(property->values);
f453ba04
DA
3471 kfree(property);
3472 return NULL;
3473}
3474EXPORT_SYMBOL(drm_property_create);
3475
c8e32cc1 3476/**
2aa9d2bc 3477 * drm_property_create_enum - create a new enumeration property type
c8e32cc1
DV
3478 * @dev: drm device
3479 * @flags: flags specifying the property type
3480 * @name: name of the property
3481 * @props: enumeration lists with property values
3482 * @num_values: number of pre-defined values
3483 *
3484 * This creates a new generic drm property which can then be attached to a drm
3485 * object with drm_object_attach_property. The returned property object must be
3486 * freed with drm_property_destroy.
3487 *
3488 * Userspace is only allowed to set one of the predefined values for enumeration
3489 * properties.
3490 *
3491 * Returns:
3492 * A pointer to the newly created property on success, NULL on failure.
3493 */
4a67d391
SH
3494struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3495 const char *name,
3496 const struct drm_prop_enum_list *props,
3497 int num_values)
3498{
3499 struct drm_property *property;
3500 int i, ret;
3501
3502 flags |= DRM_MODE_PROP_ENUM;
3503
3504 property = drm_property_create(dev, flags, name, num_values);
3505 if (!property)
3506 return NULL;
3507
3508 for (i = 0; i < num_values; i++) {
3509 ret = drm_property_add_enum(property, i,
3510 props[i].type,
3511 props[i].name);
3512 if (ret) {
3513 drm_property_destroy(dev, property);
3514 return NULL;
3515 }
3516 }
3517
3518 return property;
3519}
3520EXPORT_SYMBOL(drm_property_create_enum);
3521
c8e32cc1 3522/**
2aa9d2bc 3523 * drm_property_create_bitmask - create a new bitmask property type
c8e32cc1
DV
3524 * @dev: drm device
3525 * @flags: flags specifying the property type
3526 * @name: name of the property
3527 * @props: enumeration lists with property bitflags
295ee853
DV
3528 * @num_props: size of the @props array
3529 * @supported_bits: bitmask of all supported enumeration values
c8e32cc1 3530 *
295ee853 3531 * This creates a new bitmask drm property which can then be attached to a drm
c8e32cc1
DV
3532 * object with drm_object_attach_property. The returned property object must be
3533 * freed with drm_property_destroy.
3534 *
3535 * Compared to plain enumeration properties userspace is allowed to set any
3536 * or'ed together combination of the predefined property bitflag values
3537 *
3538 * Returns:
3539 * A pointer to the newly created property on success, NULL on failure.
3540 */
49e27545
RC
3541struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3542 int flags, const char *name,
3543 const struct drm_prop_enum_list *props,
7689ffb3
VS
3544 int num_props,
3545 uint64_t supported_bits)
49e27545
RC
3546{
3547 struct drm_property *property;
7689ffb3
VS
3548 int i, ret, index = 0;
3549 int num_values = hweight64(supported_bits);
49e27545
RC
3550
3551 flags |= DRM_MODE_PROP_BITMASK;
3552
3553 property = drm_property_create(dev, flags, name, num_values);
3554 if (!property)
3555 return NULL;
7689ffb3
VS
3556 for (i = 0; i < num_props; i++) {
3557 if (!(supported_bits & (1ULL << props[i].type)))
3558 continue;
49e27545 3559
7689ffb3
VS
3560 if (WARN_ON(index >= num_values)) {
3561 drm_property_destroy(dev, property);
3562 return NULL;
3563 }
3564
3565 ret = drm_property_add_enum(property, index++,
49e27545
RC
3566 props[i].type,
3567 props[i].name);
3568 if (ret) {
3569 drm_property_destroy(dev, property);
3570 return NULL;
3571 }
3572 }
3573
3574 return property;
3575}
3576EXPORT_SYMBOL(drm_property_create_bitmask);
3577
ebc44cf3
RC
3578static struct drm_property *property_create_range(struct drm_device *dev,
3579 int flags, const char *name,
3580 uint64_t min, uint64_t max)
3581{
3582 struct drm_property *property;
3583
3584 property = drm_property_create(dev, flags, name, 2);
3585 if (!property)
3586 return NULL;
3587
3588 property->values[0] = min;
3589 property->values[1] = max;
3590
3591 return property;
3592}
3593
c8e32cc1 3594/**
2aa9d2bc 3595 * drm_property_create_range - create a new ranged property type
c8e32cc1
DV
3596 * @dev: drm device
3597 * @flags: flags specifying the property type
3598 * @name: name of the property
3599 * @min: minimum value of the property
3600 * @max: maximum value of the property
3601 *
3602 * This creates a new generic drm property which can then be attached to a drm
3603 * object with drm_object_attach_property. The returned property object must be
3604 * freed with drm_property_destroy.
3605 *
3606 * Userspace is allowed to set any interger value in the (min, max) range
3607 * inclusive.
3608 *
3609 * Returns:
3610 * A pointer to the newly created property on success, NULL on failure.
3611 */
d9bc3c02
SH
3612struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3613 const char *name,
3614 uint64_t min, uint64_t max)
3615{
ebc44cf3
RC
3616 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3617 name, min, max);
d9bc3c02
SH
3618}
3619EXPORT_SYMBOL(drm_property_create_range);
3620
ebc44cf3
RC
3621struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3622 int flags, const char *name,
3623 int64_t min, int64_t max)
3624{
3625 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3626 name, I642U64(min), I642U64(max));
3627}
3628EXPORT_SYMBOL(drm_property_create_signed_range);
3629
98f75de4
RC
3630struct drm_property *drm_property_create_object(struct drm_device *dev,
3631 int flags, const char *name, uint32_t type)
3632{
3633 struct drm_property *property;
3634
3635 flags |= DRM_MODE_PROP_OBJECT;
3636
3637 property = drm_property_create(dev, flags, name, 1);
3638 if (!property)
3639 return NULL;
3640
3641 property->values[0] = type;
3642
3643 return property;
3644}
3645EXPORT_SYMBOL(drm_property_create_object);
3646
c8e32cc1
DV
3647/**
3648 * drm_property_add_enum - add a possible value to an enumeration property
3649 * @property: enumeration property to change
3650 * @index: index of the new enumeration
3651 * @value: value of the new enumeration
3652 * @name: symbolic name of the new enumeration
3653 *
3654 * This functions adds enumerations to a property.
3655 *
3656 * It's use is deprecated, drivers should use one of the more specific helpers
3657 * to directly create the property with all enumerations already attached.
3658 *
3659 * Returns:
3660 * Zero on success, error code on failure.
3661 */
f453ba04
DA
3662int drm_property_add_enum(struct drm_property *property, int index,
3663 uint64_t value, const char *name)
3664{
3665 struct drm_property_enum *prop_enum;
3666
5ea22f24
RC
3667 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3668 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
49e27545
RC
3669 return -EINVAL;
3670
3671 /*
3672 * Bitmask enum properties have the additional constraint of values
3673 * from 0 to 63
3674 */
5ea22f24
RC
3675 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3676 (value > 63))
f453ba04
DA
3677 return -EINVAL;
3678
3679 if (!list_empty(&property->enum_blob_list)) {
3680 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3681 if (prop_enum->value == value) {
3682 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3683 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3684 return 0;
3685 }
3686 }
3687 }
3688
3689 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3690 if (!prop_enum)
3691 return -ENOMEM;
3692
3693 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3694 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3695 prop_enum->value = value;
3696
3697 property->values[index] = value;
3698 list_add_tail(&prop_enum->head, &property->enum_blob_list);
3699 return 0;
3700}
3701EXPORT_SYMBOL(drm_property_add_enum);
3702
c8e32cc1
DV
3703/**
3704 * drm_property_destroy - destroy a drm property
3705 * @dev: drm device
3706 * @property: property to destry
3707 *
3708 * This function frees a property including any attached resources like
3709 * enumeration values.
3710 */
f453ba04
DA
3711void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3712{
3713 struct drm_property_enum *prop_enum, *pt;
3714
3715 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
3716 list_del(&prop_enum->head);
3717 kfree(prop_enum);
3718 }
3719
3720 if (property->num_values)
3721 kfree(property->values);
3722 drm_mode_object_put(dev, &property->base);
3723 list_del(&property->head);
3724 kfree(property);
3725}
3726EXPORT_SYMBOL(drm_property_destroy);
3727
c8e32cc1
DV
3728/**
3729 * drm_object_attach_property - attach a property to a modeset object
3730 * @obj: drm modeset object
3731 * @property: property to attach
3732 * @init_val: initial value of the property
3733 *
3734 * This attaches the given property to the modeset object with the given initial
3735 * value. Currently this function cannot fail since the properties are stored in
3736 * a statically sized array.
3737 */
c543188a
PZ
3738void drm_object_attach_property(struct drm_mode_object *obj,
3739 struct drm_property *property,
3740 uint64_t init_val)
3741{
7f88a9be 3742 int count = obj->properties->count;
c543188a 3743
7f88a9be
PZ
3744 if (count == DRM_OBJECT_MAX_PROPERTY) {
3745 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3746 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3747 "you see this message on the same object type.\n",
3748 obj->type);
3749 return;
c543188a
PZ
3750 }
3751
7f88a9be
PZ
3752 obj->properties->ids[count] = property->base.id;
3753 obj->properties->values[count] = init_val;
3754 obj->properties->count++;
c543188a
PZ
3755}
3756EXPORT_SYMBOL(drm_object_attach_property);
3757
c8e32cc1
DV
3758/**
3759 * drm_object_property_set_value - set the value of a property
3760 * @obj: drm mode object to set property value for
3761 * @property: property to set
3762 * @val: value the property should be set to
3763 *
3764 * This functions sets a given property on a given object. This function only
3765 * changes the software state of the property, it does not call into the
3766 * driver's ->set_property callback.
3767 *
3768 * Returns:
3769 * Zero on success, error code on failure.
3770 */
c543188a
PZ
3771int drm_object_property_set_value(struct drm_mode_object *obj,
3772 struct drm_property *property, uint64_t val)
3773{
3774 int i;
3775
7f88a9be 3776 for (i = 0; i < obj->properties->count; i++) {
c543188a
PZ
3777 if (obj->properties->ids[i] == property->base.id) {
3778 obj->properties->values[i] = val;
3779 return 0;
3780 }
3781 }
3782
3783 return -EINVAL;
3784}
3785EXPORT_SYMBOL(drm_object_property_set_value);
3786
c8e32cc1
DV
3787/**
3788 * drm_object_property_get_value - retrieve the value of a property
3789 * @obj: drm mode object to get property value from
3790 * @property: property to retrieve
3791 * @val: storage for the property value
3792 *
3793 * This function retrieves the softare state of the given property for the given
3794 * property. Since there is no driver callback to retrieve the current property
3795 * value this might be out of sync with the hardware, depending upon the driver
3796 * and property.
3797 *
3798 * Returns:
3799 * Zero on success, error code on failure.
3800 */
c543188a
PZ
3801int drm_object_property_get_value(struct drm_mode_object *obj,
3802 struct drm_property *property, uint64_t *val)
3803{
3804 int i;
3805
7f88a9be 3806 for (i = 0; i < obj->properties->count; i++) {
c543188a
PZ
3807 if (obj->properties->ids[i] == property->base.id) {
3808 *val = obj->properties->values[i];
3809 return 0;
3810 }
3811 }
3812
3813 return -EINVAL;
3814}
3815EXPORT_SYMBOL(drm_object_property_get_value);
3816
c8e32cc1
DV
3817/**
3818 * drm_mode_getproperty_ioctl - get the current value of a connector's property
3819 * @dev: DRM device
3820 * @data: ioctl data
3821 * @file_priv: DRM file info
3822 *
3823 * This function retrieves the current value for an connectors's property.
3824 *
3825 * Called by the user via ioctl.
3826 *
3827 * Returns:
3828 * Zero on success, errno on failure.
3829 */
f453ba04
DA
3830int drm_mode_getproperty_ioctl(struct drm_device *dev,
3831 void *data, struct drm_file *file_priv)
3832{
f453ba04
DA
3833 struct drm_mode_get_property *out_resp = data;
3834 struct drm_property *property;
3835 int enum_count = 0;
3836 int blob_count = 0;
3837 int value_count = 0;
3838 int ret = 0, i;
3839 int copied;
3840 struct drm_property_enum *prop_enum;
3841 struct drm_mode_property_enum __user *enum_ptr;
3842 struct drm_property_blob *prop_blob;
81f6c7f8 3843 uint32_t __user *blob_id_ptr;
f453ba04
DA
3844 uint64_t __user *values_ptr;
3845 uint32_t __user *blob_length_ptr;
3846
fb3b06c8
DA
3847 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3848 return -EINVAL;
3849
84849903 3850 drm_modeset_lock_all(dev);
a2b34e22
RC
3851 property = drm_property_find(dev, out_resp->prop_id);
3852 if (!property) {
f27657f2 3853 ret = -ENOENT;
f453ba04
DA
3854 goto done;
3855 }
f453ba04 3856
5ea22f24
RC
3857 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3858 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
f453ba04
DA
3859 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3860 enum_count++;
5ea22f24 3861 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
f453ba04
DA
3862 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3863 blob_count++;
3864 }
3865
3866 value_count = property->num_values;
3867
3868 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3869 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3870 out_resp->flags = property->flags;
3871
3872 if ((out_resp->count_values >= value_count) && value_count) {
81f6c7f8 3873 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
f453ba04
DA
3874 for (i = 0; i < value_count; i++) {
3875 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3876 ret = -EFAULT;
3877 goto done;
3878 }
3879 }
3880 }
3881 out_resp->count_values = value_count;
3882
5ea22f24
RC
3883 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3884 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
f453ba04
DA
3885 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3886 copied = 0;
81f6c7f8 3887 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
f453ba04
DA
3888 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3889
3890 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3891 ret = -EFAULT;
3892 goto done;
3893 }
3894
3895 if (copy_to_user(&enum_ptr[copied].name,
3896 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3897 ret = -EFAULT;
3898 goto done;
3899 }
3900 copied++;
3901 }
3902 }
3903 out_resp->count_enum_blobs = enum_count;
3904 }
3905
5ea22f24 3906 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
f453ba04
DA
3907 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3908 copied = 0;
81f6c7f8
VS
3909 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3910 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
f453ba04
DA
3911
3912 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3913 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3914 ret = -EFAULT;
3915 goto done;
3916 }
3917
3918 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3919 ret = -EFAULT;
3920 goto done;
3921 }
3922
3923 copied++;
3924 }
3925 }
3926 out_resp->count_enum_blobs = blob_count;
3927 }
3928done:
84849903 3929 drm_modeset_unlock_all(dev);
f453ba04
DA
3930 return ret;
3931}
3932
3933static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3934 void *data)
3935{
3936 struct drm_property_blob *blob;
6bfc56aa 3937 int ret;
f453ba04
DA
3938
3939 if (!length || !data)
3940 return NULL;
3941
3942 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3943 if (!blob)
3944 return NULL;
3945
6bfc56aa
VS
3946 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3947 if (ret) {
3948 kfree(blob);
3949 return NULL;
3950 }
3951
f453ba04
DA
3952 blob->length = length;
3953
3954 memcpy(blob->data, data, length);
3955
f453ba04
DA
3956 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3957 return blob;
3958}
3959
3960static void drm_property_destroy_blob(struct drm_device *dev,
3961 struct drm_property_blob *blob)
3962{
3963 drm_mode_object_put(dev, &blob->base);
3964 list_del(&blob->head);
3965 kfree(blob);
3966}
3967
c8e32cc1
DV
3968/**
3969 * drm_mode_getblob_ioctl - get the contents of a blob property value
3970 * @dev: DRM device
3971 * @data: ioctl data
3972 * @file_priv: DRM file info
3973 *
3974 * This function retrieves the contents of a blob property. The value stored in
3975 * an object's blob property is just a normal modeset object id.
3976 *
3977 * Called by the user via ioctl.
3978 *
3979 * Returns:
3980 * Zero on success, errno on failure.
3981 */
f453ba04
DA
3982int drm_mode_getblob_ioctl(struct drm_device *dev,
3983 void *data, struct drm_file *file_priv)
3984{
f453ba04
DA
3985 struct drm_mode_get_blob *out_resp = data;
3986 struct drm_property_blob *blob;
3987 int ret = 0;
81f6c7f8 3988 void __user *blob_ptr;
f453ba04 3989
fb3b06c8
DA
3990 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3991 return -EINVAL;
3992
84849903 3993 drm_modeset_lock_all(dev);
a2b34e22
RC
3994 blob = drm_property_blob_find(dev, out_resp->blob_id);
3995 if (!blob) {
f27657f2 3996 ret = -ENOENT;
f453ba04
DA
3997 goto done;
3998 }
f453ba04
DA
3999
4000 if (out_resp->length == blob->length) {
81f6c7f8 4001 blob_ptr = (void __user *)(unsigned long)out_resp->data;
f453ba04
DA
4002 if (copy_to_user(blob_ptr, blob->data, blob->length)){
4003 ret = -EFAULT;
4004 goto done;
4005 }
4006 }
4007 out_resp->length = blob->length;
4008
4009done:
84849903 4010 drm_modeset_unlock_all(dev);
f453ba04
DA
4011 return ret;
4012}
4013
43aba7eb
DA
4014int drm_mode_connector_set_path_property(struct drm_connector *connector,
4015 char *path)
4016{
4017 struct drm_device *dev = connector->dev;
4018 int ret, size;
4019 size = strlen(path) + 1;
4020
4021 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4022 size, path);
4023 if (!connector->path_blob_ptr)
4024 return -EINVAL;
4025
4026 ret = drm_object_property_set_value(&connector->base,
4027 dev->mode_config.path_property,
4028 connector->path_blob_ptr->base.id);
4029 return ret;
4030}
4031EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4032
c8e32cc1
DV
4033/**
4034 * drm_mode_connector_update_edid_property - update the edid property of a connector
4035 * @connector: drm connector
4036 * @edid: new value of the edid property
4037 *
4038 * This function creates a new blob modeset object and assigns its id to the
4039 * connector's edid property.
4040 *
4041 * Returns:
4042 * Zero on success, errno on failure.
4043 */
f453ba04
DA
4044int drm_mode_connector_update_edid_property(struct drm_connector *connector,
4045 struct edid *edid)
4046{
4047 struct drm_device *dev = connector->dev;
4a1b0714 4048 int ret, size;
f453ba04 4049
4cf2b281
TW
4050 /* ignore requests to set edid when overridden */
4051 if (connector->override_edid)
4052 return 0;
4053
f453ba04
DA
4054 if (connector->edid_blob_ptr)
4055 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4056
4057 /* Delete edid, when there is none. */
4058 if (!edid) {
4059 connector->edid_blob_ptr = NULL;
58495563 4060 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
f453ba04
DA
4061 return ret;
4062 }
4063
7466f4cc
AJ
4064 size = EDID_LENGTH * (1 + edid->extensions);
4065 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4066 size, edid);
e655d122
SK
4067 if (!connector->edid_blob_ptr)
4068 return -EINVAL;
f453ba04 4069
58495563 4070 ret = drm_object_property_set_value(&connector->base,
f453ba04
DA
4071 dev->mode_config.edid_property,
4072 connector->edid_blob_ptr->base.id);
4073
4074 return ret;
4075}
4076EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4077
26a34815 4078static bool drm_property_change_is_valid(struct drm_property *property,
592c20ee 4079 uint64_t value)
26a34815
PZ
4080{
4081 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4082 return false;
5ea22f24
RC
4083
4084 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
26a34815
PZ
4085 if (value < property->values[0] || value > property->values[1])
4086 return false;
4087 return true;
ebc44cf3
RC
4088 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4089 int64_t svalue = U642I64(value);
4090 if (svalue < U642I64(property->values[0]) ||
4091 svalue > U642I64(property->values[1]))
4092 return false;
4093 return true;
5ea22f24 4094 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
49e27545 4095 int i;
592c20ee 4096 uint64_t valid_mask = 0;
49e27545
RC
4097 for (i = 0; i < property->num_values; i++)
4098 valid_mask |= (1ULL << property->values[i]);
4099 return !(value & ~valid_mask);
5ea22f24 4100 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
c4a56750
VS
4101 /* Only the driver knows */
4102 return true;
98f75de4
RC
4103 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4104 struct drm_mode_object *obj;
4105 /* a zero value for an object property translates to null: */
4106 if (value == 0)
4107 return true;
4108 /*
4109 * NOTE: use _object_find() directly to bypass restriction on
4110 * looking up refcnt'd objects (ie. fb's). For a refcnt'd
4111 * object this could race against object finalization, so it
4112 * simply tells us that the object *was* valid. Which is good
4113 * enough.
4114 */
4115 obj = _object_find(property->dev, value, property->values[0]);
4116 return obj != NULL;
26a34815
PZ
4117 } else {
4118 int i;
4119 for (i = 0; i < property->num_values; i++)
4120 if (property->values[i] == value)
4121 return true;
4122 return false;
4123 }
4124}
4125
c8e32cc1
DV
4126/**
4127 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4128 * @dev: DRM device
4129 * @data: ioctl data
4130 * @file_priv: DRM file info
4131 *
4132 * This function sets the current value for a connectors's property. It also
4133 * calls into a driver's ->set_property callback to update the hardware state
4134 *
4135 * Called by the user via ioctl.
4136 *
4137 * Returns:
4138 * Zero on success, errno on failure.
4139 */
f453ba04
DA
4140int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4141 void *data, struct drm_file *file_priv)
4142{
0057d8dd
PZ
4143 struct drm_mode_connector_set_property *conn_set_prop = data;
4144 struct drm_mode_obj_set_property obj_set_prop = {
4145 .value = conn_set_prop->value,
4146 .prop_id = conn_set_prop->prop_id,
4147 .obj_id = conn_set_prop->connector_id,
4148 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4149 };
fb3b06c8 4150
0057d8dd
PZ
4151 /* It does all the locking and checking we need */
4152 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
f453ba04
DA
4153}
4154
c543188a
PZ
4155static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4156 struct drm_property *property,
4157 uint64_t value)
4158{
4159 int ret = -EINVAL;
4160 struct drm_connector *connector = obj_to_connector(obj);
4161
4162 /* Do DPMS ourselves */
4163 if (property == connector->dev->mode_config.dpms_property) {
4164 if (connector->funcs->dpms)
4165 (*connector->funcs->dpms)(connector, (int)value);
4166 ret = 0;
4167 } else if (connector->funcs->set_property)
4168 ret = connector->funcs->set_property(connector, property, value);
4169
4170 /* store the property value if successful */
4171 if (!ret)
58495563 4172 drm_object_property_set_value(&connector->base, property, value);
c543188a
PZ
4173 return ret;
4174}
4175
bffd9de0
PZ
4176static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4177 struct drm_property *property,
4178 uint64_t value)
4179{
4180 int ret = -EINVAL;
4181 struct drm_crtc *crtc = obj_to_crtc(obj);
4182
4183 if (crtc->funcs->set_property)
4184 ret = crtc->funcs->set_property(crtc, property, value);
4185 if (!ret)
4186 drm_object_property_set_value(obj, property, value);
4187
4188 return ret;
4189}
4190
3a5f87c2
TW
4191/**
4192 * drm_mode_plane_set_obj_prop - set the value of a property
4193 * @plane: drm plane object to set property value for
4194 * @property: property to set
4195 * @value: value the property should be set to
4196 *
4197 * This functions sets a given property on a given plane object. This function
4198 * calls the driver's ->set_property callback and changes the software state of
4199 * the property if the callback succeeds.
4200 *
4201 * Returns:
4202 * Zero on success, error code on failure.
4203 */
4204int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4205 struct drm_property *property,
4206 uint64_t value)
4d93914a
RC
4207{
4208 int ret = -EINVAL;
3a5f87c2 4209 struct drm_mode_object *obj = &plane->base;
4d93914a
RC
4210
4211 if (plane->funcs->set_property)
4212 ret = plane->funcs->set_property(plane, property, value);
4213 if (!ret)
4214 drm_object_property_set_value(obj, property, value);
4215
4216 return ret;
4217}
3a5f87c2 4218EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
4d93914a 4219
c8e32cc1
DV
4220/**
4221 * drm_mode_getproperty_ioctl - get the current value of a object's property
4222 * @dev: DRM device
4223 * @data: ioctl data
4224 * @file_priv: DRM file info
4225 *
4226 * This function retrieves the current value for an object's property. Compared
4227 * to the connector specific ioctl this one is extended to also work on crtc and
4228 * plane objects.
4229 *
4230 * Called by the user via ioctl.
4231 *
4232 * Returns:
4233 * Zero on success, errno on failure.
4234 */
c543188a
PZ
4235int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4236 struct drm_file *file_priv)
4237{
4238 struct drm_mode_obj_get_properties *arg = data;
4239 struct drm_mode_object *obj;
4240 int ret = 0;
4241 int i;
4242 int copied = 0;
4243 int props_count = 0;
4244 uint32_t __user *props_ptr;
4245 uint64_t __user *prop_values_ptr;
4246
4247 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4248 return -EINVAL;
4249
84849903 4250 drm_modeset_lock_all(dev);
c543188a
PZ
4251
4252 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4253 if (!obj) {
f27657f2 4254 ret = -ENOENT;
c543188a
PZ
4255 goto out;
4256 }
4257 if (!obj->properties) {
4258 ret = -EINVAL;
4259 goto out;
4260 }
4261
7f88a9be 4262 props_count = obj->properties->count;
c543188a
PZ
4263
4264 /* This ioctl is called twice, once to determine how much space is
4265 * needed, and the 2nd time to fill it. */
4266 if ((arg->count_props >= props_count) && props_count) {
4267 copied = 0;
4268 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
4269 prop_values_ptr = (uint64_t __user *)(unsigned long)
4270 (arg->prop_values_ptr);
4271 for (i = 0; i < props_count; i++) {
4272 if (put_user(obj->properties->ids[i],
4273 props_ptr + copied)) {
4274 ret = -EFAULT;
4275 goto out;
4276 }
4277 if (put_user(obj->properties->values[i],
4278 prop_values_ptr + copied)) {
4279 ret = -EFAULT;
4280 goto out;
4281 }
4282 copied++;
4283 }
4284 }
4285 arg->count_props = props_count;
4286out:
84849903 4287 drm_modeset_unlock_all(dev);
c543188a
PZ
4288 return ret;
4289}
4290
c8e32cc1
DV
4291/**
4292 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4293 * @dev: DRM device
4294 * @data: ioctl data
4295 * @file_priv: DRM file info
4296 *
4297 * This function sets the current value for an object's property. It also calls
4298 * into a driver's ->set_property callback to update the hardware state.
4299 * Compared to the connector specific ioctl this one is extended to also work on
4300 * crtc and plane objects.
4301 *
4302 * Called by the user via ioctl.
4303 *
4304 * Returns:
4305 * Zero on success, errno on failure.
4306 */
c543188a
PZ
4307int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4308 struct drm_file *file_priv)
4309{
4310 struct drm_mode_obj_set_property *arg = data;
4311 struct drm_mode_object *arg_obj;
4312 struct drm_mode_object *prop_obj;
4313 struct drm_property *property;
4314 int ret = -EINVAL;
4315 int i;
4316
4317 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4318 return -EINVAL;
4319
84849903 4320 drm_modeset_lock_all(dev);
c543188a
PZ
4321
4322 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
f27657f2
VS
4323 if (!arg_obj) {
4324 ret = -ENOENT;
c543188a 4325 goto out;
f27657f2 4326 }
c543188a
PZ
4327 if (!arg_obj->properties)
4328 goto out;
4329
7f88a9be 4330 for (i = 0; i < arg_obj->properties->count; i++)
c543188a
PZ
4331 if (arg_obj->properties->ids[i] == arg->prop_id)
4332 break;
4333
7f88a9be 4334 if (i == arg_obj->properties->count)
c543188a
PZ
4335 goto out;
4336
4337 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4338 DRM_MODE_OBJECT_PROPERTY);
f27657f2
VS
4339 if (!prop_obj) {
4340 ret = -ENOENT;
c543188a 4341 goto out;
f27657f2 4342 }
c543188a
PZ
4343 property = obj_to_property(prop_obj);
4344
4345 if (!drm_property_change_is_valid(property, arg->value))
4346 goto out;
4347
4348 switch (arg_obj->type) {
4349 case DRM_MODE_OBJECT_CONNECTOR:
4350 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4351 arg->value);
4352 break;
bffd9de0
PZ
4353 case DRM_MODE_OBJECT_CRTC:
4354 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4355 break;
4d93914a 4356 case DRM_MODE_OBJECT_PLANE:
3a5f87c2
TW
4357 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4358 property, arg->value);
4d93914a 4359 break;
c543188a
PZ
4360 }
4361
4362out:
84849903 4363 drm_modeset_unlock_all(dev);
c543188a
PZ
4364 return ret;
4365}
4366
c8e32cc1
DV
4367/**
4368 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4369 * @connector: connector to attach
4370 * @encoder: encoder to attach @connector to
4371 *
4372 * This function links up a connector to an encoder. Note that the routing
4373 * restrictions between encoders and crtcs are exposed to userspace through the
4374 * possible_clones and possible_crtcs bitmasks.
4375 *
4376 * Returns:
4377 * Zero on success, errno on failure.
4378 */
f453ba04
DA
4379int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4380 struct drm_encoder *encoder)
4381{
4382 int i;
4383
4384 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4385 if (connector->encoder_ids[i] == 0) {
4386 connector->encoder_ids[i] = encoder->base.id;
4387 return 0;
4388 }
4389 }
4390 return -ENOMEM;
4391}
4392EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4393
c8e32cc1
DV
4394/**
4395 * drm_mode_crtc_set_gamma_size - set the gamma table size
4396 * @crtc: CRTC to set the gamma table size for
4397 * @gamma_size: size of the gamma table
4398 *
4399 * Drivers which support gamma tables should set this to the supported gamma
4400 * table size when initializing the CRTC. Currently the drm core only supports a
4401 * fixed gamma table size.
4402 *
4403 * Returns:
4404 * Zero on success, errno on failure.
4405 */
4cae5b84 4406int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
c8e32cc1 4407 int gamma_size)
f453ba04
DA
4408{
4409 crtc->gamma_size = gamma_size;
4410
4411 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
4412 if (!crtc->gamma_store) {
4413 crtc->gamma_size = 0;
4cae5b84 4414 return -ENOMEM;
f453ba04
DA
4415 }
4416
4cae5b84 4417 return 0;
f453ba04
DA
4418}
4419EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4420
c8e32cc1
DV
4421/**
4422 * drm_mode_gamma_set_ioctl - set the gamma table
4423 * @dev: DRM device
4424 * @data: ioctl data
4425 * @file_priv: DRM file info
4426 *
4427 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4428 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4429 *
4430 * Called by the user via ioctl.
4431 *
4432 * Returns:
4433 * Zero on success, errno on failure.
4434 */
f453ba04
DA
4435int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4436 void *data, struct drm_file *file_priv)
4437{
4438 struct drm_mode_crtc_lut *crtc_lut = data;
f453ba04
DA
4439 struct drm_crtc *crtc;
4440 void *r_base, *g_base, *b_base;
4441 int size;
4442 int ret = 0;
4443
fb3b06c8
DA
4444 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4445 return -EINVAL;
4446
84849903 4447 drm_modeset_lock_all(dev);
a2b34e22
RC
4448 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4449 if (!crtc) {
f27657f2 4450 ret = -ENOENT;
f453ba04
DA
4451 goto out;
4452 }
f453ba04 4453
ebe0f244
LP
4454 if (crtc->funcs->gamma_set == NULL) {
4455 ret = -ENOSYS;
4456 goto out;
4457 }
4458
f453ba04
DA
4459 /* memcpy into gamma store */
4460 if (crtc_lut->gamma_size != crtc->gamma_size) {
4461 ret = -EINVAL;
4462 goto out;
4463 }
4464
4465 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4466 r_base = crtc->gamma_store;
4467 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4468 ret = -EFAULT;
4469 goto out;
4470 }
4471
4472 g_base = r_base + size;
4473 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4474 ret = -EFAULT;
4475 goto out;
4476 }
4477
4478 b_base = g_base + size;
4479 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4480 ret = -EFAULT;
4481 goto out;
4482 }
4483
7203425a 4484 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
f453ba04
DA
4485
4486out:
84849903 4487 drm_modeset_unlock_all(dev);
f453ba04
DA
4488 return ret;
4489
4490}
4491
c8e32cc1
DV
4492/**
4493 * drm_mode_gamma_get_ioctl - get the gamma table
4494 * @dev: DRM device
4495 * @data: ioctl data
4496 * @file_priv: DRM file info
4497 *
4498 * Copy the current gamma table into the storage provided. This also provides
4499 * the gamma table size the driver expects, which can be used to size the
4500 * allocated storage.
4501 *
4502 * Called by the user via ioctl.
4503 *
4504 * Returns:
4505 * Zero on success, errno on failure.
4506 */
f453ba04
DA
4507int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4508 void *data, struct drm_file *file_priv)
4509{
4510 struct drm_mode_crtc_lut *crtc_lut = data;
f453ba04
DA
4511 struct drm_crtc *crtc;
4512 void *r_base, *g_base, *b_base;
4513 int size;
4514 int ret = 0;
4515
fb3b06c8
DA
4516 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4517 return -EINVAL;
4518
84849903 4519 drm_modeset_lock_all(dev);
a2b34e22
RC
4520 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4521 if (!crtc) {
f27657f2 4522 ret = -ENOENT;
f453ba04
DA
4523 goto out;
4524 }
f453ba04
DA
4525
4526 /* memcpy into gamma store */
4527 if (crtc_lut->gamma_size != crtc->gamma_size) {
4528 ret = -EINVAL;
4529 goto out;
4530 }
4531
4532 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4533 r_base = crtc->gamma_store;
4534 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4535 ret = -EFAULT;
4536 goto out;
4537 }
4538
4539 g_base = r_base + size;
4540 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4541 ret = -EFAULT;
4542 goto out;
4543 }
4544
4545 b_base = g_base + size;
4546 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4547 ret = -EFAULT;
4548 goto out;
4549 }
4550out:
84849903 4551 drm_modeset_unlock_all(dev);
f453ba04
DA
4552 return ret;
4553}
d91d8a3f 4554
c8e32cc1
DV
4555/**
4556 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4557 * @dev: DRM device
4558 * @data: ioctl data
4559 * @file_priv: DRM file info
4560 *
4561 * This schedules an asynchronous update on a given CRTC, called page flip.
4562 * Optionally a drm event is generated to signal the completion of the event.
4563 * Generic drivers cannot assume that a pageflip with changed framebuffer
4564 * properties (including driver specific metadata like tiling layout) will work,
4565 * but some drivers support e.g. pixel format changes through the pageflip
4566 * ioctl.
4567 *
4568 * Called by the user via ioctl.
4569 *
4570 * Returns:
4571 * Zero on success, errno on failure.
4572 */
d91d8a3f
KH
4573int drm_mode_page_flip_ioctl(struct drm_device *dev,
4574 void *data, struct drm_file *file_priv)
4575{
4576 struct drm_mode_crtc_page_flip *page_flip = data;
d91d8a3f 4577 struct drm_crtc *crtc;
3d30a59b 4578 struct drm_framebuffer *fb = NULL;
d91d8a3f
KH
4579 struct drm_pending_vblank_event *e = NULL;
4580 unsigned long flags;
4581 int ret = -EINVAL;
4582
4583 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4584 page_flip->reserved != 0)
4585 return -EINVAL;
4586
62f2104f
KP
4587 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4588 return -EINVAL;
4589
a2b34e22
RC
4590 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4591 if (!crtc)
f27657f2 4592 return -ENOENT;
d91d8a3f 4593
d059f652 4594 drm_modeset_lock_crtc(crtc);
f4510a27 4595 if (crtc->primary->fb == NULL) {
90c1efdd
CW
4596 /* The framebuffer is currently unbound, presumably
4597 * due to a hotplug event, that userspace has not
4598 * yet discovered.
4599 */
4600 ret = -EBUSY;
4601 goto out;
4602 }
4603
d91d8a3f
KH
4604 if (crtc->funcs->page_flip == NULL)
4605 goto out;
4606
786b99ed 4607 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
37c4e705
VS
4608 if (!fb) {
4609 ret = -ENOENT;
d91d8a3f 4610 goto out;
37c4e705 4611 }
d91d8a3f 4612
c11e9283
DL
4613 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4614 if (ret)
5f61bb42 4615 goto out;
5f61bb42 4616
f4510a27 4617 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
909d9cda
LP
4618 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4619 ret = -EINVAL;
4620 goto out;
4621 }
4622
d91d8a3f
KH
4623 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4624 ret = -ENOMEM;
4625 spin_lock_irqsave(&dev->event_lock, flags);
4626 if (file_priv->event_space < sizeof e->event) {
4627 spin_unlock_irqrestore(&dev->event_lock, flags);
4628 goto out;
4629 }
4630 file_priv->event_space -= sizeof e->event;
4631 spin_unlock_irqrestore(&dev->event_lock, flags);
4632
4633 e = kzalloc(sizeof *e, GFP_KERNEL);
4634 if (e == NULL) {
4635 spin_lock_irqsave(&dev->event_lock, flags);
4636 file_priv->event_space += sizeof e->event;
4637 spin_unlock_irqrestore(&dev->event_lock, flags);
4638 goto out;
4639 }
4640
7bd4d7be 4641 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
d91d8a3f
KH
4642 e->event.base.length = sizeof e->event;
4643 e->event.user_data = page_flip->user_data;
4644 e->base.event = &e->event.base;
4645 e->base.file_priv = file_priv;
4646 e->base.destroy =
4647 (void (*) (struct drm_pending_event *)) kfree;
4648 }
4649
3d30a59b 4650 crtc->primary->old_fb = crtc->primary->fb;
ed8d1975 4651 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
d91d8a3f 4652 if (ret) {
aef6a7ee
JS
4653 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4654 spin_lock_irqsave(&dev->event_lock, flags);
4655 file_priv->event_space += sizeof e->event;
4656 spin_unlock_irqrestore(&dev->event_lock, flags);
4657 kfree(e);
4658 }
b0d12325 4659 /* Keep the old fb, don't unref it. */
3d30a59b 4660 crtc->primary->old_fb = NULL;
b0d12325 4661 } else {
8cf1e981
TR
4662 /*
4663 * Warn if the driver hasn't properly updated the crtc->fb
4664 * field to reflect that the new framebuffer is now used.
4665 * Failing to do so will screw with the reference counting
4666 * on framebuffers.
4667 */
f4510a27 4668 WARN_ON(crtc->primary->fb != fb);
b0d12325
DV
4669 /* Unref only the old framebuffer. */
4670 fb = NULL;
d91d8a3f
KH
4671 }
4672
4673out:
b0d12325
DV
4674 if (fb)
4675 drm_framebuffer_unreference(fb);
3d30a59b
DV
4676 if (crtc->primary->old_fb)
4677 drm_framebuffer_unreference(crtc->primary->old_fb);
4678 crtc->primary->old_fb = NULL;
d059f652 4679 drm_modeset_unlock_crtc(crtc);
b4d5e7d1 4680
d91d8a3f
KH
4681 return ret;
4682}
eb033556 4683
c8e32cc1
DV
4684/**
4685 * drm_mode_config_reset - call ->reset callbacks
4686 * @dev: drm device
4687 *
4688 * This functions calls all the crtc's, encoder's and connector's ->reset
4689 * callback. Drivers can use this in e.g. their driver load or resume code to
4690 * reset hardware and software state.
4691 */
eb033556
CW
4692void drm_mode_config_reset(struct drm_device *dev)
4693{
4694 struct drm_crtc *crtc;
2a0d7cfd 4695 struct drm_plane *plane;
eb033556
CW
4696 struct drm_encoder *encoder;
4697 struct drm_connector *connector;
4698
2a0d7cfd
DV
4699 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4700 if (plane->funcs->reset)
4701 plane->funcs->reset(plane);
4702
eb033556
CW
4703 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4704 if (crtc->funcs->reset)
4705 crtc->funcs->reset(crtc);
4706
4707 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4708 if (encoder->funcs->reset)
4709 encoder->funcs->reset(encoder);
4710
5e2cb2f6
DV
4711 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4712 connector->status = connector_status_unknown;
4713
eb033556
CW
4714 if (connector->funcs->reset)
4715 connector->funcs->reset(connector);
5e2cb2f6 4716 }
eb033556
CW
4717}
4718EXPORT_SYMBOL(drm_mode_config_reset);
ff72145b 4719
c8e32cc1
DV
4720/**
4721 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4722 * @dev: DRM device
4723 * @data: ioctl data
4724 * @file_priv: DRM file info
4725 *
4726 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4727 * TTM or something else entirely) and returns the resulting buffer handle. This
4728 * handle can then be wrapped up into a framebuffer modeset object.
4729 *
4730 * Note that userspace is not allowed to use such objects for render
4731 * acceleration - drivers must create their own private ioctls for such a use
4732 * case.
4733 *
4734 * Called by the user via ioctl.
4735 *
4736 * Returns:
4737 * Zero on success, errno on failure.
4738 */
ff72145b
DA
4739int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4740 void *data, struct drm_file *file_priv)
4741{
4742 struct drm_mode_create_dumb *args = data;
b28cd41f 4743 u32 cpp, stride, size;
ff72145b
DA
4744
4745 if (!dev->driver->dumb_create)
4746 return -ENOSYS;
b28cd41f
DH
4747 if (!args->width || !args->height || !args->bpp)
4748 return -EINVAL;
4749
4750 /* overflow checks for 32bit size calculations */
00e72089 4751 /* NOTE: DIV_ROUND_UP() can overflow */
b28cd41f 4752 cpp = DIV_ROUND_UP(args->bpp, 8);
00e72089 4753 if (!cpp || cpp > 0xffffffffU / args->width)
b28cd41f
DH
4754 return -EINVAL;
4755 stride = cpp * args->width;
4756 if (args->height > 0xffffffffU / stride)
4757 return -EINVAL;
4758
4759 /* test for wrap-around */
4760 size = args->height * stride;
4761 if (PAGE_ALIGN(size) == 0)
4762 return -EINVAL;
4763
ff72145b
DA
4764 return dev->driver->dumb_create(file_priv, dev, args);
4765}
4766
c8e32cc1
DV
4767/**
4768 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4769 * @dev: DRM device
4770 * @data: ioctl data
4771 * @file_priv: DRM file info
4772 *
4773 * Allocate an offset in the drm device node's address space to be able to
4774 * memory map a dumb buffer.
4775 *
4776 * Called by the user via ioctl.
4777 *
4778 * Returns:
4779 * Zero on success, errno on failure.
4780 */
ff72145b
DA
4781int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4782 void *data, struct drm_file *file_priv)
4783{
4784 struct drm_mode_map_dumb *args = data;
4785
4786 /* call driver ioctl to get mmap offset */
4787 if (!dev->driver->dumb_map_offset)
4788 return -ENOSYS;
4789
4790 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4791}
4792
c8e32cc1
DV
4793/**
4794 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4795 * @dev: DRM device
4796 * @data: ioctl data
4797 * @file_priv: DRM file info
4798 *
4799 * This destroys the userspace handle for the given dumb backing storage buffer.
4800 * Since buffer objects must be reference counted in the kernel a buffer object
4801 * won't be immediately freed if a framebuffer modeset object still uses it.
4802 *
4803 * Called by the user via ioctl.
4804 *
4805 * Returns:
4806 * Zero on success, errno on failure.
4807 */
ff72145b
DA
4808int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4809 void *data, struct drm_file *file_priv)
4810{
4811 struct drm_mode_destroy_dumb *args = data;
4812
4813 if (!dev->driver->dumb_destroy)
4814 return -ENOSYS;
4815
4816 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4817}
248dbc23 4818
c8e32cc1
DV
4819/**
4820 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4821 * @format: pixel format (DRM_FORMAT_*)
4822 * @depth: storage for the depth value
4823 * @bpp: storage for the bpp value
4824 *
4825 * This only supports RGB formats here for compat with code that doesn't use
4826 * pixel formats directly yet.
248dbc23
DA
4827 */
4828void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4829 int *bpp)
4830{
4831 switch (format) {
c51a6bc5 4832 case DRM_FORMAT_C8:
04b3924d
VS
4833 case DRM_FORMAT_RGB332:
4834 case DRM_FORMAT_BGR233:
248dbc23
DA
4835 *depth = 8;
4836 *bpp = 8;
4837 break;
04b3924d
VS
4838 case DRM_FORMAT_XRGB1555:
4839 case DRM_FORMAT_XBGR1555:
4840 case DRM_FORMAT_RGBX5551:
4841 case DRM_FORMAT_BGRX5551:
4842 case DRM_FORMAT_ARGB1555:
4843 case DRM_FORMAT_ABGR1555:
4844 case DRM_FORMAT_RGBA5551:
4845 case DRM_FORMAT_BGRA5551:
248dbc23
DA
4846 *depth = 15;
4847 *bpp = 16;
4848 break;
04b3924d
VS
4849 case DRM_FORMAT_RGB565:
4850 case DRM_FORMAT_BGR565:
248dbc23
DA
4851 *depth = 16;
4852 *bpp = 16;
4853 break;
04b3924d
VS
4854 case DRM_FORMAT_RGB888:
4855 case DRM_FORMAT_BGR888:
4856 *depth = 24;
4857 *bpp = 24;
4858 break;
4859 case DRM_FORMAT_XRGB8888:
4860 case DRM_FORMAT_XBGR8888:
4861 case DRM_FORMAT_RGBX8888:
4862 case DRM_FORMAT_BGRX8888:
248dbc23
DA
4863 *depth = 24;
4864 *bpp = 32;
4865 break;
04b3924d
VS
4866 case DRM_FORMAT_XRGB2101010:
4867 case DRM_FORMAT_XBGR2101010:
4868 case DRM_FORMAT_RGBX1010102:
4869 case DRM_FORMAT_BGRX1010102:
4870 case DRM_FORMAT_ARGB2101010:
4871 case DRM_FORMAT_ABGR2101010:
4872 case DRM_FORMAT_RGBA1010102:
4873 case DRM_FORMAT_BGRA1010102:
248dbc23
DA
4874 *depth = 30;
4875 *bpp = 32;
4876 break;
04b3924d
VS
4877 case DRM_FORMAT_ARGB8888:
4878 case DRM_FORMAT_ABGR8888:
4879 case DRM_FORMAT_RGBA8888:
4880 case DRM_FORMAT_BGRA8888:
248dbc23
DA
4881 *depth = 32;
4882 *bpp = 32;
4883 break;
4884 default:
23c453a4
VS
4885 DRM_DEBUG_KMS("unsupported pixel format %s\n",
4886 drm_get_format_name(format));
248dbc23
DA
4887 *depth = 0;
4888 *bpp = 0;
4889 break;
4890 }
4891}
4892EXPORT_SYMBOL(drm_fb_get_bpp_depth);
141670e9
VS
4893
4894/**
4895 * drm_format_num_planes - get the number of planes for format
4896 * @format: pixel format (DRM_FORMAT_*)
4897 *
c8e32cc1 4898 * Returns:
141670e9
VS
4899 * The number of planes used by the specified pixel format.
4900 */
4901int drm_format_num_planes(uint32_t format)
4902{
4903 switch (format) {
4904 case DRM_FORMAT_YUV410:
4905 case DRM_FORMAT_YVU410:
4906 case DRM_FORMAT_YUV411:
4907 case DRM_FORMAT_YVU411:
4908 case DRM_FORMAT_YUV420:
4909 case DRM_FORMAT_YVU420:
4910 case DRM_FORMAT_YUV422:
4911 case DRM_FORMAT_YVU422:
4912 case DRM_FORMAT_YUV444:
4913 case DRM_FORMAT_YVU444:
4914 return 3;
4915 case DRM_FORMAT_NV12:
4916 case DRM_FORMAT_NV21:
4917 case DRM_FORMAT_NV16:
4918 case DRM_FORMAT_NV61:
ba623f6a
LP
4919 case DRM_FORMAT_NV24:
4920 case DRM_FORMAT_NV42:
141670e9
VS
4921 return 2;
4922 default:
4923 return 1;
4924 }
4925}
4926EXPORT_SYMBOL(drm_format_num_planes);
5a86bd55
VS
4927
4928/**
4929 * drm_format_plane_cpp - determine the bytes per pixel value
4930 * @format: pixel format (DRM_FORMAT_*)
4931 * @plane: plane index
4932 *
c8e32cc1 4933 * Returns:
5a86bd55
VS
4934 * The bytes per pixel value for the specified plane.
4935 */
4936int drm_format_plane_cpp(uint32_t format, int plane)
4937{
4938 unsigned int depth;
4939 int bpp;
4940
4941 if (plane >= drm_format_num_planes(format))
4942 return 0;
4943
4944 switch (format) {
4945 case DRM_FORMAT_YUYV:
4946 case DRM_FORMAT_YVYU:
4947 case DRM_FORMAT_UYVY:
4948 case DRM_FORMAT_VYUY:
4949 return 2;
4950 case DRM_FORMAT_NV12:
4951 case DRM_FORMAT_NV21:
4952 case DRM_FORMAT_NV16:
4953 case DRM_FORMAT_NV61:
ba623f6a
LP
4954 case DRM_FORMAT_NV24:
4955 case DRM_FORMAT_NV42:
5a86bd55
VS
4956 return plane ? 2 : 1;
4957 case DRM_FORMAT_YUV410:
4958 case DRM_FORMAT_YVU410:
4959 case DRM_FORMAT_YUV411:
4960 case DRM_FORMAT_YVU411:
4961 case DRM_FORMAT_YUV420:
4962 case DRM_FORMAT_YVU420:
4963 case DRM_FORMAT_YUV422:
4964 case DRM_FORMAT_YVU422:
4965 case DRM_FORMAT_YUV444:
4966 case DRM_FORMAT_YVU444:
4967 return 1;
4968 default:
4969 drm_fb_get_bpp_depth(format, &depth, &bpp);
4970 return bpp >> 3;
4971 }
4972}
4973EXPORT_SYMBOL(drm_format_plane_cpp);
01b68b04
VS
4974
4975/**
4976 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
4977 * @format: pixel format (DRM_FORMAT_*)
4978 *
c8e32cc1 4979 * Returns:
01b68b04
VS
4980 * The horizontal chroma subsampling factor for the
4981 * specified pixel format.
4982 */
4983int drm_format_horz_chroma_subsampling(uint32_t format)
4984{
4985 switch (format) {
4986 case DRM_FORMAT_YUV411:
4987 case DRM_FORMAT_YVU411:
4988 case DRM_FORMAT_YUV410:
4989 case DRM_FORMAT_YVU410:
4990 return 4;
4991 case DRM_FORMAT_YUYV:
4992 case DRM_FORMAT_YVYU:
4993 case DRM_FORMAT_UYVY:
4994 case DRM_FORMAT_VYUY:
4995 case DRM_FORMAT_NV12:
4996 case DRM_FORMAT_NV21:
4997 case DRM_FORMAT_NV16:
4998 case DRM_FORMAT_NV61:
4999 case DRM_FORMAT_YUV422:
5000 case DRM_FORMAT_YVU422:
5001 case DRM_FORMAT_YUV420:
5002 case DRM_FORMAT_YVU420:
5003 return 2;
5004 default:
5005 return 1;
5006 }
5007}
5008EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5009
5010/**
5011 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5012 * @format: pixel format (DRM_FORMAT_*)
5013 *
c8e32cc1 5014 * Returns:
01b68b04
VS
5015 * The vertical chroma subsampling factor for the
5016 * specified pixel format.
5017 */
5018int drm_format_vert_chroma_subsampling(uint32_t format)
5019{
5020 switch (format) {
5021 case DRM_FORMAT_YUV410:
5022 case DRM_FORMAT_YVU410:
5023 return 4;
5024 case DRM_FORMAT_YUV420:
5025 case DRM_FORMAT_YVU420:
5026 case DRM_FORMAT_NV12:
5027 case DRM_FORMAT_NV21:
5028 return 2;
5029 default:
5030 return 1;
5031 }
5032}
5033EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
87d24fc3 5034
3c9855f6
VS
5035/**
5036 * drm_rotation_simplify() - Try to simplify the rotation
5037 * @rotation: Rotation to be simplified
5038 * @supported_rotations: Supported rotations
5039 *
5040 * Attempt to simplify the rotation to a form that is supported.
5041 * Eg. if the hardware supports everything except DRM_REFLECT_X
5042 * one could call this function like this:
5043 *
5044 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5045 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5046 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5047 *
5048 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5049 * transforms the hardware supports, this function may not
5050 * be able to produce a supported transform, so the caller should
5051 * check the result afterwards.
5052 */
5053unsigned int drm_rotation_simplify(unsigned int rotation,
5054 unsigned int supported_rotations)
5055{
5056 if (rotation & ~supported_rotations) {
5057 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5058 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5059 }
5060
5061 return rotation;
5062}
5063EXPORT_SYMBOL(drm_rotation_simplify);
5064
87d24fc3
LP
5065/**
5066 * drm_mode_config_init - initialize DRM mode_configuration structure
5067 * @dev: DRM device
5068 *
5069 * Initialize @dev's mode_config structure, used for tracking the graphics
5070 * configuration of @dev.
5071 *
5072 * Since this initializes the modeset locks, no locking is possible. Which is no
5073 * problem, since this should happen single threaded at init time. It is the
5074 * driver's problem to ensure this guarantee.
5075 *
5076 */
5077void drm_mode_config_init(struct drm_device *dev)
5078{
5079 mutex_init(&dev->mode_config.mutex);
51fd371b 5080 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
87d24fc3
LP
5081 mutex_init(&dev->mode_config.idr_mutex);
5082 mutex_init(&dev->mode_config.fb_lock);
5083 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5084 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5085 INIT_LIST_HEAD(&dev->mode_config.connector_list);
3b336ec4 5086 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
87d24fc3
LP
5087 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5088 INIT_LIST_HEAD(&dev->mode_config.property_list);
5089 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5090 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5091 idr_init(&dev->mode_config.crtc_idr);
5092
5093 drm_modeset_lock_all(dev);
5094 drm_mode_create_standard_connector_properties(dev);
9922ab5a 5095 drm_mode_create_standard_plane_properties(dev);
87d24fc3
LP
5096 drm_modeset_unlock_all(dev);
5097
5098 /* Just to be sure */
5099 dev->mode_config.num_fb = 0;
5100 dev->mode_config.num_connector = 0;
5101 dev->mode_config.num_crtc = 0;
5102 dev->mode_config.num_encoder = 0;
e27dde3e
MR
5103 dev->mode_config.num_overlay_plane = 0;
5104 dev->mode_config.num_total_plane = 0;
87d24fc3
LP
5105}
5106EXPORT_SYMBOL(drm_mode_config_init);
5107
5108/**
5109 * drm_mode_config_cleanup - free up DRM mode_config info
5110 * @dev: DRM device
5111 *
5112 * Free up all the connectors and CRTCs associated with this DRM device, then
5113 * free up the framebuffers and associated buffer objects.
5114 *
5115 * Note that since this /should/ happen single-threaded at driver/device
5116 * teardown time, no locking is required. It's the driver's job to ensure that
5117 * this guarantee actually holds true.
5118 *
5119 * FIXME: cleanup any dangling user buffer objects too
5120 */
5121void drm_mode_config_cleanup(struct drm_device *dev)
5122{
5123 struct drm_connector *connector, *ot;
5124 struct drm_crtc *crtc, *ct;
5125 struct drm_encoder *encoder, *enct;
3b336ec4 5126 struct drm_bridge *bridge, *brt;
87d24fc3
LP
5127 struct drm_framebuffer *fb, *fbt;
5128 struct drm_property *property, *pt;
5129 struct drm_property_blob *blob, *bt;
5130 struct drm_plane *plane, *plt;
5131
5132 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5133 head) {
5134 encoder->funcs->destroy(encoder);
5135 }
5136
3b336ec4
SP
5137 list_for_each_entry_safe(bridge, brt,
5138 &dev->mode_config.bridge_list, head) {
5139 bridge->funcs->destroy(bridge);
5140 }
5141
87d24fc3
LP
5142 list_for_each_entry_safe(connector, ot,
5143 &dev->mode_config.connector_list, head) {
5144 connector->funcs->destroy(connector);
5145 }
5146
5147 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5148 head) {
5149 drm_property_destroy(dev, property);
5150 }
5151
5152 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5153 head) {
5154 drm_property_destroy_blob(dev, blob);
5155 }
5156
5157 /*
5158 * Single-threaded teardown context, so it's not required to grab the
5159 * fb_lock to protect against concurrent fb_list access. Contrary, it
5160 * would actually deadlock with the drm_framebuffer_cleanup function.
5161 *
5162 * Also, if there are any framebuffers left, that's a driver leak now,
5163 * so politely WARN about this.
5164 */
5165 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5166 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5167 drm_framebuffer_remove(fb);
5168 }
5169
5170 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5171 head) {
5172 plane->funcs->destroy(plane);
5173 }
5174
5175 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5176 crtc->funcs->destroy(crtc);
5177 }
5178
5179 idr_destroy(&dev->mode_config.crtc_idr);
51fd371b 5180 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
87d24fc3
LP
5181}
5182EXPORT_SYMBOL(drm_mode_config_cleanup);
c1df5f3c
VS
5183
5184struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5185 unsigned int supported_rotations)
5186{
5187 static const struct drm_prop_enum_list props[] = {
5188 { DRM_ROTATE_0, "rotate-0" },
5189 { DRM_ROTATE_90, "rotate-90" },
5190 { DRM_ROTATE_180, "rotate-180" },
5191 { DRM_ROTATE_270, "rotate-270" },
5192 { DRM_REFLECT_X, "reflect-x" },
5193 { DRM_REFLECT_Y, "reflect-y" },
5194 };
5195
5196 return drm_property_create_bitmask(dev, 0, "rotation",
5197 props, ARRAY_SIZE(props),
5198 supported_rotations);
5199}
5200EXPORT_SYMBOL(drm_mode_create_rotation_property);