2 * Copyright (c) 2016 Intel Corporation
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23 #include <linux/slab.h>
24 #include <linux/uaccess.h>
26 #include <drm/drm_plane.h>
27 #include <drm/drm_drv.h>
28 #include <drm/drm_print.h>
29 #include <drm/drm_framebuffer.h>
30 #include <drm/drm_file.h>
31 #include <drm/drm_crtc.h>
32 #include <drm/drm_fourcc.h>
33 #include <drm/drm_managed.h>
34 #include <drm/drm_vblank.h>
36 #include "drm_crtc_internal.h"
41 * A plane represents an image source that can be blended with or overlaid on
42 * top of a CRTC during the scanout process. Planes take their input data from a
43 * &drm_framebuffer object. The plane itself specifies the cropping and scaling
44 * of that image, and where it is placed on the visible area of a display
45 * pipeline, represented by &drm_crtc. A plane can also have additional
46 * properties that specify how the pixels are positioned and blended, like
47 * rotation or Z-position. All these properties are stored in &drm_plane_state.
49 * Unless explicitly specified (via CRTC property or otherwise), the active area
50 * of a CRTC will be black by default. This means portions of the active area
51 * which are not covered by a plane will be black, and alpha blending of any
52 * planes with the CRTC background will blend with black at the lowest zpos.
54 * To create a plane, a KMS drivers allocates and zeroes an instances of
55 * &struct drm_plane (possibly as part of a larger structure) and registers it
56 * with a call to drm_universal_plane_init().
58 * Each plane has a type, see enum drm_plane_type. A plane can be compatible
59 * with multiple CRTCs, see &drm_plane.possible_crtcs.
61 * Each CRTC must have a unique primary plane userspace can attach to enable
62 * the CRTC. In other words, userspace must be able to attach a different
63 * primary plane to each CRTC at the same time. Primary planes can still be
64 * compatible with multiple CRTCs. There must be exactly as many primary planes
67 * Legacy uAPI doesn't expose the primary and cursor planes directly. DRM core
68 * relies on the driver to set the primary and optionally the cursor plane used
69 * for legacy IOCTLs. This is done by calling drm_crtc_init_with_planes(). All
70 * drivers must provide one primary plane per CRTC to avoid surprising legacy
75 * DOC: standard plane properties
77 * DRM planes have a few standardized properties:
80 * Immutable property describing the type of the plane.
82 * For user-space which has enabled the &DRM_CLIENT_CAP_ATOMIC capability,
83 * the plane type is just a hint and is mostly superseded by atomic
84 * test-only commits. The type hint can still be used to come up more
85 * easily with a plane configuration accepted by the driver.
87 * The value of this property can be one of the following:
90 * To light up a CRTC, attaching a primary plane is the most likely to
91 * work if it covers the whole CRTC and doesn't have scaling or
94 * Drivers may support more features for the primary plane, user-space
95 * can find out with test-only atomic commits.
97 * Some primary planes are implicitly used by the kernel in the legacy
98 * IOCTLs &DRM_IOCTL_MODE_SETCRTC and &DRM_IOCTL_MODE_PAGE_FLIP.
99 * Therefore user-space must not mix explicit usage of any primary
100 * plane (e.g. through an atomic commit) with these legacy IOCTLs.
103 * To enable this plane, using a framebuffer configured without scaling
104 * or cropping and with the following properties is the most likely to
107 * - If the driver provides the capabilities &DRM_CAP_CURSOR_WIDTH and
108 * &DRM_CAP_CURSOR_HEIGHT, create the framebuffer with this size.
109 * Otherwise, create a framebuffer with the size 64x64.
110 * - If the driver doesn't support modifiers, create a framebuffer with
111 * a linear layout. Otherwise, use the IN_FORMATS plane property.
113 * Drivers may support more features for the cursor plane, user-space
114 * can find out with test-only atomic commits.
116 * Some cursor planes are implicitly used by the kernel in the legacy
117 * IOCTLs &DRM_IOCTL_MODE_CURSOR and &DRM_IOCTL_MODE_CURSOR2.
118 * Therefore user-space must not mix explicit usage of any cursor
119 * plane (e.g. through an atomic commit) with these legacy IOCTLs.
121 * Some drivers may support cursors even if no cursor plane is exposed.
122 * In this case, the legacy cursor IOCTLs can be used to configure the
126 * Neither primary nor cursor.
128 * Overlay planes are the only planes exposed when the
129 * &DRM_CLIENT_CAP_UNIVERSAL_PLANES capability is disabled.
132 * Blob property which contains the set of buffer format and modifier
133 * pairs supported by this plane. The blob is a struct
134 * drm_format_modifier_blob. Without this property the plane doesn't
135 * support buffers with modifiers. Userspace cannot change this property.
137 * Note that userspace can check the &DRM_CAP_ADDFB2_MODIFIERS driver
138 * capability for general modifier support. If this flag is set then every
139 * plane will have the IN_FORMATS property, even when it only supports
140 * DRM_FORMAT_MOD_LINEAR. Before linux kernel release v5.1 there have been
141 * various bugs in this area with inconsistencies between the capability
142 * flag and per-plane properties.
145 static unsigned int drm_num_planes(struct drm_device *dev)
147 unsigned int num = 0;
148 struct drm_plane *tmp;
150 drm_for_each_plane(tmp, dev) {
158 formats_ptr(struct drm_format_modifier_blob *blob)
160 return (u32 *)(((char *)blob) + blob->formats_offset);
163 static inline struct drm_format_modifier *
164 modifiers_ptr(struct drm_format_modifier_blob *blob)
166 return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
169 static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane)
171 const struct drm_mode_config *config = &dev->mode_config;
172 struct drm_property_blob *blob;
173 struct drm_format_modifier *mod;
174 size_t blob_size, formats_size, modifiers_size;
175 struct drm_format_modifier_blob *blob_data;
178 formats_size = sizeof(__u32) * plane->format_count;
179 if (WARN_ON(!formats_size)) {
180 /* 0 formats are never expected */
185 sizeof(struct drm_format_modifier) * plane->modifier_count;
187 blob_size = sizeof(struct drm_format_modifier_blob);
188 /* Modifiers offset is a pointer to a struct with a 64 bit field so it
189 * should be naturally aligned to 8B.
191 BUILD_BUG_ON(sizeof(struct drm_format_modifier_blob) % 8);
192 blob_size += ALIGN(formats_size, 8);
193 blob_size += modifiers_size;
195 blob = drm_property_create_blob(dev, blob_size, NULL);
199 blob_data = blob->data;
200 blob_data->version = FORMAT_BLOB_CURRENT;
201 blob_data->count_formats = plane->format_count;
202 blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
203 blob_data->count_modifiers = plane->modifier_count;
205 blob_data->modifiers_offset =
206 ALIGN(blob_data->formats_offset + formats_size, 8);
208 memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
210 mod = modifiers_ptr(blob_data);
211 for (i = 0; i < plane->modifier_count; i++) {
212 for (j = 0; j < plane->format_count; j++) {
213 if (!plane->funcs->format_mod_supported ||
214 plane->funcs->format_mod_supported(plane,
215 plane->format_types[j],
216 plane->modifiers[i])) {
217 mod->formats |= 1ULL << j;
221 mod->modifier = plane->modifiers[i];
227 drm_object_attach_property(&plane->base, config->modifiers_property,
234 static int __drm_universal_plane_init(struct drm_device *dev,
235 struct drm_plane *plane,
236 uint32_t possible_crtcs,
237 const struct drm_plane_funcs *funcs,
238 const uint32_t *formats,
239 unsigned int format_count,
240 const uint64_t *format_modifiers,
241 enum drm_plane_type type,
242 const char *name, va_list ap)
244 struct drm_mode_config *config = &dev->mode_config;
245 static const uint64_t default_modifiers[] = {
246 DRM_FORMAT_MOD_LINEAR,
248 unsigned int format_modifier_count = 0;
251 /* plane index is used with 32bit bitmasks */
252 if (WARN_ON(config->num_total_plane >= 32))
256 * First driver to need more than 64 formats needs to fix this. Each
257 * format is encoded as a bit and the current code only supports a u64.
259 if (WARN_ON(format_count > 64))
262 WARN_ON(drm_drv_uses_atomic_modeset(dev) &&
263 (!funcs->atomic_destroy_state ||
264 !funcs->atomic_duplicate_state));
266 ret = drm_mode_object_add(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
270 drm_modeset_lock_init(&plane->mutex);
272 plane->base.properties = &plane->properties;
274 plane->funcs = funcs;
275 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
277 if (!plane->format_types) {
278 DRM_DEBUG_KMS("out of memory when allocating plane\n");
279 drm_mode_object_unregister(dev, &plane->base);
283 if (format_modifiers) {
284 const uint64_t *temp_modifiers = format_modifiers;
286 while (*temp_modifiers++ != DRM_FORMAT_MOD_INVALID)
287 format_modifier_count++;
289 if (!dev->mode_config.fb_modifiers_not_supported) {
290 format_modifiers = default_modifiers;
291 format_modifier_count = ARRAY_SIZE(default_modifiers);
295 /* autoset the cap and check for consistency across all planes */
296 drm_WARN_ON(dev, config->fb_modifiers_not_supported &&
297 format_modifier_count);
299 plane->modifier_count = format_modifier_count;
300 plane->modifiers = kmalloc_array(format_modifier_count,
301 sizeof(format_modifiers[0]),
304 if (format_modifier_count && !plane->modifiers) {
305 DRM_DEBUG_KMS("out of memory when allocating plane\n");
306 kfree(plane->format_types);
307 drm_mode_object_unregister(dev, &plane->base);
312 plane->name = kvasprintf(GFP_KERNEL, name, ap);
314 plane->name = kasprintf(GFP_KERNEL, "plane-%d",
315 drm_num_planes(dev));
318 kfree(plane->format_types);
319 kfree(plane->modifiers);
320 drm_mode_object_unregister(dev, &plane->base);
324 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
325 plane->format_count = format_count;
326 memcpy(plane->modifiers, format_modifiers,
327 format_modifier_count * sizeof(format_modifiers[0]));
328 plane->possible_crtcs = possible_crtcs;
331 list_add_tail(&plane->head, &config->plane_list);
332 plane->index = config->num_total_plane++;
334 drm_object_attach_property(&plane->base,
335 config->plane_type_property,
338 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
339 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
340 drm_object_attach_property(&plane->base, config->prop_in_fence_fd, -1);
341 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
342 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
343 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
344 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
345 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
346 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
347 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
348 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
349 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
352 if (format_modifier_count)
353 create_in_format_blob(dev, plane);
359 * drm_universal_plane_init - Initialize a new universal plane object
361 * @plane: plane object to init
362 * @possible_crtcs: bitmask of possible CRTCs
363 * @funcs: callbacks for the new plane
364 * @formats: array of supported formats (DRM_FORMAT\_\*)
365 * @format_count: number of elements in @formats
366 * @format_modifiers: array of struct drm_format modifiers terminated by
367 * DRM_FORMAT_MOD_INVALID
368 * @type: type of plane (overlay, primary, cursor)
369 * @name: printf style format string for the plane name, or NULL for default name
371 * Initializes a plane object of type @type. The &drm_plane_funcs.destroy hook
372 * should call drm_plane_cleanup() and kfree() the plane structure. The plane
373 * structure should not be allocated with devm_kzalloc().
375 * Note: consider using drmm_universal_plane_alloc() instead of
376 * drm_universal_plane_init() to let the DRM managed resource infrastructure
377 * take care of cleanup and deallocation.
379 * Drivers that only support the DRM_FORMAT_MOD_LINEAR modifier support may set
380 * @format_modifiers to NULL. The plane will advertise the linear modifier.
383 * Zero on success, error code on failure.
385 int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
386 uint32_t possible_crtcs,
387 const struct drm_plane_funcs *funcs,
388 const uint32_t *formats, unsigned int format_count,
389 const uint64_t *format_modifiers,
390 enum drm_plane_type type,
391 const char *name, ...)
396 WARN_ON(!funcs->destroy);
399 ret = __drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
400 formats, format_count, format_modifiers,
405 EXPORT_SYMBOL(drm_universal_plane_init);
407 static void drmm_universal_plane_alloc_release(struct drm_device *dev, void *ptr)
409 struct drm_plane *plane = ptr;
411 if (WARN_ON(!plane->dev))
414 drm_plane_cleanup(plane);
417 void *__drmm_universal_plane_alloc(struct drm_device *dev, size_t size,
418 size_t offset, uint32_t possible_crtcs,
419 const struct drm_plane_funcs *funcs,
420 const uint32_t *formats, unsigned int format_count,
421 const uint64_t *format_modifiers,
422 enum drm_plane_type type,
423 const char *name, ...)
426 struct drm_plane *plane;
430 if (WARN_ON(!funcs || funcs->destroy))
431 return ERR_PTR(-EINVAL);
433 container = drmm_kzalloc(dev, size, GFP_KERNEL);
435 return ERR_PTR(-ENOMEM);
437 plane = container + offset;
440 ret = __drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
441 formats, format_count, format_modifiers,
447 ret = drmm_add_action_or_reset(dev, drmm_universal_plane_alloc_release,
454 EXPORT_SYMBOL(__drmm_universal_plane_alloc);
456 void *__drm_universal_plane_alloc(struct drm_device *dev, size_t size,
457 size_t offset, uint32_t possible_crtcs,
458 const struct drm_plane_funcs *funcs,
459 const uint32_t *formats, unsigned int format_count,
460 const uint64_t *format_modifiers,
461 enum drm_plane_type type,
462 const char *name, ...)
465 struct drm_plane *plane;
469 if (drm_WARN_ON(dev, !funcs))
470 return ERR_PTR(-EINVAL);
472 container = kzalloc(size, GFP_KERNEL);
474 return ERR_PTR(-ENOMEM);
476 plane = container + offset;
479 ret = __drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
480 formats, format_count, format_modifiers,
492 EXPORT_SYMBOL(__drm_universal_plane_alloc);
494 int drm_plane_register_all(struct drm_device *dev)
496 unsigned int num_planes = 0;
497 unsigned int num_zpos = 0;
498 struct drm_plane *plane;
501 drm_for_each_plane(plane, dev) {
502 if (plane->funcs->late_register)
503 ret = plane->funcs->late_register(plane);
507 if (plane->zpos_property)
512 drm_WARN(dev, num_zpos && num_planes != num_zpos,
513 "Mixing planes with and without zpos property is invalid\n");
518 void drm_plane_unregister_all(struct drm_device *dev)
520 struct drm_plane *plane;
522 drm_for_each_plane(plane, dev) {
523 if (plane->funcs->early_unregister)
524 plane->funcs->early_unregister(plane);
529 * drm_plane_cleanup - Clean up the core plane usage
530 * @plane: plane to cleanup
532 * This function cleans up @plane and removes it from the DRM mode setting
533 * core. Note that the function does *not* free the plane structure itself,
534 * this is the responsibility of the caller.
536 void drm_plane_cleanup(struct drm_plane *plane)
538 struct drm_device *dev = plane->dev;
540 drm_modeset_lock_fini(&plane->mutex);
542 kfree(plane->format_types);
543 kfree(plane->modifiers);
544 drm_mode_object_unregister(dev, &plane->base);
546 BUG_ON(list_empty(&plane->head));
548 /* Note that the plane_list is considered to be static; should we
549 * remove the drm_plane at runtime we would have to decrement all
550 * the indices on the drm_plane after us in the plane_list.
553 list_del(&plane->head);
554 dev->mode_config.num_total_plane--;
556 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
557 if (plane->state && plane->funcs->atomic_destroy_state)
558 plane->funcs->atomic_destroy_state(plane, plane->state);
562 memset(plane, 0, sizeof(*plane));
564 EXPORT_SYMBOL(drm_plane_cleanup);
567 * drm_plane_from_index - find the registered plane at an index
569 * @idx: index of registered plane to find for
571 * Given a plane index, return the registered plane from DRM device's
572 * list of planes with matching index. This is the inverse of drm_plane_index().
575 drm_plane_from_index(struct drm_device *dev, int idx)
577 struct drm_plane *plane;
579 drm_for_each_plane(plane, dev)
580 if (idx == plane->index)
585 EXPORT_SYMBOL(drm_plane_from_index);
588 * drm_plane_force_disable - Forcibly disable a plane
589 * @plane: plane to disable
591 * Forces the plane to be disabled.
593 * Used when the plane's current framebuffer is destroyed,
594 * and when restoring fbdev mode.
596 * Note that this function is not suitable for atomic drivers, since it doesn't
597 * wire through the lock acquisition context properly and hence can't handle
598 * retries or driver private locks. You probably want to use
599 * drm_atomic_helper_disable_plane() or
600 * drm_atomic_helper_disable_planes_on_crtc() instead.
602 void drm_plane_force_disable(struct drm_plane *plane)
609 WARN_ON(drm_drv_uses_atomic_modeset(plane->dev));
611 plane->old_fb = plane->fb;
612 ret = plane->funcs->disable_plane(plane, NULL);
614 DRM_ERROR("failed to disable plane with busy fb\n");
615 plane->old_fb = NULL;
618 /* disconnect the plane from the fb and crtc: */
619 drm_framebuffer_put(plane->old_fb);
620 plane->old_fb = NULL;
624 EXPORT_SYMBOL(drm_plane_force_disable);
627 * drm_mode_plane_set_obj_prop - set the value of a property
628 * @plane: drm plane object to set property value for
629 * @property: property to set
630 * @value: value the property should be set to
632 * This functions sets a given property on a given plane object. This function
633 * calls the driver's ->set_property callback and changes the software state of
634 * the property if the callback succeeds.
637 * Zero on success, error code on failure.
639 int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
640 struct drm_property *property,
644 struct drm_mode_object *obj = &plane->base;
646 if (plane->funcs->set_property)
647 ret = plane->funcs->set_property(plane, property, value);
649 drm_object_property_set_value(obj, property, value);
653 EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
655 int drm_mode_getplane_res(struct drm_device *dev, void *data,
656 struct drm_file *file_priv)
658 struct drm_mode_get_plane_res *plane_resp = data;
659 struct drm_plane *plane;
660 uint32_t __user *plane_ptr;
663 if (!drm_core_check_feature(dev, DRIVER_MODESET))
666 plane_ptr = u64_to_user_ptr(plane_resp->plane_id_ptr);
669 * This ioctl is called twice, once to determine how much space is
670 * needed, and the 2nd time to fill it.
672 drm_for_each_plane(plane, dev) {
674 * Unless userspace set the 'universal planes'
675 * capability bit, only advertise overlays.
677 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
678 !file_priv->universal_planes)
681 if (drm_lease_held(file_priv, plane->base.id)) {
682 if (count < plane_resp->count_planes &&
683 put_user(plane->base.id, plane_ptr + count))
688 plane_resp->count_planes = count;
693 int drm_mode_getplane(struct drm_device *dev, void *data,
694 struct drm_file *file_priv)
696 struct drm_mode_get_plane *plane_resp = data;
697 struct drm_plane *plane;
698 uint32_t __user *format_ptr;
700 if (!drm_core_check_feature(dev, DRIVER_MODESET))
703 plane = drm_plane_find(dev, file_priv, plane_resp->plane_id);
707 drm_modeset_lock(&plane->mutex, NULL);
708 if (plane->state && plane->state->crtc && drm_lease_held(file_priv, plane->state->crtc->base.id))
709 plane_resp->crtc_id = plane->state->crtc->base.id;
710 else if (!plane->state && plane->crtc && drm_lease_held(file_priv, plane->crtc->base.id))
711 plane_resp->crtc_id = plane->crtc->base.id;
713 plane_resp->crtc_id = 0;
715 if (plane->state && plane->state->fb)
716 plane_resp->fb_id = plane->state->fb->base.id;
717 else if (!plane->state && plane->fb)
718 plane_resp->fb_id = plane->fb->base.id;
720 plane_resp->fb_id = 0;
721 drm_modeset_unlock(&plane->mutex);
723 plane_resp->plane_id = plane->base.id;
724 plane_resp->possible_crtcs = drm_lease_filter_crtcs(file_priv,
725 plane->possible_crtcs);
727 plane_resp->gamma_size = 0;
730 * This ioctl is called twice, once to determine how much space is
731 * needed, and the 2nd time to fill it.
733 if (plane->format_count &&
734 (plane_resp->count_format_types >= plane->format_count)) {
735 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
736 if (copy_to_user(format_ptr,
738 sizeof(uint32_t) * plane->format_count)) {
742 plane_resp->count_format_types = plane->format_count;
747 int drm_plane_check_pixel_format(struct drm_plane *plane,
748 u32 format, u64 modifier)
752 for (i = 0; i < plane->format_count; i++) {
753 if (format == plane->format_types[i])
756 if (i == plane->format_count)
759 if (plane->funcs->format_mod_supported) {
760 if (!plane->funcs->format_mod_supported(plane, format, modifier))
763 if (!plane->modifier_count)
766 for (i = 0; i < plane->modifier_count; i++) {
767 if (modifier == plane->modifiers[i])
770 if (i == plane->modifier_count)
777 static int __setplane_check(struct drm_plane *plane,
778 struct drm_crtc *crtc,
779 struct drm_framebuffer *fb,
780 int32_t crtc_x, int32_t crtc_y,
781 uint32_t crtc_w, uint32_t crtc_h,
782 uint32_t src_x, uint32_t src_y,
783 uint32_t src_w, uint32_t src_h)
787 /* Check whether this plane is usable on this CRTC */
788 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
789 DRM_DEBUG_KMS("Invalid crtc for plane\n");
793 /* Check whether this plane supports the fb pixel format. */
794 ret = drm_plane_check_pixel_format(plane, fb->format->format,
797 DRM_DEBUG_KMS("Invalid pixel format %p4cc, modifier 0x%llx\n",
798 &fb->format->format, fb->modifier);
802 /* Give drivers some help against integer overflows */
803 if (crtc_w > INT_MAX ||
804 crtc_x > INT_MAX - (int32_t) crtc_w ||
806 crtc_y > INT_MAX - (int32_t) crtc_h) {
807 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
808 crtc_w, crtc_h, crtc_x, crtc_y);
812 ret = drm_framebuffer_check_src_coords(src_x, src_y, src_w, src_h, fb);
820 * drm_any_plane_has_format - Check whether any plane supports this format and modifier combination
822 * @format: pixel format (DRM_FORMAT_*)
823 * @modifier: data layout modifier
826 * Whether at least one plane supports the specified format and modifier combination.
828 bool drm_any_plane_has_format(struct drm_device *dev,
829 u32 format, u64 modifier)
831 struct drm_plane *plane;
833 drm_for_each_plane(plane, dev) {
834 if (drm_plane_check_pixel_format(plane, format, modifier) == 0)
840 EXPORT_SYMBOL(drm_any_plane_has_format);
843 * __setplane_internal - setplane handler for internal callers
845 * This function will take a reference on the new fb for the plane
848 * src_{x,y,w,h} are provided in 16.16 fixed point format
850 static int __setplane_internal(struct drm_plane *plane,
851 struct drm_crtc *crtc,
852 struct drm_framebuffer *fb,
853 int32_t crtc_x, int32_t crtc_y,
854 uint32_t crtc_w, uint32_t crtc_h,
855 /* src_{x,y,w,h} values are 16.16 fixed point */
856 uint32_t src_x, uint32_t src_y,
857 uint32_t src_w, uint32_t src_h,
858 struct drm_modeset_acquire_ctx *ctx)
862 WARN_ON(drm_drv_uses_atomic_modeset(plane->dev));
864 /* No fb means shut it down */
866 plane->old_fb = plane->fb;
867 ret = plane->funcs->disable_plane(plane, ctx);
872 plane->old_fb = NULL;
877 ret = __setplane_check(plane, crtc, fb,
878 crtc_x, crtc_y, crtc_w, crtc_h,
879 src_x, src_y, src_w, src_h);
883 plane->old_fb = plane->fb;
884 ret = plane->funcs->update_plane(plane, crtc, fb,
885 crtc_x, crtc_y, crtc_w, crtc_h,
886 src_x, src_y, src_w, src_h, ctx);
890 drm_framebuffer_get(plane->fb);
892 plane->old_fb = NULL;
897 drm_framebuffer_put(plane->old_fb);
898 plane->old_fb = NULL;
903 static int __setplane_atomic(struct drm_plane *plane,
904 struct drm_crtc *crtc,
905 struct drm_framebuffer *fb,
906 int32_t crtc_x, int32_t crtc_y,
907 uint32_t crtc_w, uint32_t crtc_h,
908 uint32_t src_x, uint32_t src_y,
909 uint32_t src_w, uint32_t src_h,
910 struct drm_modeset_acquire_ctx *ctx)
914 WARN_ON(!drm_drv_uses_atomic_modeset(plane->dev));
916 /* No fb means shut it down */
918 return plane->funcs->disable_plane(plane, ctx);
921 * FIXME: This is redundant with drm_atomic_plane_check(),
922 * but the legacy cursor/"async" .update_plane() tricks
923 * don't call that so we still need this here. Should remove
924 * this when all .update_plane() implementations have been
925 * fixed to call drm_atomic_plane_check().
927 ret = __setplane_check(plane, crtc, fb,
928 crtc_x, crtc_y, crtc_w, crtc_h,
929 src_x, src_y, src_w, src_h);
933 return plane->funcs->update_plane(plane, crtc, fb,
934 crtc_x, crtc_y, crtc_w, crtc_h,
935 src_x, src_y, src_w, src_h, ctx);
938 static int setplane_internal(struct drm_plane *plane,
939 struct drm_crtc *crtc,
940 struct drm_framebuffer *fb,
941 int32_t crtc_x, int32_t crtc_y,
942 uint32_t crtc_w, uint32_t crtc_h,
943 /* src_{x,y,w,h} values are 16.16 fixed point */
944 uint32_t src_x, uint32_t src_y,
945 uint32_t src_w, uint32_t src_h)
947 struct drm_modeset_acquire_ctx ctx;
950 DRM_MODESET_LOCK_ALL_BEGIN(plane->dev, ctx,
951 DRM_MODESET_ACQUIRE_INTERRUPTIBLE, ret);
953 if (drm_drv_uses_atomic_modeset(plane->dev))
954 ret = __setplane_atomic(plane, crtc, fb,
955 crtc_x, crtc_y, crtc_w, crtc_h,
956 src_x, src_y, src_w, src_h, &ctx);
958 ret = __setplane_internal(plane, crtc, fb,
959 crtc_x, crtc_y, crtc_w, crtc_h,
960 src_x, src_y, src_w, src_h, &ctx);
962 DRM_MODESET_LOCK_ALL_END(plane->dev, ctx, ret);
967 int drm_mode_setplane(struct drm_device *dev, void *data,
968 struct drm_file *file_priv)
970 struct drm_mode_set_plane *plane_req = data;
971 struct drm_plane *plane;
972 struct drm_crtc *crtc = NULL;
973 struct drm_framebuffer *fb = NULL;
976 if (!drm_core_check_feature(dev, DRIVER_MODESET))
980 * First, find the plane, crtc, and fb objects. If not available,
981 * we don't bother to call the driver.
983 plane = drm_plane_find(dev, file_priv, plane_req->plane_id);
985 DRM_DEBUG_KMS("Unknown plane ID %d\n",
986 plane_req->plane_id);
990 if (plane_req->fb_id) {
991 fb = drm_framebuffer_lookup(dev, file_priv, plane_req->fb_id);
993 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
998 crtc = drm_crtc_find(dev, file_priv, plane_req->crtc_id);
1000 drm_framebuffer_put(fb);
1001 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
1002 plane_req->crtc_id);
1007 ret = setplane_internal(plane, crtc, fb,
1008 plane_req->crtc_x, plane_req->crtc_y,
1009 plane_req->crtc_w, plane_req->crtc_h,
1010 plane_req->src_x, plane_req->src_y,
1011 plane_req->src_w, plane_req->src_h);
1014 drm_framebuffer_put(fb);
1019 static int drm_mode_cursor_universal(struct drm_crtc *crtc,
1020 struct drm_mode_cursor2 *req,
1021 struct drm_file *file_priv,
1022 struct drm_modeset_acquire_ctx *ctx)
1024 struct drm_device *dev = crtc->dev;
1025 struct drm_plane *plane = crtc->cursor;
1026 struct drm_framebuffer *fb = NULL;
1027 struct drm_mode_fb_cmd2 fbreq = {
1028 .width = req->width,
1029 .height = req->height,
1030 .pixel_format = DRM_FORMAT_ARGB8888,
1031 .pitches = { req->width * 4 },
1032 .handles = { req->handle },
1034 int32_t crtc_x, crtc_y;
1035 uint32_t crtc_w = 0, crtc_h = 0;
1036 uint32_t src_w = 0, src_h = 0;
1040 WARN_ON(plane->crtc != crtc && plane->crtc != NULL);
1043 * Obtain fb we'll be using (either new or existing) and take an extra
1044 * reference to it if fb != null. setplane will take care of dropping
1045 * the reference if the plane update fails.
1047 if (req->flags & DRM_MODE_CURSOR_BO) {
1049 fb = drm_internal_framebuffer_create(dev, &fbreq, file_priv);
1051 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
1055 fb->hot_x = req->hot_x;
1056 fb->hot_y = req->hot_y;
1062 fb = plane->state->fb;
1067 drm_framebuffer_get(fb);
1070 if (req->flags & DRM_MODE_CURSOR_MOVE) {
1074 crtc_x = crtc->cursor_x;
1075 crtc_y = crtc->cursor_y;
1080 crtc_h = fb->height;
1081 src_w = fb->width << 16;
1082 src_h = fb->height << 16;
1085 if (drm_drv_uses_atomic_modeset(dev))
1086 ret = __setplane_atomic(plane, crtc, fb,
1087 crtc_x, crtc_y, crtc_w, crtc_h,
1088 0, 0, src_w, src_h, ctx);
1090 ret = __setplane_internal(plane, crtc, fb,
1091 crtc_x, crtc_y, crtc_w, crtc_h,
1092 0, 0, src_w, src_h, ctx);
1095 drm_framebuffer_put(fb);
1097 /* Update successful; save new cursor position, if necessary */
1098 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
1099 crtc->cursor_x = req->x;
1100 crtc->cursor_y = req->y;
1106 static int drm_mode_cursor_common(struct drm_device *dev,
1107 struct drm_mode_cursor2 *req,
1108 struct drm_file *file_priv)
1110 struct drm_crtc *crtc;
1111 struct drm_modeset_acquire_ctx ctx;
1114 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1117 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
1120 crtc = drm_crtc_find(dev, file_priv, req->crtc_id);
1122 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
1126 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
1128 ret = drm_modeset_lock(&crtc->mutex, &ctx);
1132 * If this crtc has a universal cursor plane, call that plane's update
1133 * handler rather than using legacy cursor handlers.
1136 ret = drm_modeset_lock(&crtc->cursor->mutex, &ctx);
1140 if (!drm_lease_held(file_priv, crtc->cursor->base.id)) {
1145 ret = drm_mode_cursor_universal(crtc, req, file_priv, &ctx);
1149 if (req->flags & DRM_MODE_CURSOR_BO) {
1150 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
1154 /* Turns off the cursor if handle is 0 */
1155 if (crtc->funcs->cursor_set2)
1156 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
1157 req->width, req->height, req->hot_x, req->hot_y);
1159 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
1160 req->width, req->height);
1163 if (req->flags & DRM_MODE_CURSOR_MOVE) {
1164 if (crtc->funcs->cursor_move) {
1165 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
1172 if (ret == -EDEADLK) {
1173 ret = drm_modeset_backoff(&ctx);
1178 drm_modeset_drop_locks(&ctx);
1179 drm_modeset_acquire_fini(&ctx);
1186 int drm_mode_cursor_ioctl(struct drm_device *dev,
1187 void *data, struct drm_file *file_priv)
1189 struct drm_mode_cursor *req = data;
1190 struct drm_mode_cursor2 new_req;
1192 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
1193 new_req.hot_x = new_req.hot_y = 0;
1195 return drm_mode_cursor_common(dev, &new_req, file_priv);
1199 * Set the cursor configuration based on user request. This implements the 2nd
1200 * version of the cursor ioctl, which allows userspace to additionally specify
1201 * the hotspot of the pointer.
1203 int drm_mode_cursor2_ioctl(struct drm_device *dev,
1204 void *data, struct drm_file *file_priv)
1206 struct drm_mode_cursor2 *req = data;
1208 return drm_mode_cursor_common(dev, req, file_priv);
1211 int drm_mode_page_flip_ioctl(struct drm_device *dev,
1212 void *data, struct drm_file *file_priv)
1214 struct drm_mode_crtc_page_flip_target *page_flip = data;
1215 struct drm_crtc *crtc;
1216 struct drm_plane *plane;
1217 struct drm_framebuffer *fb = NULL, *old_fb;
1218 struct drm_pending_vblank_event *e = NULL;
1219 u32 target_vblank = page_flip->sequence;
1220 struct drm_modeset_acquire_ctx ctx;
1223 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1226 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS)
1229 if (page_flip->sequence != 0 && !(page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET))
1232 /* Only one of the DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags
1235 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) == DRM_MODE_PAGE_FLIP_TARGET)
1238 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
1241 crtc = drm_crtc_find(dev, file_priv, page_flip->crtc_id);
1245 plane = crtc->primary;
1247 if (!drm_lease_held(file_priv, plane->base.id))
1250 if (crtc->funcs->page_flip_target) {
1254 r = drm_crtc_vblank_get(crtc);
1258 current_vblank = (u32)drm_crtc_vblank_count(crtc);
1260 switch (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) {
1261 case DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE:
1262 if ((int)(target_vblank - current_vblank) > 1) {
1263 DRM_DEBUG("Invalid absolute flip target %u, "
1264 "must be <= %u\n", target_vblank,
1265 current_vblank + 1);
1266 drm_crtc_vblank_put(crtc);
1270 case DRM_MODE_PAGE_FLIP_TARGET_RELATIVE:
1271 if (target_vblank != 0 && target_vblank != 1) {
1272 DRM_DEBUG("Invalid relative flip target %u, "
1273 "must be 0 or 1\n", target_vblank);
1274 drm_crtc_vblank_put(crtc);
1277 target_vblank += current_vblank;
1280 target_vblank = current_vblank +
1281 !(page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC);
1284 } else if (crtc->funcs->page_flip == NULL ||
1285 (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET)) {
1289 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
1291 ret = drm_modeset_lock(&crtc->mutex, &ctx);
1294 ret = drm_modeset_lock(&plane->mutex, &ctx);
1299 old_fb = plane->state->fb;
1303 if (old_fb == NULL) {
1304 /* The framebuffer is currently unbound, presumably
1305 * due to a hotplug event, that userspace has not
1312 fb = drm_framebuffer_lookup(dev, file_priv, page_flip->fb_id);
1319 const struct drm_plane_state *state = plane->state;
1321 ret = drm_framebuffer_check_src_coords(state->src_x,
1327 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y,
1334 * Only check the FOURCC format code, excluding modifiers. This is
1335 * enough for all legacy drivers. Atomic drivers have their own
1336 * checks in their ->atomic_check implementation, which will
1337 * return -EINVAL if any hw or driver constraint is violated due
1338 * to modifier changes.
1340 if (old_fb->format->format != fb->format->format) {
1341 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
1346 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1347 e = kzalloc(sizeof *e, GFP_KERNEL);
1353 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
1354 e->event.base.length = sizeof(e->event);
1355 e->event.vbl.user_data = page_flip->user_data;
1356 e->event.vbl.crtc_id = crtc->base.id;
1358 ret = drm_event_reserve_init(dev, file_priv, &e->base, &e->event.base);
1366 plane->old_fb = plane->fb;
1367 if (crtc->funcs->page_flip_target)
1368 ret = crtc->funcs->page_flip_target(crtc, fb, e,
1373 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags,
1376 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT)
1377 drm_event_cancel_free(dev, &e->base);
1378 /* Keep the old fb, don't unref it. */
1379 plane->old_fb = NULL;
1381 if (!plane->state) {
1383 drm_framebuffer_get(fb);
1389 drm_framebuffer_put(fb);
1391 drm_framebuffer_put(plane->old_fb);
1392 plane->old_fb = NULL;
1394 if (ret == -EDEADLK) {
1395 ret = drm_modeset_backoff(&ctx);
1400 drm_modeset_drop_locks(&ctx);
1401 drm_modeset_acquire_fini(&ctx);
1403 if (ret && crtc->funcs->page_flip_target)
1404 drm_crtc_vblank_put(crtc);
1410 * DOC: damage tracking
1412 * FB_DAMAGE_CLIPS is an optional plane property which provides a means to
1413 * specify a list of damage rectangles on a plane in framebuffer coordinates of
1414 * the framebuffer attached to the plane. In current context damage is the area
1415 * of plane framebuffer that has changed since last plane update (also called
1416 * page-flip), irrespective of whether currently attached framebuffer is same as
1417 * framebuffer attached during last plane update or not.
1419 * FB_DAMAGE_CLIPS is a hint to kernel which could be helpful for some drivers
1420 * to optimize internally especially for virtual devices where each framebuffer
1421 * change needs to be transmitted over network, usb, etc.
1423 * Since FB_DAMAGE_CLIPS is a hint so it is an optional property. User-space can
1424 * ignore damage clips property and in that case driver will do a full plane
1425 * update. In case damage clips are provided then it is guaranteed that the area
1426 * inside damage clips will be updated to plane. For efficiency driver can do
1427 * full update or can update more than specified in damage clips. Since driver
1428 * is free to read more, user-space must always render the entire visible
1429 * framebuffer. Otherwise there can be corruptions. Also, if a user-space
1430 * provides damage clips which doesn't encompass the actual damage to
1431 * framebuffer (since last plane update) can result in incorrect rendering.
1433 * FB_DAMAGE_CLIPS is a blob property with the layout of blob data is simply an
1434 * array of &drm_mode_rect. Unlike plane &drm_plane_state.src coordinates,
1435 * damage clips are not in 16.16 fixed point. Similar to plane src in
1436 * framebuffer, damage clips cannot be negative. In damage clip, x1/y1 are
1437 * inclusive and x2/y2 are exclusive. While kernel does not error for overlapped
1438 * damage clips, it is strongly discouraged.
1440 * Drivers that are interested in damage interface for plane should enable
1441 * FB_DAMAGE_CLIPS property by calling drm_plane_enable_fb_damage_clips().
1442 * Drivers implementing damage can use drm_atomic_helper_damage_iter_init() and
1443 * drm_atomic_helper_damage_iter_next() helper iterator function to get damage
1444 * rectangles clipped to &drm_plane_state.src.
1448 * drm_plane_enable_fb_damage_clips - Enables plane fb damage clips property.
1449 * @plane: Plane on which to enable damage clips property.
1451 * This function lets driver to enable the damage clips property on a plane.
1453 void drm_plane_enable_fb_damage_clips(struct drm_plane *plane)
1455 struct drm_device *dev = plane->dev;
1456 struct drm_mode_config *config = &dev->mode_config;
1458 drm_object_attach_property(&plane->base, config->prop_fb_damage_clips,
1461 EXPORT_SYMBOL(drm_plane_enable_fb_damage_clips);
1464 * drm_plane_get_damage_clips_count - Returns damage clips count.
1465 * @state: Plane state.
1467 * Simple helper to get the number of &drm_mode_rect clips set by user-space
1468 * during plane update.
1470 * Return: Number of clips in plane fb_damage_clips blob property.
1473 drm_plane_get_damage_clips_count(const struct drm_plane_state *state)
1475 return (state && state->fb_damage_clips) ?
1476 state->fb_damage_clips->length/sizeof(struct drm_mode_rect) : 0;
1478 EXPORT_SYMBOL(drm_plane_get_damage_clips_count);
1480 struct drm_mode_rect *
1481 __drm_plane_get_damage_clips(const struct drm_plane_state *state)
1483 return (struct drm_mode_rect *)((state && state->fb_damage_clips) ?
1484 state->fb_damage_clips->data : NULL);
1488 * drm_plane_get_damage_clips - Returns damage clips.
1489 * @state: Plane state.
1491 * Note that this function returns uapi type &drm_mode_rect. Drivers might want
1492 * to use the helper functions drm_atomic_helper_damage_iter_init() and
1493 * drm_atomic_helper_damage_iter_next() or drm_atomic_helper_damage_merged() if
1494 * the driver can only handle a single damage region at most.
1496 * Return: Damage clips in plane fb_damage_clips blob property.
1498 struct drm_mode_rect *
1499 drm_plane_get_damage_clips(const struct drm_plane_state *state)
1501 struct drm_device *dev = state->plane->dev;
1502 struct drm_mode_config *config = &dev->mode_config;
1504 /* check that drm_plane_enable_fb_damage_clips() was called */
1505 if (!drm_mode_obj_find_prop_id(&state->plane->base,
1506 config->prop_fb_damage_clips->base.id))
1507 drm_warn_once(dev, "drm_plane_enable_fb_damage_clips() not called\n");
1509 return __drm_plane_get_damage_clips(state);
1511 EXPORT_SYMBOL(drm_plane_get_damage_clips);
1513 struct drm_property *
1514 drm_create_scaling_filter_prop(struct drm_device *dev,
1515 unsigned int supported_filters)
1517 struct drm_property *prop;
1518 static const struct drm_prop_enum_list props[] = {
1519 { DRM_SCALING_FILTER_DEFAULT, "Default" },
1520 { DRM_SCALING_FILTER_NEAREST_NEIGHBOR, "Nearest Neighbor" },
1522 unsigned int valid_mode_mask = BIT(DRM_SCALING_FILTER_DEFAULT) |
1523 BIT(DRM_SCALING_FILTER_NEAREST_NEIGHBOR);
1526 if (WARN_ON((supported_filters & ~valid_mode_mask) ||
1527 ((supported_filters & BIT(DRM_SCALING_FILTER_DEFAULT)) == 0)))
1528 return ERR_PTR(-EINVAL);
1530 prop = drm_property_create(dev, DRM_MODE_PROP_ENUM,
1532 hweight32(supported_filters));
1534 return ERR_PTR(-ENOMEM);
1536 for (i = 0; i < ARRAY_SIZE(props); i++) {
1539 if (!(BIT(props[i].type) & supported_filters))
1542 ret = drm_property_add_enum(prop, props[i].type,
1546 drm_property_destroy(dev, prop);
1548 return ERR_PTR(ret);
1556 * drm_plane_create_scaling_filter_property - create a new scaling filter
1560 * @supported_filters: bitmask of supported scaling filters, must include
1561 * BIT(DRM_SCALING_FILTER_DEFAULT).
1563 * This function lets driver to enable the scaling filter property on a given
1567 * Zero for success or -errno
1569 int drm_plane_create_scaling_filter_property(struct drm_plane *plane,
1570 unsigned int supported_filters)
1572 struct drm_property *prop =
1573 drm_create_scaling_filter_prop(plane->dev, supported_filters);
1576 return PTR_ERR(prop);
1578 drm_object_attach_property(&plane->base, prop,
1579 DRM_SCALING_FILTER_DEFAULT);
1580 plane->scaling_filter_property = prop;
1584 EXPORT_SYMBOL(drm_plane_create_scaling_filter_property);