blob: 5d1c4f452ca83a463884893a964d72e2b59fd044 [file] [log] [blame]
Daniel Vetter43968d72016-09-21 10:59:24 +02001/*
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
Daniel Vetter532b3672016-09-21 10:59:25 +020028/**
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
Daniel Vetterea0dd852016-12-29 21:48:26 +010040 * &struct drm_plane (possibly as part of a larger structure) and registers it
Daniel Vetter532b3672016-09-21 10:59:25 +020041 * 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
Daniel Vetterd5745282017-01-25 07:26:45 +010045 * drm_plane_type for a more in-depth discussion of these special uapi-relevant
Daniel Vetter532b3672016-09-21 10:59:25 +020046 * plane types. Special planes are associated with their CRTC by calling
47 * drm_crtc_init_with_planes().
Daniel Vetter1e4d84c2016-09-21 10:59:27 +020048 *
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".
Daniel Vetter532b3672016-09-21 10:59:25 +020051 */
52
Daniel Vetter43968d72016-09-21 10:59:24 +020053static 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
Ben Widawskydb1689a2017-07-23 20:46:39 -070065static inline u32 *
66formats_ptr(struct drm_format_modifier_blob *blob)
67{
68 return (u32 *)(((char *)blob) + blob->formats_offset);
69}
70
71static inline struct drm_format_modifier *
72modifiers_ptr(struct drm_format_modifier_blob *blob)
73{
74 return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset);
75}
76
77static 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
Dan Carpenteraadd4142017-08-09 14:19:06 +0300129 mod->formats |= 1ULL << j;
Ben Widawskydb1689a2017-07-23 20:46:39 -0700130 }
131 }
132
133 mod->modifier = plane->modifiers[i];
134 mod->offset = 0;
135 mod->pad = 0;
136 mod++;
137 }
138
139done:
140 drm_object_attach_property(&plane->base, config->modifiers_property,
141 blob->base.id);
142
143 return 0;
144}
145
Daniel Vetter43968d72016-09-21 10:59:24 +0200146/**
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
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700154 * @format_modifiers: array of struct drm_format modifiers terminated by
155 * DRM_FORMAT_MOD_INVALID
Daniel Vetter43968d72016-09-21 10:59:24 +0200156 * @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 */
164int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
Tomi Valkeinen5cd57a42016-12-02 15:45:35 +0200165 uint32_t possible_crtcs,
Daniel Vetter43968d72016-09-21 10:59:24 +0200166 const struct drm_plane_funcs *funcs,
167 const uint32_t *formats, unsigned int format_count,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700168 const uint64_t *format_modifiers,
Daniel Vetter43968d72016-09-21 10:59:24 +0200169 enum drm_plane_type type,
170 const char *name, ...)
171{
172 struct drm_mode_config *config = &dev->mode_config;
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700173 unsigned int format_modifier_count = 0;
Daniel Vetter43968d72016-09-21 10:59:24 +0200174 int ret;
175
Thierry Reding2135ea72017-02-28 15:46:37 +0100176 ret = drm_mode_object_add(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
Daniel Vetter43968d72016-09-21 10:59:24 +0200177 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
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700193 /*
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 plane->modifier_count = format_modifier_count;
207 plane->modifiers = kmalloc_array(format_modifier_count,
208 sizeof(format_modifiers[0]),
209 GFP_KERNEL);
210
211 if (format_modifier_count && !plane->modifiers) {
212 DRM_DEBUG_KMS("out of memory when allocating plane\n");
213 kfree(plane->format_types);
214 drm_mode_object_unregister(dev, &plane->base);
215 return -ENOMEM;
216 }
217
Daniel Vetter43968d72016-09-21 10:59:24 +0200218 if (name) {
219 va_list ap;
220
221 va_start(ap, name);
222 plane->name = kvasprintf(GFP_KERNEL, name, ap);
223 va_end(ap);
224 } else {
225 plane->name = kasprintf(GFP_KERNEL, "plane-%d",
226 drm_num_planes(dev));
227 }
228 if (!plane->name) {
229 kfree(plane->format_types);
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700230 kfree(plane->modifiers);
Daniel Vetter43968d72016-09-21 10:59:24 +0200231 drm_mode_object_unregister(dev, &plane->base);
232 return -ENOMEM;
233 }
234
235 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
236 plane->format_count = format_count;
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700237 memcpy(plane->modifiers, format_modifiers,
238 format_modifier_count * sizeof(format_modifiers[0]));
Daniel Vetter43968d72016-09-21 10:59:24 +0200239 plane->possible_crtcs = possible_crtcs;
240 plane->type = type;
241
242 list_add_tail(&plane->head, &config->plane_list);
243 plane->index = config->num_total_plane++;
244 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
245 config->num_overlay_plane++;
246
247 drm_object_attach_property(&plane->base,
248 config->plane_type_property,
249 plane->type);
250
251 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
252 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
Gustavo Padovan96260142016-11-15 22:06:39 +0900253 drm_object_attach_property(&plane->base, config->prop_in_fence_fd, -1);
Daniel Vetter43968d72016-09-21 10:59:24 +0200254 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
255 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
256 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
257 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
258 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
259 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
260 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
261 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
262 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
263 }
264
Ben Widawskydb1689a2017-07-23 20:46:39 -0700265 if (config->allow_fb_modifiers)
266 create_in_format_blob(dev, plane);
267
Daniel Vetter43968d72016-09-21 10:59:24 +0200268 return 0;
269}
270EXPORT_SYMBOL(drm_universal_plane_init);
271
272int drm_plane_register_all(struct drm_device *dev)
273{
274 struct drm_plane *plane;
275 int ret = 0;
276
277 drm_for_each_plane(plane, dev) {
278 if (plane->funcs->late_register)
279 ret = plane->funcs->late_register(plane);
280 if (ret)
281 return ret;
282 }
283
284 return 0;
285}
286
287void drm_plane_unregister_all(struct drm_device *dev)
288{
289 struct drm_plane *plane;
290
291 drm_for_each_plane(plane, dev) {
292 if (plane->funcs->early_unregister)
293 plane->funcs->early_unregister(plane);
294 }
295}
296
297/**
298 * drm_plane_init - Initialize a legacy plane
299 * @dev: DRM device
300 * @plane: plane object to init
301 * @possible_crtcs: bitmask of possible CRTCs
302 * @funcs: callbacks for the new plane
303 * @formats: array of supported formats (DRM_FORMAT\_\*)
304 * @format_count: number of elements in @formats
305 * @is_primary: plane type (primary vs overlay)
306 *
307 * Legacy API to initialize a DRM plane.
308 *
309 * New drivers should call drm_universal_plane_init() instead.
310 *
311 * Returns:
312 * Zero on success, error code on failure.
313 */
314int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
Tomi Valkeinen5cd57a42016-12-02 15:45:35 +0200315 uint32_t possible_crtcs,
Daniel Vetter43968d72016-09-21 10:59:24 +0200316 const struct drm_plane_funcs *funcs,
317 const uint32_t *formats, unsigned int format_count,
318 bool is_primary)
319{
320 enum drm_plane_type type;
321
322 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
323 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700324 formats, format_count,
325 NULL, type, NULL);
Daniel Vetter43968d72016-09-21 10:59:24 +0200326}
327EXPORT_SYMBOL(drm_plane_init);
328
329/**
330 * drm_plane_cleanup - Clean up the core plane usage
331 * @plane: plane to cleanup
332 *
333 * This function cleans up @plane and removes it from the DRM mode setting
334 * core. Note that the function does *not* free the plane structure itself,
335 * this is the responsibility of the caller.
336 */
337void drm_plane_cleanup(struct drm_plane *plane)
338{
339 struct drm_device *dev = plane->dev;
340
Daniel Vetter661a3752016-11-29 10:45:38 +0100341 drm_modeset_lock_fini(&plane->mutex);
342
Daniel Vetter43968d72016-09-21 10:59:24 +0200343 kfree(plane->format_types);
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700344 kfree(plane->modifiers);
Daniel Vetter43968d72016-09-21 10:59:24 +0200345 drm_mode_object_unregister(dev, &plane->base);
346
347 BUG_ON(list_empty(&plane->head));
348
349 /* Note that the plane_list is considered to be static; should we
350 * remove the drm_plane at runtime we would have to decrement all
351 * the indices on the drm_plane after us in the plane_list.
352 */
353
354 list_del(&plane->head);
355 dev->mode_config.num_total_plane--;
356 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
357 dev->mode_config.num_overlay_plane--;
Daniel Vetter43968d72016-09-21 10:59:24 +0200358
359 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
360 if (plane->state && plane->funcs->atomic_destroy_state)
361 plane->funcs->atomic_destroy_state(plane, plane->state);
362
363 kfree(plane->name);
364
365 memset(plane, 0, sizeof(*plane));
366}
367EXPORT_SYMBOL(drm_plane_cleanup);
368
369/**
370 * drm_plane_from_index - find the registered plane at an index
371 * @dev: DRM device
372 * @idx: index of registered plane to find for
373 *
374 * Given a plane index, return the registered plane from DRM device's
Shawn Guo931c6702017-01-07 16:52:11 +0800375 * list of planes with matching index. This is the inverse of drm_plane_index().
Daniel Vetter43968d72016-09-21 10:59:24 +0200376 */
377struct drm_plane *
378drm_plane_from_index(struct drm_device *dev, int idx)
379{
380 struct drm_plane *plane;
381
382 drm_for_each_plane(plane, dev)
383 if (idx == plane->index)
384 return plane;
385
386 return NULL;
387}
388EXPORT_SYMBOL(drm_plane_from_index);
389
390/**
391 * drm_plane_force_disable - Forcibly disable a plane
392 * @plane: plane to disable
393 *
394 * Forces the plane to be disabled.
395 *
396 * Used when the plane's current framebuffer is destroyed,
397 * and when restoring fbdev mode.
Daniel Vetter5fbef3e2017-03-22 22:50:42 +0100398 *
399 * Note that this function is not suitable for atomic drivers, since it doesn't
400 * wire through the lock acquisition context properly and hence can't handle
401 * retries or driver private locks. You probably want to use
402 * drm_atomic_helper_disable_plane() or
403 * drm_atomic_helper_disable_planes_on_crtc() instead.
Daniel Vetter43968d72016-09-21 10:59:24 +0200404 */
405void drm_plane_force_disable(struct drm_plane *plane)
406{
407 int ret;
408
409 if (!plane->fb)
410 return;
411
Daniel Vetter5fbef3e2017-03-22 22:50:42 +0100412 WARN_ON(drm_drv_uses_atomic_modeset(plane->dev));
413
Daniel Vetter43968d72016-09-21 10:59:24 +0200414 plane->old_fb = plane->fb;
Daniel Vetter19315292017-03-22 22:50:43 +0100415 ret = plane->funcs->disable_plane(plane, NULL);
Daniel Vetter43968d72016-09-21 10:59:24 +0200416 if (ret) {
417 DRM_ERROR("failed to disable plane with busy fb\n");
418 plane->old_fb = NULL;
419 return;
420 }
421 /* disconnect the plane from the fb and crtc: */
Thierry Redinga4a69da2017-02-28 15:46:40 +0100422 drm_framebuffer_put(plane->old_fb);
Daniel Vetter43968d72016-09-21 10:59:24 +0200423 plane->old_fb = NULL;
424 plane->fb = NULL;
425 plane->crtc = NULL;
426}
427EXPORT_SYMBOL(drm_plane_force_disable);
428
429/**
430 * drm_mode_plane_set_obj_prop - set the value of a property
431 * @plane: drm plane object to set property value for
432 * @property: property to set
433 * @value: value the property should be set to
434 *
435 * This functions sets a given property on a given plane object. This function
436 * calls the driver's ->set_property callback and changes the software state of
437 * the property if the callback succeeds.
438 *
439 * Returns:
440 * Zero on success, error code on failure.
441 */
442int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
443 struct drm_property *property,
444 uint64_t value)
445{
446 int ret = -EINVAL;
447 struct drm_mode_object *obj = &plane->base;
448
449 if (plane->funcs->set_property)
450 ret = plane->funcs->set_property(plane, property, value);
Daniel Vetter144a7992017-07-25 14:02:04 +0200451 if (!ret)
Daniel Vetter43968d72016-09-21 10:59:24 +0200452 drm_object_property_set_value(obj, property, value);
453
454 return ret;
455}
456EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
457
Daniel Vetter43968d72016-09-21 10:59:24 +0200458int drm_mode_getplane_res(struct drm_device *dev, void *data,
459 struct drm_file *file_priv)
460{
461 struct drm_mode_get_plane_res *plane_resp = data;
462 struct drm_mode_config *config;
463 struct drm_plane *plane;
464 uint32_t __user *plane_ptr;
465 int copied = 0;
466 unsigned num_planes;
467
468 if (!drm_core_check_feature(dev, DRIVER_MODESET))
469 return -EINVAL;
470
471 config = &dev->mode_config;
472
473 if (file_priv->universal_planes)
474 num_planes = config->num_total_plane;
475 else
476 num_planes = config->num_overlay_plane;
477
478 /*
479 * This ioctl is called twice, once to determine how much space is
480 * needed, and the 2nd time to fill it.
481 */
482 if (num_planes &&
483 (plane_resp->count_planes >= num_planes)) {
484 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
485
486 /* Plane lists are invariant, no locking needed. */
487 drm_for_each_plane(plane, dev) {
488 /*
489 * Unless userspace set the 'universal planes'
490 * capability bit, only advertise overlays.
491 */
492 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
493 !file_priv->universal_planes)
494 continue;
495
496 if (put_user(plane->base.id, plane_ptr + copied))
497 return -EFAULT;
498 copied++;
499 }
500 }
501 plane_resp->count_planes = num_planes;
502
503 return 0;
504}
505
Daniel Vetter43968d72016-09-21 10:59:24 +0200506int drm_mode_getplane(struct drm_device *dev, void *data,
507 struct drm_file *file_priv)
508{
509 struct drm_mode_get_plane *plane_resp = data;
510 struct drm_plane *plane;
511 uint32_t __user *format_ptr;
512
513 if (!drm_core_check_feature(dev, DRIVER_MODESET))
514 return -EINVAL;
515
516 plane = drm_plane_find(dev, plane_resp->plane_id);
517 if (!plane)
518 return -ENOENT;
519
520 drm_modeset_lock(&plane->mutex, NULL);
Daniel Stonede7b6be2016-12-13 18:19:12 +0000521 if (plane->state && plane->state->crtc)
522 plane_resp->crtc_id = plane->state->crtc->base.id;
523 else if (!plane->state && plane->crtc)
Daniel Vetter43968d72016-09-21 10:59:24 +0200524 plane_resp->crtc_id = plane->crtc->base.id;
525 else
526 plane_resp->crtc_id = 0;
527
Daniel Stonede7b6be2016-12-13 18:19:12 +0000528 if (plane->state && plane->state->fb)
529 plane_resp->fb_id = plane->state->fb->base.id;
530 else if (!plane->state && plane->fb)
Daniel Vetter43968d72016-09-21 10:59:24 +0200531 plane_resp->fb_id = plane->fb->base.id;
532 else
533 plane_resp->fb_id = 0;
534 drm_modeset_unlock(&plane->mutex);
535
536 plane_resp->plane_id = plane->base.id;
537 plane_resp->possible_crtcs = plane->possible_crtcs;
538 plane_resp->gamma_size = 0;
539
540 /*
541 * This ioctl is called twice, once to determine how much space is
542 * needed, and the 2nd time to fill it.
543 */
544 if (plane->format_count &&
545 (plane_resp->count_format_types >= plane->format_count)) {
546 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
547 if (copy_to_user(format_ptr,
548 plane->format_types,
549 sizeof(uint32_t) * plane->format_count)) {
550 return -EFAULT;
551 }
552 }
553 plane_resp->count_format_types = plane->format_count;
554
555 return 0;
556}
557
Daniel Vetter43968d72016-09-21 10:59:24 +0200558int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
559{
560 unsigned int i;
561
562 for (i = 0; i < plane->format_count; i++) {
563 if (format == plane->format_types[i])
564 return 0;
565 }
566
567 return -EINVAL;
568}
569
570/*
571 * setplane_internal - setplane handler for internal callers
572 *
573 * Note that we assume an extra reference has already been taken on fb. If the
574 * update fails, this reference will be dropped before return; if it succeeds,
575 * the previous framebuffer (if any) will be unreferenced instead.
576 *
577 * src_{x,y,w,h} are provided in 16.16 fixed point format
578 */
579static int __setplane_internal(struct drm_plane *plane,
580 struct drm_crtc *crtc,
581 struct drm_framebuffer *fb,
582 int32_t crtc_x, int32_t crtc_y,
583 uint32_t crtc_w, uint32_t crtc_h,
584 /* src_{x,y,w,h} values are 16.16 fixed point */
585 uint32_t src_x, uint32_t src_y,
Daniel Vetter232e8f72017-03-22 22:50:40 +0100586 uint32_t src_w, uint32_t src_h,
587 struct drm_modeset_acquire_ctx *ctx)
Daniel Vetter43968d72016-09-21 10:59:24 +0200588{
589 int ret = 0;
590
591 /* No fb means shut it down */
592 if (!fb) {
593 plane->old_fb = plane->fb;
Daniel Vetter19315292017-03-22 22:50:43 +0100594 ret = plane->funcs->disable_plane(plane, ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +0200595 if (!ret) {
596 plane->crtc = NULL;
597 plane->fb = NULL;
598 } else {
599 plane->old_fb = NULL;
600 }
601 goto out;
602 }
603
604 /* Check whether this plane is usable on this CRTC */
605 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
606 DRM_DEBUG_KMS("Invalid crtc for plane\n");
607 ret = -EINVAL;
608 goto out;
609 }
610
611 /* Check whether this plane supports the fb pixel format. */
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200612 ret = drm_plane_check_pixel_format(plane, fb->format->format);
Daniel Vetter43968d72016-09-21 10:59:24 +0200613 if (ret) {
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000614 struct drm_format_name_buf format_name;
615 DRM_DEBUG_KMS("Invalid pixel format %s\n",
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200616 drm_get_format_name(fb->format->format,
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000617 &format_name));
Daniel Vetter43968d72016-09-21 10:59:24 +0200618 goto out;
619 }
620
621 /* Give drivers some help against integer overflows */
622 if (crtc_w > INT_MAX ||
623 crtc_x > INT_MAX - (int32_t) crtc_w ||
624 crtc_h > INT_MAX ||
625 crtc_y > INT_MAX - (int32_t) crtc_h) {
626 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
627 crtc_w, crtc_h, crtc_x, crtc_y);
628 ret = -ERANGE;
629 goto out;
630 }
631
632 ret = drm_framebuffer_check_src_coords(src_x, src_y, src_w, src_h, fb);
633 if (ret)
634 goto out;
635
636 plane->old_fb = plane->fb;
637 ret = plane->funcs->update_plane(plane, crtc, fb,
638 crtc_x, crtc_y, crtc_w, crtc_h,
Daniel Vetter34a2ab52017-03-22 22:50:41 +0100639 src_x, src_y, src_w, src_h, ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +0200640 if (!ret) {
641 plane->crtc = crtc;
642 plane->fb = fb;
643 fb = NULL;
644 } else {
645 plane->old_fb = NULL;
646 }
647
648out:
649 if (fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +0100650 drm_framebuffer_put(fb);
Daniel Vetter43968d72016-09-21 10:59:24 +0200651 if (plane->old_fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +0100652 drm_framebuffer_put(plane->old_fb);
Daniel Vetter43968d72016-09-21 10:59:24 +0200653 plane->old_fb = NULL;
654
655 return ret;
656}
657
658static int setplane_internal(struct drm_plane *plane,
659 struct drm_crtc *crtc,
660 struct drm_framebuffer *fb,
661 int32_t crtc_x, int32_t crtc_y,
662 uint32_t crtc_w, uint32_t crtc_h,
663 /* src_{x,y,w,h} values are 16.16 fixed point */
664 uint32_t src_x, uint32_t src_y,
665 uint32_t src_w, uint32_t src_h)
666{
Daniel Vetter232e8f72017-03-22 22:50:40 +0100667 struct drm_modeset_acquire_ctx ctx;
Daniel Vetter43968d72016-09-21 10:59:24 +0200668 int ret;
669
Maarten Lankhorst13736ba2017-09-12 15:37:47 +0200670 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
Daniel Vetter232e8f72017-03-22 22:50:40 +0100671retry:
672 ret = drm_modeset_lock_all_ctx(plane->dev, &ctx);
673 if (ret)
674 goto fail;
Daniel Vetter43968d72016-09-21 10:59:24 +0200675 ret = __setplane_internal(plane, crtc, fb,
676 crtc_x, crtc_y, crtc_w, crtc_h,
Daniel Vetter232e8f72017-03-22 22:50:40 +0100677 src_x, src_y, src_w, src_h, &ctx);
678
679fail:
680 if (ret == -EDEADLK) {
Maarten Lankhorst13736ba2017-09-12 15:37:47 +0200681 ret = drm_modeset_backoff(&ctx);
682 if (!ret)
683 goto retry;
Daniel Vetter232e8f72017-03-22 22:50:40 +0100684 }
685 drm_modeset_drop_locks(&ctx);
686 drm_modeset_acquire_fini(&ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +0200687
688 return ret;
689}
690
Daniel Vetter43968d72016-09-21 10:59:24 +0200691int drm_mode_setplane(struct drm_device *dev, void *data,
692 struct drm_file *file_priv)
693{
694 struct drm_mode_set_plane *plane_req = data;
695 struct drm_plane *plane;
696 struct drm_crtc *crtc = NULL;
697 struct drm_framebuffer *fb = NULL;
698
699 if (!drm_core_check_feature(dev, DRIVER_MODESET))
700 return -EINVAL;
701
702 /*
703 * First, find the plane, crtc, and fb objects. If not available,
704 * we don't bother to call the driver.
705 */
706 plane = drm_plane_find(dev, plane_req->plane_id);
707 if (!plane) {
708 DRM_DEBUG_KMS("Unknown plane ID %d\n",
709 plane_req->plane_id);
710 return -ENOENT;
711 }
712
713 if (plane_req->fb_id) {
714 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
715 if (!fb) {
716 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
717 plane_req->fb_id);
718 return -ENOENT;
719 }
720
721 crtc = drm_crtc_find(dev, plane_req->crtc_id);
722 if (!crtc) {
723 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
724 plane_req->crtc_id);
725 return -ENOENT;
726 }
727 }
728
729 /*
730 * setplane_internal will take care of deref'ing either the old or new
731 * framebuffer depending on success.
732 */
733 return setplane_internal(plane, crtc, fb,
734 plane_req->crtc_x, plane_req->crtc_y,
735 plane_req->crtc_w, plane_req->crtc_h,
736 plane_req->src_x, plane_req->src_y,
737 plane_req->src_w, plane_req->src_h);
738}
739
Daniel Vetter43968d72016-09-21 10:59:24 +0200740static int drm_mode_cursor_universal(struct drm_crtc *crtc,
741 struct drm_mode_cursor2 *req,
Daniel Vetterb95ff032017-04-03 10:32:51 +0200742 struct drm_file *file_priv,
743 struct drm_modeset_acquire_ctx *ctx)
Daniel Vetter43968d72016-09-21 10:59:24 +0200744{
745 struct drm_device *dev = crtc->dev;
746 struct drm_framebuffer *fb = NULL;
747 struct drm_mode_fb_cmd2 fbreq = {
748 .width = req->width,
749 .height = req->height,
750 .pixel_format = DRM_FORMAT_ARGB8888,
751 .pitches = { req->width * 4 },
752 .handles = { req->handle },
753 };
754 int32_t crtc_x, crtc_y;
755 uint32_t crtc_w = 0, crtc_h = 0;
756 uint32_t src_w = 0, src_h = 0;
757 int ret = 0;
758
759 BUG_ON(!crtc->cursor);
760 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
761
762 /*
763 * Obtain fb we'll be using (either new or existing) and take an extra
764 * reference to it if fb != null. setplane will take care of dropping
765 * the reference if the plane update fails.
766 */
767 if (req->flags & DRM_MODE_CURSOR_BO) {
768 if (req->handle) {
769 fb = drm_internal_framebuffer_create(dev, &fbreq, file_priv);
770 if (IS_ERR(fb)) {
771 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
772 return PTR_ERR(fb);
773 }
774 fb->hot_x = req->hot_x;
775 fb->hot_y = req->hot_y;
776 } else {
777 fb = NULL;
778 }
779 } else {
780 fb = crtc->cursor->fb;
781 if (fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +0100782 drm_framebuffer_get(fb);
Daniel Vetter43968d72016-09-21 10:59:24 +0200783 }
784
785 if (req->flags & DRM_MODE_CURSOR_MOVE) {
786 crtc_x = req->x;
787 crtc_y = req->y;
788 } else {
789 crtc_x = crtc->cursor_x;
790 crtc_y = crtc->cursor_y;
791 }
792
793 if (fb) {
794 crtc_w = fb->width;
795 crtc_h = fb->height;
796 src_w = fb->width << 16;
797 src_h = fb->height << 16;
798 }
799
800 /*
801 * setplane_internal will take care of deref'ing either the old or new
802 * framebuffer depending on success.
803 */
804 ret = __setplane_internal(crtc->cursor, crtc, fb,
805 crtc_x, crtc_y, crtc_w, crtc_h,
Daniel Vetterb95ff032017-04-03 10:32:51 +0200806 0, 0, src_w, src_h, ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +0200807
808 /* Update successful; save new cursor position, if necessary */
809 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
810 crtc->cursor_x = req->x;
811 crtc->cursor_y = req->y;
812 }
813
814 return ret;
815}
816
817static int drm_mode_cursor_common(struct drm_device *dev,
818 struct drm_mode_cursor2 *req,
819 struct drm_file *file_priv)
820{
821 struct drm_crtc *crtc;
Daniel Vetterb95ff032017-04-03 10:32:51 +0200822 struct drm_modeset_acquire_ctx ctx;
Daniel Vetter43968d72016-09-21 10:59:24 +0200823 int ret = 0;
824
825 if (!drm_core_check_feature(dev, DRIVER_MODESET))
826 return -EINVAL;
827
828 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
829 return -EINVAL;
830
831 crtc = drm_crtc_find(dev, req->crtc_id);
832 if (!crtc) {
833 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
834 return -ENOENT;
835 }
836
Maarten Lankhorst6c886e42017-09-12 15:37:46 +0200837 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
Daniel Vetterb95ff032017-04-03 10:32:51 +0200838retry:
839 ret = drm_modeset_lock(&crtc->mutex, &ctx);
840 if (ret)
841 goto out;
Daniel Vetter43968d72016-09-21 10:59:24 +0200842 /*
843 * If this crtc has a universal cursor plane, call that plane's update
844 * handler rather than using legacy cursor handlers.
845 */
Daniel Vetterb95ff032017-04-03 10:32:51 +0200846 if (crtc->cursor) {
Daniel Vetter2e064162017-04-07 18:48:17 +0200847 ret = drm_modeset_lock(&crtc->cursor->mutex, &ctx);
848 if (ret)
849 goto out;
850
Daniel Vetterb95ff032017-04-03 10:32:51 +0200851 ret = drm_mode_cursor_universal(crtc, req, file_priv, &ctx);
852 goto out;
853 }
Daniel Vetter43968d72016-09-21 10:59:24 +0200854
855 if (req->flags & DRM_MODE_CURSOR_BO) {
856 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
857 ret = -ENXIO;
858 goto out;
859 }
860 /* Turns off the cursor if handle is 0 */
861 if (crtc->funcs->cursor_set2)
862 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
863 req->width, req->height, req->hot_x, req->hot_y);
864 else
865 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
866 req->width, req->height);
867 }
868
869 if (req->flags & DRM_MODE_CURSOR_MOVE) {
870 if (crtc->funcs->cursor_move) {
871 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
872 } else {
873 ret = -EFAULT;
874 goto out;
875 }
876 }
877out:
Daniel Vetterb95ff032017-04-03 10:32:51 +0200878 if (ret == -EDEADLK) {
Maarten Lankhorst6c886e42017-09-12 15:37:46 +0200879 ret = drm_modeset_backoff(&ctx);
880 if (!ret)
881 goto retry;
Daniel Vetterb95ff032017-04-03 10:32:51 +0200882 }
883
884 drm_modeset_drop_locks(&ctx);
885 drm_modeset_acquire_fini(&ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +0200886
887 return ret;
888
889}
890
891
Daniel Vetter43968d72016-09-21 10:59:24 +0200892int drm_mode_cursor_ioctl(struct drm_device *dev,
893 void *data, struct drm_file *file_priv)
894{
895 struct drm_mode_cursor *req = data;
896 struct drm_mode_cursor2 new_req;
897
898 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
899 new_req.hot_x = new_req.hot_y = 0;
900
901 return drm_mode_cursor_common(dev, &new_req, file_priv);
902}
903
Daniel Vetter532b3672016-09-21 10:59:25 +0200904/*
Daniel Vetter43968d72016-09-21 10:59:24 +0200905 * Set the cursor configuration based on user request. This implements the 2nd
906 * version of the cursor ioctl, which allows userspace to additionally specify
907 * the hotspot of the pointer.
Daniel Vetter43968d72016-09-21 10:59:24 +0200908 */
909int drm_mode_cursor2_ioctl(struct drm_device *dev,
910 void *data, struct drm_file *file_priv)
911{
912 struct drm_mode_cursor2 *req = data;
913
914 return drm_mode_cursor_common(dev, req, file_priv);
915}
916
Daniel Vetter43968d72016-09-21 10:59:24 +0200917int drm_mode_page_flip_ioctl(struct drm_device *dev,
918 void *data, struct drm_file *file_priv)
919{
920 struct drm_mode_crtc_page_flip_target *page_flip = data;
921 struct drm_crtc *crtc;
922 struct drm_framebuffer *fb = NULL;
923 struct drm_pending_vblank_event *e = NULL;
924 u32 target_vblank = page_flip->sequence;
Daniel Vetter29dc0d12017-03-22 22:50:49 +0100925 struct drm_modeset_acquire_ctx ctx;
Daniel Vetter43968d72016-09-21 10:59:24 +0200926 int ret = -EINVAL;
927
928 if (!drm_core_check_feature(dev, DRIVER_MODESET))
929 return -EINVAL;
930
931 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS)
932 return -EINVAL;
933
934 if (page_flip->sequence != 0 && !(page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET))
935 return -EINVAL;
936
937 /* Only one of the DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE/RELATIVE flags
938 * can be specified
939 */
940 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) == DRM_MODE_PAGE_FLIP_TARGET)
941 return -EINVAL;
942
943 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
944 return -EINVAL;
945
946 crtc = drm_crtc_find(dev, page_flip->crtc_id);
947 if (!crtc)
948 return -ENOENT;
949
Daniel Vetter2adb29b2016-10-03 10:28:27 +0200950 if (crtc->funcs->page_flip_target) {
951 u32 current_vblank;
952 int r;
953
954 r = drm_crtc_vblank_get(crtc);
955 if (r)
956 return r;
957
958 current_vblank = drm_crtc_vblank_count(crtc);
959
960 switch (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET) {
961 case DRM_MODE_PAGE_FLIP_TARGET_ABSOLUTE:
962 if ((int)(target_vblank - current_vblank) > 1) {
963 DRM_DEBUG("Invalid absolute flip target %u, "
964 "must be <= %u\n", target_vblank,
965 current_vblank + 1);
966 drm_crtc_vblank_put(crtc);
967 return -EINVAL;
968 }
969 break;
970 case DRM_MODE_PAGE_FLIP_TARGET_RELATIVE:
971 if (target_vblank != 0 && target_vblank != 1) {
972 DRM_DEBUG("Invalid relative flip target %u, "
973 "must be 0 or 1\n", target_vblank);
974 drm_crtc_vblank_put(crtc);
975 return -EINVAL;
976 }
977 target_vblank += current_vblank;
978 break;
979 default:
980 target_vblank = current_vblank +
981 !(page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC);
982 break;
983 }
984 } else if (crtc->funcs->page_flip == NULL ||
985 (page_flip->flags & DRM_MODE_PAGE_FLIP_TARGET)) {
986 return -EINVAL;
987 }
988
Maarten Lankhorstc2e4ff32017-09-12 15:37:48 +0200989 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
Daniel Vetter29dc0d12017-03-22 22:50:49 +0100990retry:
991 ret = drm_modeset_lock(&crtc->mutex, &ctx);
992 if (ret)
993 goto out;
Daniel Vetter9739e742017-03-30 22:48:31 +0200994 ret = drm_modeset_lock(&crtc->primary->mutex, &ctx);
Daniel Vetter29dc0d12017-03-22 22:50:49 +0100995 if (ret)
996 goto out;
Daniel Vetter29dc0d12017-03-22 22:50:49 +0100997
Daniel Vetter43968d72016-09-21 10:59:24 +0200998 if (crtc->primary->fb == NULL) {
999 /* The framebuffer is currently unbound, presumably
1000 * due to a hotplug event, that userspace has not
1001 * yet discovered.
1002 */
1003 ret = -EBUSY;
1004 goto out;
1005 }
1006
Daniel Vetter43968d72016-09-21 10:59:24 +02001007 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
1008 if (!fb) {
1009 ret = -ENOENT;
1010 goto out;
1011 }
1012
1013 if (crtc->state) {
1014 const struct drm_plane_state *state = crtc->primary->state;
1015
1016 ret = drm_framebuffer_check_src_coords(state->src_x,
1017 state->src_y,
1018 state->src_w,
1019 state->src_h,
1020 fb);
1021 } else {
1022 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
1023 }
1024 if (ret)
1025 goto out;
1026
Ville Syrjälädbd4d572016-11-18 21:53:10 +02001027 if (crtc->primary->fb->format != fb->format) {
Daniel Vetter43968d72016-09-21 10:59:24 +02001028 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
1029 ret = -EINVAL;
1030 goto out;
1031 }
1032
1033 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1034 e = kzalloc(sizeof *e, GFP_KERNEL);
1035 if (!e) {
1036 ret = -ENOMEM;
1037 goto out;
1038 }
1039 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
1040 e->event.base.length = sizeof(e->event);
1041 e->event.user_data = page_flip->user_data;
1042 ret = drm_event_reserve_init(dev, file_priv, &e->base, &e->event.base);
1043 if (ret) {
1044 kfree(e);
Daniel Vetter031e5892017-03-30 15:32:53 +02001045 e = NULL;
Daniel Vetter43968d72016-09-21 10:59:24 +02001046 goto out;
1047 }
1048 }
1049
1050 crtc->primary->old_fb = crtc->primary->fb;
Daniel Vetter43968d72016-09-21 10:59:24 +02001051 if (crtc->funcs->page_flip_target)
1052 ret = crtc->funcs->page_flip_target(crtc, fb, e,
1053 page_flip->flags,
Daniel Vetter41292b1f2017-03-22 22:50:50 +01001054 target_vblank,
1055 &ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +02001056 else
Daniel Vetter41292b1f2017-03-22 22:50:50 +01001057 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags,
1058 &ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +02001059 if (ret) {
1060 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT)
1061 drm_event_cancel_free(dev, &e->base);
1062 /* Keep the old fb, don't unref it. */
1063 crtc->primary->old_fb = NULL;
1064 } else {
1065 crtc->primary->fb = fb;
1066 /* Unref only the old framebuffer. */
1067 fb = NULL;
1068 }
1069
1070out:
Chris Wilsone86fa212016-09-28 23:25:00 +01001071 if (fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +01001072 drm_framebuffer_put(fb);
Daniel Vetter43968d72016-09-21 10:59:24 +02001073 if (crtc->primary->old_fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +01001074 drm_framebuffer_put(crtc->primary->old_fb);
Daniel Vetter43968d72016-09-21 10:59:24 +02001075 crtc->primary->old_fb = NULL;
Daniel Vetter29dc0d12017-03-22 22:50:49 +01001076
1077 if (ret == -EDEADLK) {
Maarten Lankhorstc2e4ff32017-09-12 15:37:48 +02001078 ret = drm_modeset_backoff(&ctx);
1079 if (!ret)
1080 goto retry;
Daniel Vetter29dc0d12017-03-22 22:50:49 +01001081 }
1082
1083 drm_modeset_drop_locks(&ctx);
1084 drm_modeset_acquire_fini(&ctx);
Daniel Vetter43968d72016-09-21 10:59:24 +02001085
Daniel Vetterf9285432017-05-22 15:59:45 +02001086 if (ret && crtc->funcs->page_flip_target)
1087 drm_crtc_vblank_put(crtc);
1088
Daniel Vetter43968d72016-09-21 10:59:24 +02001089 return ret;
1090}