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
24 #include <drm/drm_plane.h>
26 #include "drm_crtc_internal.h"
31 * A plane represents an image source that can be blended with or overlayed on
32 * top of a CRTC during the scanout process. Planes take their input data from a
33 * &drm_framebuffer object. The plane itself specifies the cropping and scaling
34 * of that image, and where it is placed on the visible are of a display
35 * pipeline, represented by &drm_crtc. A plane can also have additional
36 * properties that specify how the pixels are positioned and blended, like
37 * rotation or Z-position. All these properties are stored in &drm_plane_state.
39 * To create a plane, a KMS drivers allocates and zeroes an instances of
40 * &struct drm_plane (possibly as part of a larger structure) and registers it
41 * with a call to drm_universal_plane_init().
43 * Cursor and overlay planes are optional. All drivers should provide one
44 * primary plane per CRTC to avoid surprising userspace too much. See enum
45 * drm_plane_type for a more in-depth discussion of these special uapi-relevant
46 * plane types. Special planes are associated with their CRTC by calling
47 * drm_crtc_init_with_planes().
49 * The type of a plane is exposed in the immutable "type" enumeration property,
50 * which has one of the following values: "Overlay", "Primary", "Cursor".
53 static unsigned int drm_num_planes(struct drm_device *dev)
56 struct drm_plane *tmp;
58 drm_for_each_plane(tmp, dev) {
66 formats_ptr(struct drm_format_modifier_blob *blob)
68 return (u32 *)(((char *)blob) + blob->formats_offset);
71 static inline struct drm_format_modifier *
72 modifiers_ptr(struct drm_format_modifier_blob *blob)
74 return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
77 static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane)
79 const struct drm_mode_config *config = &dev->mode_config;
80 struct drm_property_blob *blob;
81 struct drm_format_modifier *mod;
82 size_t blob_size, formats_size, modifiers_size;
83 struct drm_format_modifier_blob *blob_data;
86 formats_size = sizeof(__u32) * plane->format_count;
87 if (WARN_ON(!formats_size)) {
88 /* 0 formats are never expected */
93 sizeof(struct drm_format_modifier) * plane->modifier_count;
95 blob_size = sizeof(struct drm_format_modifier_blob);
96 /* Modifiers offset is a pointer to a struct with a 64 bit field so it
97 * should be naturally aligned to 8B.
99 BUILD_BUG_ON(sizeof(struct drm_format_modifier_blob) % 8);
100 blob_size += ALIGN(formats_size, 8);
101 blob_size += modifiers_size;
103 blob = drm_property_create_blob(dev, blob_size, NULL);
107 blob_data = blob->data;
108 blob_data->version = FORMAT_BLOB_CURRENT;
109 blob_data->count_formats = plane->format_count;
110 blob_data->formats_offset = sizeof(struct drm_format_modifier_blob);
111 blob_data->count_modifiers = plane->modifier_count;
113 blob_data->modifiers_offset =
114 ALIGN(blob_data->formats_offset + formats_size, 8);
116 memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
118 /* If we can't determine support, just bail */
119 if (!plane->funcs->format_mod_supported)
122 mod = modifiers_ptr(blob_data);
123 for (i = 0; i < plane->modifier_count; i++) {
124 for (j = 0; j < plane->format_count; j++) {
125 if (plane->funcs->format_mod_supported(plane,
126 plane->format_types[j],
127 plane->modifiers[i])) {
129 mod->formats |= 1ULL << j;
133 mod->modifier = plane->modifiers[i];
140 drm_object_attach_property(&plane->base, config->modifiers_property,
147 * drm_universal_plane_init - Initialize a new universal plane object
149 * @plane: plane object to init
150 * @possible_crtcs: bitmask of possible CRTCs
151 * @funcs: callbacks for the new plane
152 * @formats: array of supported formats (DRM_FORMAT\_\*)
153 * @format_count: number of elements in @formats
154 * @format_modifiers: array of struct drm_format modifiers terminated by
155 * DRM_FORMAT_MOD_INVALID
156 * @type: type of plane (overlay, primary, cursor)
157 * @name: printf style format string for the plane name, or NULL for default name
159 * Initializes a plane object of type @type.
162 * Zero on success, error code on failure.
164 int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
165 uint32_t possible_crtcs,
166 const struct drm_plane_funcs *funcs,
167 const uint32_t *formats, unsigned int format_count,
168 const uint64_t *format_modifiers,
169 enum drm_plane_type type,
170 const char *name, ...)
172 struct drm_mode_config *config = &dev->mode_config;
173 unsigned int format_modifier_count = 0;
176 /* plane index is used with 32bit bitmasks */
177 if (WARN_ON(config->num_total_plane >= 32))
180 WARN_ON(drm_drv_uses_atomic_modeset(dev) &&
181 (!funcs->atomic_destroy_state ||
182 !funcs->atomic_duplicate_state));
184 ret = drm_mode_object_add(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
188 drm_modeset_lock_init(&plane->mutex);
190 plane->base.properties = &plane->properties;
192 plane->funcs = funcs;
193 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
195 if (!plane->format_types) {
196 DRM_DEBUG_KMS("out of memory when allocating plane\n");
197 drm_mode_object_unregister(dev, &plane->base);
202 * First driver to need more than 64 formats needs to fix this. Each
203 * format is encoded as a bit and the current code only supports a u64.
205 if (WARN_ON(format_count > 64))
208 if (format_modifiers) {
209 const uint64_t *temp_modifiers = format_modifiers;
210 while (*temp_modifiers++ != DRM_FORMAT_MOD_INVALID)
211 format_modifier_count++;
214 plane->modifier_count = format_modifier_count;
215 plane->modifiers = kmalloc_array(format_modifier_count,
216 sizeof(format_modifiers[0]),
219 if (format_modifier_count && !plane->modifiers) {
220 DRM_DEBUG_KMS("out of memory when allocating plane\n");
221 kfree(plane->format_types);
222 drm_mode_object_unregister(dev, &plane->base);
230 plane->name = kvasprintf(GFP_KERNEL, name, ap);
233 plane->name = kasprintf(GFP_KERNEL, "plane-%d",
234 drm_num_planes(dev));
237 kfree(plane->format_types);
238 kfree(plane->modifiers);
239 drm_mode_object_unregister(dev, &plane->base);
243 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
244 plane->format_count = format_count;
245 memcpy(plane->modifiers, format_modifiers,
246 format_modifier_count * sizeof(format_modifiers[0]));
247 plane->possible_crtcs = possible_crtcs;
250 list_add_tail(&plane->head, &config->plane_list);
251 plane->index = config->num_total_plane++;
253 drm_object_attach_property(&plane->base,
254 config->plane_type_property,
257 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
258 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
259 drm_object_attach_property(&plane->base, config->prop_in_fence_fd, -1);
260 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
261 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
262 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
263 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
264 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
265 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
266 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
267 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
268 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
271 if (config->allow_fb_modifiers)
272 create_in_format_blob(dev, plane);
276 EXPORT_SYMBOL(drm_universal_plane_init);
278 int drm_plane_register_all(struct drm_device *dev)
280 struct drm_plane *plane;
283 drm_for_each_plane(plane, dev) {
284 if (plane->funcs->late_register)
285 ret = plane->funcs->late_register(plane);
293 void drm_plane_unregister_all(struct drm_device *dev)
295 struct drm_plane *plane;
297 drm_for_each_plane(plane, dev) {
298 if (plane->funcs->early_unregister)
299 plane->funcs->early_unregister(plane);
304 * drm_plane_init - Initialize a legacy plane
306 * @plane: plane object to init
307 * @possible_crtcs: bitmask of possible CRTCs
308 * @funcs: callbacks for the new plane
309 * @formats: array of supported formats (DRM_FORMAT\_\*)
310 * @format_count: number of elements in @formats
311 * @is_primary: plane type (primary vs overlay)
313 * Legacy API to initialize a DRM plane.
315 * New drivers should call drm_universal_plane_init() instead.
318 * Zero on success, error code on failure.
320 int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
321 uint32_t possible_crtcs,
322 const struct drm_plane_funcs *funcs,
323 const uint32_t *formats, unsigned int format_count,
326 enum drm_plane_type type;
328 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
329 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
330 formats, format_count,
333 EXPORT_SYMBOL(drm_plane_init);
336 * drm_plane_cleanup - Clean up the core plane usage
337 * @plane: plane to cleanup
339 * This function cleans up @plane and removes it from the DRM mode setting
340 * core. Note that the function does *not* free the plane structure itself,
341 * this is the responsibility of the caller.
343 void drm_plane_cleanup(struct drm_plane *plane)
345 struct drm_device *dev = plane->dev;
347 drm_modeset_lock_fini(&plane->mutex);
349 kfree(plane->format_types);
350 kfree(plane->modifiers);
351 drm_mode_object_unregister(dev, &plane->base);
353 BUG_ON(list_empty(&plane->head));
355 /* Note that the plane_list is considered to be static; should we
356 * remove the drm_plane at runtime we would have to decrement all
357 * the indices on the drm_plane after us in the plane_list.
360 list_del(&plane->head);
361 dev->mode_config.num_total_plane--;
363 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
364 if (plane->state && plane->funcs->atomic_destroy_state)
365 plane->funcs->atomic_destroy_state(plane, plane->state);
369 memset(plane, 0, sizeof(*plane));
371 EXPORT_SYMBOL(drm_plane_cleanup);
374 * drm_plane_from_index - find the registered plane at an index
376 * @idx: index of registered plane to find for
378 * Given a plane index, return the registered plane from DRM device's
379 * list of planes with matching index. This is the inverse of drm_plane_index().
382 drm_plane_from_index(struct drm_device *dev, int idx)
384 struct drm_plane *plane;
386 drm_for_each_plane(plane, dev)
387 if (idx == plane->index)
392 EXPORT_SYMBOL(drm_plane_from_index);
395 * drm_plane_force_disable - Forcibly disable a plane
396 * @plane: plane to disable
398 * Forces the plane to be disabled.
400 * Used when the plane's current framebuffer is destroyed,
401 * and when restoring fbdev mode.
403 * Note that this function is not suitable for atomic drivers, since it doesn't
404 * wire through the lock acquisition context properly and hence can't handle
405 * retries or driver private locks. You probably want to use
406 * drm_atomic_helper_disable_plane() or
407 * drm_atomic_helper_disable_planes_on_crtc() instead.
409 void drm_plane_force_disable(struct drm_plane *plane)
416 WARN_ON(drm_drv_uses_atomic_modeset(plane->dev));
418 plane->old_fb = plane->fb;
419 ret = plane->funcs->disable_plane(plane, NULL);
421 DRM_ERROR("failed to disable plane with busy fb\n");
422 plane->old_fb = NULL;
425 /* disconnect the plane from the fb and crtc: */
426 drm_framebuffer_put(plane->old_fb);
427 plane->old_fb = NULL;
431 EXPORT_SYMBOL(drm_plane_force_disable);
434 * drm_mode_plane_set_obj_prop - set the value of a property
435 * @plane: drm plane object to set property value for
436 * @property: property to set
437 * @value: value the property should be set to
439 * This functions sets a given property on a given plane object. This function
440 * calls the driver's ->set_property callback and changes the software state of
441 * the property if the callback succeeds.
444 * Zero on success, error code on failure.
446 int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
447 struct drm_property *property,
451 struct drm_mode_object *obj = &plane->base;
453 if (plane->funcs->set_property)
454 ret = plane->funcs->set_property(plane, property, value);
456 drm_object_property_set_value(obj, property, value);
460 EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
462 int drm_mode_getplane_res(struct drm_device *dev, void *data,
463 struct drm_file *file_priv)
465 struct drm_mode_get_plane_res *plane_resp = data;
466 struct drm_mode_config *config;
467 struct drm_plane *plane;
468 uint32_t __user *plane_ptr;
471 if (!drm_core_check_feature(dev, DRIVER_MODESET))
474 config = &dev->mode_config;
475 plane_ptr = u64_to_user_ptr(plane_resp->plane_id_ptr);
478 * This ioctl is called twice, once to determine how much space is
479 * needed, and the 2nd time to fill it.
481 drm_for_each_plane(plane, dev) {
483 * Unless userspace set the 'universal planes'
484 * capability bit, only advertise overlays.
486 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
487 !file_priv->universal_planes)
490 if (drm_lease_held(file_priv, plane->base.id)) {
491 if (count < plane_resp->count_planes &&
492 put_user(plane->base.id, plane_ptr + count))
497 plane_resp->count_planes = count;
502 int drm_mode_getplane(struct drm_device *dev, void *data,
503 struct drm_file *file_priv)
505 struct drm_mode_get_plane *plane_resp = data;
506 struct drm_plane *plane;
507 uint32_t __user *format_ptr;
509 if (!drm_core_check_feature(dev, DRIVER_MODESET))
512 plane = drm_plane_find(dev, file_priv, plane_resp->plane_id);
516 drm_modeset_lock(&plane->mutex, NULL);
517 if (plane->state && plane->state->crtc && drm_lease_held(file_priv, plane->state->crtc->base.id))
518 plane_resp->crtc_id = plane->state->crtc->base.id;
519 else if (!plane->state && plane->crtc && drm_lease_held(file_priv, plane->crtc->base.id))
520 plane_resp->crtc_id = plane->crtc->base.id;
522 plane_resp->crtc_id = 0;
524 if (plane->state && plane->state->fb)
525 plane_resp->fb_id = plane->state->fb->base.id;
526 else if (!plane->state && plane->fb)
527 plane_resp->fb_id = plane->fb->base.id;
529 plane_resp->fb_id = 0;
530 drm_modeset_unlock(&plane->mutex);
532 plane_resp->plane_id = plane->base.id;
533 plane_resp->possible_crtcs = drm_lease_filter_crtcs(file_priv,
534 plane->possible_crtcs);
536 plane_resp->gamma_size = 0;
539 * This ioctl is called twice, once to determine how much space is
540 * needed, and the 2nd time to fill it.
542 if (plane->format_count &&
543 (plane_resp->count_format_types >= plane->format_count)) {
544 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
545 if (copy_to_user(format_ptr,
547 sizeof(uint32_t) * plane->format_count)) {
551 plane_resp->count_format_types = plane->format_count;
556 int drm_plane_check_pixel_format(struct drm_plane *plane,
557 u32 format, u64 modifier)
561 for (i = 0; i < plane->format_count; i++) {
562 if (format == plane->format_types[i])
565 if (i == plane->format_count)
568 if (plane->funcs->format_mod_supported) {
569 if (!plane->funcs->format_mod_supported(plane, format, modifier))
572 if (!plane->modifier_count)
575 for (i = 0; i < plane->modifier_count; i++) {
576 if (modifier == plane->modifiers[i])
579 if (i == plane->modifier_count)
587 * __setplane_internal - setplane handler for internal callers
589 * This function will take a reference on the new fb for the plane
592 * src_{x,y,w,h} are provided in 16.16 fixed point format
594 static int __setplane_internal(struct drm_plane *plane,
595 struct drm_crtc *crtc,
596 struct drm_framebuffer *fb,
597 int32_t crtc_x, int32_t crtc_y,
598 uint32_t crtc_w, uint32_t crtc_h,
599 /* src_{x,y,w,h} values are 16.16 fixed point */
600 uint32_t src_x, uint32_t src_y,
601 uint32_t src_w, uint32_t src_h,
602 struct drm_modeset_acquire_ctx *ctx)
606 /* No fb means shut it down */
608 plane->old_fb = plane->fb;
609 ret = plane->funcs->disable_plane(plane, ctx);
614 plane->old_fb = NULL;
619 /* Check whether this plane is usable on this CRTC */
620 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
621 DRM_DEBUG_KMS("Invalid crtc for plane\n");
626 /* Check whether this plane supports the fb pixel format. */
627 ret = drm_plane_check_pixel_format(plane, fb->format->format,
630 struct drm_format_name_buf format_name;
631 DRM_DEBUG_KMS("Invalid pixel format %s, modifier 0x%llx\n",
632 drm_get_format_name(fb->format->format,
638 /* Give drivers some help against integer overflows */
639 if (crtc_w > INT_MAX ||
640 crtc_x > INT_MAX - (int32_t) crtc_w ||
642 crtc_y > INT_MAX - (int32_t) crtc_h) {
643 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
644 crtc_w, crtc_h, crtc_x, crtc_y);
649 ret = drm_framebuffer_check_src_coords(src_x, src_y, src_w, src_h, fb);
653 plane->old_fb = plane->fb;
654 ret = plane->funcs->update_plane(plane, crtc, fb,
655 crtc_x, crtc_y, crtc_w, crtc_h,
656 src_x, src_y, src_w, src_h, ctx);
661 drm_framebuffer_get(plane->fb);
664 plane->old_fb = NULL;
669 drm_framebuffer_put(plane->old_fb);
670 plane->old_fb = NULL;
675 static int setplane_internal(struct drm_plane *plane,
676 struct drm_crtc *crtc,
677 struct drm_framebuffer *fb,
678 int32_t crtc_x, int32_t crtc_y,
679 uint32_t crtc_w, uint32_t crtc_h,
680 /* src_{x,y,w,h} values are 16.16 fixed point */
681 uint32_t src_x, uint32_t src_y,
682 uint32_t src_w, uint32_t src_h)
684 struct drm_modeset_acquire_ctx ctx;
687 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
689 ret = drm_modeset_lock_all_ctx(plane->dev, &ctx);
692 ret = __setplane_internal(plane, crtc, fb,
693 crtc_x, crtc_y, crtc_w, crtc_h,
694 src_x, src_y, src_w, src_h, &ctx);
697 if (ret == -EDEADLK) {
698 ret = drm_modeset_backoff(&ctx);
702 drm_modeset_drop_locks(&ctx);
703 drm_modeset_acquire_fini(&ctx);
708 int drm_mode_setplane(struct drm_device *dev, void *data,
709 struct drm_file *file_priv)
711 struct drm_mode_set_plane *plane_req = data;
712 struct drm_plane *plane;
713 struct drm_crtc *crtc = NULL;
714 struct drm_framebuffer *fb = NULL;
717 if (!drm_core_check_feature(dev, DRIVER_MODESET))
721 * First, find the plane, crtc, and fb objects. If not available,
722 * we don't bother to call the driver.
724 plane = drm_plane_find(dev, file_priv, plane_req->plane_id);
726 DRM_DEBUG_KMS("Unknown plane ID %d\n",
727 plane_req->plane_id);
731 if (plane_req->fb_id) {
732 fb = drm_framebuffer_lookup(dev, file_priv, plane_req->fb_id);
734 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
739 crtc = drm_crtc_find(dev, file_priv, plane_req->crtc_id);
741 drm_framebuffer_put(fb);
742 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
748 ret = setplane_internal(plane, crtc, fb,
749 plane_req->crtc_x, plane_req->crtc_y,
750 plane_req->crtc_w, plane_req->crtc_h,
751 plane_req->src_x, plane_req->src_y,
752 plane_req->src_w, plane_req->src_h);
755 drm_framebuffer_put(fb);
760 static int drm_mode_cursor_universal(struct drm_crtc *crtc,
761 struct drm_mode_cursor2 *req,
762 struct drm_file *file_priv,
763 struct drm_modeset_acquire_ctx *ctx)
765 struct drm_device *dev = crtc->dev;
766 struct drm_plane *plane = crtc->cursor;
767 struct drm_framebuffer *fb = NULL;
768 struct drm_mode_fb_cmd2 fbreq = {
770 .height = req->height,
771 .pixel_format = DRM_FORMAT_ARGB8888,
772 .pitches = { req->width * 4 },
773 .handles = { req->handle },
775 int32_t crtc_x, crtc_y;
776 uint32_t crtc_w = 0, crtc_h = 0;
777 uint32_t src_w = 0, src_h = 0;
781 WARN_ON(plane->crtc != crtc && plane->crtc != NULL);
784 * Obtain fb we'll be using (either new or existing) and take an extra
785 * reference to it if fb != null. setplane will take care of dropping
786 * the reference if the plane update fails.
788 if (req->flags & DRM_MODE_CURSOR_BO) {
790 fb = drm_internal_framebuffer_create(dev, &fbreq, file_priv);
792 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
796 fb->hot_x = req->hot_x;
797 fb->hot_y = req->hot_y;
803 fb = plane->state->fb;
808 drm_framebuffer_get(fb);
811 if (req->flags & DRM_MODE_CURSOR_MOVE) {
815 crtc_x = crtc->cursor_x;
816 crtc_y = crtc->cursor_y;
822 src_w = fb->width << 16;
823 src_h = fb->height << 16;
826 ret = __setplane_internal(plane, crtc, fb,
827 crtc_x, crtc_y, crtc_w, crtc_h,
828 0, 0, src_w, src_h, ctx);
831 drm_framebuffer_put(fb);
833 /* Update successful; save new cursor position, if necessary */
834 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
835 crtc->cursor_x = req->x;
836 crtc->cursor_y = req->y;
842 static int drm_mode_cursor_common(struct drm_device *dev,
843 struct drm_mode_cursor2 *req,
844 struct drm_file *file_priv)
846 struct drm_crtc *crtc;
847 struct drm_modeset_acquire_ctx ctx;
850 if (!drm_core_check_feature(dev, DRIVER_MODESET))
853 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
856 crtc = drm_crtc_find(dev, file_priv, req->crtc_id);
858 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
862 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
864 ret = drm_modeset_lock(&crtc->mutex, &ctx);
868 * If this crtc has a universal cursor plane, call that plane's update
869 * handler rather than using legacy cursor handlers.
872 ret = drm_modeset_lock(&crtc->cursor->mutex, &ctx);
876 ret = drm_mode_cursor_universal(crtc, req, file_priv, &ctx);
880 if (req->flags & DRM_MODE_CURSOR_BO) {
881 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
885 /* Turns off the cursor if handle is 0 */
886 if (crtc->funcs->cursor_set2)
887 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
888 req->width, req->height, req->hot_x, req->hot_y);
890 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
891 req->width, req->height);
894 if (req->flags & DRM_MODE_CURSOR_MOVE) {
895 if (crtc->funcs->cursor_move) {
896 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
903 if (ret == -EDEADLK) {
904 ret = drm_modeset_backoff(&ctx);
909 drm_modeset_drop_locks(&ctx);
910 drm_modeset_acquire_fini(&ctx);
917 int drm_mode_cursor_ioctl(struct drm_device *dev,
918 void *data, struct drm_file *file_priv)
920 struct drm_mode_cursor *req = data;
921 struct drm_mode_cursor2 new_req;
923 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
924 new_req.hot_x = new_req.hot_y = 0;
926 return drm_mode_cursor_common(dev, &new_req, file_priv);
930 * Set the cursor configuration based on user request. This implements the 2nd
931 * version of the cursor ioctl, which allows userspace to additionally specify
932 * the hotspot of the pointer.
934 int drm_mode_cursor2_ioctl(struct drm_device *dev,
935 void *data, struct drm_file *file_priv)
937 struct drm_mode_cursor2 *req = data;
939 return drm_mode_cursor_common(dev, req, file_priv);
942 int drm_mode_page_flip_ioctl(struct drm_device *dev,
943 void *data, struct drm_file *file_priv)
945 struct drm_mode_crtc_page_flip_target *page_flip = data;
946 struct drm_crtc *crtc;
947 struct drm_plane *plane;
948 struct drm_framebuffer *fb = NULL, *old_fb;
949 struct drm_pending_vblank_event *e = NULL;
950 u32 target_vblank = page_flip->sequence;
951 struct drm_modeset_acquire_ctx ctx;
954 if (!drm_core_check_feature(dev, DRIVER_MODESET))
957 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS)
960 if (page_flip->sequence != 0 && !(page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET))
963 /* Only one of the DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags
966 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) == DRM_MODE_PAGE_FLIP_TARGET)
969 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
972 crtc = drm_crtc_find(dev, file_priv, page_flip->crtc_id);
976 plane = crtc->primary;
978 if (crtc->funcs->page_flip_target) {
982 r = drm_crtc_vblank_get(crtc);
986 current_vblank = (u32)drm_crtc_vblank_count(crtc);
988 switch (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) {
989 case DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE:
990 if ((int)(target_vblank - current_vblank) > 1) {
991 DRM_DEBUG("Invalid absolute flip target %u, "
992 "must be <= %u\n", target_vblank,
994 drm_crtc_vblank_put(crtc);
998 case DRM_MODE_PAGE_FLIP_TARGET_RELATIVE:
999 if (target_vblank != 0 && target_vblank != 1) {
1000 DRM_DEBUG("Invalid relative flip target %u, "
1001 "must be 0 or 1\n", target_vblank);
1002 drm_crtc_vblank_put(crtc);
1005 target_vblank += current_vblank;
1008 target_vblank = current_vblank +
1009 !(page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC);
1012 } else if (crtc->funcs->page_flip == NULL ||
1013 (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET)) {
1017 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
1019 ret = drm_modeset_lock(&crtc->mutex, &ctx);
1022 ret = drm_modeset_lock(&plane->mutex, &ctx);
1027 old_fb = plane->state->fb;
1031 if (old_fb == NULL) {
1032 /* The framebuffer is currently unbound, presumably
1033 * due to a hotplug event, that userspace has not
1040 fb = drm_framebuffer_lookup(dev, file_priv, page_flip->fb_id);
1047 const struct drm_plane_state *state = plane->state;
1049 ret = drm_framebuffer_check_src_coords(state->src_x,
1055 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y,
1061 if (old_fb->format != fb->format) {
1062 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
1067 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1068 e = kzalloc(sizeof *e, GFP_KERNEL);
1074 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
1075 e->event.base.length = sizeof(e->event);
1076 e->event.vbl.user_data = page_flip->user_data;
1077 e->event.vbl.crtc_id = crtc->base.id;
1079 ret = drm_event_reserve_init(dev, file_priv, &e->base, &e->event.base);
1087 plane->old_fb = plane->fb;
1088 if (crtc->funcs->page_flip_target)
1089 ret = crtc->funcs->page_flip_target(crtc, fb, e,
1094 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags,
1097 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT)
1098 drm_event_cancel_free(dev, &e->base);
1099 /* Keep the old fb, don't unref it. */
1100 plane->old_fb = NULL;
1102 if (!plane->state) {
1104 drm_framebuffer_get(fb);
1110 drm_framebuffer_put(fb);
1112 drm_framebuffer_put(plane->old_fb);
1113 plane->old_fb = NULL;
1115 if (ret == -EDEADLK) {
1116 ret = drm_modeset_backoff(&ctx);
1121 drm_modeset_drop_locks(&ctx);
1122 drm_modeset_acquire_fini(&ctx);
1124 if (ret && crtc->funcs->page_flip_target)
1125 drm_crtc_vblank_put(crtc);