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