]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/drm_plane.c
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / drm_plane.c
1 /*
2 * Copyright (c) 2016 Intel Corporation
3 *
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.
13 *
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
20 * OF THIS SOFTWARE.
21 */
22
23 #include <drm/drmP.h>
24 #include <drm/drm_plane.h>
25
26 #include "drm_crtc_internal.h"
27
28 /**
29 * DOC: overview
30 *
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.
38 *
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().
42 *
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().
48 *
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".
51 */
52
53 static unsigned int drm_num_planes(struct drm_device *dev)
54 {
55 unsigned int num = 0;
56 struct drm_plane *tmp;
57
58 drm_for_each_plane(tmp, dev) {
59 num++;
60 }
61
62 return num;
63 }
64
65 static inline u32 *
66 formats_ptr(struct drm_format_modifier_blob *blob)
67 {
68 return (u32 *)(((char *)blob) + blob->formats_offset);
69 }
70
71 static inline struct drm_format_modifier *
72 modifiers_ptr(struct drm_format_modifier_blob *blob)
73 {
74 return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
75 }
76
77 static int create_in_format_blob(struct drm_device *dev, struct drm_plane *plane)
78 {
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;
84 unsigned int i, j;
85
86 formats_size = sizeof(__u32) * plane->format_count;
87 if (WARN_ON(!formats_size)) {
88 /* 0 formats are never expected */
89 return 0;
90 }
91
92 modifiers_size =
93 sizeof(struct drm_format_modifier) * plane->modifier_count;
94
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.
98 */
99 BUILD_BUG_ON(sizeof(struct drm_format_modifier_blob) % 8);
100 blob_size += ALIGN(formats_size, 8);
101 blob_size += modifiers_size;
102
103 blob = drm_property_create_blob(dev, blob_size, NULL);
104 if (IS_ERR(blob))
105 return -1;
106
107 blob_data = (struct drm_format_modifier_blob *)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;
112
113 blob_data->modifiers_offset =
114 ALIGN(blob_data->formats_offset + formats_size, 8);
115
116 memcpy(formats_ptr(blob_data), plane->format_types, formats_size);
117
118 /* If we can't determine support, just bail */
119 if (!plane->funcs->format_mod_supported)
120 goto done;
121
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])) {
128
129 mod->formats |= 1ULL << j;
130 }
131 }
132
133 mod->modifier = plane->modifiers[i];
134 mod->offset = 0;
135 mod->pad = 0;
136 mod++;
137 }
138
139 done:
140 drm_object_attach_property(&plane->base, config->modifiers_property,
141 blob->base.id);
142
143 return 0;
144 }
145
146 /**
147 * drm_universal_plane_init - Initialize a new universal plane object
148 * @dev: DRM device
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
158 *
159 * Initializes a plane object of type @type.
160 *
161 * Returns:
162 * Zero on success, error code on failure.
163 */
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, ...)
171 {
172 struct drm_mode_config *config = &dev->mode_config;
173 unsigned int format_modifier_count = 0;
174 int ret;
175
176 ret = drm_mode_object_add(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
177 if (ret)
178 return ret;
179
180 drm_modeset_lock_init(&plane->mutex);
181
182 plane->base.properties = &plane->properties;
183 plane->dev = dev;
184 plane->funcs = funcs;
185 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
186 GFP_KERNEL);
187 if (!plane->format_types) {
188 DRM_DEBUG_KMS("out of memory when allocating plane\n");
189 drm_mode_object_unregister(dev, &plane->base);
190 return -ENOMEM;
191 }
192
193 /*
194 * First driver to need more than 64 formats needs to fix this. Each
195 * format is encoded as a bit and the current code only supports a u64.
196 */
197 if (WARN_ON(format_count > 64))
198 return -EINVAL;
199
200 if (format_modifiers) {
201 const uint64_t *temp_modifiers = format_modifiers;
202 while (*temp_modifiers++ != DRM_FORMAT_MOD_INVALID)
203 format_modifier_count++;
204 }
205
206 if (format_modifier_count)
207 config->allow_fb_modifiers = true;
208
209 plane->modifier_count = format_modifier_count;
210 plane->modifiers = kmalloc_array(format_modifier_count,
211 sizeof(format_modifiers[0]),
212 GFP_KERNEL);
213
214 if (format_modifier_count && !plane->modifiers) {
215 DRM_DEBUG_KMS("out of memory when allocating plane\n");
216 kfree(plane->format_types);
217 drm_mode_object_unregister(dev, &plane->base);
218 return -ENOMEM;
219 }
220
221 if (name) {
222 va_list ap;
223
224 va_start(ap, name);
225 plane->name = kvasprintf(GFP_KERNEL, name, ap);
226 va_end(ap);
227 } else {
228 plane->name = kasprintf(GFP_KERNEL, "plane-%d",
229 drm_num_planes(dev));
230 }
231 if (!plane->name) {
232 kfree(plane->format_types);
233 kfree(plane->modifiers);
234 drm_mode_object_unregister(dev, &plane->base);
235 return -ENOMEM;
236 }
237
238 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
239 plane->format_count = format_count;
240 memcpy(plane->modifiers, format_modifiers,
241 format_modifier_count * sizeof(format_modifiers[0]));
242 plane->possible_crtcs = possible_crtcs;
243 plane->type = type;
244
245 list_add_tail(&plane->head, &config->plane_list);
246 plane->index = config->num_total_plane++;
247
248 drm_object_attach_property(&plane->base,
249 config->plane_type_property,
250 plane->type);
251
252 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
253 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
254 drm_object_attach_property(&plane->base, config->prop_in_fence_fd, -1);
255 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
256 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
257 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
258 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
259 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
260 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
261 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
262 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
263 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
264 }
265
266 if (config->allow_fb_modifiers)
267 create_in_format_blob(dev, plane);
268
269 return 0;
270 }
271 EXPORT_SYMBOL(drm_universal_plane_init);
272
273 int drm_plane_register_all(struct drm_device *dev)
274 {
275 struct drm_plane *plane;
276 int ret = 0;
277
278 drm_for_each_plane(plane, dev) {
279 if (plane->funcs->late_register)
280 ret = plane->funcs->late_register(plane);
281 if (ret)
282 return ret;
283 }
284
285 return 0;
286 }
287
288 void drm_plane_unregister_all(struct drm_device *dev)
289 {
290 struct drm_plane *plane;
291
292 drm_for_each_plane(plane, dev) {
293 if (plane->funcs->early_unregister)
294 plane->funcs->early_unregister(plane);
295 }
296 }
297
298 /**
299 * drm_plane_init - Initialize a legacy plane
300 * @dev: DRM device
301 * @plane: plane object to init
302 * @possible_crtcs: bitmask of possible CRTCs
303 * @funcs: callbacks for the new plane
304 * @formats: array of supported formats (DRM_FORMAT\_\*)
305 * @format_count: number of elements in @formats
306 * @is_primary: plane type (primary vs overlay)
307 *
308 * Legacy API to initialize a DRM plane.
309 *
310 * New drivers should call drm_universal_plane_init() instead.
311 *
312 * Returns:
313 * Zero on success, error code on failure.
314 */
315 int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
316 uint32_t possible_crtcs,
317 const struct drm_plane_funcs *funcs,
318 const uint32_t *formats, unsigned int format_count,
319 bool is_primary)
320 {
321 enum drm_plane_type type;
322
323 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
324 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
325 formats, format_count,
326 NULL, type, NULL);
327 }
328 EXPORT_SYMBOL(drm_plane_init);
329
330 /**
331 * drm_plane_cleanup - Clean up the core plane usage
332 * @plane: plane to cleanup
333 *
334 * This function cleans up @plane and removes it from the DRM mode setting
335 * core. Note that the function does *not* free the plane structure itself,
336 * this is the responsibility of the caller.
337 */
338 void drm_plane_cleanup(struct drm_plane *plane)
339 {
340 struct drm_device *dev = plane->dev;
341
342 drm_modeset_lock_fini(&plane->mutex);
343
344 kfree(plane->format_types);
345 kfree(plane->modifiers);
346 drm_mode_object_unregister(dev, &plane->base);
347
348 BUG_ON(list_empty(&plane->head));
349
350 /* Note that the plane_list is considered to be static; should we
351 * remove the drm_plane at runtime we would have to decrement all
352 * the indices on the drm_plane after us in the plane_list.
353 */
354
355 list_del(&plane->head);
356 dev->mode_config.num_total_plane--;
357
358 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
359 if (plane->state && plane->funcs->atomic_destroy_state)
360 plane->funcs->atomic_destroy_state(plane, plane->state);
361
362 kfree(plane->name);
363
364 memset(plane, 0, sizeof(*plane));
365 }
366 EXPORT_SYMBOL(drm_plane_cleanup);
367
368 /**
369 * drm_plane_from_index - find the registered plane at an index
370 * @dev: DRM device
371 * @idx: index of registered plane to find for
372 *
373 * Given a plane index, return the registered plane from DRM device's
374 * list of planes with matching index. This is the inverse of drm_plane_index().
375 */
376 struct drm_plane *
377 drm_plane_from_index(struct drm_device *dev, int idx)
378 {
379 struct drm_plane *plane;
380
381 drm_for_each_plane(plane, dev)
382 if (idx == plane->index)
383 return plane;
384
385 return NULL;
386 }
387 EXPORT_SYMBOL(drm_plane_from_index);
388
389 /**
390 * drm_plane_force_disable - Forcibly disable a plane
391 * @plane: plane to disable
392 *
393 * Forces the plane to be disabled.
394 *
395 * Used when the plane's current framebuffer is destroyed,
396 * and when restoring fbdev mode.
397 *
398 * Note that this function is not suitable for atomic drivers, since it doesn't
399 * wire through the lock acquisition context properly and hence can't handle
400 * retries or driver private locks. You probably want to use
401 * drm_atomic_helper_disable_plane() or
402 * drm_atomic_helper_disable_planes_on_crtc() instead.
403 */
404 void drm_plane_force_disable(struct drm_plane *plane)
405 {
406 int ret;
407
408 if (!plane->fb)
409 return;
410
411 WARN_ON(drm_drv_uses_atomic_modeset(plane->dev));
412
413 plane->old_fb = plane->fb;
414 ret = plane->funcs->disable_plane(plane, NULL);
415 if (ret) {
416 DRM_ERROR("failed to disable plane with busy fb\n");
417 plane->old_fb = NULL;
418 return;
419 }
420 /* disconnect the plane from the fb and crtc: */
421 drm_framebuffer_put(plane->old_fb);
422 plane->old_fb = NULL;
423 plane->fb = NULL;
424 plane->crtc = NULL;
425 }
426 EXPORT_SYMBOL(drm_plane_force_disable);
427
428 /**
429 * drm_mode_plane_set_obj_prop - set the value of a property
430 * @plane: drm plane object to set property value for
431 * @property: property to set
432 * @value: value the property should be set to
433 *
434 * This functions sets a given property on a given plane object. This function
435 * calls the driver's ->set_property callback and changes the software state of
436 * the property if the callback succeeds.
437 *
438 * Returns:
439 * Zero on success, error code on failure.
440 */
441 int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
442 struct drm_property *property,
443 uint64_t value)
444 {
445 int ret = -EINVAL;
446 struct drm_mode_object *obj = &plane->base;
447
448 if (plane->funcs->set_property)
449 ret = plane->funcs->set_property(plane, property, value);
450 if (!ret)
451 drm_object_property_set_value(obj, property, value);
452
453 return ret;
454 }
455 EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
456
457 int drm_mode_getplane_res(struct drm_device *dev, void *data,
458 struct drm_file *file_priv)
459 {
460 struct drm_mode_get_plane_res *plane_resp = data;
461 struct drm_mode_config *config;
462 struct drm_plane *plane;
463 uint32_t __user *plane_ptr;
464 int count = 0;
465
466 if (!drm_core_check_feature(dev, DRIVER_MODESET))
467 return -EINVAL;
468
469 config = &dev->mode_config;
470 plane_ptr = u64_to_user_ptr(plane_resp->plane_id_ptr);
471
472 /*
473 * This ioctl is called twice, once to determine how much space is
474 * needed, and the 2nd time to fill it.
475 */
476 drm_for_each_plane(plane, dev) {
477 /*
478 * Unless userspace set the 'universal planes'
479 * capability bit, only advertise overlays.
480 */
481 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
482 !file_priv->universal_planes)
483 continue;
484
485 if (drm_lease_held(file_priv, plane->base.id)) {
486 if (count < plane_resp->count_planes &&
487 put_user(plane->base.id, plane_ptr + count))
488 return -EFAULT;
489 count++;
490 }
491 }
492 plane_resp->count_planes = count;
493
494 return 0;
495 }
496
497 int drm_mode_getplane(struct drm_device *dev, void *data,
498 struct drm_file *file_priv)
499 {
500 struct drm_mode_get_plane *plane_resp = data;
501 struct drm_plane *plane;
502 uint32_t __user *format_ptr;
503
504 if (!drm_core_check_feature(dev, DRIVER_MODESET))
505 return -EINVAL;
506
507 plane = drm_plane_find(dev, file_priv, plane_resp->plane_id);
508 if (!plane)
509 return -ENOENT;
510
511 drm_modeset_lock(&plane->mutex, NULL);
512 if (plane->state && plane->state->crtc && drm_lease_held(file_priv, plane->state->crtc->base.id))
513 plane_resp->crtc_id = plane->state->crtc->base.id;
514 else if (!plane->state && plane->crtc && drm_lease_held(file_priv, plane->crtc->base.id))
515 plane_resp->crtc_id = plane->crtc->base.id;
516 else
517 plane_resp->crtc_id = 0;
518
519 if (plane->state && plane->state->fb)
520 plane_resp->fb_id = plane->state->fb->base.id;
521 else if (!plane->state && plane->fb)
522 plane_resp->fb_id = plane->fb->base.id;
523 else
524 plane_resp->fb_id = 0;
525 drm_modeset_unlock(&plane->mutex);
526
527 plane_resp->plane_id = plane->base.id;
528 plane_resp->possible_crtcs = drm_lease_filter_crtcs(file_priv,
529 plane->possible_crtcs);
530
531 plane_resp->gamma_size = 0;
532
533 /*
534 * This ioctl is called twice, once to determine how much space is
535 * needed, and the 2nd time to fill it.
536 */
537 if (plane->format_count &&
538 (plane_resp->count_format_types >= plane->format_count)) {
539 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
540 if (copy_to_user(format_ptr,
541 plane->format_types,
542 sizeof(uint32_t) * plane->format_count)) {
543 return -EFAULT;
544 }
545 }
546 plane_resp->count_format_types = plane->format_count;
547
548 return 0;
549 }
550
551 int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
552 {
553 unsigned int i;
554
555 for (i = 0; i < plane->format_count; i++) {
556 if (format == plane->format_types[i])
557 return 0;
558 }
559
560 return -EINVAL;
561 }
562
563 /*
564 * __setplane_internal - setplane handler for internal callers
565 *
566 * This function will take a reference on the new fb for the plane
567 * on success.
568 *
569 * src_{x,y,w,h} are provided in 16.16 fixed point format
570 */
571 static int __setplane_internal(struct drm_plane *plane,
572 struct drm_crtc *crtc,
573 struct drm_framebuffer *fb,
574 int32_t crtc_x, int32_t crtc_y,
575 uint32_t crtc_w, uint32_t crtc_h,
576 /* src_{x,y,w,h} values are 16.16 fixed point */
577 uint32_t src_x, uint32_t src_y,
578 uint32_t src_w, uint32_t src_h,
579 struct drm_modeset_acquire_ctx *ctx)
580 {
581 int ret = 0;
582
583 /* No fb means shut it down */
584 if (!fb) {
585 plane->old_fb = plane->fb;
586 ret = plane->funcs->disable_plane(plane, ctx);
587 if (!ret) {
588 plane->crtc = NULL;
589 plane->fb = NULL;
590 } else {
591 plane->old_fb = NULL;
592 }
593 goto out;
594 }
595
596 /* Check whether this plane is usable on this CRTC */
597 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
598 DRM_DEBUG_KMS("Invalid crtc for plane\n");
599 ret = -EINVAL;
600 goto out;
601 }
602
603 /* Check whether this plane supports the fb pixel format. */
604 ret = drm_plane_check_pixel_format(plane, fb->format->format);
605 if (ret) {
606 struct drm_format_name_buf format_name;
607 DRM_DEBUG_KMS("Invalid pixel format %s\n",
608 drm_get_format_name(fb->format->format,
609 &format_name));
610 goto out;
611 }
612
613 /* Give drivers some help against integer overflows */
614 if (crtc_w > INT_MAX ||
615 crtc_x > INT_MAX - (int32_t) crtc_w ||
616 crtc_h > INT_MAX ||
617 crtc_y > INT_MAX - (int32_t) crtc_h) {
618 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
619 crtc_w, crtc_h, crtc_x, crtc_y);
620 ret = -ERANGE;
621 goto out;
622 }
623
624 ret = drm_framebuffer_check_src_coords(src_x, src_y, src_w, src_h, fb);
625 if (ret)
626 goto out;
627
628 plane->old_fb = plane->fb;
629 ret = plane->funcs->update_plane(plane, crtc, fb,
630 crtc_x, crtc_y, crtc_w, crtc_h,
631 src_x, src_y, src_w, src_h, ctx);
632 if (!ret) {
633 plane->crtc = crtc;
634 plane->fb = fb;
635 drm_framebuffer_get(plane->fb);
636 } else {
637 plane->old_fb = NULL;
638 }
639
640 out:
641 if (plane->old_fb)
642 drm_framebuffer_put(plane->old_fb);
643 plane->old_fb = NULL;
644
645 return ret;
646 }
647
648 static int setplane_internal(struct drm_plane *plane,
649 struct drm_crtc *crtc,
650 struct drm_framebuffer *fb,
651 int32_t crtc_x, int32_t crtc_y,
652 uint32_t crtc_w, uint32_t crtc_h,
653 /* src_{x,y,w,h} values are 16.16 fixed point */
654 uint32_t src_x, uint32_t src_y,
655 uint32_t src_w, uint32_t src_h)
656 {
657 struct drm_modeset_acquire_ctx ctx;
658 int ret;
659
660 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
661 retry:
662 ret = drm_modeset_lock_all_ctx(plane->dev, &ctx);
663 if (ret)
664 goto fail;
665 ret = __setplane_internal(plane, crtc, fb,
666 crtc_x, crtc_y, crtc_w, crtc_h,
667 src_x, src_y, src_w, src_h, &ctx);
668
669 fail:
670 if (ret == -EDEADLK) {
671 ret = drm_modeset_backoff(&ctx);
672 if (!ret)
673 goto retry;
674 }
675 drm_modeset_drop_locks(&ctx);
676 drm_modeset_acquire_fini(&ctx);
677
678 return ret;
679 }
680
681 int drm_mode_setplane(struct drm_device *dev, void *data,
682 struct drm_file *file_priv)
683 {
684 struct drm_mode_set_plane *plane_req = data;
685 struct drm_plane *plane;
686 struct drm_crtc *crtc = NULL;
687 struct drm_framebuffer *fb = NULL;
688 int ret;
689
690 if (!drm_core_check_feature(dev, DRIVER_MODESET))
691 return -EINVAL;
692
693 /*
694 * First, find the plane, crtc, and fb objects. If not available,
695 * we don't bother to call the driver.
696 */
697 plane = drm_plane_find(dev, file_priv, plane_req->plane_id);
698 if (!plane) {
699 DRM_DEBUG_KMS("Unknown plane ID %d\n",
700 plane_req->plane_id);
701 return -ENOENT;
702 }
703
704 if (plane_req->fb_id) {
705 fb = drm_framebuffer_lookup(dev, file_priv, plane_req->fb_id);
706 if (!fb) {
707 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
708 plane_req->fb_id);
709 return -ENOENT;
710 }
711
712 crtc = drm_crtc_find(dev, file_priv, plane_req->crtc_id);
713 if (!crtc) {
714 drm_framebuffer_put(fb);
715 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
716 plane_req->crtc_id);
717 return -ENOENT;
718 }
719 }
720
721 ret = setplane_internal(plane, crtc, fb,
722 plane_req->crtc_x, plane_req->crtc_y,
723 plane_req->crtc_w, plane_req->crtc_h,
724 plane_req->src_x, plane_req->src_y,
725 plane_req->src_w, plane_req->src_h);
726
727 if (fb)
728 drm_framebuffer_put(fb);
729
730 return ret;
731 }
732
733 static int drm_mode_cursor_universal(struct drm_crtc *crtc,
734 struct drm_mode_cursor2 *req,
735 struct drm_file *file_priv,
736 struct drm_modeset_acquire_ctx *ctx)
737 {
738 struct drm_device *dev = crtc->dev;
739 struct drm_framebuffer *fb = NULL;
740 struct drm_mode_fb_cmd2 fbreq = {
741 .width = req->width,
742 .height = req->height,
743 .pixel_format = DRM_FORMAT_ARGB8888,
744 .pitches = { req->width * 4 },
745 .handles = { req->handle },
746 };
747 int32_t crtc_x, crtc_y;
748 uint32_t crtc_w = 0, crtc_h = 0;
749 uint32_t src_w = 0, src_h = 0;
750 int ret = 0;
751
752 BUG_ON(!crtc->cursor);
753 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
754
755 /*
756 * Obtain fb we'll be using (either new or existing) and take an extra
757 * reference to it if fb != null. setplane will take care of dropping
758 * the reference if the plane update fails.
759 */
760 if (req->flags & DRM_MODE_CURSOR_BO) {
761 if (req->handle) {
762 fb = drm_internal_framebuffer_create(dev, &fbreq, file_priv);
763 if (IS_ERR(fb)) {
764 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
765 return PTR_ERR(fb);
766 }
767 fb->hot_x = req->hot_x;
768 fb->hot_y = req->hot_y;
769 } else {
770 fb = NULL;
771 }
772 } else {
773 fb = crtc->cursor->fb;
774 if (fb)
775 drm_framebuffer_get(fb);
776 }
777
778 if (req->flags & DRM_MODE_CURSOR_MOVE) {
779 crtc_x = req->x;
780 crtc_y = req->y;
781 } else {
782 crtc_x = crtc->cursor_x;
783 crtc_y = crtc->cursor_y;
784 }
785
786 if (fb) {
787 crtc_w = fb->width;
788 crtc_h = fb->height;
789 src_w = fb->width << 16;
790 src_h = fb->height << 16;
791 }
792
793 ret = __setplane_internal(crtc->cursor, crtc, fb,
794 crtc_x, crtc_y, crtc_w, crtc_h,
795 0, 0, src_w, src_h, ctx);
796
797 if (fb)
798 drm_framebuffer_put(fb);
799
800 /* Update successful; save new cursor position, if necessary */
801 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
802 crtc->cursor_x = req->x;
803 crtc->cursor_y = req->y;
804 }
805
806 return ret;
807 }
808
809 static int drm_mode_cursor_common(struct drm_device *dev,
810 struct drm_mode_cursor2 *req,
811 struct drm_file *file_priv)
812 {
813 struct drm_crtc *crtc;
814 struct drm_modeset_acquire_ctx ctx;
815 int ret = 0;
816
817 if (!drm_core_check_feature(dev, DRIVER_MODESET))
818 return -EINVAL;
819
820 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
821 return -EINVAL;
822
823 crtc = drm_crtc_find(dev, file_priv, req->crtc_id);
824 if (!crtc) {
825 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
826 return -ENOENT;
827 }
828
829 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
830 retry:
831 ret = drm_modeset_lock(&crtc->mutex, &ctx);
832 if (ret)
833 goto out;
834 /*
835 * If this crtc has a universal cursor plane, call that plane's update
836 * handler rather than using legacy cursor handlers.
837 */
838 if (crtc->cursor) {
839 ret = drm_modeset_lock(&crtc->cursor->mutex, &ctx);
840 if (ret)
841 goto out;
842
843 ret = drm_mode_cursor_universal(crtc, req, file_priv, &ctx);
844 goto out;
845 }
846
847 if (req->flags & DRM_MODE_CURSOR_BO) {
848 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
849 ret = -ENXIO;
850 goto out;
851 }
852 /* Turns off the cursor if handle is 0 */
853 if (crtc->funcs->cursor_set2)
854 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
855 req->width, req->height, req->hot_x, req->hot_y);
856 else
857 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
858 req->width, req->height);
859 }
860
861 if (req->flags & DRM_MODE_CURSOR_MOVE) {
862 if (crtc->funcs->cursor_move) {
863 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
864 } else {
865 ret = -EFAULT;
866 goto out;
867 }
868 }
869 out:
870 if (ret == -EDEADLK) {
871 ret = drm_modeset_backoff(&ctx);
872 if (!ret)
873 goto retry;
874 }
875
876 drm_modeset_drop_locks(&ctx);
877 drm_modeset_acquire_fini(&ctx);
878
879 return ret;
880
881 }
882
883
884 int drm_mode_cursor_ioctl(struct drm_device *dev,
885 void *data, struct drm_file *file_priv)
886 {
887 struct drm_mode_cursor *req = data;
888 struct drm_mode_cursor2 new_req;
889
890 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
891 new_req.hot_x = new_req.hot_y = 0;
892
893 return drm_mode_cursor_common(dev, &new_req, file_priv);
894 }
895
896 /*
897 * Set the cursor configuration based on user request. This implements the 2nd
898 * version of the cursor ioctl, which allows userspace to additionally specify
899 * the hotspot of the pointer.
900 */
901 int drm_mode_cursor2_ioctl(struct drm_device *dev,
902 void *data, struct drm_file *file_priv)
903 {
904 struct drm_mode_cursor2 *req = data;
905
906 return drm_mode_cursor_common(dev, req, file_priv);
907 }
908
909 int drm_mode_page_flip_ioctl(struct drm_device *dev,
910 void *data, struct drm_file *file_priv)
911 {
912 struct drm_mode_crtc_page_flip_target *page_flip = data;
913 struct drm_crtc *crtc;
914 struct drm_framebuffer *fb = NULL;
915 struct drm_pending_vblank_event *e = NULL;
916 u32 target_vblank = page_flip->sequence;
917 struct drm_modeset_acquire_ctx ctx;
918 int ret = -EINVAL;
919
920 if (!drm_core_check_feature(dev, DRIVER_MODESET))
921 return -EINVAL;
922
923 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS)
924 return -EINVAL;
925
926 if (page_flip->sequence != 0 && !(page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET))
927 return -EINVAL;
928
929 /* Only one of the DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags
930 * can be specified
931 */
932 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) == DRM_MODE_PAGE_FLIP_TARGET)
933 return -EINVAL;
934
935 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
936 return -EINVAL;
937
938 crtc = drm_crtc_find(dev, file_priv, page_flip->crtc_id);
939 if (!crtc)
940 return -ENOENT;
941
942 if (crtc->funcs->page_flip_target) {
943 u32 current_vblank;
944 int r;
945
946 r = drm_crtc_vblank_get(crtc);
947 if (r)
948 return r;
949
950 current_vblank = drm_crtc_vblank_count(crtc);
951
952 switch (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) {
953 case DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE:
954 if ((int)(target_vblank - current_vblank) > 1) {
955 DRM_DEBUG("Invalid absolute flip target %u, "
956 "must be <= %u\n", target_vblank,
957 current_vblank + 1);
958 drm_crtc_vblank_put(crtc);
959 return -EINVAL;
960 }
961 break;
962 case DRM_MODE_PAGE_FLIP_TARGET_RELATIVE:
963 if (target_vblank != 0 && target_vblank != 1) {
964 DRM_DEBUG("Invalid relative flip target %u, "
965 "must be 0 or 1\n", target_vblank);
966 drm_crtc_vblank_put(crtc);
967 return -EINVAL;
968 }
969 target_vblank += current_vblank;
970 break;
971 default:
972 target_vblank = current_vblank +
973 !(page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC);
974 break;
975 }
976 } else if (crtc->funcs->page_flip == NULL ||
977 (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET)) {
978 return -EINVAL;
979 }
980
981 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
982 retry:
983 ret = drm_modeset_lock(&crtc->mutex, &ctx);
984 if (ret)
985 goto out;
986 ret = drm_modeset_lock(&crtc->primary->mutex, &ctx);
987 if (ret)
988 goto out;
989
990 if (crtc->primary->fb == NULL) {
991 /* The framebuffer is currently unbound, presumably
992 * due to a hotplug event, that userspace has not
993 * yet discovered.
994 */
995 ret = -EBUSY;
996 goto out;
997 }
998
999 fb = drm_framebuffer_lookup(dev, file_priv, page_flip->fb_id);
1000 if (!fb) {
1001 ret = -ENOENT;
1002 goto out;
1003 }
1004
1005 if (crtc->state) {
1006 const struct drm_plane_state *state = crtc->primary->state;
1007
1008 ret = drm_framebuffer_check_src_coords(state->src_x,
1009 state->src_y,
1010 state->src_w,
1011 state->src_h,
1012 fb);
1013 } else {
1014 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
1015 }
1016 if (ret)
1017 goto out;
1018
1019 if (crtc->primary->fb->format != fb->format) {
1020 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
1021 ret = -EINVAL;
1022 goto out;
1023 }
1024
1025 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1026 e = kzalloc(sizeof *e, GFP_KERNEL);
1027 if (!e) {
1028 ret = -ENOMEM;
1029 goto out;
1030 }
1031 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
1032 e->event.base.length = sizeof(e->event);
1033 e->event.vbl.user_data = page_flip->user_data;
1034 e->event.vbl.crtc_id = crtc->base.id;
1035 ret = drm_event_reserve_init(dev, file_priv, &e->base, &e->event.base);
1036 if (ret) {
1037 kfree(e);
1038 e = NULL;
1039 goto out;
1040 }
1041 }
1042
1043 crtc->primary->old_fb = crtc->primary->fb;
1044 if (crtc->funcs->page_flip_target)
1045 ret = crtc->funcs->page_flip_target(crtc, fb, e,
1046 page_flip->flags,
1047 target_vblank,
1048 &ctx);
1049 else
1050 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags,
1051 &ctx);
1052 if (ret) {
1053 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT)
1054 drm_event_cancel_free(dev, &e->base);
1055 /* Keep the old fb, don't unref it. */
1056 crtc->primary->old_fb = NULL;
1057 } else {
1058 crtc->primary->fb = fb;
1059 /* Unref only the old framebuffer. */
1060 fb = NULL;
1061 }
1062
1063 out:
1064 if (fb)
1065 drm_framebuffer_put(fb);
1066 if (crtc->primary->old_fb)
1067 drm_framebuffer_put(crtc->primary->old_fb);
1068 crtc->primary->old_fb = NULL;
1069
1070 if (ret == -EDEADLK) {
1071 ret = drm_modeset_backoff(&ctx);
1072 if (!ret)
1073 goto retry;
1074 }
1075
1076 drm_modeset_drop_locks(&ctx);
1077 drm_modeset_acquire_fini(&ctx);
1078
1079 if (ret && crtc->funcs->page_flip_target)
1080 drm_crtc_vblank_put(crtc);
1081
1082 return ret;
1083 }