blob: 06ad3d1350c49cf5604d89f23a2d1b6cd9d8d2ce [file] [log] [blame]
Daniel Vetter7520a272016-08-15 16:07:02 +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 <linux/export.h>
24#include <drm/drmP.h>
25#include <drm/drm_auth.h>
26#include <drm/drm_framebuffer.h>
27
28#include "drm_crtc_internal.h"
29
30/**
Daniel Vetter750fb8c2016-08-12 22:48:48 +020031 * DOC: overview
32 *
33 * Frame buffers are abstract memory objects that provide a source of pixels to
34 * scanout to a CRTC. Applications explicitly request the creation of frame
35 * buffers through the DRM_IOCTL_MODE_ADDFB(2) ioctls and receive an opaque
36 * handle that can be passed to the KMS CRTC control, plane configuration and
37 * page flip functions.
38 *
39 * Frame buffers rely on the underlying memory manager for allocating backing
40 * storage. When creating a frame buffer applications pass a memory handle
41 * (or a list of memory handles for multi-planar formats) through the
42 * struct &drm_mode_fb_cmd2 argument. For drivers using GEM as their userspace
43 * buffer management interface this would be a GEM handle. Drivers are however
44 * free to use their own backing storage object handles, e.g. vmwgfx directly
45 * exposes special TTM handles to userspace and so expects TTM handles in the
46 * create ioctl and not GEM handles.
47 *
48 * Framebuffers are tracked with struct &drm_framebuffer. They are published
49 * using drm_framebuffer_init() - after calling that function userspace can use
50 * and access the framebuffer object. The helper function
51 * drm_helper_mode_fill_fb_struct() can be used to pre-fill the required
52 * metadata fields.
53 *
54 * The lifetime of a drm framebuffer is controlled with a reference count,
55 * drivers can grab additional references with drm_framebuffer_reference() and
56 * drop them again with drm_framebuffer_unreference(). For driver-private
57 * framebuffers for which the last reference is never dropped (e.g. for the
58 * fbdev framebuffer when the struct struct &drm_framebuffer is embedded into
59 * the fbdev helper struct) drivers can manually clean up a framebuffer at
60 * module unload time with drm_framebuffer_unregister_private(). But doing this
61 * is not recommended, and it's better to have a normal free-standing struct
62 * &drm_framebuffer.
63 */
64
Daniel Vetter43968d72016-09-21 10:59:24 +020065int drm_framebuffer_check_src_coords(uint32_t src_x, uint32_t src_y,
66 uint32_t src_w, uint32_t src_h,
67 const struct drm_framebuffer *fb)
68{
69 unsigned int fb_width, fb_height;
70
71 fb_width = fb->width << 16;
72 fb_height = fb->height << 16;
73
74 /* Make sure source coordinates are inside the fb. */
75 if (src_w > fb_width ||
76 src_x > fb_width - src_w ||
77 src_h > fb_height ||
78 src_y > fb_height - src_h) {
79 DRM_DEBUG_KMS("Invalid source coordinates "
80 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
81 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
82 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
83 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
84 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
85 return -ENOSPC;
86 }
87
88 return 0;
89}
90
Daniel Vetter750fb8c2016-08-12 22:48:48 +020091/**
Daniel Vetter7520a272016-08-15 16:07:02 +020092 * drm_mode_addfb - add an FB to the graphics configuration
93 * @dev: drm device for the ioctl
94 * @data: data pointer for the ioctl
95 * @file_priv: drm file for the ioctl call
96 *
97 * Add a new FB to the specified CRTC, given a user request. This is the
98 * original addfb ioctl which only supported RGB formats.
99 *
100 * Called by the user via ioctl.
101 *
102 * Returns:
103 * Zero on success, negative errno on failure.
104 */
105int drm_mode_addfb(struct drm_device *dev,
106 void *data, struct drm_file *file_priv)
107{
108 struct drm_mode_fb_cmd *or = data;
109 struct drm_mode_fb_cmd2 r = {};
110 int ret;
111
112 /* convert to new format and call new ioctl */
113 r.fb_id = or->fb_id;
114 r.width = or->width;
115 r.height = or->height;
116 r.pitches[0] = or->pitch;
117 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
118 r.handles[0] = or->handle;
119
120 ret = drm_mode_addfb2(dev, &r, file_priv);
121 if (ret)
122 return ret;
123
124 or->fb_id = r.fb_id;
125
126 return 0;
127}
128
Daniel Vetter7520a272016-08-15 16:07:02 +0200129static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
130{
Laurent Pinchartd5493492016-10-18 01:41:11 +0300131 const struct drm_format_info *info;
132 int i;
Daniel Vetter7520a272016-08-15 16:07:02 +0200133
Laurent Pinchart333d2da2016-10-18 01:41:12 +0300134 info = __drm_format_info(r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN);
Laurent Pinchartd5493492016-10-18 01:41:11 +0300135 if (!info) {
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000136 struct drm_format_name_buf format_name;
137 DRM_DEBUG_KMS("bad framebuffer format %s\n",
138 drm_get_format_name(r->pixel_format,
139 &format_name));
Laurent Pinchartd5493492016-10-18 01:41:11 +0300140 return -EINVAL;
Daniel Vetter7520a272016-08-15 16:07:02 +0200141 }
142
Laurent Pinchartd5493492016-10-18 01:41:11 +0300143 if (r->width == 0 || r->width % info->hsub) {
Daniel Vetter7520a272016-08-15 16:07:02 +0200144 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
145 return -EINVAL;
146 }
147
Laurent Pinchartd5493492016-10-18 01:41:11 +0300148 if (r->height == 0 || r->height % info->vsub) {
Daniel Vetter7520a272016-08-15 16:07:02 +0200149 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
150 return -EINVAL;
151 }
152
Laurent Pinchartd5493492016-10-18 01:41:11 +0300153 for (i = 0; i < info->num_planes; i++) {
154 unsigned int width = r->width / (i != 0 ? info->hsub : 1);
155 unsigned int height = r->height / (i != 0 ? info->vsub : 1);
156 unsigned int cpp = info->cpp[i];
Daniel Vetter7520a272016-08-15 16:07:02 +0200157
158 if (!r->handles[i]) {
159 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
160 return -EINVAL;
161 }
162
163 if ((uint64_t) width * cpp > UINT_MAX)
164 return -ERANGE;
165
166 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
167 return -ERANGE;
168
169 if (r->pitches[i] < width * cpp) {
170 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
171 return -EINVAL;
172 }
173
174 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
175 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
176 r->modifier[i], i);
177 return -EINVAL;
178 }
179
180 /* modifier specific checks: */
181 switch (r->modifier[i]) {
182 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
183 /* NOTE: the pitch restriction may be lifted later if it turns
184 * out that no hw has this restriction:
185 */
186 if (r->pixel_format != DRM_FORMAT_NV12 ||
187 width % 128 || height % 32 ||
188 r->pitches[i] % 128) {
189 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
190 return -EINVAL;
191 }
192 break;
193
194 default:
195 break;
196 }
197 }
198
Laurent Pinchartd5493492016-10-18 01:41:11 +0300199 for (i = info->num_planes; i < 4; i++) {
Daniel Vetter7520a272016-08-15 16:07:02 +0200200 if (r->modifier[i]) {
201 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
202 return -EINVAL;
203 }
204
205 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
206 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
207 continue;
208
209 if (r->handles[i]) {
210 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
211 return -EINVAL;
212 }
213
214 if (r->pitches[i]) {
215 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
216 return -EINVAL;
217 }
218
219 if (r->offsets[i]) {
220 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
221 return -EINVAL;
222 }
223 }
224
225 return 0;
226}
227
228struct drm_framebuffer *
229drm_internal_framebuffer_create(struct drm_device *dev,
230 const struct drm_mode_fb_cmd2 *r,
231 struct drm_file *file_priv)
232{
233 struct drm_mode_config *config = &dev->mode_config;
234 struct drm_framebuffer *fb;
235 int ret;
236
237 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
238 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
239 return ERR_PTR(-EINVAL);
240 }
241
242 if ((config->min_width > r->width) || (r->width > config->max_width)) {
243 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
244 r->width, config->min_width, config->max_width);
245 return ERR_PTR(-EINVAL);
246 }
247 if ((config->min_height > r->height) || (r->height > config->max_height)) {
248 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
249 r->height, config->min_height, config->max_height);
250 return ERR_PTR(-EINVAL);
251 }
252
253 if (r->flags & DRM_MODE_FB_MODIFIERS &&
254 !dev->mode_config.allow_fb_modifiers) {
255 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
256 return ERR_PTR(-EINVAL);
257 }
258
259 ret = framebuffer_check(r);
260 if (ret)
261 return ERR_PTR(ret);
262
263 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
264 if (IS_ERR(fb)) {
265 DRM_DEBUG_KMS("could not create framebuffer\n");
266 return fb;
267 }
268
269 return fb;
270}
271
272/**
273 * drm_mode_addfb2 - add an FB to the graphics configuration
274 * @dev: drm device for the ioctl
275 * @data: data pointer for the ioctl
276 * @file_priv: drm file for the ioctl call
277 *
278 * Add a new FB to the specified CRTC, given a user request with format. This is
279 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
280 * and uses fourcc codes as pixel format specifiers.
281 *
282 * Called by the user via ioctl.
283 *
284 * Returns:
285 * Zero on success, negative errno on failure.
286 */
287int drm_mode_addfb2(struct drm_device *dev,
288 void *data, struct drm_file *file_priv)
289{
290 struct drm_mode_fb_cmd2 *r = data;
291 struct drm_framebuffer *fb;
292
293 if (!drm_core_check_feature(dev, DRIVER_MODESET))
294 return -EINVAL;
295
296 fb = drm_internal_framebuffer_create(dev, r, file_priv);
297 if (IS_ERR(fb))
298 return PTR_ERR(fb);
299
300 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
301 r->fb_id = fb->base.id;
302
303 /* Transfer ownership to the filp for reaping on close */
304 mutex_lock(&file_priv->fbs_lock);
305 list_add(&fb->filp_head, &file_priv->fbs);
306 mutex_unlock(&file_priv->fbs_lock);
307
308 return 0;
309}
310
311struct drm_mode_rmfb_work {
312 struct work_struct work;
313 struct list_head fbs;
314};
315
316static void drm_mode_rmfb_work_fn(struct work_struct *w)
317{
318 struct drm_mode_rmfb_work *arg = container_of(w, typeof(*arg), work);
319
320 while (!list_empty(&arg->fbs)) {
321 struct drm_framebuffer *fb =
322 list_first_entry(&arg->fbs, typeof(*fb), filp_head);
323
324 list_del_init(&fb->filp_head);
325 drm_framebuffer_remove(fb);
326 }
327}
328
329/**
330 * drm_mode_rmfb - remove an FB from the configuration
331 * @dev: drm device for the ioctl
332 * @data: data pointer for the ioctl
333 * @file_priv: drm file for the ioctl call
334 *
335 * Remove the FB specified by the user.
336 *
337 * Called by the user via ioctl.
338 *
339 * Returns:
340 * Zero on success, negative errno on failure.
341 */
342int drm_mode_rmfb(struct drm_device *dev,
343 void *data, struct drm_file *file_priv)
344{
345 struct drm_framebuffer *fb = NULL;
346 struct drm_framebuffer *fbl = NULL;
347 uint32_t *id = data;
348 int found = 0;
349
350 if (!drm_core_check_feature(dev, DRIVER_MODESET))
351 return -EINVAL;
352
353 fb = drm_framebuffer_lookup(dev, *id);
354 if (!fb)
355 return -ENOENT;
356
357 mutex_lock(&file_priv->fbs_lock);
358 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
359 if (fb == fbl)
360 found = 1;
361 if (!found) {
362 mutex_unlock(&file_priv->fbs_lock);
363 goto fail_unref;
364 }
365
366 list_del_init(&fb->filp_head);
367 mutex_unlock(&file_priv->fbs_lock);
368
369 /* drop the reference we picked up in framebuffer lookup */
370 drm_framebuffer_unreference(fb);
371
372 /*
373 * we now own the reference that was stored in the fbs list
374 *
375 * drm_framebuffer_remove may fail with -EINTR on pending signals,
376 * so run this in a separate stack as there's no way to correctly
377 * handle this after the fb is already removed from the lookup table.
378 */
379 if (drm_framebuffer_read_refcount(fb) > 1) {
380 struct drm_mode_rmfb_work arg;
381
382 INIT_WORK_ONSTACK(&arg.work, drm_mode_rmfb_work_fn);
383 INIT_LIST_HEAD(&arg.fbs);
384 list_add_tail(&fb->filp_head, &arg.fbs);
385
386 schedule_work(&arg.work);
387 flush_work(&arg.work);
388 destroy_work_on_stack(&arg.work);
389 } else
390 drm_framebuffer_unreference(fb);
391
392 return 0;
393
394fail_unref:
395 drm_framebuffer_unreference(fb);
396 return -ENOENT;
397}
398
399/**
400 * drm_mode_getfb - get FB info
401 * @dev: drm device for the ioctl
402 * @data: data pointer for the ioctl
403 * @file_priv: drm file for the ioctl call
404 *
405 * Lookup the FB given its ID and return info about it.
406 *
407 * Called by the user via ioctl.
408 *
409 * Returns:
410 * Zero on success, negative errno on failure.
411 */
412int drm_mode_getfb(struct drm_device *dev,
413 void *data, struct drm_file *file_priv)
414{
415 struct drm_mode_fb_cmd *r = data;
416 struct drm_framebuffer *fb;
417 int ret;
418
419 if (!drm_core_check_feature(dev, DRIVER_MODESET))
420 return -EINVAL;
421
422 fb = drm_framebuffer_lookup(dev, r->fb_id);
423 if (!fb)
424 return -ENOENT;
425
426 r->height = fb->height;
427 r->width = fb->width;
428 r->depth = fb->depth;
429 r->bpp = fb->bits_per_pixel;
430 r->pitch = fb->pitches[0];
431 if (fb->funcs->create_handle) {
432 if (drm_is_current_master(file_priv) || capable(CAP_SYS_ADMIN) ||
433 drm_is_control_client(file_priv)) {
434 ret = fb->funcs->create_handle(fb, file_priv,
435 &r->handle);
436 } else {
437 /* GET_FB() is an unprivileged ioctl so we must not
438 * return a buffer-handle to non-master processes! For
439 * backwards-compatibility reasons, we cannot make
440 * GET_FB() privileged, so just return an invalid handle
441 * for non-masters. */
442 r->handle = 0;
443 ret = 0;
444 }
445 } else {
446 ret = -ENODEV;
447 }
448
449 drm_framebuffer_unreference(fb);
450
451 return ret;
452}
453
454/**
455 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
456 * @dev: drm device for the ioctl
457 * @data: data pointer for the ioctl
458 * @file_priv: drm file for the ioctl call
459 *
460 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
461 * rectangle list. Generic userspace which does frontbuffer rendering must call
462 * this ioctl to flush out the changes on manual-update display outputs, e.g.
463 * usb display-link, mipi manual update panels or edp panel self refresh modes.
464 *
465 * Modesetting drivers which always update the frontbuffer do not need to
466 * implement the corresponding ->dirty framebuffer callback.
467 *
468 * Called by the user via ioctl.
469 *
470 * Returns:
471 * Zero on success, negative errno on failure.
472 */
473int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
474 void *data, struct drm_file *file_priv)
475{
476 struct drm_clip_rect __user *clips_ptr;
477 struct drm_clip_rect *clips = NULL;
478 struct drm_mode_fb_dirty_cmd *r = data;
479 struct drm_framebuffer *fb;
480 unsigned flags;
481 int num_clips;
482 int ret;
483
484 if (!drm_core_check_feature(dev, DRIVER_MODESET))
485 return -EINVAL;
486
487 fb = drm_framebuffer_lookup(dev, r->fb_id);
488 if (!fb)
489 return -ENOENT;
490
491 num_clips = r->num_clips;
492 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
493
494 if (!num_clips != !clips_ptr) {
495 ret = -EINVAL;
496 goto out_err1;
497 }
498
499 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
500
501 /* If userspace annotates copy, clips must come in pairs */
502 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
503 ret = -EINVAL;
504 goto out_err1;
505 }
506
507 if (num_clips && clips_ptr) {
508 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
509 ret = -EINVAL;
510 goto out_err1;
511 }
512 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
513 if (!clips) {
514 ret = -ENOMEM;
515 goto out_err1;
516 }
517
518 ret = copy_from_user(clips, clips_ptr,
519 num_clips * sizeof(*clips));
520 if (ret) {
521 ret = -EFAULT;
522 goto out_err2;
523 }
524 }
525
526 if (fb->funcs->dirty) {
527 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
528 clips, num_clips);
529 } else {
530 ret = -ENOSYS;
531 }
532
533out_err2:
534 kfree(clips);
535out_err1:
536 drm_framebuffer_unreference(fb);
537
538 return ret;
539}
540
541/**
542 * drm_fb_release - remove and free the FBs on this file
543 * @priv: drm file for the ioctl
544 *
545 * Destroy all the FBs associated with @filp.
546 *
547 * Called by the user via ioctl.
548 *
549 * Returns:
550 * Zero on success, negative errno on failure.
551 */
552void drm_fb_release(struct drm_file *priv)
553{
554 struct drm_framebuffer *fb, *tfb;
555 struct drm_mode_rmfb_work arg;
556
557 INIT_LIST_HEAD(&arg.fbs);
558
559 /*
560 * When the file gets released that means no one else can access the fb
561 * list any more, so no need to grab fpriv->fbs_lock. And we need to
562 * avoid upsetting lockdep since the universal cursor code adds a
563 * framebuffer while holding mutex locks.
564 *
565 * Note that a real deadlock between fpriv->fbs_lock and the modeset
566 * locks is impossible here since no one else but this function can get
567 * at it any more.
568 */
569 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
570 if (drm_framebuffer_read_refcount(fb) > 1) {
571 list_move_tail(&fb->filp_head, &arg.fbs);
572 } else {
573 list_del_init(&fb->filp_head);
574
575 /* This drops the fpriv->fbs reference. */
576 drm_framebuffer_unreference(fb);
577 }
578 }
579
580 if (!list_empty(&arg.fbs)) {
581 INIT_WORK_ONSTACK(&arg.work, drm_mode_rmfb_work_fn);
582
583 schedule_work(&arg.work);
584 flush_work(&arg.work);
585 destroy_work_on_stack(&arg.work);
586 }
587}
588
589void drm_framebuffer_free(struct kref *kref)
590{
591 struct drm_framebuffer *fb =
592 container_of(kref, struct drm_framebuffer, base.refcount);
593 struct drm_device *dev = fb->dev;
594
595 /*
596 * The lookup idr holds a weak reference, which has not necessarily been
597 * removed at this point. Check for that.
598 */
599 drm_mode_object_unregister(dev, &fb->base);
600
601 fb->funcs->destroy(fb);
602}
603
604/**
605 * drm_framebuffer_init - initialize a framebuffer
606 * @dev: DRM device
607 * @fb: framebuffer to be initialized
608 * @funcs: ... with these functions
609 *
610 * Allocates an ID for the framebuffer's parent mode object, sets its mode
611 * functions & device file and adds it to the master fd list.
612 *
613 * IMPORTANT:
614 * This functions publishes the fb and makes it available for concurrent access
615 * by other users. Which means by this point the fb _must_ be fully set up -
616 * since all the fb attributes are invariant over its lifetime, no further
617 * locking but only correct reference counting is required.
618 *
619 * Returns:
620 * Zero on success, error code on failure.
621 */
622int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
623 const struct drm_framebuffer_funcs *funcs)
624{
625 int ret;
626
627 INIT_LIST_HEAD(&fb->filp_head);
628 fb->dev = dev;
629 fb->funcs = funcs;
630
631 ret = drm_mode_object_get_reg(dev, &fb->base, DRM_MODE_OBJECT_FB,
632 false, drm_framebuffer_free);
633 if (ret)
634 goto out;
635
636 mutex_lock(&dev->mode_config.fb_lock);
637 dev->mode_config.num_fb++;
638 list_add(&fb->head, &dev->mode_config.fb_list);
639 mutex_unlock(&dev->mode_config.fb_lock);
640
641 drm_mode_object_register(dev, &fb->base);
642out:
643 return ret;
644}
645EXPORT_SYMBOL(drm_framebuffer_init);
646
647/**
648 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
649 * @dev: drm device
650 * @id: id of the fb object
651 *
652 * If successful, this grabs an additional reference to the framebuffer -
653 * callers need to make sure to eventually unreference the returned framebuffer
654 * again, using @drm_framebuffer_unreference.
655 */
656struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
657 uint32_t id)
658{
659 struct drm_mode_object *obj;
660 struct drm_framebuffer *fb = NULL;
661
662 obj = __drm_mode_object_find(dev, id, DRM_MODE_OBJECT_FB);
663 if (obj)
664 fb = obj_to_fb(obj);
665 return fb;
666}
667EXPORT_SYMBOL(drm_framebuffer_lookup);
668
669/**
670 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
671 * @fb: fb to unregister
672 *
673 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
674 * those used for fbdev. Note that the caller must hold a reference of it's own,
675 * i.e. the object may not be destroyed through this call (since it'll lead to a
676 * locking inversion).
Rongrong Zou03e93ac2016-10-31 19:59:56 +0800677 *
678 * NOTE: This function is deprecated. For driver-private framebuffers it is not
679 * recommended to embed a framebuffer struct info fbdev struct, instead, a
680 * framebuffer pointer is preferred and drm_framebuffer_unreference() should be
681 * called when the framebuffer is to be cleaned up.
Daniel Vetter7520a272016-08-15 16:07:02 +0200682 */
683void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
684{
685 struct drm_device *dev;
686
687 if (!fb)
688 return;
689
690 dev = fb->dev;
691
692 /* Mark fb as reaped and drop idr ref. */
693 drm_mode_object_unregister(dev, &fb->base);
694}
695EXPORT_SYMBOL(drm_framebuffer_unregister_private);
696
697/**
698 * drm_framebuffer_cleanup - remove a framebuffer object
699 * @fb: framebuffer to remove
700 *
701 * Cleanup framebuffer. This function is intended to be used from the drivers
702 * ->destroy callback. It can also be used to clean up driver private
703 * framebuffers embedded into a larger structure.
704 *
705 * Note that this function does not remove the fb from active usuage - if it is
706 * still used anywhere, hilarity can ensue since userspace could call getfb on
707 * the id and get back -EINVAL. Obviously no concern at driver unload time.
708 *
709 * Also, the framebuffer will not be removed from the lookup idr - for
710 * user-created framebuffers this will happen in in the rmfb ioctl. For
711 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
712 * drm_framebuffer_unregister_private.
713 */
714void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
715{
716 struct drm_device *dev = fb->dev;
717
718 mutex_lock(&dev->mode_config.fb_lock);
719 list_del(&fb->head);
720 dev->mode_config.num_fb--;
721 mutex_unlock(&dev->mode_config.fb_lock);
722}
723EXPORT_SYMBOL(drm_framebuffer_cleanup);
724
725/**
726 * drm_framebuffer_remove - remove and unreference a framebuffer object
727 * @fb: framebuffer to remove
728 *
729 * Scans all the CRTCs and planes in @dev's mode_config. If they're
730 * using @fb, removes it, setting it to NULL. Then drops the reference to the
731 * passed-in framebuffer. Might take the modeset locks.
732 *
733 * Note that this function optimizes the cleanup away if the caller holds the
734 * last reference to the framebuffer. It is also guaranteed to not take the
735 * modeset locks in this case.
736 */
737void drm_framebuffer_remove(struct drm_framebuffer *fb)
738{
739 struct drm_device *dev;
740 struct drm_crtc *crtc;
741 struct drm_plane *plane;
742
743 if (!fb)
744 return;
745
746 dev = fb->dev;
747
748 WARN_ON(!list_empty(&fb->filp_head));
749
750 /*
751 * drm ABI mandates that we remove any deleted framebuffers from active
752 * useage. But since most sane clients only remove framebuffers they no
753 * longer need, try to optimize this away.
754 *
755 * Since we're holding a reference ourselves, observing a refcount of 1
756 * means that we're the last holder and can skip it. Also, the refcount
757 * can never increase from 1 again, so we don't need any barriers or
758 * locks.
759 *
760 * Note that userspace could try to race with use and instate a new
761 * usage _after_ we've cleared all current ones. End result will be an
762 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
763 * in this manner.
764 */
765 if (drm_framebuffer_read_refcount(fb) > 1) {
766 drm_modeset_lock_all(dev);
767 /* remove from any CRTC */
768 drm_for_each_crtc(crtc, dev) {
769 if (crtc->primary->fb == fb) {
770 /* should turn off the crtc */
771 if (drm_crtc_force_disable(crtc))
772 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
773 }
774 }
775
776 drm_for_each_plane(plane, dev) {
777 if (plane->fb == fb)
778 drm_plane_force_disable(plane);
779 }
780 drm_modeset_unlock_all(dev);
781 }
782
783 drm_framebuffer_unreference(fb);
784}
785EXPORT_SYMBOL(drm_framebuffer_remove);