2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4 * Copyright (c) 2008 Red Hat Inc.
6 * DRM core CRTC related functions
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.
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
28 * Eric Anholt <eric@anholt.net>
29 * Dave Airlie <airlied@linux.ie>
30 * Jesse Barnes <jesse.barnes@intel.com>
32 #include <linux/ctype.h>
33 #include <linux/list.h>
34 #include <linux/slab.h>
35 #include <linux/export.h>
37 #include <drm/drm_crtc.h>
38 #include <drm/drm_edid.h>
39 #include <drm/drm_fourcc.h>
42 * drm_modeset_lock_all - take all modeset locks
45 * This function takes all modeset locks, suitable where a more fine-grained
46 * scheme isn't (yet) implemented.
48 void drm_modeset_lock_all(struct drm_device
*dev
)
50 struct drm_crtc
*crtc
;
52 mutex_lock(&dev
->mode_config
.mutex
);
54 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
55 mutex_lock_nest_lock(&crtc
->mutex
, &dev
->mode_config
.mutex
);
57 EXPORT_SYMBOL(drm_modeset_lock_all
);
60 * drm_modeset_unlock_all - drop all modeset locks
63 void drm_modeset_unlock_all(struct drm_device
*dev
)
65 struct drm_crtc
*crtc
;
67 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
68 mutex_unlock(&crtc
->mutex
);
70 mutex_unlock(&dev
->mode_config
.mutex
);
72 EXPORT_SYMBOL(drm_modeset_unlock_all
);
75 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
78 void drm_warn_on_modeset_not_all_locked(struct drm_device
*dev
)
80 struct drm_crtc
*crtc
;
82 /* Locking is currently fubar in the panic handler. */
86 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
87 WARN_ON(!mutex_is_locked(&crtc
->mutex
));
89 WARN_ON(!mutex_is_locked(&dev
->mode_config
.mutex
));
91 EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked
);
93 /* Avoid boilerplate. I'm tired of typing. */
94 #define DRM_ENUM_NAME_FN(fnname, list) \
95 const char *fnname(int val) \
98 for (i = 0; i < ARRAY_SIZE(list); i++) { \
99 if (list[i].type == val) \
100 return list[i].name; \
102 return "(unknown)"; \
108 static const struct drm_prop_enum_list drm_dpms_enum_list
[] =
109 { { DRM_MODE_DPMS_ON
, "On" },
110 { DRM_MODE_DPMS_STANDBY
, "Standby" },
111 { DRM_MODE_DPMS_SUSPEND
, "Suspend" },
112 { DRM_MODE_DPMS_OFF
, "Off" }
115 DRM_ENUM_NAME_FN(drm_get_dpms_name
, drm_dpms_enum_list
)
118 * Optional properties
120 static const struct drm_prop_enum_list drm_scaling_mode_enum_list
[] =
122 { DRM_MODE_SCALE_NONE
, "None" },
123 { DRM_MODE_SCALE_FULLSCREEN
, "Full" },
124 { DRM_MODE_SCALE_CENTER
, "Center" },
125 { DRM_MODE_SCALE_ASPECT
, "Full aspect" },
129 * Non-global properties, but "required" for certain connectors.
131 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list
[] =
133 { DRM_MODE_SUBCONNECTOR_Automatic
, "Automatic" }, /* DVI-I and TV-out */
134 { DRM_MODE_SUBCONNECTOR_DVID
, "DVI-D" }, /* DVI-I */
135 { DRM_MODE_SUBCONNECTOR_DVIA
, "DVI-A" }, /* DVI-I */
138 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name
, drm_dvi_i_select_enum_list
)
140 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list
[] =
142 { DRM_MODE_SUBCONNECTOR_Unknown
, "Unknown" }, /* DVI-I and TV-out */
143 { DRM_MODE_SUBCONNECTOR_DVID
, "DVI-D" }, /* DVI-I */
144 { DRM_MODE_SUBCONNECTOR_DVIA
, "DVI-A" }, /* DVI-I */
147 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name
,
148 drm_dvi_i_subconnector_enum_list
)
150 static const struct drm_prop_enum_list drm_tv_select_enum_list
[] =
152 { DRM_MODE_SUBCONNECTOR_Automatic
, "Automatic" }, /* DVI-I and TV-out */
153 { DRM_MODE_SUBCONNECTOR_Composite
, "Composite" }, /* TV-out */
154 { DRM_MODE_SUBCONNECTOR_SVIDEO
, "SVIDEO" }, /* TV-out */
155 { DRM_MODE_SUBCONNECTOR_Component
, "Component" }, /* TV-out */
156 { DRM_MODE_SUBCONNECTOR_SCART
, "SCART" }, /* TV-out */
159 DRM_ENUM_NAME_FN(drm_get_tv_select_name
, drm_tv_select_enum_list
)
161 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list
[] =
163 { DRM_MODE_SUBCONNECTOR_Unknown
, "Unknown" }, /* DVI-I and TV-out */
164 { DRM_MODE_SUBCONNECTOR_Composite
, "Composite" }, /* TV-out */
165 { DRM_MODE_SUBCONNECTOR_SVIDEO
, "SVIDEO" }, /* TV-out */
166 { DRM_MODE_SUBCONNECTOR_Component
, "Component" }, /* TV-out */
167 { DRM_MODE_SUBCONNECTOR_SCART
, "SCART" }, /* TV-out */
170 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name
,
171 drm_tv_subconnector_enum_list
)
173 static const struct drm_prop_enum_list drm_dirty_info_enum_list
[] = {
174 { DRM_MODE_DIRTY_OFF
, "Off" },
175 { DRM_MODE_DIRTY_ON
, "On" },
176 { DRM_MODE_DIRTY_ANNOTATE
, "Annotate" },
179 struct drm_conn_prop_enum_list
{
186 * Connector and encoder types.
188 static struct drm_conn_prop_enum_list drm_connector_enum_list
[] =
189 { { DRM_MODE_CONNECTOR_Unknown
, "Unknown" },
190 { DRM_MODE_CONNECTOR_VGA
, "VGA" },
191 { DRM_MODE_CONNECTOR_DVII
, "DVI-I" },
192 { DRM_MODE_CONNECTOR_DVID
, "DVI-D" },
193 { DRM_MODE_CONNECTOR_DVIA
, "DVI-A" },
194 { DRM_MODE_CONNECTOR_Composite
, "Composite" },
195 { DRM_MODE_CONNECTOR_SVIDEO
, "SVIDEO" },
196 { DRM_MODE_CONNECTOR_LVDS
, "LVDS" },
197 { DRM_MODE_CONNECTOR_Component
, "Component" },
198 { DRM_MODE_CONNECTOR_9PinDIN
, "DIN" },
199 { DRM_MODE_CONNECTOR_DisplayPort
, "DP" },
200 { DRM_MODE_CONNECTOR_HDMIA
, "HDMI-A" },
201 { DRM_MODE_CONNECTOR_HDMIB
, "HDMI-B" },
202 { DRM_MODE_CONNECTOR_TV
, "TV" },
203 { DRM_MODE_CONNECTOR_eDP
, "eDP" },
204 { DRM_MODE_CONNECTOR_VIRTUAL
, "Virtual" },
207 static const struct drm_prop_enum_list drm_encoder_enum_list
[] =
208 { { DRM_MODE_ENCODER_NONE
, "None" },
209 { DRM_MODE_ENCODER_DAC
, "DAC" },
210 { DRM_MODE_ENCODER_TMDS
, "TMDS" },
211 { DRM_MODE_ENCODER_LVDS
, "LVDS" },
212 { DRM_MODE_ENCODER_TVDAC
, "TV" },
213 { DRM_MODE_ENCODER_VIRTUAL
, "Virtual" },
216 void drm_connector_ida_init(void)
220 for (i
= 0; i
< ARRAY_SIZE(drm_connector_enum_list
); i
++)
221 ida_init(&drm_connector_enum_list
[i
].ida
);
224 void drm_connector_ida_destroy(void)
228 for (i
= 0; i
< ARRAY_SIZE(drm_connector_enum_list
); i
++)
229 ida_destroy(&drm_connector_enum_list
[i
].ida
);
232 const char *drm_get_encoder_name(const struct drm_encoder
*encoder
)
236 snprintf(buf
, 32, "%s-%d",
237 drm_encoder_enum_list
[encoder
->encoder_type
].name
,
241 EXPORT_SYMBOL(drm_get_encoder_name
);
243 const char *drm_get_connector_name(const struct drm_connector
*connector
)
247 snprintf(buf
, 32, "%s-%d",
248 drm_connector_enum_list
[connector
->connector_type
].name
,
249 connector
->connector_type_id
);
252 EXPORT_SYMBOL(drm_get_connector_name
);
254 const char *drm_get_connector_status_name(enum drm_connector_status status
)
256 if (status
== connector_status_connected
)
258 else if (status
== connector_status_disconnected
)
259 return "disconnected";
263 EXPORT_SYMBOL(drm_get_connector_status_name
);
265 static char printable_char(int c
)
267 return isascii(c
) && isprint(c
) ? c
: '?';
270 const char *drm_get_format_name(uint32_t format
)
274 snprintf(buf
, sizeof(buf
),
275 "%c%c%c%c %s-endian (0x%08x)",
276 printable_char(format
& 0xff),
277 printable_char((format
>> 8) & 0xff),
278 printable_char((format
>> 16) & 0xff),
279 printable_char((format
>> 24) & 0x7f),
280 format
& DRM_FORMAT_BIG_ENDIAN
? "big" : "little",
285 EXPORT_SYMBOL(drm_get_format_name
);
288 * drm_mode_object_get - allocate a new modeset identifier
290 * @obj: object pointer, used to generate unique ID
291 * @obj_type: object type
293 * Create a unique identifier based on @ptr in @dev's identifier space. Used
294 * for tracking modes, CRTCs and connectors.
297 * New unique (relative to other objects in @dev) integer identifier for the
300 static int drm_mode_object_get(struct drm_device
*dev
,
301 struct drm_mode_object
*obj
, uint32_t obj_type
)
305 mutex_lock(&dev
->mode_config
.idr_mutex
);
306 ret
= idr_alloc(&dev
->mode_config
.crtc_idr
, obj
, 1, 0, GFP_KERNEL
);
309 * Set up the object linking under the protection of the idr
310 * lock so that other users can't see inconsistent state.
313 obj
->type
= obj_type
;
315 mutex_unlock(&dev
->mode_config
.idr_mutex
);
317 return ret
< 0 ? ret
: 0;
321 * drm_mode_object_put - free a modeset identifer
323 * @object: object to free
325 * Free @id from @dev's unique identifier pool.
327 static void drm_mode_object_put(struct drm_device
*dev
,
328 struct drm_mode_object
*object
)
330 mutex_lock(&dev
->mode_config
.idr_mutex
);
331 idr_remove(&dev
->mode_config
.crtc_idr
, object
->id
);
332 mutex_unlock(&dev
->mode_config
.idr_mutex
);
336 * drm_mode_object_find - look up a drm object with static lifetime
338 * @id: id of the mode object
339 * @type: type of the mode object
341 * Note that framebuffers cannot be looked up with this functions - since those
342 * are reference counted, they need special treatment.
344 struct drm_mode_object
*drm_mode_object_find(struct drm_device
*dev
,
345 uint32_t id
, uint32_t type
)
347 struct drm_mode_object
*obj
= NULL
;
349 /* Framebuffers are reference counted and need their own lookup
351 WARN_ON(type
== DRM_MODE_OBJECT_FB
);
353 mutex_lock(&dev
->mode_config
.idr_mutex
);
354 obj
= idr_find(&dev
->mode_config
.crtc_idr
, id
);
355 if (!obj
|| (obj
->type
!= type
) || (obj
->id
!= id
))
357 mutex_unlock(&dev
->mode_config
.idr_mutex
);
361 EXPORT_SYMBOL(drm_mode_object_find
);
364 * drm_framebuffer_init - initialize a framebuffer
366 * @fb: framebuffer to be initialized
367 * @funcs: ... with these functions
369 * Allocates an ID for the framebuffer's parent mode object, sets its mode
370 * functions & device file and adds it to the master fd list.
373 * This functions publishes the fb and makes it available for concurrent access
374 * by other users. Which means by this point the fb _must_ be fully set up -
375 * since all the fb attributes are invariant over its lifetime, no further
376 * locking but only correct reference counting is required.
379 * Zero on success, error code on failure.
381 int drm_framebuffer_init(struct drm_device
*dev
, struct drm_framebuffer
*fb
,
382 const struct drm_framebuffer_funcs
*funcs
)
386 mutex_lock(&dev
->mode_config
.fb_lock
);
387 kref_init(&fb
->refcount
);
388 INIT_LIST_HEAD(&fb
->filp_head
);
392 ret
= drm_mode_object_get(dev
, &fb
->base
, DRM_MODE_OBJECT_FB
);
396 /* Grab the idr reference. */
397 drm_framebuffer_reference(fb
);
399 dev
->mode_config
.num_fb
++;
400 list_add(&fb
->head
, &dev
->mode_config
.fb_list
);
402 mutex_unlock(&dev
->mode_config
.fb_lock
);
406 EXPORT_SYMBOL(drm_framebuffer_init
);
408 static void drm_framebuffer_free(struct kref
*kref
)
410 struct drm_framebuffer
*fb
=
411 container_of(kref
, struct drm_framebuffer
, refcount
);
412 fb
->funcs
->destroy(fb
);
415 static struct drm_framebuffer
*__drm_framebuffer_lookup(struct drm_device
*dev
,
418 struct drm_mode_object
*obj
= NULL
;
419 struct drm_framebuffer
*fb
;
421 mutex_lock(&dev
->mode_config
.idr_mutex
);
422 obj
= idr_find(&dev
->mode_config
.crtc_idr
, id
);
423 if (!obj
|| (obj
->type
!= DRM_MODE_OBJECT_FB
) || (obj
->id
!= id
))
427 mutex_unlock(&dev
->mode_config
.idr_mutex
);
433 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
435 * @id: id of the fb object
437 * If successful, this grabs an additional reference to the framebuffer -
438 * callers need to make sure to eventually unreference the returned framebuffer
441 struct drm_framebuffer
*drm_framebuffer_lookup(struct drm_device
*dev
,
444 struct drm_framebuffer
*fb
;
446 mutex_lock(&dev
->mode_config
.fb_lock
);
447 fb
= __drm_framebuffer_lookup(dev
, id
);
449 drm_framebuffer_reference(fb
);
450 mutex_unlock(&dev
->mode_config
.fb_lock
);
454 EXPORT_SYMBOL(drm_framebuffer_lookup
);
457 * drm_framebuffer_unreference - unref a framebuffer
458 * @fb: framebuffer to unref
460 * This functions decrements the fb's refcount and frees it if it drops to zero.
462 void drm_framebuffer_unreference(struct drm_framebuffer
*fb
)
464 DRM_DEBUG("FB ID: %d\n", fb
->base
.id
);
465 kref_put(&fb
->refcount
, drm_framebuffer_free
);
467 EXPORT_SYMBOL(drm_framebuffer_unreference
);
470 * drm_framebuffer_reference - incr the fb refcnt
473 void drm_framebuffer_reference(struct drm_framebuffer
*fb
)
475 DRM_DEBUG("FB ID: %d\n", fb
->base
.id
);
476 kref_get(&fb
->refcount
);
478 EXPORT_SYMBOL(drm_framebuffer_reference
);
480 static void drm_framebuffer_free_bug(struct kref
*kref
)
485 static void __drm_framebuffer_unreference(struct drm_framebuffer
*fb
)
487 DRM_DEBUG("FB ID: %d\n", fb
->base
.id
);
488 kref_put(&fb
->refcount
, drm_framebuffer_free_bug
);
491 /* dev->mode_config.fb_lock must be held! */
492 static void __drm_framebuffer_unregister(struct drm_device
*dev
,
493 struct drm_framebuffer
*fb
)
495 mutex_lock(&dev
->mode_config
.idr_mutex
);
496 idr_remove(&dev
->mode_config
.crtc_idr
, fb
->base
.id
);
497 mutex_unlock(&dev
->mode_config
.idr_mutex
);
501 __drm_framebuffer_unreference(fb
);
505 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
506 * @fb: fb to unregister
508 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
509 * those used for fbdev. Note that the caller must hold a reference of it's own,
510 * i.e. the object may not be destroyed through this call (since it'll lead to a
511 * locking inversion).
513 void drm_framebuffer_unregister_private(struct drm_framebuffer
*fb
)
515 struct drm_device
*dev
= fb
->dev
;
517 mutex_lock(&dev
->mode_config
.fb_lock
);
518 /* Mark fb as reaped and drop idr ref. */
519 __drm_framebuffer_unregister(dev
, fb
);
520 mutex_unlock(&dev
->mode_config
.fb_lock
);
522 EXPORT_SYMBOL(drm_framebuffer_unregister_private
);
525 * drm_framebuffer_cleanup - remove a framebuffer object
526 * @fb: framebuffer to remove
528 * Cleanup references to a user-created framebuffer. This function is intended
529 * to be used from the drivers ->destroy callback.
531 * Note that this function does not remove the fb from active usuage - if it is
532 * still used anywhere, hilarity can ensue since userspace could call getfb on
533 * the id and get back -EINVAL. Obviously no concern at driver unload time.
535 * Also, the framebuffer will not be removed from the lookup idr - for
536 * user-created framebuffers this will happen in in the rmfb ioctl. For
537 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
538 * drm_framebuffer_unregister_private.
540 void drm_framebuffer_cleanup(struct drm_framebuffer
*fb
)
542 struct drm_device
*dev
= fb
->dev
;
544 mutex_lock(&dev
->mode_config
.fb_lock
);
546 dev
->mode_config
.num_fb
--;
547 mutex_unlock(&dev
->mode_config
.fb_lock
);
549 EXPORT_SYMBOL(drm_framebuffer_cleanup
);
552 * drm_framebuffer_remove - remove and unreference a framebuffer object
553 * @fb: framebuffer to remove
555 * Scans all the CRTCs and planes in @dev's mode_config. If they're
556 * using @fb, removes it, setting it to NULL. Then drops the reference to the
557 * passed-in framebuffer. Might take the modeset locks.
559 * Note that this function optimizes the cleanup away if the caller holds the
560 * last reference to the framebuffer. It is also guaranteed to not take the
561 * modeset locks in this case.
563 void drm_framebuffer_remove(struct drm_framebuffer
*fb
)
565 struct drm_device
*dev
= fb
->dev
;
566 struct drm_crtc
*crtc
;
567 struct drm_plane
*plane
;
568 struct drm_mode_set set
;
571 WARN_ON(!list_empty(&fb
->filp_head
));
574 * drm ABI mandates that we remove any deleted framebuffers from active
575 * useage. But since most sane clients only remove framebuffers they no
576 * longer need, try to optimize this away.
578 * Since we're holding a reference ourselves, observing a refcount of 1
579 * means that we're the last holder and can skip it. Also, the refcount
580 * can never increase from 1 again, so we don't need any barriers or
583 * Note that userspace could try to race with use and instate a new
584 * usage _after_ we've cleared all current ones. End result will be an
585 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
588 if (atomic_read(&fb
->refcount
.refcount
) > 1) {
589 drm_modeset_lock_all(dev
);
590 /* remove from any CRTC */
591 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
592 if (crtc
->fb
== fb
) {
593 /* should turn off the crtc */
594 memset(&set
, 0, sizeof(struct drm_mode_set
));
597 ret
= drm_mode_set_config_internal(&set
);
599 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc
);
603 list_for_each_entry(plane
, &dev
->mode_config
.plane_list
, head
) {
605 drm_plane_force_disable(plane
);
607 drm_modeset_unlock_all(dev
);
610 drm_framebuffer_unreference(fb
);
612 EXPORT_SYMBOL(drm_framebuffer_remove
);
615 * drm_crtc_init - Initialise a new CRTC object
617 * @crtc: CRTC object to init
618 * @funcs: callbacks for the new CRTC
620 * Inits a new object created as base part of a driver crtc object.
623 * Zero on success, error code on failure.
625 int drm_crtc_init(struct drm_device
*dev
, struct drm_crtc
*crtc
,
626 const struct drm_crtc_funcs
*funcs
)
632 crtc
->invert_dimensions
= false;
634 drm_modeset_lock_all(dev
);
635 mutex_init(&crtc
->mutex
);
636 mutex_lock_nest_lock(&crtc
->mutex
, &dev
->mode_config
.mutex
);
638 ret
= drm_mode_object_get(dev
, &crtc
->base
, DRM_MODE_OBJECT_CRTC
);
642 crtc
->base
.properties
= &crtc
->properties
;
644 list_add_tail(&crtc
->head
, &dev
->mode_config
.crtc_list
);
645 dev
->mode_config
.num_crtc
++;
648 drm_modeset_unlock_all(dev
);
652 EXPORT_SYMBOL(drm_crtc_init
);
655 * drm_crtc_cleanup - Clean up the core crtc usage
656 * @crtc: CRTC to cleanup
658 * This function cleans up @crtc and removes it from the DRM mode setting
659 * core. Note that the function does *not* free the crtc structure itself,
660 * this is the responsibility of the caller.
662 void drm_crtc_cleanup(struct drm_crtc
*crtc
)
664 struct drm_device
*dev
= crtc
->dev
;
666 kfree(crtc
->gamma_store
);
667 crtc
->gamma_store
= NULL
;
669 drm_mode_object_put(dev
, &crtc
->base
);
670 list_del(&crtc
->head
);
671 dev
->mode_config
.num_crtc
--;
673 EXPORT_SYMBOL(drm_crtc_cleanup
);
676 * drm_mode_probed_add - add a mode to a connector's probed mode list
677 * @connector: connector the new mode
680 * Add @mode to @connector's mode list for later use.
682 void drm_mode_probed_add(struct drm_connector
*connector
,
683 struct drm_display_mode
*mode
)
685 list_add_tail(&mode
->head
, &connector
->probed_modes
);
687 EXPORT_SYMBOL(drm_mode_probed_add
);
690 * drm_mode_remove - remove and free a mode
691 * @connector: connector list to modify
692 * @mode: mode to remove
694 * Remove @mode from @connector's mode list, then free it.
696 static void drm_mode_remove(struct drm_connector
*connector
,
697 struct drm_display_mode
*mode
)
699 list_del(&mode
->head
);
700 drm_mode_destroy(connector
->dev
, mode
);
704 * drm_connector_init - Init a preallocated connector
706 * @connector: the connector to init
707 * @funcs: callbacks for this connector
708 * @connector_type: user visible type of the connector
710 * Initialises a preallocated connector. Connectors should be
711 * subclassed as part of driver connector objects.
714 * Zero on success, error code on failure.
716 int drm_connector_init(struct drm_device
*dev
,
717 struct drm_connector
*connector
,
718 const struct drm_connector_funcs
*funcs
,
722 struct ida
*connector_ida
=
723 &drm_connector_enum_list
[connector_type
].ida
;
725 drm_modeset_lock_all(dev
);
727 ret
= drm_mode_object_get(dev
, &connector
->base
, DRM_MODE_OBJECT_CONNECTOR
);
731 connector
->base
.properties
= &connector
->properties
;
732 connector
->dev
= dev
;
733 connector
->funcs
= funcs
;
734 connector
->connector_type
= connector_type
;
735 connector
->connector_type_id
=
736 ida_simple_get(connector_ida
, 1, 0, GFP_KERNEL
);
737 if (connector
->connector_type_id
< 0) {
738 ret
= connector
->connector_type_id
;
739 drm_mode_object_put(dev
, &connector
->base
);
742 INIT_LIST_HEAD(&connector
->probed_modes
);
743 INIT_LIST_HEAD(&connector
->modes
);
744 connector
->edid_blob_ptr
= NULL
;
745 connector
->status
= connector_status_unknown
;
747 list_add_tail(&connector
->head
, &dev
->mode_config
.connector_list
);
748 dev
->mode_config
.num_connector
++;
750 if (connector_type
!= DRM_MODE_CONNECTOR_VIRTUAL
)
751 drm_object_attach_property(&connector
->base
,
752 dev
->mode_config
.edid_property
,
755 drm_object_attach_property(&connector
->base
,
756 dev
->mode_config
.dpms_property
, 0);
759 drm_modeset_unlock_all(dev
);
763 EXPORT_SYMBOL(drm_connector_init
);
766 * drm_connector_cleanup - cleans up an initialised connector
767 * @connector: connector to cleanup
769 * Cleans up the connector but doesn't free the object.
771 void drm_connector_cleanup(struct drm_connector
*connector
)
773 struct drm_device
*dev
= connector
->dev
;
774 struct drm_display_mode
*mode
, *t
;
776 list_for_each_entry_safe(mode
, t
, &connector
->probed_modes
, head
)
777 drm_mode_remove(connector
, mode
);
779 list_for_each_entry_safe(mode
, t
, &connector
->modes
, head
)
780 drm_mode_remove(connector
, mode
);
782 ida_remove(&drm_connector_enum_list
[connector
->connector_type
].ida
,
783 connector
->connector_type_id
);
785 drm_mode_object_put(dev
, &connector
->base
);
786 list_del(&connector
->head
);
787 dev
->mode_config
.num_connector
--;
789 EXPORT_SYMBOL(drm_connector_cleanup
);
791 void drm_connector_unplug_all(struct drm_device
*dev
)
793 struct drm_connector
*connector
;
795 /* taking the mode config mutex ends up in a clash with sysfs */
796 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
797 drm_sysfs_connector_remove(connector
);
800 EXPORT_SYMBOL(drm_connector_unplug_all
);
802 int drm_bridge_init(struct drm_device
*dev
, struct drm_bridge
*bridge
,
803 const struct drm_bridge_funcs
*funcs
)
807 drm_modeset_lock_all(dev
);
809 ret
= drm_mode_object_get(dev
, &bridge
->base
, DRM_MODE_OBJECT_BRIDGE
);
814 bridge
->funcs
= funcs
;
816 list_add_tail(&bridge
->head
, &dev
->mode_config
.bridge_list
);
817 dev
->mode_config
.num_bridge
++;
820 drm_modeset_unlock_all(dev
);
823 EXPORT_SYMBOL(drm_bridge_init
);
825 void drm_bridge_cleanup(struct drm_bridge
*bridge
)
827 struct drm_device
*dev
= bridge
->dev
;
829 drm_modeset_lock_all(dev
);
830 drm_mode_object_put(dev
, &bridge
->base
);
831 list_del(&bridge
->head
);
832 dev
->mode_config
.num_bridge
--;
833 drm_modeset_unlock_all(dev
);
835 EXPORT_SYMBOL(drm_bridge_cleanup
);
837 int drm_encoder_init(struct drm_device
*dev
,
838 struct drm_encoder
*encoder
,
839 const struct drm_encoder_funcs
*funcs
,
844 drm_modeset_lock_all(dev
);
846 ret
= drm_mode_object_get(dev
, &encoder
->base
, DRM_MODE_OBJECT_ENCODER
);
851 encoder
->encoder_type
= encoder_type
;
852 encoder
->funcs
= funcs
;
854 list_add_tail(&encoder
->head
, &dev
->mode_config
.encoder_list
);
855 dev
->mode_config
.num_encoder
++;
858 drm_modeset_unlock_all(dev
);
862 EXPORT_SYMBOL(drm_encoder_init
);
864 void drm_encoder_cleanup(struct drm_encoder
*encoder
)
866 struct drm_device
*dev
= encoder
->dev
;
867 drm_modeset_lock_all(dev
);
868 drm_mode_object_put(dev
, &encoder
->base
);
869 list_del(&encoder
->head
);
870 dev
->mode_config
.num_encoder
--;
871 drm_modeset_unlock_all(dev
);
873 EXPORT_SYMBOL(drm_encoder_cleanup
);
876 * drm_plane_init - Initialise a new plane object
878 * @plane: plane object to init
879 * @possible_crtcs: bitmask of possible CRTCs
880 * @funcs: callbacks for the new plane
881 * @formats: array of supported formats (%DRM_FORMAT_*)
882 * @format_count: number of elements in @formats
883 * @priv: plane is private (hidden from userspace)?
885 * Inits a new object created as base part of a driver plane object.
888 * Zero on success, error code on failure.
890 int drm_plane_init(struct drm_device
*dev
, struct drm_plane
*plane
,
891 unsigned long possible_crtcs
,
892 const struct drm_plane_funcs
*funcs
,
893 const uint32_t *formats
, uint32_t format_count
,
898 drm_modeset_lock_all(dev
);
900 ret
= drm_mode_object_get(dev
, &plane
->base
, DRM_MODE_OBJECT_PLANE
);
904 plane
->base
.properties
= &plane
->properties
;
906 plane
->funcs
= funcs
;
907 plane
->format_types
= kmalloc(sizeof(uint32_t) * format_count
,
909 if (!plane
->format_types
) {
910 DRM_DEBUG_KMS("out of memory when allocating plane\n");
911 drm_mode_object_put(dev
, &plane
->base
);
916 memcpy(plane
->format_types
, formats
, format_count
* sizeof(uint32_t));
917 plane
->format_count
= format_count
;
918 plane
->possible_crtcs
= possible_crtcs
;
920 /* private planes are not exposed to userspace, but depending on
921 * display hardware, might be convenient to allow sharing programming
922 * for the scanout engine with the crtc implementation.
925 list_add_tail(&plane
->head
, &dev
->mode_config
.plane_list
);
926 dev
->mode_config
.num_plane
++;
928 INIT_LIST_HEAD(&plane
->head
);
932 drm_modeset_unlock_all(dev
);
936 EXPORT_SYMBOL(drm_plane_init
);
939 * drm_plane_cleanup - Clean up the core plane usage
940 * @plane: plane to cleanup
942 * This function cleans up @plane and removes it from the DRM mode setting
943 * core. Note that the function does *not* free the plane structure itself,
944 * this is the responsibility of the caller.
946 void drm_plane_cleanup(struct drm_plane
*plane
)
948 struct drm_device
*dev
= plane
->dev
;
950 drm_modeset_lock_all(dev
);
951 kfree(plane
->format_types
);
952 drm_mode_object_put(dev
, &plane
->base
);
953 /* if not added to a list, it must be a private plane */
954 if (!list_empty(&plane
->head
)) {
955 list_del(&plane
->head
);
956 dev
->mode_config
.num_plane
--;
958 drm_modeset_unlock_all(dev
);
960 EXPORT_SYMBOL(drm_plane_cleanup
);
963 * drm_plane_force_disable - Forcibly disable a plane
964 * @plane: plane to disable
966 * Forces the plane to be disabled.
968 * Used when the plane's current framebuffer is destroyed,
969 * and when restoring fbdev mode.
971 void drm_plane_force_disable(struct drm_plane
*plane
)
978 ret
= plane
->funcs
->disable_plane(plane
);
980 DRM_ERROR("failed to disable plane with busy fb\n");
981 /* disconnect the plane from the fb and crtc: */
982 __drm_framebuffer_unreference(plane
->fb
);
986 EXPORT_SYMBOL(drm_plane_force_disable
);
989 * drm_mode_create - create a new display mode
992 * Create a new drm_display_mode, give it an ID, and return it.
995 * Pointer to new mode on success, NULL on error.
997 struct drm_display_mode
*drm_mode_create(struct drm_device
*dev
)
999 struct drm_display_mode
*nmode
;
1001 nmode
= kzalloc(sizeof(struct drm_display_mode
), GFP_KERNEL
);
1005 if (drm_mode_object_get(dev
, &nmode
->base
, DRM_MODE_OBJECT_MODE
)) {
1012 EXPORT_SYMBOL(drm_mode_create
);
1015 * drm_mode_destroy - remove a mode
1017 * @mode: mode to remove
1019 * Free @mode's unique identifier, then free it.
1021 void drm_mode_destroy(struct drm_device
*dev
, struct drm_display_mode
*mode
)
1026 drm_mode_object_put(dev
, &mode
->base
);
1030 EXPORT_SYMBOL(drm_mode_destroy
);
1032 static int drm_mode_create_standard_connector_properties(struct drm_device
*dev
)
1034 struct drm_property
*edid
;
1035 struct drm_property
*dpms
;
1038 * Standard properties (apply to all connectors)
1040 edid
= drm_property_create(dev
, DRM_MODE_PROP_BLOB
|
1041 DRM_MODE_PROP_IMMUTABLE
,
1043 dev
->mode_config
.edid_property
= edid
;
1045 dpms
= drm_property_create_enum(dev
, 0,
1046 "DPMS", drm_dpms_enum_list
,
1047 ARRAY_SIZE(drm_dpms_enum_list
));
1048 dev
->mode_config
.dpms_property
= dpms
;
1054 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1057 * Called by a driver the first time a DVI-I connector is made.
1059 int drm_mode_create_dvi_i_properties(struct drm_device
*dev
)
1061 struct drm_property
*dvi_i_selector
;
1062 struct drm_property
*dvi_i_subconnector
;
1064 if (dev
->mode_config
.dvi_i_select_subconnector_property
)
1068 drm_property_create_enum(dev
, 0,
1069 "select subconnector",
1070 drm_dvi_i_select_enum_list
,
1071 ARRAY_SIZE(drm_dvi_i_select_enum_list
));
1072 dev
->mode_config
.dvi_i_select_subconnector_property
= dvi_i_selector
;
1074 dvi_i_subconnector
= drm_property_create_enum(dev
, DRM_MODE_PROP_IMMUTABLE
,
1076 drm_dvi_i_subconnector_enum_list
,
1077 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list
));
1078 dev
->mode_config
.dvi_i_subconnector_property
= dvi_i_subconnector
;
1082 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties
);
1085 * drm_create_tv_properties - create TV specific connector properties
1087 * @num_modes: number of different TV formats (modes) supported
1088 * @modes: array of pointers to strings containing name of each format
1090 * Called by a driver's TV initialization routine, this function creates
1091 * the TV specific connector properties for a given device. Caller is
1092 * responsible for allocating a list of format names and passing them to
1095 int drm_mode_create_tv_properties(struct drm_device
*dev
, int num_modes
,
1098 struct drm_property
*tv_selector
;
1099 struct drm_property
*tv_subconnector
;
1102 if (dev
->mode_config
.tv_select_subconnector_property
)
1106 * Basic connector properties
1108 tv_selector
= drm_property_create_enum(dev
, 0,
1109 "select subconnector",
1110 drm_tv_select_enum_list
,
1111 ARRAY_SIZE(drm_tv_select_enum_list
));
1112 dev
->mode_config
.tv_select_subconnector_property
= tv_selector
;
1115 drm_property_create_enum(dev
, DRM_MODE_PROP_IMMUTABLE
,
1117 drm_tv_subconnector_enum_list
,
1118 ARRAY_SIZE(drm_tv_subconnector_enum_list
));
1119 dev
->mode_config
.tv_subconnector_property
= tv_subconnector
;
1122 * Other, TV specific properties: margins & TV modes.
1124 dev
->mode_config
.tv_left_margin_property
=
1125 drm_property_create_range(dev
, 0, "left margin", 0, 100);
1127 dev
->mode_config
.tv_right_margin_property
=
1128 drm_property_create_range(dev
, 0, "right margin", 0, 100);
1130 dev
->mode_config
.tv_top_margin_property
=
1131 drm_property_create_range(dev
, 0, "top margin", 0, 100);
1133 dev
->mode_config
.tv_bottom_margin_property
=
1134 drm_property_create_range(dev
, 0, "bottom margin", 0, 100);
1136 dev
->mode_config
.tv_mode_property
=
1137 drm_property_create(dev
, DRM_MODE_PROP_ENUM
,
1139 for (i
= 0; i
< num_modes
; i
++)
1140 drm_property_add_enum(dev
->mode_config
.tv_mode_property
, i
,
1143 dev
->mode_config
.tv_brightness_property
=
1144 drm_property_create_range(dev
, 0, "brightness", 0, 100);
1146 dev
->mode_config
.tv_contrast_property
=
1147 drm_property_create_range(dev
, 0, "contrast", 0, 100);
1149 dev
->mode_config
.tv_flicker_reduction_property
=
1150 drm_property_create_range(dev
, 0, "flicker reduction", 0, 100);
1152 dev
->mode_config
.tv_overscan_property
=
1153 drm_property_create_range(dev
, 0, "overscan", 0, 100);
1155 dev
->mode_config
.tv_saturation_property
=
1156 drm_property_create_range(dev
, 0, "saturation", 0, 100);
1158 dev
->mode_config
.tv_hue_property
=
1159 drm_property_create_range(dev
, 0, "hue", 0, 100);
1163 EXPORT_SYMBOL(drm_mode_create_tv_properties
);
1166 * drm_mode_create_scaling_mode_property - create scaling mode property
1169 * Called by a driver the first time it's needed, must be attached to desired
1172 int drm_mode_create_scaling_mode_property(struct drm_device
*dev
)
1174 struct drm_property
*scaling_mode
;
1176 if (dev
->mode_config
.scaling_mode_property
)
1180 drm_property_create_enum(dev
, 0, "scaling mode",
1181 drm_scaling_mode_enum_list
,
1182 ARRAY_SIZE(drm_scaling_mode_enum_list
));
1184 dev
->mode_config
.scaling_mode_property
= scaling_mode
;
1188 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property
);
1191 * drm_mode_create_dirty_property - create dirty property
1194 * Called by a driver the first time it's needed, must be attached to desired
1197 int drm_mode_create_dirty_info_property(struct drm_device
*dev
)
1199 struct drm_property
*dirty_info
;
1201 if (dev
->mode_config
.dirty_info_property
)
1205 drm_property_create_enum(dev
, DRM_MODE_PROP_IMMUTABLE
,
1207 drm_dirty_info_enum_list
,
1208 ARRAY_SIZE(drm_dirty_info_enum_list
));
1209 dev
->mode_config
.dirty_info_property
= dirty_info
;
1213 EXPORT_SYMBOL(drm_mode_create_dirty_info_property
);
1215 static int drm_mode_group_init(struct drm_device
*dev
, struct drm_mode_group
*group
)
1217 uint32_t total_objects
= 0;
1219 total_objects
+= dev
->mode_config
.num_crtc
;
1220 total_objects
+= dev
->mode_config
.num_connector
;
1221 total_objects
+= dev
->mode_config
.num_encoder
;
1222 total_objects
+= dev
->mode_config
.num_bridge
;
1224 group
->id_list
= kzalloc(total_objects
* sizeof(uint32_t), GFP_KERNEL
);
1225 if (!group
->id_list
)
1228 group
->num_crtcs
= 0;
1229 group
->num_connectors
= 0;
1230 group
->num_encoders
= 0;
1231 group
->num_bridges
= 0;
1235 int drm_mode_group_init_legacy_group(struct drm_device
*dev
,
1236 struct drm_mode_group
*group
)
1238 struct drm_crtc
*crtc
;
1239 struct drm_encoder
*encoder
;
1240 struct drm_connector
*connector
;
1241 struct drm_bridge
*bridge
;
1244 if ((ret
= drm_mode_group_init(dev
, group
)))
1247 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
1248 group
->id_list
[group
->num_crtcs
++] = crtc
->base
.id
;
1250 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
)
1251 group
->id_list
[group
->num_crtcs
+ group
->num_encoders
++] =
1254 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
1255 group
->id_list
[group
->num_crtcs
+ group
->num_encoders
+
1256 group
->num_connectors
++] = connector
->base
.id
;
1258 list_for_each_entry(bridge
, &dev
->mode_config
.bridge_list
, head
)
1259 group
->id_list
[group
->num_crtcs
+ group
->num_encoders
+
1260 group
->num_connectors
+ group
->num_bridges
++] =
1265 EXPORT_SYMBOL(drm_mode_group_init_legacy_group
);
1268 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1269 * @out: drm_mode_modeinfo struct to return to the user
1270 * @in: drm_display_mode to use
1272 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1275 static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo
*out
,
1276 const struct drm_display_mode
*in
)
1278 WARN(in
->hdisplay
> USHRT_MAX
|| in
->hsync_start
> USHRT_MAX
||
1279 in
->hsync_end
> USHRT_MAX
|| in
->htotal
> USHRT_MAX
||
1280 in
->hskew
> USHRT_MAX
|| in
->vdisplay
> USHRT_MAX
||
1281 in
->vsync_start
> USHRT_MAX
|| in
->vsync_end
> USHRT_MAX
||
1282 in
->vtotal
> USHRT_MAX
|| in
->vscan
> USHRT_MAX
,
1283 "timing values too large for mode info\n");
1285 out
->clock
= in
->clock
;
1286 out
->hdisplay
= in
->hdisplay
;
1287 out
->hsync_start
= in
->hsync_start
;
1288 out
->hsync_end
= in
->hsync_end
;
1289 out
->htotal
= in
->htotal
;
1290 out
->hskew
= in
->hskew
;
1291 out
->vdisplay
= in
->vdisplay
;
1292 out
->vsync_start
= in
->vsync_start
;
1293 out
->vsync_end
= in
->vsync_end
;
1294 out
->vtotal
= in
->vtotal
;
1295 out
->vscan
= in
->vscan
;
1296 out
->vrefresh
= in
->vrefresh
;
1297 out
->flags
= in
->flags
;
1298 out
->type
= in
->type
;
1299 strncpy(out
->name
, in
->name
, DRM_DISPLAY_MODE_LEN
);
1300 out
->name
[DRM_DISPLAY_MODE_LEN
-1] = 0;
1304 * drm_crtc_convert_to_umode - convert a modeinfo into a drm_display_mode
1305 * @out: drm_display_mode to return to the user
1306 * @in: drm_mode_modeinfo to use
1308 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1312 * Zero on success, errno on failure.
1314 static int drm_crtc_convert_umode(struct drm_display_mode
*out
,
1315 const struct drm_mode_modeinfo
*in
)
1317 if (in
->clock
> INT_MAX
|| in
->vrefresh
> INT_MAX
)
1320 out
->clock
= in
->clock
;
1321 out
->hdisplay
= in
->hdisplay
;
1322 out
->hsync_start
= in
->hsync_start
;
1323 out
->hsync_end
= in
->hsync_end
;
1324 out
->htotal
= in
->htotal
;
1325 out
->hskew
= in
->hskew
;
1326 out
->vdisplay
= in
->vdisplay
;
1327 out
->vsync_start
= in
->vsync_start
;
1328 out
->vsync_end
= in
->vsync_end
;
1329 out
->vtotal
= in
->vtotal
;
1330 out
->vscan
= in
->vscan
;
1331 out
->vrefresh
= in
->vrefresh
;
1332 out
->flags
= in
->flags
;
1333 out
->type
= in
->type
;
1334 strncpy(out
->name
, in
->name
, DRM_DISPLAY_MODE_LEN
);
1335 out
->name
[DRM_DISPLAY_MODE_LEN
-1] = 0;
1341 * drm_mode_getresources - get graphics configuration
1342 * @dev: drm device for the ioctl
1343 * @data: data pointer for the ioctl
1344 * @file_priv: drm file for the ioctl call
1346 * Construct a set of configuration description structures and return
1347 * them to the user, including CRTC, connector and framebuffer configuration.
1349 * Called by the user via ioctl.
1352 * Zero on success, errno on failure.
1354 int drm_mode_getresources(struct drm_device
*dev
, void *data
,
1355 struct drm_file
*file_priv
)
1357 struct drm_mode_card_res
*card_res
= data
;
1358 struct list_head
*lh
;
1359 struct drm_framebuffer
*fb
;
1360 struct drm_connector
*connector
;
1361 struct drm_crtc
*crtc
;
1362 struct drm_encoder
*encoder
;
1364 int connector_count
= 0;
1367 int encoder_count
= 0;
1369 uint32_t __user
*fb_id
;
1370 uint32_t __user
*crtc_id
;
1371 uint32_t __user
*connector_id
;
1372 uint32_t __user
*encoder_id
;
1373 struct drm_mode_group
*mode_group
;
1375 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1379 mutex_lock(&file_priv
->fbs_lock
);
1381 * For the non-control nodes we need to limit the list of resources
1382 * by IDs in the group list for this node
1384 list_for_each(lh
, &file_priv
->fbs
)
1387 /* handle this in 4 parts */
1389 if (card_res
->count_fbs
>= fb_count
) {
1391 fb_id
= (uint32_t __user
*)(unsigned long)card_res
->fb_id_ptr
;
1392 list_for_each_entry(fb
, &file_priv
->fbs
, filp_head
) {
1393 if (put_user(fb
->base
.id
, fb_id
+ copied
)) {
1394 mutex_unlock(&file_priv
->fbs_lock
);
1400 card_res
->count_fbs
= fb_count
;
1401 mutex_unlock(&file_priv
->fbs_lock
);
1403 drm_modeset_lock_all(dev
);
1404 mode_group
= &file_priv
->master
->minor
->mode_group
;
1405 if (file_priv
->master
->minor
->type
== DRM_MINOR_CONTROL
) {
1407 list_for_each(lh
, &dev
->mode_config
.crtc_list
)
1410 list_for_each(lh
, &dev
->mode_config
.connector_list
)
1413 list_for_each(lh
, &dev
->mode_config
.encoder_list
)
1417 crtc_count
= mode_group
->num_crtcs
;
1418 connector_count
= mode_group
->num_connectors
;
1419 encoder_count
= mode_group
->num_encoders
;
1422 card_res
->max_height
= dev
->mode_config
.max_height
;
1423 card_res
->min_height
= dev
->mode_config
.min_height
;
1424 card_res
->max_width
= dev
->mode_config
.max_width
;
1425 card_res
->min_width
= dev
->mode_config
.min_width
;
1428 if (card_res
->count_crtcs
>= crtc_count
) {
1430 crtc_id
= (uint32_t __user
*)(unsigned long)card_res
->crtc_id_ptr
;
1431 if (file_priv
->master
->minor
->type
== DRM_MINOR_CONTROL
) {
1432 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
1434 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc
->base
.id
);
1435 if (put_user(crtc
->base
.id
, crtc_id
+ copied
)) {
1442 for (i
= 0; i
< mode_group
->num_crtcs
; i
++) {
1443 if (put_user(mode_group
->id_list
[i
],
1444 crtc_id
+ copied
)) {
1452 card_res
->count_crtcs
= crtc_count
;
1455 if (card_res
->count_encoders
>= encoder_count
) {
1457 encoder_id
= (uint32_t __user
*)(unsigned long)card_res
->encoder_id_ptr
;
1458 if (file_priv
->master
->minor
->type
== DRM_MINOR_CONTROL
) {
1459 list_for_each_entry(encoder
,
1460 &dev
->mode_config
.encoder_list
,
1462 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder
->base
.id
,
1463 drm_get_encoder_name(encoder
));
1464 if (put_user(encoder
->base
.id
, encoder_id
+
1472 for (i
= mode_group
->num_crtcs
; i
< mode_group
->num_crtcs
+ mode_group
->num_encoders
; i
++) {
1473 if (put_user(mode_group
->id_list
[i
],
1474 encoder_id
+ copied
)) {
1483 card_res
->count_encoders
= encoder_count
;
1486 if (card_res
->count_connectors
>= connector_count
) {
1488 connector_id
= (uint32_t __user
*)(unsigned long)card_res
->connector_id_ptr
;
1489 if (file_priv
->master
->minor
->type
== DRM_MINOR_CONTROL
) {
1490 list_for_each_entry(connector
,
1491 &dev
->mode_config
.connector_list
,
1493 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1495 drm_get_connector_name(connector
));
1496 if (put_user(connector
->base
.id
,
1497 connector_id
+ copied
)) {
1504 int start
= mode_group
->num_crtcs
+
1505 mode_group
->num_encoders
;
1506 for (i
= start
; i
< start
+ mode_group
->num_connectors
; i
++) {
1507 if (put_user(mode_group
->id_list
[i
],
1508 connector_id
+ copied
)) {
1516 card_res
->count_connectors
= connector_count
;
1518 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res
->count_crtcs
,
1519 card_res
->count_connectors
, card_res
->count_encoders
);
1522 drm_modeset_unlock_all(dev
);
1527 * drm_mode_getcrtc - get CRTC configuration
1528 * @dev: drm device for the ioctl
1529 * @data: data pointer for the ioctl
1530 * @file_priv: drm file for the ioctl call
1532 * Construct a CRTC configuration structure to return to the user.
1534 * Called by the user via ioctl.
1537 * Zero on success, errno on failure.
1539 int drm_mode_getcrtc(struct drm_device
*dev
,
1540 void *data
, struct drm_file
*file_priv
)
1542 struct drm_mode_crtc
*crtc_resp
= data
;
1543 struct drm_crtc
*crtc
;
1544 struct drm_mode_object
*obj
;
1547 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1550 drm_modeset_lock_all(dev
);
1552 obj
= drm_mode_object_find(dev
, crtc_resp
->crtc_id
,
1553 DRM_MODE_OBJECT_CRTC
);
1558 crtc
= obj_to_crtc(obj
);
1560 crtc_resp
->x
= crtc
->x
;
1561 crtc_resp
->y
= crtc
->y
;
1562 crtc_resp
->gamma_size
= crtc
->gamma_size
;
1564 crtc_resp
->fb_id
= crtc
->fb
->base
.id
;
1566 crtc_resp
->fb_id
= 0;
1568 if (crtc
->enabled
) {
1570 drm_crtc_convert_to_umode(&crtc_resp
->mode
, &crtc
->mode
);
1571 crtc_resp
->mode_valid
= 1;
1574 crtc_resp
->mode_valid
= 0;
1578 drm_modeset_unlock_all(dev
);
1583 * drm_mode_getconnector - get connector configuration
1584 * @dev: drm device for the ioctl
1585 * @data: data pointer for the ioctl
1586 * @file_priv: drm file for the ioctl call
1588 * Construct a connector configuration structure to return to the user.
1590 * Called by the user via ioctl.
1593 * Zero on success, errno on failure.
1595 int drm_mode_getconnector(struct drm_device
*dev
, void *data
,
1596 struct drm_file
*file_priv
)
1598 struct drm_mode_get_connector
*out_resp
= data
;
1599 struct drm_mode_object
*obj
;
1600 struct drm_connector
*connector
;
1601 struct drm_display_mode
*mode
;
1603 int props_count
= 0;
1604 int encoders_count
= 0;
1608 struct drm_mode_modeinfo u_mode
;
1609 struct drm_mode_modeinfo __user
*mode_ptr
;
1610 uint32_t __user
*prop_ptr
;
1611 uint64_t __user
*prop_values
;
1612 uint32_t __user
*encoder_ptr
;
1614 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1617 memset(&u_mode
, 0, sizeof(struct drm_mode_modeinfo
));
1619 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp
->connector_id
);
1621 mutex_lock(&dev
->mode_config
.mutex
);
1623 obj
= drm_mode_object_find(dev
, out_resp
->connector_id
,
1624 DRM_MODE_OBJECT_CONNECTOR
);
1629 connector
= obj_to_connector(obj
);
1631 props_count
= connector
->properties
.count
;
1633 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++) {
1634 if (connector
->encoder_ids
[i
] != 0) {
1639 if (out_resp
->count_modes
== 0) {
1640 connector
->funcs
->fill_modes(connector
,
1641 dev
->mode_config
.max_width
,
1642 dev
->mode_config
.max_height
);
1645 /* delayed so we get modes regardless of pre-fill_modes state */
1646 list_for_each_entry(mode
, &connector
->modes
, head
)
1649 out_resp
->connector_id
= connector
->base
.id
;
1650 out_resp
->connector_type
= connector
->connector_type
;
1651 out_resp
->connector_type_id
= connector
->connector_type_id
;
1652 out_resp
->mm_width
= connector
->display_info
.width_mm
;
1653 out_resp
->mm_height
= connector
->display_info
.height_mm
;
1654 out_resp
->subpixel
= connector
->display_info
.subpixel_order
;
1655 out_resp
->connection
= connector
->status
;
1656 if (connector
->encoder
)
1657 out_resp
->encoder_id
= connector
->encoder
->base
.id
;
1659 out_resp
->encoder_id
= 0;
1662 * This ioctl is called twice, once to determine how much space is
1663 * needed, and the 2nd time to fill it.
1665 if ((out_resp
->count_modes
>= mode_count
) && mode_count
) {
1667 mode_ptr
= (struct drm_mode_modeinfo __user
*)(unsigned long)out_resp
->modes_ptr
;
1668 list_for_each_entry(mode
, &connector
->modes
, head
) {
1669 drm_crtc_convert_to_umode(&u_mode
, mode
);
1670 if (copy_to_user(mode_ptr
+ copied
,
1671 &u_mode
, sizeof(u_mode
))) {
1678 out_resp
->count_modes
= mode_count
;
1680 if ((out_resp
->count_props
>= props_count
) && props_count
) {
1682 prop_ptr
= (uint32_t __user
*)(unsigned long)(out_resp
->props_ptr
);
1683 prop_values
= (uint64_t __user
*)(unsigned long)(out_resp
->prop_values_ptr
);
1684 for (i
= 0; i
< connector
->properties
.count
; i
++) {
1685 if (put_user(connector
->properties
.ids
[i
],
1686 prop_ptr
+ copied
)) {
1691 if (put_user(connector
->properties
.values
[i
],
1692 prop_values
+ copied
)) {
1699 out_resp
->count_props
= props_count
;
1701 if ((out_resp
->count_encoders
>= encoders_count
) && encoders_count
) {
1703 encoder_ptr
= (uint32_t __user
*)(unsigned long)(out_resp
->encoders_ptr
);
1704 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++) {
1705 if (connector
->encoder_ids
[i
] != 0) {
1706 if (put_user(connector
->encoder_ids
[i
],
1707 encoder_ptr
+ copied
)) {
1715 out_resp
->count_encoders
= encoders_count
;
1718 mutex_unlock(&dev
->mode_config
.mutex
);
1723 int drm_mode_getencoder(struct drm_device
*dev
, void *data
,
1724 struct drm_file
*file_priv
)
1726 struct drm_mode_get_encoder
*enc_resp
= data
;
1727 struct drm_mode_object
*obj
;
1728 struct drm_encoder
*encoder
;
1731 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1734 drm_modeset_lock_all(dev
);
1735 obj
= drm_mode_object_find(dev
, enc_resp
->encoder_id
,
1736 DRM_MODE_OBJECT_ENCODER
);
1741 encoder
= obj_to_encoder(obj
);
1744 enc_resp
->crtc_id
= encoder
->crtc
->base
.id
;
1746 enc_resp
->crtc_id
= 0;
1747 enc_resp
->encoder_type
= encoder
->encoder_type
;
1748 enc_resp
->encoder_id
= encoder
->base
.id
;
1749 enc_resp
->possible_crtcs
= encoder
->possible_crtcs
;
1750 enc_resp
->possible_clones
= encoder
->possible_clones
;
1753 drm_modeset_unlock_all(dev
);
1758 * drm_mode_getplane_res - get plane info
1761 * @file_priv: DRM file info
1763 * Return an plane count and set of IDs.
1765 int drm_mode_getplane_res(struct drm_device
*dev
, void *data
,
1766 struct drm_file
*file_priv
)
1768 struct drm_mode_get_plane_res
*plane_resp
= data
;
1769 struct drm_mode_config
*config
;
1770 struct drm_plane
*plane
;
1771 uint32_t __user
*plane_ptr
;
1772 int copied
= 0, ret
= 0;
1774 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1777 drm_modeset_lock_all(dev
);
1778 config
= &dev
->mode_config
;
1781 * This ioctl is called twice, once to determine how much space is
1782 * needed, and the 2nd time to fill it.
1784 if (config
->num_plane
&&
1785 (plane_resp
->count_planes
>= config
->num_plane
)) {
1786 plane_ptr
= (uint32_t __user
*)(unsigned long)plane_resp
->plane_id_ptr
;
1788 list_for_each_entry(plane
, &config
->plane_list
, head
) {
1789 if (put_user(plane
->base
.id
, plane_ptr
+ copied
)) {
1796 plane_resp
->count_planes
= config
->num_plane
;
1799 drm_modeset_unlock_all(dev
);
1804 * drm_mode_getplane - get plane info
1807 * @file_priv: DRM file info
1809 * Return plane info, including formats supported, gamma size, any
1812 int drm_mode_getplane(struct drm_device
*dev
, void *data
,
1813 struct drm_file
*file_priv
)
1815 struct drm_mode_get_plane
*plane_resp
= data
;
1816 struct drm_mode_object
*obj
;
1817 struct drm_plane
*plane
;
1818 uint32_t __user
*format_ptr
;
1821 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1824 drm_modeset_lock_all(dev
);
1825 obj
= drm_mode_object_find(dev
, plane_resp
->plane_id
,
1826 DRM_MODE_OBJECT_PLANE
);
1831 plane
= obj_to_plane(obj
);
1834 plane_resp
->crtc_id
= plane
->crtc
->base
.id
;
1836 plane_resp
->crtc_id
= 0;
1839 plane_resp
->fb_id
= plane
->fb
->base
.id
;
1841 plane_resp
->fb_id
= 0;
1843 plane_resp
->plane_id
= plane
->base
.id
;
1844 plane_resp
->possible_crtcs
= plane
->possible_crtcs
;
1845 plane_resp
->gamma_size
= 0;
1848 * This ioctl is called twice, once to determine how much space is
1849 * needed, and the 2nd time to fill it.
1851 if (plane
->format_count
&&
1852 (plane_resp
->count_format_types
>= plane
->format_count
)) {
1853 format_ptr
= (uint32_t __user
*)(unsigned long)plane_resp
->format_type_ptr
;
1854 if (copy_to_user(format_ptr
,
1855 plane
->format_types
,
1856 sizeof(uint32_t) * plane
->format_count
)) {
1861 plane_resp
->count_format_types
= plane
->format_count
;
1864 drm_modeset_unlock_all(dev
);
1869 * drm_mode_setplane - set up or tear down an plane
1871 * @data: ioctl data*
1872 * @file_priv: DRM file info
1874 * Set plane info, including placement, fb, scaling, and other factors.
1875 * Or pass a NULL fb to disable.
1877 int drm_mode_setplane(struct drm_device
*dev
, void *data
,
1878 struct drm_file
*file_priv
)
1880 struct drm_mode_set_plane
*plane_req
= data
;
1881 struct drm_mode_object
*obj
;
1882 struct drm_plane
*plane
;
1883 struct drm_crtc
*crtc
;
1884 struct drm_framebuffer
*fb
= NULL
, *old_fb
= NULL
;
1886 unsigned int fb_width
, fb_height
;
1889 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1893 * First, find the plane, crtc, and fb objects. If not available,
1894 * we don't bother to call the driver.
1896 obj
= drm_mode_object_find(dev
, plane_req
->plane_id
,
1897 DRM_MODE_OBJECT_PLANE
);
1899 DRM_DEBUG_KMS("Unknown plane ID %d\n",
1900 plane_req
->plane_id
);
1903 plane
= obj_to_plane(obj
);
1905 /* No fb means shut it down */
1906 if (!plane_req
->fb_id
) {
1907 drm_modeset_lock_all(dev
);
1909 plane
->funcs
->disable_plane(plane
);
1912 drm_modeset_unlock_all(dev
);
1916 obj
= drm_mode_object_find(dev
, plane_req
->crtc_id
,
1917 DRM_MODE_OBJECT_CRTC
);
1919 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
1920 plane_req
->crtc_id
);
1924 crtc
= obj_to_crtc(obj
);
1926 fb
= drm_framebuffer_lookup(dev
, plane_req
->fb_id
);
1928 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
1934 /* Check whether this plane supports the fb pixel format. */
1935 for (i
= 0; i
< plane
->format_count
; i
++)
1936 if (fb
->pixel_format
== plane
->format_types
[i
])
1938 if (i
== plane
->format_count
) {
1939 DRM_DEBUG_KMS("Invalid pixel format %s\n",
1940 drm_get_format_name(fb
->pixel_format
));
1945 fb_width
= fb
->width
<< 16;
1946 fb_height
= fb
->height
<< 16;
1948 /* Make sure source coordinates are inside the fb. */
1949 if (plane_req
->src_w
> fb_width
||
1950 plane_req
->src_x
> fb_width
- plane_req
->src_w
||
1951 plane_req
->src_h
> fb_height
||
1952 plane_req
->src_y
> fb_height
- plane_req
->src_h
) {
1953 DRM_DEBUG_KMS("Invalid source coordinates "
1954 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
1955 plane_req
->src_w
>> 16,
1956 ((plane_req
->src_w
& 0xffff) * 15625) >> 10,
1957 plane_req
->src_h
>> 16,
1958 ((plane_req
->src_h
& 0xffff) * 15625) >> 10,
1959 plane_req
->src_x
>> 16,
1960 ((plane_req
->src_x
& 0xffff) * 15625) >> 10,
1961 plane_req
->src_y
>> 16,
1962 ((plane_req
->src_y
& 0xffff) * 15625) >> 10);
1967 /* Give drivers some help against integer overflows */
1968 if (plane_req
->crtc_w
> INT_MAX
||
1969 plane_req
->crtc_x
> INT_MAX
- (int32_t) plane_req
->crtc_w
||
1970 plane_req
->crtc_h
> INT_MAX
||
1971 plane_req
->crtc_y
> INT_MAX
- (int32_t) plane_req
->crtc_h
) {
1972 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
1973 plane_req
->crtc_w
, plane_req
->crtc_h
,
1974 plane_req
->crtc_x
, plane_req
->crtc_y
);
1979 drm_modeset_lock_all(dev
);
1980 ret
= plane
->funcs
->update_plane(plane
, crtc
, fb
,
1981 plane_req
->crtc_x
, plane_req
->crtc_y
,
1982 plane_req
->crtc_w
, plane_req
->crtc_h
,
1983 plane_req
->src_x
, plane_req
->src_y
,
1984 plane_req
->src_w
, plane_req
->src_h
);
1991 drm_modeset_unlock_all(dev
);
1995 drm_framebuffer_unreference(fb
);
1997 drm_framebuffer_unreference(old_fb
);
2003 * drm_mode_set_config_internal - helper to call ->set_config
2004 * @set: modeset config to set
2006 * This is a little helper to wrap internal calls to the ->set_config driver
2007 * interface. The only thing it adds is correct refcounting dance.
2009 int drm_mode_set_config_internal(struct drm_mode_set
*set
)
2011 struct drm_crtc
*crtc
= set
->crtc
;
2012 struct drm_framebuffer
*fb
;
2013 struct drm_crtc
*tmp
;
2017 * NOTE: ->set_config can also disable other crtcs (if we steal all
2018 * connectors from it), hence we need to refcount the fbs across all
2019 * crtcs. Atomic modeset will have saner semantics ...
2021 list_for_each_entry(tmp
, &crtc
->dev
->mode_config
.crtc_list
, head
)
2022 tmp
->old_fb
= tmp
->fb
;
2026 ret
= crtc
->funcs
->set_config(set
);
2028 /* crtc->fb must be updated by ->set_config, enforces this. */
2029 WARN_ON(fb
!= crtc
->fb
);
2032 list_for_each_entry(tmp
, &crtc
->dev
->mode_config
.crtc_list
, head
) {
2034 drm_framebuffer_reference(tmp
->fb
);
2036 drm_framebuffer_unreference(tmp
->old_fb
);
2041 EXPORT_SYMBOL(drm_mode_set_config_internal
);
2044 * drm_mode_setcrtc - set CRTC configuration
2045 * @dev: drm device for the ioctl
2046 * @data: data pointer for the ioctl
2047 * @file_priv: drm file for the ioctl call
2049 * Build a new CRTC configuration based on user request.
2051 * Called by the user via ioctl.
2054 * Zero on success, errno on failure.
2056 int drm_mode_setcrtc(struct drm_device
*dev
, void *data
,
2057 struct drm_file
*file_priv
)
2059 struct drm_mode_config
*config
= &dev
->mode_config
;
2060 struct drm_mode_crtc
*crtc_req
= data
;
2061 struct drm_mode_object
*obj
;
2062 struct drm_crtc
*crtc
;
2063 struct drm_connector
**connector_set
= NULL
, *connector
;
2064 struct drm_framebuffer
*fb
= NULL
;
2065 struct drm_display_mode
*mode
= NULL
;
2066 struct drm_mode_set set
;
2067 uint32_t __user
*set_connectors_ptr
;
2071 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2074 /* For some reason crtc x/y offsets are signed internally. */
2075 if (crtc_req
->x
> INT_MAX
|| crtc_req
->y
> INT_MAX
)
2078 drm_modeset_lock_all(dev
);
2079 obj
= drm_mode_object_find(dev
, crtc_req
->crtc_id
,
2080 DRM_MODE_OBJECT_CRTC
);
2082 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req
->crtc_id
);
2086 crtc
= obj_to_crtc(obj
);
2087 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc
->base
.id
);
2089 if (crtc_req
->mode_valid
) {
2090 int hdisplay
, vdisplay
;
2091 /* If we have a mode we need a framebuffer. */
2092 /* If we pass -1, set the mode with the currently bound fb */
2093 if (crtc_req
->fb_id
== -1) {
2095 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2100 /* Make refcounting symmetric with the lookup path. */
2101 drm_framebuffer_reference(fb
);
2103 fb
= drm_framebuffer_lookup(dev
, crtc_req
->fb_id
);
2105 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2112 mode
= drm_mode_create(dev
);
2118 ret
= drm_crtc_convert_umode(mode
, &crtc_req
->mode
);
2120 DRM_DEBUG_KMS("Invalid mode\n");
2124 drm_mode_set_crtcinfo(mode
, CRTC_INTERLACE_HALVE_V
);
2126 hdisplay
= mode
->hdisplay
;
2127 vdisplay
= mode
->vdisplay
;
2129 if (crtc
->invert_dimensions
)
2130 swap(hdisplay
, vdisplay
);
2132 if (hdisplay
> fb
->width
||
2133 vdisplay
> fb
->height
||
2134 crtc_req
->x
> fb
->width
- hdisplay
||
2135 crtc_req
->y
> fb
->height
- vdisplay
) {
2136 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2137 fb
->width
, fb
->height
,
2138 hdisplay
, vdisplay
, crtc_req
->x
, crtc_req
->y
,
2139 crtc
->invert_dimensions
? " (inverted)" : "");
2145 if (crtc_req
->count_connectors
== 0 && mode
) {
2146 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
2151 if (crtc_req
->count_connectors
> 0 && (!mode
|| !fb
)) {
2152 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
2153 crtc_req
->count_connectors
);
2158 if (crtc_req
->count_connectors
> 0) {
2161 /* Avoid unbounded kernel memory allocation */
2162 if (crtc_req
->count_connectors
> config
->num_connector
) {
2167 connector_set
= kmalloc(crtc_req
->count_connectors
*
2168 sizeof(struct drm_connector
*),
2170 if (!connector_set
) {
2175 for (i
= 0; i
< crtc_req
->count_connectors
; i
++) {
2176 set_connectors_ptr
= (uint32_t __user
*)(unsigned long)crtc_req
->set_connectors_ptr
;
2177 if (get_user(out_id
, &set_connectors_ptr
[i
])) {
2182 obj
= drm_mode_object_find(dev
, out_id
,
2183 DRM_MODE_OBJECT_CONNECTOR
);
2185 DRM_DEBUG_KMS("Connector id %d unknown\n",
2190 connector
= obj_to_connector(obj
);
2191 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2193 drm_get_connector_name(connector
));
2195 connector_set
[i
] = connector
;
2200 set
.x
= crtc_req
->x
;
2201 set
.y
= crtc_req
->y
;
2203 set
.connectors
= connector_set
;
2204 set
.num_connectors
= crtc_req
->count_connectors
;
2206 ret
= drm_mode_set_config_internal(&set
);
2210 drm_framebuffer_unreference(fb
);
2212 kfree(connector_set
);
2213 drm_mode_destroy(dev
, mode
);
2214 drm_modeset_unlock_all(dev
);
2218 static int drm_mode_cursor_common(struct drm_device
*dev
,
2219 struct drm_mode_cursor2
*req
,
2220 struct drm_file
*file_priv
)
2222 struct drm_mode_object
*obj
;
2223 struct drm_crtc
*crtc
;
2226 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2229 if (!req
->flags
|| (~DRM_MODE_CURSOR_FLAGS
& req
->flags
))
2232 obj
= drm_mode_object_find(dev
, req
->crtc_id
, DRM_MODE_OBJECT_CRTC
);
2234 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req
->crtc_id
);
2237 crtc
= obj_to_crtc(obj
);
2239 mutex_lock(&crtc
->mutex
);
2240 if (req
->flags
& DRM_MODE_CURSOR_BO
) {
2241 if (!crtc
->funcs
->cursor_set
&& !crtc
->funcs
->cursor_set2
) {
2245 /* Turns off the cursor if handle is 0 */
2246 if (crtc
->funcs
->cursor_set2
)
2247 ret
= crtc
->funcs
->cursor_set2(crtc
, file_priv
, req
->handle
,
2248 req
->width
, req
->height
, req
->hot_x
, req
->hot_y
);
2250 ret
= crtc
->funcs
->cursor_set(crtc
, file_priv
, req
->handle
,
2251 req
->width
, req
->height
);
2254 if (req
->flags
& DRM_MODE_CURSOR_MOVE
) {
2255 if (crtc
->funcs
->cursor_move
) {
2256 ret
= crtc
->funcs
->cursor_move(crtc
, req
->x
, req
->y
);
2263 mutex_unlock(&crtc
->mutex
);
2268 int drm_mode_cursor_ioctl(struct drm_device
*dev
,
2269 void *data
, struct drm_file
*file_priv
)
2271 struct drm_mode_cursor
*req
= data
;
2272 struct drm_mode_cursor2 new_req
;
2274 memcpy(&new_req
, req
, sizeof(struct drm_mode_cursor
));
2275 new_req
.hot_x
= new_req
.hot_y
= 0;
2277 return drm_mode_cursor_common(dev
, &new_req
, file_priv
);
2280 int drm_mode_cursor2_ioctl(struct drm_device
*dev
,
2281 void *data
, struct drm_file
*file_priv
)
2283 struct drm_mode_cursor2
*req
= data
;
2284 return drm_mode_cursor_common(dev
, req
, file_priv
);
2287 /* Original addfb only supported RGB formats, so figure out which one */
2288 uint32_t drm_mode_legacy_fb_format(uint32_t bpp
, uint32_t depth
)
2294 fmt
= DRM_FORMAT_C8
;
2298 fmt
= DRM_FORMAT_XRGB1555
;
2300 fmt
= DRM_FORMAT_RGB565
;
2303 fmt
= DRM_FORMAT_RGB888
;
2307 fmt
= DRM_FORMAT_XRGB8888
;
2308 else if (depth
== 30)
2309 fmt
= DRM_FORMAT_XRGB2101010
;
2311 fmt
= DRM_FORMAT_ARGB8888
;
2314 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2315 fmt
= DRM_FORMAT_XRGB8888
;
2321 EXPORT_SYMBOL(drm_mode_legacy_fb_format
);
2324 * drm_mode_addfb - add an FB to the graphics configuration
2325 * @dev: drm device for the ioctl
2326 * @data: data pointer for the ioctl
2327 * @file_priv: drm file for the ioctl call
2329 * Add a new FB to the specified CRTC, given a user request.
2331 * Called by the user via ioctl.
2334 * Zero on success, errno on failure.
2336 int drm_mode_addfb(struct drm_device
*dev
,
2337 void *data
, struct drm_file
*file_priv
)
2339 struct drm_mode_fb_cmd
*or = data
;
2340 struct drm_mode_fb_cmd2 r
= {};
2341 struct drm_mode_config
*config
= &dev
->mode_config
;
2342 struct drm_framebuffer
*fb
;
2345 /* Use new struct with format internally */
2346 r
.fb_id
= or->fb_id
;
2347 r
.width
= or->width
;
2348 r
.height
= or->height
;
2349 r
.pitches
[0] = or->pitch
;
2350 r
.pixel_format
= drm_mode_legacy_fb_format(or->bpp
, or->depth
);
2351 r
.handles
[0] = or->handle
;
2353 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2356 if ((config
->min_width
> r
.width
) || (r
.width
> config
->max_width
))
2359 if ((config
->min_height
> r
.height
) || (r
.height
> config
->max_height
))
2362 fb
= dev
->mode_config
.funcs
->fb_create(dev
, file_priv
, &r
);
2364 DRM_DEBUG_KMS("could not create framebuffer\n");
2368 mutex_lock(&file_priv
->fbs_lock
);
2369 or->fb_id
= fb
->base
.id
;
2370 list_add(&fb
->filp_head
, &file_priv
->fbs
);
2371 DRM_DEBUG_KMS("[FB:%d]\n", fb
->base
.id
);
2372 mutex_unlock(&file_priv
->fbs_lock
);
2377 static int format_check(const struct drm_mode_fb_cmd2
*r
)
2379 uint32_t format
= r
->pixel_format
& ~DRM_FORMAT_BIG_ENDIAN
;
2383 case DRM_FORMAT_RGB332
:
2384 case DRM_FORMAT_BGR233
:
2385 case DRM_FORMAT_XRGB4444
:
2386 case DRM_FORMAT_XBGR4444
:
2387 case DRM_FORMAT_RGBX4444
:
2388 case DRM_FORMAT_BGRX4444
:
2389 case DRM_FORMAT_ARGB4444
:
2390 case DRM_FORMAT_ABGR4444
:
2391 case DRM_FORMAT_RGBA4444
:
2392 case DRM_FORMAT_BGRA4444
:
2393 case DRM_FORMAT_XRGB1555
:
2394 case DRM_FORMAT_XBGR1555
:
2395 case DRM_FORMAT_RGBX5551
:
2396 case DRM_FORMAT_BGRX5551
:
2397 case DRM_FORMAT_ARGB1555
:
2398 case DRM_FORMAT_ABGR1555
:
2399 case DRM_FORMAT_RGBA5551
:
2400 case DRM_FORMAT_BGRA5551
:
2401 case DRM_FORMAT_RGB565
:
2402 case DRM_FORMAT_BGR565
:
2403 case DRM_FORMAT_RGB888
:
2404 case DRM_FORMAT_BGR888
:
2405 case DRM_FORMAT_XRGB8888
:
2406 case DRM_FORMAT_XBGR8888
:
2407 case DRM_FORMAT_RGBX8888
:
2408 case DRM_FORMAT_BGRX8888
:
2409 case DRM_FORMAT_ARGB8888
:
2410 case DRM_FORMAT_ABGR8888
:
2411 case DRM_FORMAT_RGBA8888
:
2412 case DRM_FORMAT_BGRA8888
:
2413 case DRM_FORMAT_XRGB2101010
:
2414 case DRM_FORMAT_XBGR2101010
:
2415 case DRM_FORMAT_RGBX1010102
:
2416 case DRM_FORMAT_BGRX1010102
:
2417 case DRM_FORMAT_ARGB2101010
:
2418 case DRM_FORMAT_ABGR2101010
:
2419 case DRM_FORMAT_RGBA1010102
:
2420 case DRM_FORMAT_BGRA1010102
:
2421 case DRM_FORMAT_YUYV
:
2422 case DRM_FORMAT_YVYU
:
2423 case DRM_FORMAT_UYVY
:
2424 case DRM_FORMAT_VYUY
:
2425 case DRM_FORMAT_AYUV
:
2426 case DRM_FORMAT_NV12
:
2427 case DRM_FORMAT_NV21
:
2428 case DRM_FORMAT_NV16
:
2429 case DRM_FORMAT_NV61
:
2430 case DRM_FORMAT_NV24
:
2431 case DRM_FORMAT_NV42
:
2432 case DRM_FORMAT_YUV410
:
2433 case DRM_FORMAT_YVU410
:
2434 case DRM_FORMAT_YUV411
:
2435 case DRM_FORMAT_YVU411
:
2436 case DRM_FORMAT_YUV420
:
2437 case DRM_FORMAT_YVU420
:
2438 case DRM_FORMAT_YUV422
:
2439 case DRM_FORMAT_YVU422
:
2440 case DRM_FORMAT_YUV444
:
2441 case DRM_FORMAT_YVU444
:
2448 static int framebuffer_check(const struct drm_mode_fb_cmd2
*r
)
2450 int ret
, hsub
, vsub
, num_planes
, i
;
2452 ret
= format_check(r
);
2454 DRM_DEBUG_KMS("bad framebuffer format %s\n",
2455 drm_get_format_name(r
->pixel_format
));
2459 hsub
= drm_format_horz_chroma_subsampling(r
->pixel_format
);
2460 vsub
= drm_format_vert_chroma_subsampling(r
->pixel_format
);
2461 num_planes
= drm_format_num_planes(r
->pixel_format
);
2463 if (r
->width
== 0 || r
->width
% hsub
) {
2464 DRM_DEBUG_KMS("bad framebuffer width %u\n", r
->height
);
2468 if (r
->height
== 0 || r
->height
% vsub
) {
2469 DRM_DEBUG_KMS("bad framebuffer height %u\n", r
->height
);
2473 for (i
= 0; i
< num_planes
; i
++) {
2474 unsigned int width
= r
->width
/ (i
!= 0 ? hsub
: 1);
2475 unsigned int height
= r
->height
/ (i
!= 0 ? vsub
: 1);
2476 unsigned int cpp
= drm_format_plane_cpp(r
->pixel_format
, i
);
2478 if (!r
->handles
[i
]) {
2479 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i
);
2483 if ((uint64_t) width
* cpp
> UINT_MAX
)
2486 if ((uint64_t) height
* r
->pitches
[i
] + r
->offsets
[i
] > UINT_MAX
)
2489 if (r
->pitches
[i
] < width
* cpp
) {
2490 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r
->pitches
[i
], i
);
2499 * drm_mode_addfb2 - add an FB to the graphics configuration
2500 * @dev: drm device for the ioctl
2501 * @data: data pointer for the ioctl
2502 * @file_priv: drm file for the ioctl call
2504 * Add a new FB to the specified CRTC, given a user request with format.
2506 * Called by the user via ioctl.
2509 * Zero on success, errno on failure.
2511 int drm_mode_addfb2(struct drm_device
*dev
,
2512 void *data
, struct drm_file
*file_priv
)
2514 struct drm_mode_fb_cmd2
*r
= data
;
2515 struct drm_mode_config
*config
= &dev
->mode_config
;
2516 struct drm_framebuffer
*fb
;
2519 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2522 if (r
->flags
& ~DRM_MODE_FB_INTERLACED
) {
2523 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r
->flags
);
2527 if ((config
->min_width
> r
->width
) || (r
->width
> config
->max_width
)) {
2528 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
2529 r
->width
, config
->min_width
, config
->max_width
);
2532 if ((config
->min_height
> r
->height
) || (r
->height
> config
->max_height
)) {
2533 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
2534 r
->height
, config
->min_height
, config
->max_height
);
2538 ret
= framebuffer_check(r
);
2542 fb
= dev
->mode_config
.funcs
->fb_create(dev
, file_priv
, r
);
2544 DRM_DEBUG_KMS("could not create framebuffer\n");
2548 mutex_lock(&file_priv
->fbs_lock
);
2549 r
->fb_id
= fb
->base
.id
;
2550 list_add(&fb
->filp_head
, &file_priv
->fbs
);
2551 DRM_DEBUG_KMS("[FB:%d]\n", fb
->base
.id
);
2552 mutex_unlock(&file_priv
->fbs_lock
);
2559 * drm_mode_rmfb - remove an FB from the configuration
2560 * @dev: drm device for the ioctl
2561 * @data: data pointer for the ioctl
2562 * @file_priv: drm file for the ioctl call
2564 * Remove the FB specified by the user.
2566 * Called by the user via ioctl.
2569 * Zero on success, errno on failure.
2571 int drm_mode_rmfb(struct drm_device
*dev
,
2572 void *data
, struct drm_file
*file_priv
)
2574 struct drm_framebuffer
*fb
= NULL
;
2575 struct drm_framebuffer
*fbl
= NULL
;
2576 uint32_t *id
= data
;
2579 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2582 mutex_lock(&file_priv
->fbs_lock
);
2583 mutex_lock(&dev
->mode_config
.fb_lock
);
2584 fb
= __drm_framebuffer_lookup(dev
, *id
);
2588 list_for_each_entry(fbl
, &file_priv
->fbs
, filp_head
)
2594 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2595 __drm_framebuffer_unregister(dev
, fb
);
2597 list_del_init(&fb
->filp_head
);
2598 mutex_unlock(&dev
->mode_config
.fb_lock
);
2599 mutex_unlock(&file_priv
->fbs_lock
);
2601 drm_framebuffer_remove(fb
);
2606 mutex_unlock(&dev
->mode_config
.fb_lock
);
2607 mutex_unlock(&file_priv
->fbs_lock
);
2613 * drm_mode_getfb - get FB info
2614 * @dev: drm device for the ioctl
2615 * @data: data pointer for the ioctl
2616 * @file_priv: drm file for the ioctl call
2618 * Lookup the FB given its ID and return info about it.
2620 * Called by the user via ioctl.
2623 * Zero on success, errno on failure.
2625 int drm_mode_getfb(struct drm_device
*dev
,
2626 void *data
, struct drm_file
*file_priv
)
2628 struct drm_mode_fb_cmd
*r
= data
;
2629 struct drm_framebuffer
*fb
;
2632 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2635 fb
= drm_framebuffer_lookup(dev
, r
->fb_id
);
2639 r
->height
= fb
->height
;
2640 r
->width
= fb
->width
;
2641 r
->depth
= fb
->depth
;
2642 r
->bpp
= fb
->bits_per_pixel
;
2643 r
->pitch
= fb
->pitches
[0];
2644 if (fb
->funcs
->create_handle
) {
2645 if (file_priv
->is_master
|| capable(CAP_SYS_ADMIN
)) {
2646 ret
= fb
->funcs
->create_handle(fb
, file_priv
,
2649 /* GET_FB() is an unprivileged ioctl so we must not
2650 * return a buffer-handle to non-master processes! For
2651 * backwards-compatibility reasons, we cannot make
2652 * GET_FB() privileged, so just return an invalid handle
2653 * for non-masters. */
2661 drm_framebuffer_unreference(fb
);
2666 int drm_mode_dirtyfb_ioctl(struct drm_device
*dev
,
2667 void *data
, struct drm_file
*file_priv
)
2669 struct drm_clip_rect __user
*clips_ptr
;
2670 struct drm_clip_rect
*clips
= NULL
;
2671 struct drm_mode_fb_dirty_cmd
*r
= data
;
2672 struct drm_framebuffer
*fb
;
2677 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
2680 fb
= drm_framebuffer_lookup(dev
, r
->fb_id
);
2684 num_clips
= r
->num_clips
;
2685 clips_ptr
= (struct drm_clip_rect __user
*)(unsigned long)r
->clips_ptr
;
2687 if (!num_clips
!= !clips_ptr
) {
2692 flags
= DRM_MODE_FB_DIRTY_FLAGS
& r
->flags
;
2694 /* If userspace annotates copy, clips must come in pairs */
2695 if (flags
& DRM_MODE_FB_DIRTY_ANNOTATE_COPY
&& (num_clips
% 2)) {
2700 if (num_clips
&& clips_ptr
) {
2701 if (num_clips
< 0 || num_clips
> DRM_MODE_FB_DIRTY_MAX_CLIPS
) {
2705 clips
= kzalloc(num_clips
* sizeof(*clips
), GFP_KERNEL
);
2711 ret
= copy_from_user(clips
, clips_ptr
,
2712 num_clips
* sizeof(*clips
));
2719 if (fb
->funcs
->dirty
) {
2720 drm_modeset_lock_all(dev
);
2721 ret
= fb
->funcs
->dirty(fb
, file_priv
, flags
, r
->color
,
2723 drm_modeset_unlock_all(dev
);
2731 drm_framebuffer_unreference(fb
);
2738 * drm_fb_release - remove and free the FBs on this file
2739 * @priv: drm file for the ioctl
2741 * Destroy all the FBs associated with @filp.
2743 * Called by the user via ioctl.
2746 * Zero on success, errno on failure.
2748 void drm_fb_release(struct drm_file
*priv
)
2750 struct drm_device
*dev
= priv
->minor
->dev
;
2751 struct drm_framebuffer
*fb
, *tfb
;
2753 mutex_lock(&priv
->fbs_lock
);
2754 list_for_each_entry_safe(fb
, tfb
, &priv
->fbs
, filp_head
) {
2756 mutex_lock(&dev
->mode_config
.fb_lock
);
2757 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2758 __drm_framebuffer_unregister(dev
, fb
);
2759 mutex_unlock(&dev
->mode_config
.fb_lock
);
2761 list_del_init(&fb
->filp_head
);
2763 /* This will also drop the fpriv->fbs reference. */
2764 drm_framebuffer_remove(fb
);
2766 mutex_unlock(&priv
->fbs_lock
);
2769 struct drm_property
*drm_property_create(struct drm_device
*dev
, int flags
,
2770 const char *name
, int num_values
)
2772 struct drm_property
*property
= NULL
;
2775 property
= kzalloc(sizeof(struct drm_property
), GFP_KERNEL
);
2780 property
->values
= kzalloc(sizeof(uint64_t)*num_values
, GFP_KERNEL
);
2781 if (!property
->values
)
2785 ret
= drm_mode_object_get(dev
, &property
->base
, DRM_MODE_OBJECT_PROPERTY
);
2789 property
->flags
= flags
;
2790 property
->num_values
= num_values
;
2791 INIT_LIST_HEAD(&property
->enum_blob_list
);
2794 strncpy(property
->name
, name
, DRM_PROP_NAME_LEN
);
2795 property
->name
[DRM_PROP_NAME_LEN
-1] = '\0';
2798 list_add_tail(&property
->head
, &dev
->mode_config
.property_list
);
2801 kfree(property
->values
);
2805 EXPORT_SYMBOL(drm_property_create
);
2807 struct drm_property
*drm_property_create_enum(struct drm_device
*dev
, int flags
,
2809 const struct drm_prop_enum_list
*props
,
2812 struct drm_property
*property
;
2815 flags
|= DRM_MODE_PROP_ENUM
;
2817 property
= drm_property_create(dev
, flags
, name
, num_values
);
2821 for (i
= 0; i
< num_values
; i
++) {
2822 ret
= drm_property_add_enum(property
, i
,
2826 drm_property_destroy(dev
, property
);
2833 EXPORT_SYMBOL(drm_property_create_enum
);
2835 struct drm_property
*drm_property_create_bitmask(struct drm_device
*dev
,
2836 int flags
, const char *name
,
2837 const struct drm_prop_enum_list
*props
,
2840 struct drm_property
*property
;
2843 flags
|= DRM_MODE_PROP_BITMASK
;
2845 property
= drm_property_create(dev
, flags
, name
, num_values
);
2849 for (i
= 0; i
< num_values
; i
++) {
2850 ret
= drm_property_add_enum(property
, i
,
2854 drm_property_destroy(dev
, property
);
2861 EXPORT_SYMBOL(drm_property_create_bitmask
);
2863 struct drm_property
*drm_property_create_range(struct drm_device
*dev
, int flags
,
2865 uint64_t min
, uint64_t max
)
2867 struct drm_property
*property
;
2869 flags
|= DRM_MODE_PROP_RANGE
;
2871 property
= drm_property_create(dev
, flags
, name
, 2);
2875 property
->values
[0] = min
;
2876 property
->values
[1] = max
;
2880 EXPORT_SYMBOL(drm_property_create_range
);
2882 int drm_property_add_enum(struct drm_property
*property
, int index
,
2883 uint64_t value
, const char *name
)
2885 struct drm_property_enum
*prop_enum
;
2887 if (!(property
->flags
& (DRM_MODE_PROP_ENUM
| DRM_MODE_PROP_BITMASK
)))
2891 * Bitmask enum properties have the additional constraint of values
2894 if ((property
->flags
& DRM_MODE_PROP_BITMASK
) && (value
> 63))
2897 if (!list_empty(&property
->enum_blob_list
)) {
2898 list_for_each_entry(prop_enum
, &property
->enum_blob_list
, head
) {
2899 if (prop_enum
->value
== value
) {
2900 strncpy(prop_enum
->name
, name
, DRM_PROP_NAME_LEN
);
2901 prop_enum
->name
[DRM_PROP_NAME_LEN
-1] = '\0';
2907 prop_enum
= kzalloc(sizeof(struct drm_property_enum
), GFP_KERNEL
);
2911 strncpy(prop_enum
->name
, name
, DRM_PROP_NAME_LEN
);
2912 prop_enum
->name
[DRM_PROP_NAME_LEN
-1] = '\0';
2913 prop_enum
->value
= value
;
2915 property
->values
[index
] = value
;
2916 list_add_tail(&prop_enum
->head
, &property
->enum_blob_list
);
2919 EXPORT_SYMBOL(drm_property_add_enum
);
2921 void drm_property_destroy(struct drm_device
*dev
, struct drm_property
*property
)
2923 struct drm_property_enum
*prop_enum
, *pt
;
2925 list_for_each_entry_safe(prop_enum
, pt
, &property
->enum_blob_list
, head
) {
2926 list_del(&prop_enum
->head
);
2930 if (property
->num_values
)
2931 kfree(property
->values
);
2932 drm_mode_object_put(dev
, &property
->base
);
2933 list_del(&property
->head
);
2936 EXPORT_SYMBOL(drm_property_destroy
);
2938 void drm_object_attach_property(struct drm_mode_object
*obj
,
2939 struct drm_property
*property
,
2942 int count
= obj
->properties
->count
;
2944 if (count
== DRM_OBJECT_MAX_PROPERTY
) {
2945 WARN(1, "Failed to attach object property (type: 0x%x). Please "
2946 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
2947 "you see this message on the same object type.\n",
2952 obj
->properties
->ids
[count
] = property
->base
.id
;
2953 obj
->properties
->values
[count
] = init_val
;
2954 obj
->properties
->count
++;
2956 EXPORT_SYMBOL(drm_object_attach_property
);
2958 int drm_object_property_set_value(struct drm_mode_object
*obj
,
2959 struct drm_property
*property
, uint64_t val
)
2963 for (i
= 0; i
< obj
->properties
->count
; i
++) {
2964 if (obj
->properties
->ids
[i
] == property
->base
.id
) {
2965 obj
->properties
->values
[i
] = val
;
2972 EXPORT_SYMBOL(drm_object_property_set_value
);
2974 int drm_object_property_get_value(struct drm_mode_object
*obj
,
2975 struct drm_property
*property
, uint64_t *val
)
2979 for (i
= 0; i
< obj
->properties
->count
; i
++) {
2980 if (obj
->properties
->ids
[i
] == property
->base
.id
) {
2981 *val
= obj
->properties
->values
[i
];
2988 EXPORT_SYMBOL(drm_object_property_get_value
);
2990 int drm_mode_getproperty_ioctl(struct drm_device
*dev
,
2991 void *data
, struct drm_file
*file_priv
)
2993 struct drm_mode_object
*obj
;
2994 struct drm_mode_get_property
*out_resp
= data
;
2995 struct drm_property
*property
;
2998 int value_count
= 0;
3001 struct drm_property_enum
*prop_enum
;
3002 struct drm_mode_property_enum __user
*enum_ptr
;
3003 struct drm_property_blob
*prop_blob
;
3004 uint32_t __user
*blob_id_ptr
;
3005 uint64_t __user
*values_ptr
;
3006 uint32_t __user
*blob_length_ptr
;
3008 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
3011 drm_modeset_lock_all(dev
);
3012 obj
= drm_mode_object_find(dev
, out_resp
->prop_id
, DRM_MODE_OBJECT_PROPERTY
);
3017 property
= obj_to_property(obj
);
3019 if (property
->flags
& (DRM_MODE_PROP_ENUM
| DRM_MODE_PROP_BITMASK
)) {
3020 list_for_each_entry(prop_enum
, &property
->enum_blob_list
, head
)
3022 } else if (property
->flags
& DRM_MODE_PROP_BLOB
) {
3023 list_for_each_entry(prop_blob
, &property
->enum_blob_list
, head
)
3027 value_count
= property
->num_values
;
3029 strncpy(out_resp
->name
, property
->name
, DRM_PROP_NAME_LEN
);
3030 out_resp
->name
[DRM_PROP_NAME_LEN
-1] = 0;
3031 out_resp
->flags
= property
->flags
;
3033 if ((out_resp
->count_values
>= value_count
) && value_count
) {
3034 values_ptr
= (uint64_t __user
*)(unsigned long)out_resp
->values_ptr
;
3035 for (i
= 0; i
< value_count
; i
++) {
3036 if (copy_to_user(values_ptr
+ i
, &property
->values
[i
], sizeof(uint64_t))) {
3042 out_resp
->count_values
= value_count
;
3044 if (property
->flags
& (DRM_MODE_PROP_ENUM
| DRM_MODE_PROP_BITMASK
)) {
3045 if ((out_resp
->count_enum_blobs
>= enum_count
) && enum_count
) {
3047 enum_ptr
= (struct drm_mode_property_enum __user
*)(unsigned long)out_resp
->enum_blob_ptr
;
3048 list_for_each_entry(prop_enum
, &property
->enum_blob_list
, head
) {
3050 if (copy_to_user(&enum_ptr
[copied
].value
, &prop_enum
->value
, sizeof(uint64_t))) {
3055 if (copy_to_user(&enum_ptr
[copied
].name
,
3056 &prop_enum
->name
, DRM_PROP_NAME_LEN
)) {
3063 out_resp
->count_enum_blobs
= enum_count
;
3066 if (property
->flags
& DRM_MODE_PROP_BLOB
) {
3067 if ((out_resp
->count_enum_blobs
>= blob_count
) && blob_count
) {
3069 blob_id_ptr
= (uint32_t __user
*)(unsigned long)out_resp
->enum_blob_ptr
;
3070 blob_length_ptr
= (uint32_t __user
*)(unsigned long)out_resp
->values_ptr
;
3072 list_for_each_entry(prop_blob
, &property
->enum_blob_list
, head
) {
3073 if (put_user(prop_blob
->base
.id
, blob_id_ptr
+ copied
)) {
3078 if (put_user(prop_blob
->length
, blob_length_ptr
+ copied
)) {
3086 out_resp
->count_enum_blobs
= blob_count
;
3089 drm_modeset_unlock_all(dev
);
3093 static struct drm_property_blob
*drm_property_create_blob(struct drm_device
*dev
, int length
,
3096 struct drm_property_blob
*blob
;
3099 if (!length
|| !data
)
3102 blob
= kzalloc(sizeof(struct drm_property_blob
)+length
, GFP_KERNEL
);
3106 ret
= drm_mode_object_get(dev
, &blob
->base
, DRM_MODE_OBJECT_BLOB
);
3112 blob
->length
= length
;
3114 memcpy(blob
->data
, data
, length
);
3116 list_add_tail(&blob
->head
, &dev
->mode_config
.property_blob_list
);
3120 static void drm_property_destroy_blob(struct drm_device
*dev
,
3121 struct drm_property_blob
*blob
)
3123 drm_mode_object_put(dev
, &blob
->base
);
3124 list_del(&blob
->head
);
3128 int drm_mode_getblob_ioctl(struct drm_device
*dev
,
3129 void *data
, struct drm_file
*file_priv
)
3131 struct drm_mode_object
*obj
;
3132 struct drm_mode_get_blob
*out_resp
= data
;
3133 struct drm_property_blob
*blob
;
3135 void __user
*blob_ptr
;
3137 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
3140 drm_modeset_lock_all(dev
);
3141 obj
= drm_mode_object_find(dev
, out_resp
->blob_id
, DRM_MODE_OBJECT_BLOB
);
3146 blob
= obj_to_blob(obj
);
3148 if (out_resp
->length
== blob
->length
) {
3149 blob_ptr
= (void __user
*)(unsigned long)out_resp
->data
;
3150 if (copy_to_user(blob_ptr
, blob
->data
, blob
->length
)){
3155 out_resp
->length
= blob
->length
;
3158 drm_modeset_unlock_all(dev
);
3162 int drm_mode_connector_update_edid_property(struct drm_connector
*connector
,
3165 struct drm_device
*dev
= connector
->dev
;
3168 if (connector
->edid_blob_ptr
)
3169 drm_property_destroy_blob(dev
, connector
->edid_blob_ptr
);
3171 /* Delete edid, when there is none. */
3173 connector
->edid_blob_ptr
= NULL
;
3174 ret
= drm_object_property_set_value(&connector
->base
, dev
->mode_config
.edid_property
, 0);
3178 size
= EDID_LENGTH
* (1 + edid
->extensions
);
3179 connector
->edid_blob_ptr
= drm_property_create_blob(connector
->dev
,
3181 if (!connector
->edid_blob_ptr
)
3184 ret
= drm_object_property_set_value(&connector
->base
,
3185 dev
->mode_config
.edid_property
,
3186 connector
->edid_blob_ptr
->base
.id
);
3190 EXPORT_SYMBOL(drm_mode_connector_update_edid_property
);
3192 static bool drm_property_change_is_valid(struct drm_property
*property
,
3195 if (property
->flags
& DRM_MODE_PROP_IMMUTABLE
)
3197 if (property
->flags
& DRM_MODE_PROP_RANGE
) {
3198 if (value
< property
->values
[0] || value
> property
->values
[1])
3201 } else if (property
->flags
& DRM_MODE_PROP_BITMASK
) {
3203 uint64_t valid_mask
= 0;
3204 for (i
= 0; i
< property
->num_values
; i
++)
3205 valid_mask
|= (1ULL << property
->values
[i
]);
3206 return !(value
& ~valid_mask
);
3207 } else if (property
->flags
& DRM_MODE_PROP_BLOB
) {
3208 /* Only the driver knows */
3212 for (i
= 0; i
< property
->num_values
; i
++)
3213 if (property
->values
[i
] == value
)
3219 int drm_mode_connector_property_set_ioctl(struct drm_device
*dev
,
3220 void *data
, struct drm_file
*file_priv
)
3222 struct drm_mode_connector_set_property
*conn_set_prop
= data
;
3223 struct drm_mode_obj_set_property obj_set_prop
= {
3224 .value
= conn_set_prop
->value
,
3225 .prop_id
= conn_set_prop
->prop_id
,
3226 .obj_id
= conn_set_prop
->connector_id
,
3227 .obj_type
= DRM_MODE_OBJECT_CONNECTOR
3230 /* It does all the locking and checking we need */
3231 return drm_mode_obj_set_property_ioctl(dev
, &obj_set_prop
, file_priv
);
3234 static int drm_mode_connector_set_obj_prop(struct drm_mode_object
*obj
,
3235 struct drm_property
*property
,
3239 struct drm_connector
*connector
= obj_to_connector(obj
);
3241 /* Do DPMS ourselves */
3242 if (property
== connector
->dev
->mode_config
.dpms_property
) {
3243 if (connector
->funcs
->dpms
)
3244 (*connector
->funcs
->dpms
)(connector
, (int)value
);
3246 } else if (connector
->funcs
->set_property
)
3247 ret
= connector
->funcs
->set_property(connector
, property
, value
);
3249 /* store the property value if successful */
3251 drm_object_property_set_value(&connector
->base
, property
, value
);
3255 static int drm_mode_crtc_set_obj_prop(struct drm_mode_object
*obj
,
3256 struct drm_property
*property
,
3260 struct drm_crtc
*crtc
= obj_to_crtc(obj
);
3262 if (crtc
->funcs
->set_property
)
3263 ret
= crtc
->funcs
->set_property(crtc
, property
, value
);
3265 drm_object_property_set_value(obj
, property
, value
);
3270 static int drm_mode_plane_set_obj_prop(struct drm_mode_object
*obj
,
3271 struct drm_property
*property
,
3275 struct drm_plane
*plane
= obj_to_plane(obj
);
3277 if (plane
->funcs
->set_property
)
3278 ret
= plane
->funcs
->set_property(plane
, property
, value
);
3280 drm_object_property_set_value(obj
, property
, value
);
3285 int drm_mode_obj_get_properties_ioctl(struct drm_device
*dev
, void *data
,
3286 struct drm_file
*file_priv
)
3288 struct drm_mode_obj_get_properties
*arg
= data
;
3289 struct drm_mode_object
*obj
;
3293 int props_count
= 0;
3294 uint32_t __user
*props_ptr
;
3295 uint64_t __user
*prop_values_ptr
;
3297 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
3300 drm_modeset_lock_all(dev
);
3302 obj
= drm_mode_object_find(dev
, arg
->obj_id
, arg
->obj_type
);
3307 if (!obj
->properties
) {
3312 props_count
= obj
->properties
->count
;
3314 /* This ioctl is called twice, once to determine how much space is
3315 * needed, and the 2nd time to fill it. */
3316 if ((arg
->count_props
>= props_count
) && props_count
) {
3318 props_ptr
= (uint32_t __user
*)(unsigned long)(arg
->props_ptr
);
3319 prop_values_ptr
= (uint64_t __user
*)(unsigned long)
3320 (arg
->prop_values_ptr
);
3321 for (i
= 0; i
< props_count
; i
++) {
3322 if (put_user(obj
->properties
->ids
[i
],
3323 props_ptr
+ copied
)) {
3327 if (put_user(obj
->properties
->values
[i
],
3328 prop_values_ptr
+ copied
)) {
3335 arg
->count_props
= props_count
;
3337 drm_modeset_unlock_all(dev
);
3341 int drm_mode_obj_set_property_ioctl(struct drm_device
*dev
, void *data
,
3342 struct drm_file
*file_priv
)
3344 struct drm_mode_obj_set_property
*arg
= data
;
3345 struct drm_mode_object
*arg_obj
;
3346 struct drm_mode_object
*prop_obj
;
3347 struct drm_property
*property
;
3351 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
3354 drm_modeset_lock_all(dev
);
3356 arg_obj
= drm_mode_object_find(dev
, arg
->obj_id
, arg
->obj_type
);
3359 if (!arg_obj
->properties
)
3362 for (i
= 0; i
< arg_obj
->properties
->count
; i
++)
3363 if (arg_obj
->properties
->ids
[i
] == arg
->prop_id
)
3366 if (i
== arg_obj
->properties
->count
)
3369 prop_obj
= drm_mode_object_find(dev
, arg
->prop_id
,
3370 DRM_MODE_OBJECT_PROPERTY
);
3373 property
= obj_to_property(prop_obj
);
3375 if (!drm_property_change_is_valid(property
, arg
->value
))
3378 switch (arg_obj
->type
) {
3379 case DRM_MODE_OBJECT_CONNECTOR
:
3380 ret
= drm_mode_connector_set_obj_prop(arg_obj
, property
,
3383 case DRM_MODE_OBJECT_CRTC
:
3384 ret
= drm_mode_crtc_set_obj_prop(arg_obj
, property
, arg
->value
);
3386 case DRM_MODE_OBJECT_PLANE
:
3387 ret
= drm_mode_plane_set_obj_prop(arg_obj
, property
, arg
->value
);
3392 drm_modeset_unlock_all(dev
);
3396 int drm_mode_connector_attach_encoder(struct drm_connector
*connector
,
3397 struct drm_encoder
*encoder
)
3401 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++) {
3402 if (connector
->encoder_ids
[i
] == 0) {
3403 connector
->encoder_ids
[i
] = encoder
->base
.id
;
3409 EXPORT_SYMBOL(drm_mode_connector_attach_encoder
);
3411 void drm_mode_connector_detach_encoder(struct drm_connector
*connector
,
3412 struct drm_encoder
*encoder
)
3415 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++) {
3416 if (connector
->encoder_ids
[i
] == encoder
->base
.id
) {
3417 connector
->encoder_ids
[i
] = 0;
3418 if (connector
->encoder
== encoder
)
3419 connector
->encoder
= NULL
;
3424 EXPORT_SYMBOL(drm_mode_connector_detach_encoder
);
3426 int drm_mode_crtc_set_gamma_size(struct drm_crtc
*crtc
,
3429 crtc
->gamma_size
= gamma_size
;
3431 crtc
->gamma_store
= kzalloc(gamma_size
* sizeof(uint16_t) * 3, GFP_KERNEL
);
3432 if (!crtc
->gamma_store
) {
3433 crtc
->gamma_size
= 0;
3439 EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size
);
3441 int drm_mode_gamma_set_ioctl(struct drm_device
*dev
,
3442 void *data
, struct drm_file
*file_priv
)
3444 struct drm_mode_crtc_lut
*crtc_lut
= data
;
3445 struct drm_mode_object
*obj
;
3446 struct drm_crtc
*crtc
;
3447 void *r_base
, *g_base
, *b_base
;
3451 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
3454 drm_modeset_lock_all(dev
);
3455 obj
= drm_mode_object_find(dev
, crtc_lut
->crtc_id
, DRM_MODE_OBJECT_CRTC
);
3460 crtc
= obj_to_crtc(obj
);
3462 if (crtc
->funcs
->gamma_set
== NULL
) {
3467 /* memcpy into gamma store */
3468 if (crtc_lut
->gamma_size
!= crtc
->gamma_size
) {
3473 size
= crtc_lut
->gamma_size
* (sizeof(uint16_t));
3474 r_base
= crtc
->gamma_store
;
3475 if (copy_from_user(r_base
, (void __user
*)(unsigned long)crtc_lut
->red
, size
)) {
3480 g_base
= r_base
+ size
;
3481 if (copy_from_user(g_base
, (void __user
*)(unsigned long)crtc_lut
->green
, size
)) {
3486 b_base
= g_base
+ size
;
3487 if (copy_from_user(b_base
, (void __user
*)(unsigned long)crtc_lut
->blue
, size
)) {
3492 crtc
->funcs
->gamma_set(crtc
, r_base
, g_base
, b_base
, 0, crtc
->gamma_size
);
3495 drm_modeset_unlock_all(dev
);
3500 int drm_mode_gamma_get_ioctl(struct drm_device
*dev
,
3501 void *data
, struct drm_file
*file_priv
)
3503 struct drm_mode_crtc_lut
*crtc_lut
= data
;
3504 struct drm_mode_object
*obj
;
3505 struct drm_crtc
*crtc
;
3506 void *r_base
, *g_base
, *b_base
;
3510 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
3513 drm_modeset_lock_all(dev
);
3514 obj
= drm_mode_object_find(dev
, crtc_lut
->crtc_id
, DRM_MODE_OBJECT_CRTC
);
3519 crtc
= obj_to_crtc(obj
);
3521 /* memcpy into gamma store */
3522 if (crtc_lut
->gamma_size
!= crtc
->gamma_size
) {
3527 size
= crtc_lut
->gamma_size
* (sizeof(uint16_t));
3528 r_base
= crtc
->gamma_store
;
3529 if (copy_to_user((void __user
*)(unsigned long)crtc_lut
->red
, r_base
, size
)) {
3534 g_base
= r_base
+ size
;
3535 if (copy_to_user((void __user
*)(unsigned long)crtc_lut
->green
, g_base
, size
)) {
3540 b_base
= g_base
+ size
;
3541 if (copy_to_user((void __user
*)(unsigned long)crtc_lut
->blue
, b_base
, size
)) {
3546 drm_modeset_unlock_all(dev
);
3550 int drm_mode_page_flip_ioctl(struct drm_device
*dev
,
3551 void *data
, struct drm_file
*file_priv
)
3553 struct drm_mode_crtc_page_flip
*page_flip
= data
;
3554 struct drm_mode_object
*obj
;
3555 struct drm_crtc
*crtc
;
3556 struct drm_framebuffer
*fb
= NULL
, *old_fb
= NULL
;
3557 struct drm_pending_vblank_event
*e
= NULL
;
3558 unsigned long flags
;
3559 int hdisplay
, vdisplay
;
3562 if (page_flip
->flags
& ~DRM_MODE_PAGE_FLIP_FLAGS
||
3563 page_flip
->reserved
!= 0)
3566 if ((page_flip
->flags
& DRM_MODE_PAGE_FLIP_ASYNC
) && !dev
->mode_config
.async_page_flip
)
3569 obj
= drm_mode_object_find(dev
, page_flip
->crtc_id
, DRM_MODE_OBJECT_CRTC
);
3572 crtc
= obj_to_crtc(obj
);
3574 mutex_lock(&crtc
->mutex
);
3575 if (crtc
->fb
== NULL
) {
3576 /* The framebuffer is currently unbound, presumably
3577 * due to a hotplug event, that userspace has not
3584 if (crtc
->funcs
->page_flip
== NULL
)
3587 fb
= drm_framebuffer_lookup(dev
, page_flip
->fb_id
);
3591 hdisplay
= crtc
->mode
.hdisplay
;
3592 vdisplay
= crtc
->mode
.vdisplay
;
3594 if (crtc
->invert_dimensions
)
3595 swap(hdisplay
, vdisplay
);
3597 if (hdisplay
> fb
->width
||
3598 vdisplay
> fb
->height
||
3599 crtc
->x
> fb
->width
- hdisplay
||
3600 crtc
->y
> fb
->height
- vdisplay
) {
3601 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
3602 fb
->width
, fb
->height
, hdisplay
, vdisplay
, crtc
->x
, crtc
->y
,
3603 crtc
->invert_dimensions
? " (inverted)" : "");
3608 if (crtc
->fb
->pixel_format
!= fb
->pixel_format
) {
3609 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
3614 if (page_flip
->flags
& DRM_MODE_PAGE_FLIP_EVENT
) {
3616 spin_lock_irqsave(&dev
->event_lock
, flags
);
3617 if (file_priv
->event_space
< sizeof e
->event
) {
3618 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
3621 file_priv
->event_space
-= sizeof e
->event
;
3622 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
3624 e
= kzalloc(sizeof *e
, GFP_KERNEL
);
3626 spin_lock_irqsave(&dev
->event_lock
, flags
);
3627 file_priv
->event_space
+= sizeof e
->event
;
3628 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
3632 e
->event
.base
.type
= DRM_EVENT_FLIP_COMPLETE
;
3633 e
->event
.base
.length
= sizeof e
->event
;
3634 e
->event
.user_data
= page_flip
->user_data
;
3635 e
->base
.event
= &e
->event
.base
;
3636 e
->base
.file_priv
= file_priv
;
3638 (void (*) (struct drm_pending_event
*)) kfree
;
3642 ret
= crtc
->funcs
->page_flip(crtc
, fb
, e
, page_flip
->flags
);
3644 if (page_flip
->flags
& DRM_MODE_PAGE_FLIP_EVENT
) {
3645 spin_lock_irqsave(&dev
->event_lock
, flags
);
3646 file_priv
->event_space
+= sizeof e
->event
;
3647 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
3650 /* Keep the old fb, don't unref it. */
3654 * Warn if the driver hasn't properly updated the crtc->fb
3655 * field to reflect that the new framebuffer is now used.
3656 * Failing to do so will screw with the reference counting
3659 WARN_ON(crtc
->fb
!= fb
);
3660 /* Unref only the old framebuffer. */
3666 drm_framebuffer_unreference(fb
);
3668 drm_framebuffer_unreference(old_fb
);
3669 mutex_unlock(&crtc
->mutex
);
3674 void drm_mode_config_reset(struct drm_device
*dev
)
3676 struct drm_crtc
*crtc
;
3677 struct drm_encoder
*encoder
;
3678 struct drm_connector
*connector
;
3680 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
3681 if (crtc
->funcs
->reset
)
3682 crtc
->funcs
->reset(crtc
);
3684 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
)
3685 if (encoder
->funcs
->reset
)
3686 encoder
->funcs
->reset(encoder
);
3688 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
3689 connector
->status
= connector_status_unknown
;
3691 if (connector
->funcs
->reset
)
3692 connector
->funcs
->reset(connector
);
3695 EXPORT_SYMBOL(drm_mode_config_reset
);
3697 int drm_mode_create_dumb_ioctl(struct drm_device
*dev
,
3698 void *data
, struct drm_file
*file_priv
)
3700 struct drm_mode_create_dumb
*args
= data
;
3702 if (!dev
->driver
->dumb_create
)
3704 return dev
->driver
->dumb_create(file_priv
, dev
, args
);
3707 int drm_mode_mmap_dumb_ioctl(struct drm_device
*dev
,
3708 void *data
, struct drm_file
*file_priv
)
3710 struct drm_mode_map_dumb
*args
= data
;
3712 /* call driver ioctl to get mmap offset */
3713 if (!dev
->driver
->dumb_map_offset
)
3716 return dev
->driver
->dumb_map_offset(file_priv
, dev
, args
->handle
, &args
->offset
);
3719 int drm_mode_destroy_dumb_ioctl(struct drm_device
*dev
,
3720 void *data
, struct drm_file
*file_priv
)
3722 struct drm_mode_destroy_dumb
*args
= data
;
3724 if (!dev
->driver
->dumb_destroy
)
3727 return dev
->driver
->dumb_destroy(file_priv
, dev
, args
->handle
);
3731 * Just need to support RGB formats here for compat with code that doesn't
3732 * use pixel formats directly yet.
3734 void drm_fb_get_bpp_depth(uint32_t format
, unsigned int *depth
,
3739 case DRM_FORMAT_RGB332
:
3740 case DRM_FORMAT_BGR233
:
3744 case DRM_FORMAT_XRGB1555
:
3745 case DRM_FORMAT_XBGR1555
:
3746 case DRM_FORMAT_RGBX5551
:
3747 case DRM_FORMAT_BGRX5551
:
3748 case DRM_FORMAT_ARGB1555
:
3749 case DRM_FORMAT_ABGR1555
:
3750 case DRM_FORMAT_RGBA5551
:
3751 case DRM_FORMAT_BGRA5551
:
3755 case DRM_FORMAT_RGB565
:
3756 case DRM_FORMAT_BGR565
:
3760 case DRM_FORMAT_RGB888
:
3761 case DRM_FORMAT_BGR888
:
3765 case DRM_FORMAT_XRGB8888
:
3766 case DRM_FORMAT_XBGR8888
:
3767 case DRM_FORMAT_RGBX8888
:
3768 case DRM_FORMAT_BGRX8888
:
3772 case DRM_FORMAT_XRGB2101010
:
3773 case DRM_FORMAT_XBGR2101010
:
3774 case DRM_FORMAT_RGBX1010102
:
3775 case DRM_FORMAT_BGRX1010102
:
3776 case DRM_FORMAT_ARGB2101010
:
3777 case DRM_FORMAT_ABGR2101010
:
3778 case DRM_FORMAT_RGBA1010102
:
3779 case DRM_FORMAT_BGRA1010102
:
3783 case DRM_FORMAT_ARGB8888
:
3784 case DRM_FORMAT_ABGR8888
:
3785 case DRM_FORMAT_RGBA8888
:
3786 case DRM_FORMAT_BGRA8888
:
3791 DRM_DEBUG_KMS("unsupported pixel format\n");
3797 EXPORT_SYMBOL(drm_fb_get_bpp_depth
);
3800 * drm_format_num_planes - get the number of planes for format
3801 * @format: pixel format (DRM_FORMAT_*)
3804 * The number of planes used by the specified pixel format.
3806 int drm_format_num_planes(uint32_t format
)
3809 case DRM_FORMAT_YUV410
:
3810 case DRM_FORMAT_YVU410
:
3811 case DRM_FORMAT_YUV411
:
3812 case DRM_FORMAT_YVU411
:
3813 case DRM_FORMAT_YUV420
:
3814 case DRM_FORMAT_YVU420
:
3815 case DRM_FORMAT_YUV422
:
3816 case DRM_FORMAT_YVU422
:
3817 case DRM_FORMAT_YUV444
:
3818 case DRM_FORMAT_YVU444
:
3820 case DRM_FORMAT_NV12
:
3821 case DRM_FORMAT_NV21
:
3822 case DRM_FORMAT_NV16
:
3823 case DRM_FORMAT_NV61
:
3824 case DRM_FORMAT_NV24
:
3825 case DRM_FORMAT_NV42
:
3831 EXPORT_SYMBOL(drm_format_num_planes
);
3834 * drm_format_plane_cpp - determine the bytes per pixel value
3835 * @format: pixel format (DRM_FORMAT_*)
3836 * @plane: plane index
3839 * The bytes per pixel value for the specified plane.
3841 int drm_format_plane_cpp(uint32_t format
, int plane
)
3846 if (plane
>= drm_format_num_planes(format
))
3850 case DRM_FORMAT_YUYV
:
3851 case DRM_FORMAT_YVYU
:
3852 case DRM_FORMAT_UYVY
:
3853 case DRM_FORMAT_VYUY
:
3855 case DRM_FORMAT_NV12
:
3856 case DRM_FORMAT_NV21
:
3857 case DRM_FORMAT_NV16
:
3858 case DRM_FORMAT_NV61
:
3859 case DRM_FORMAT_NV24
:
3860 case DRM_FORMAT_NV42
:
3861 return plane
? 2 : 1;
3862 case DRM_FORMAT_YUV410
:
3863 case DRM_FORMAT_YVU410
:
3864 case DRM_FORMAT_YUV411
:
3865 case DRM_FORMAT_YVU411
:
3866 case DRM_FORMAT_YUV420
:
3867 case DRM_FORMAT_YVU420
:
3868 case DRM_FORMAT_YUV422
:
3869 case DRM_FORMAT_YVU422
:
3870 case DRM_FORMAT_YUV444
:
3871 case DRM_FORMAT_YVU444
:
3874 drm_fb_get_bpp_depth(format
, &depth
, &bpp
);
3878 EXPORT_SYMBOL(drm_format_plane_cpp
);
3881 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
3882 * @format: pixel format (DRM_FORMAT_*)
3885 * The horizontal chroma subsampling factor for the
3886 * specified pixel format.
3888 int drm_format_horz_chroma_subsampling(uint32_t format
)
3891 case DRM_FORMAT_YUV411
:
3892 case DRM_FORMAT_YVU411
:
3893 case DRM_FORMAT_YUV410
:
3894 case DRM_FORMAT_YVU410
:
3896 case DRM_FORMAT_YUYV
:
3897 case DRM_FORMAT_YVYU
:
3898 case DRM_FORMAT_UYVY
:
3899 case DRM_FORMAT_VYUY
:
3900 case DRM_FORMAT_NV12
:
3901 case DRM_FORMAT_NV21
:
3902 case DRM_FORMAT_NV16
:
3903 case DRM_FORMAT_NV61
:
3904 case DRM_FORMAT_YUV422
:
3905 case DRM_FORMAT_YVU422
:
3906 case DRM_FORMAT_YUV420
:
3907 case DRM_FORMAT_YVU420
:
3913 EXPORT_SYMBOL(drm_format_horz_chroma_subsampling
);
3916 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
3917 * @format: pixel format (DRM_FORMAT_*)
3920 * The vertical chroma subsampling factor for the
3921 * specified pixel format.
3923 int drm_format_vert_chroma_subsampling(uint32_t format
)
3926 case DRM_FORMAT_YUV410
:
3927 case DRM_FORMAT_YVU410
:
3929 case DRM_FORMAT_YUV420
:
3930 case DRM_FORMAT_YVU420
:
3931 case DRM_FORMAT_NV12
:
3932 case DRM_FORMAT_NV21
:
3938 EXPORT_SYMBOL(drm_format_vert_chroma_subsampling
);
3941 * drm_mode_config_init - initialize DRM mode_configuration structure
3944 * Initialize @dev's mode_config structure, used for tracking the graphics
3945 * configuration of @dev.
3947 * Since this initializes the modeset locks, no locking is possible. Which is no
3948 * problem, since this should happen single threaded at init time. It is the
3949 * driver's problem to ensure this guarantee.
3952 void drm_mode_config_init(struct drm_device
*dev
)
3954 mutex_init(&dev
->mode_config
.mutex
);
3955 mutex_init(&dev
->mode_config
.idr_mutex
);
3956 mutex_init(&dev
->mode_config
.fb_lock
);
3957 INIT_LIST_HEAD(&dev
->mode_config
.fb_list
);
3958 INIT_LIST_HEAD(&dev
->mode_config
.crtc_list
);
3959 INIT_LIST_HEAD(&dev
->mode_config
.connector_list
);
3960 INIT_LIST_HEAD(&dev
->mode_config
.bridge_list
);
3961 INIT_LIST_HEAD(&dev
->mode_config
.encoder_list
);
3962 INIT_LIST_HEAD(&dev
->mode_config
.property_list
);
3963 INIT_LIST_HEAD(&dev
->mode_config
.property_blob_list
);
3964 INIT_LIST_HEAD(&dev
->mode_config
.plane_list
);
3965 idr_init(&dev
->mode_config
.crtc_idr
);
3967 drm_modeset_lock_all(dev
);
3968 drm_mode_create_standard_connector_properties(dev
);
3969 drm_modeset_unlock_all(dev
);
3971 /* Just to be sure */
3972 dev
->mode_config
.num_fb
= 0;
3973 dev
->mode_config
.num_connector
= 0;
3974 dev
->mode_config
.num_crtc
= 0;
3975 dev
->mode_config
.num_encoder
= 0;
3977 EXPORT_SYMBOL(drm_mode_config_init
);
3980 * drm_mode_config_cleanup - free up DRM mode_config info
3983 * Free up all the connectors and CRTCs associated with this DRM device, then
3984 * free up the framebuffers and associated buffer objects.
3986 * Note that since this /should/ happen single-threaded at driver/device
3987 * teardown time, no locking is required. It's the driver's job to ensure that
3988 * this guarantee actually holds true.
3990 * FIXME: cleanup any dangling user buffer objects too
3992 void drm_mode_config_cleanup(struct drm_device
*dev
)
3994 struct drm_connector
*connector
, *ot
;
3995 struct drm_crtc
*crtc
, *ct
;
3996 struct drm_encoder
*encoder
, *enct
;
3997 struct drm_bridge
*bridge
, *brt
;
3998 struct drm_framebuffer
*fb
, *fbt
;
3999 struct drm_property
*property
, *pt
;
4000 struct drm_property_blob
*blob
, *bt
;
4001 struct drm_plane
*plane
, *plt
;
4003 list_for_each_entry_safe(encoder
, enct
, &dev
->mode_config
.encoder_list
,
4005 encoder
->funcs
->destroy(encoder
);
4008 list_for_each_entry_safe(bridge
, brt
,
4009 &dev
->mode_config
.bridge_list
, head
) {
4010 bridge
->funcs
->destroy(bridge
);
4013 list_for_each_entry_safe(connector
, ot
,
4014 &dev
->mode_config
.connector_list
, head
) {
4015 connector
->funcs
->destroy(connector
);
4018 list_for_each_entry_safe(property
, pt
, &dev
->mode_config
.property_list
,
4020 drm_property_destroy(dev
, property
);
4023 list_for_each_entry_safe(blob
, bt
, &dev
->mode_config
.property_blob_list
,
4025 drm_property_destroy_blob(dev
, blob
);
4029 * Single-threaded teardown context, so it's not required to grab the
4030 * fb_lock to protect against concurrent fb_list access. Contrary, it
4031 * would actually deadlock with the drm_framebuffer_cleanup function.
4033 * Also, if there are any framebuffers left, that's a driver leak now,
4034 * so politely WARN about this.
4036 WARN_ON(!list_empty(&dev
->mode_config
.fb_list
));
4037 list_for_each_entry_safe(fb
, fbt
, &dev
->mode_config
.fb_list
, head
) {
4038 drm_framebuffer_remove(fb
);
4041 list_for_each_entry_safe(plane
, plt
, &dev
->mode_config
.plane_list
,
4043 plane
->funcs
->destroy(plane
);
4046 list_for_each_entry_safe(crtc
, ct
, &dev
->mode_config
.crtc_list
, head
) {
4047 crtc
->funcs
->destroy(crtc
);
4050 idr_destroy(&dev
->mode_config
.crtc_idr
);
4052 EXPORT_SYMBOL(drm_mode_config_cleanup
);