Lines Matching full:fb

78 				     const struct drm_framebuffer *fb)  in drm_framebuffer_check_src_coords()  argument
82 fb_width = fb->width << 16; in drm_framebuffer_check_src_coords()
83 fb_height = fb->height << 16; in drm_framebuffer_check_src_coords()
85 /* Make sure source coordinates are inside the fb. */ in drm_framebuffer_check_src_coords()
90 drm_dbg_kms(fb->dev, "Invalid source coordinates " in drm_framebuffer_check_src_coords()
91 "%u.%06ux%u.%06u+%u.%06u+%u.%06u (fb %ux%u)\n", in drm_framebuffer_check_src_coords()
96 fb->width, fb->height); in drm_framebuffer_check_src_coords()
104 * drm_mode_addfb - add an FB to the graphics configuration
109 * Add a new FB to the specified CRTC, given a user request. This is the
208 drm_dbg_kms(dev, "bad fb modifier %llu for plane %d\n", in framebuffer_check()
215 drm_dbg_kms(dev, "bad fb modifier %llu for plane %d\n", in framebuffer_check()
274 struct drm_framebuffer *fb; in drm_internal_framebuffer_create() local
295 drm_dbg_kms(dev, "driver does not support fb modifiers\n"); in drm_internal_framebuffer_create()
303 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r); in drm_internal_framebuffer_create()
304 if (IS_ERR(fb)) { in drm_internal_framebuffer_create()
306 return fb; in drm_internal_framebuffer_create()
309 return fb; in drm_internal_framebuffer_create()
314 * drm_mode_addfb2 - add an FB to the graphics configuration
319 * Add a new FB to the specified CRTC, given a user request with format. This is
332 struct drm_framebuffer *fb; in drm_mode_addfb2() local
337 fb = drm_internal_framebuffer_create(dev, r, file_priv); in drm_mode_addfb2()
338 if (IS_ERR(fb)) in drm_mode_addfb2()
339 return PTR_ERR(fb); in drm_mode_addfb2()
341 drm_dbg_kms(dev, "[FB:%d]\n", fb->base.id); in drm_mode_addfb2()
342 r->fb_id = fb->base.id; in drm_mode_addfb2()
346 list_add(&fb->filp_head, &file_priv->fbs); in drm_mode_addfb2()
386 struct drm_framebuffer *fb = in drm_mode_rmfb_work_fn() local
387 list_first_entry(&arg->fbs, typeof(*fb), filp_head); in drm_mode_rmfb_work_fn()
389 drm_dbg_kms(fb->dev, in drm_mode_rmfb_work_fn()
390 "Removing [FB:%d] from all active usage due to RMFB ioctl\n", in drm_mode_rmfb_work_fn()
391 fb->base.id); in drm_mode_rmfb_work_fn()
392 list_del_init(&fb->filp_head); in drm_mode_rmfb_work_fn()
393 drm_framebuffer_remove(fb); in drm_mode_rmfb_work_fn()
397 static int drm_mode_closefb(struct drm_framebuffer *fb, in drm_mode_closefb() argument
405 if (fb == fbl) in drm_mode_closefb()
413 list_del_init(&fb->filp_head); in drm_mode_closefb()
417 drm_framebuffer_put(fb); in drm_mode_closefb()
423 * drm_mode_rmfb - remove an FB from the configuration
428 * Remove the specified FB.
438 struct drm_framebuffer *fb; in drm_mode_rmfb() local
444 fb = drm_framebuffer_lookup(dev, file_priv, fb_id); in drm_mode_rmfb()
445 if (!fb) in drm_mode_rmfb()
448 ret = drm_mode_closefb(fb, file_priv); in drm_mode_rmfb()
450 drm_framebuffer_put(fb); in drm_mode_rmfb()
457 * handle this after the fb is already removed from the lookup table. in drm_mode_rmfb()
459 if (drm_framebuffer_read_refcount(fb) > 1) { in drm_mode_rmfb()
464 drm_WARN_ON(dev, !list_empty(&fb->filp_head)); in drm_mode_rmfb()
465 list_add_tail(&fb->filp_head, &arg.fbs); in drm_mode_rmfb()
471 drm_framebuffer_put(fb); in drm_mode_rmfb()
488 struct drm_framebuffer *fb; in drm_mode_closefb_ioctl() local
497 fb = drm_framebuffer_lookup(dev, file_priv, r->fb_id); in drm_mode_closefb_ioctl()
498 if (!fb) in drm_mode_closefb_ioctl()
501 ret = drm_mode_closefb(fb, file_priv); in drm_mode_closefb_ioctl()
502 drm_framebuffer_put(fb); in drm_mode_closefb_ioctl()
507 * drm_mode_getfb - get FB info
512 * Lookup the FB given its ID and return info about it.
523 struct drm_framebuffer *fb; in drm_mode_getfb() local
529 fb = drm_framebuffer_lookup(dev, file_priv, r->fb_id); in drm_mode_getfb()
530 if (!fb) in drm_mode_getfb()
534 if (fb->format->num_planes > 1) { in drm_mode_getfb()
539 if (!fb->funcs->create_handle) { in drm_mode_getfb()
544 r->height = fb->height; in drm_mode_getfb()
545 r->width = fb->width; in drm_mode_getfb()
546 r->depth = fb->format->depth; in drm_mode_getfb()
547 r->bpp = drm_format_info_bpp(fb->format, 0); in drm_mode_getfb()
548 r->pitch = fb->pitches[0]; in drm_mode_getfb()
561 ret = fb->funcs->create_handle(fb, file_priv, &r->handle); in drm_mode_getfb()
564 drm_framebuffer_put(fb); in drm_mode_getfb()
569 * drm_mode_getfb2_ioctl - get extended FB info
574 * Lookup the FB given its ID and return info about it.
585 struct drm_framebuffer *fb; in drm_mode_getfb2_ioctl() local
592 fb = drm_framebuffer_lookup(dev, file_priv, r->fb_id); in drm_mode_getfb2_ioctl()
593 if (!fb) in drm_mode_getfb2_ioctl()
600 if (!fb->obj[0] && in drm_mode_getfb2_ioctl()
601 (fb->format->num_planes > 1 || !fb->funcs->create_handle)) { in drm_mode_getfb2_ioctl()
606 r->height = fb->height; in drm_mode_getfb2_ioctl()
607 r->width = fb->width; in drm_mode_getfb2_ioctl()
608 r->pixel_format = fb->format->format; in drm_mode_getfb2_ioctl()
621 for (i = 0; i < fb->format->num_planes; i++) { in drm_mode_getfb2_ioctl()
622 r->pitches[i] = fb->pitches[i]; in drm_mode_getfb2_ioctl()
623 r->offsets[i] = fb->offsets[i]; in drm_mode_getfb2_ioctl()
625 r->modifier[i] = fb->modifier; in drm_mode_getfb2_ioctl()
638 for (i = 0; i < fb->format->num_planes; i++) { in drm_mode_getfb2_ioctl()
645 if (fb->obj[i] == fb->obj[j]) { in drm_mode_getfb2_ioctl()
654 if (fb->obj[i]) { in drm_mode_getfb2_ioctl()
655 ret = drm_gem_handle_create(file_priv, fb->obj[i], in drm_mode_getfb2_ioctl()
659 ret = fb->funcs->create_handle(fb, file_priv, in drm_mode_getfb2_ioctl()
686 drm_framebuffer_put(fb); in drm_mode_getfb2_ioctl()
691 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
696 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
715 struct drm_framebuffer *fb; in drm_mode_dirtyfb_ioctl() local
723 fb = drm_framebuffer_lookup(dev, file_priv, r->fb_id); in drm_mode_dirtyfb_ioctl()
724 if (!fb) in drm_mode_dirtyfb_ioctl()
762 if (fb->funcs->dirty) { in drm_mode_dirtyfb_ioctl()
763 ret = fb->funcs->dirty(fb, file_priv, flags, r->color, in drm_mode_dirtyfb_ioctl()
772 drm_framebuffer_put(fb); in drm_mode_dirtyfb_ioctl()
790 struct drm_framebuffer *fb, *tfb; in drm_fb_release() local
796 * When the file gets released that means no one else can access the fb in drm_fb_release()
805 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) { in drm_fb_release()
806 if (drm_framebuffer_read_refcount(fb) > 1) { in drm_fb_release()
807 list_move_tail(&fb->filp_head, &arg.fbs); in drm_fb_release()
809 list_del_init(&fb->filp_head); in drm_fb_release()
812 drm_framebuffer_put(fb); in drm_fb_release()
827 struct drm_framebuffer *fb = in drm_framebuffer_free() local
829 struct drm_device *dev = fb->dev; in drm_framebuffer_free()
831 drm_WARN_ON(dev, !list_empty(&fb->filp_head)); in drm_framebuffer_free()
837 drm_mode_object_unregister(dev, &fb->base); in drm_framebuffer_free()
839 fb->funcs->destroy(fb); in drm_framebuffer_free()
845 * @fb: framebuffer to be initialized
852 * This functions publishes the fb and makes it available for concurrent access
853 * by other users. Which means by this point the fb _must_ be fully set up -
854 * since all the fb attributes are invariant over its lifetime, no further
860 int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb, in drm_framebuffer_init() argument
865 if (WARN_ON_ONCE(fb->dev != dev || !fb->format)) in drm_framebuffer_init()
868 INIT_LIST_HEAD(&fb->filp_head); in drm_framebuffer_init()
870 fb->funcs = funcs; in drm_framebuffer_init()
871 strcpy(fb->comm, current->comm); in drm_framebuffer_init()
873 ret = __drm_mode_object_add(dev, &fb->base, DRM_MODE_OBJECT_FB, in drm_framebuffer_init()
880 list_add(&fb->head, &dev->mode_config.fb_list); in drm_framebuffer_init()
883 drm_mode_object_register(dev, &fb->base); in drm_framebuffer_init()
893 * @id: id of the fb object
904 struct drm_framebuffer *fb = NULL; in drm_framebuffer_lookup() local
908 fb = obj_to_fb(obj); in drm_framebuffer_lookup()
909 return fb; in drm_framebuffer_lookup()
914 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
915 * @fb: fb to unregister
927 void drm_framebuffer_unregister_private(struct drm_framebuffer *fb) in drm_framebuffer_unregister_private() argument
931 if (!fb) in drm_framebuffer_unregister_private()
934 dev = fb->dev; in drm_framebuffer_unregister_private()
936 /* Mark fb as reaped and drop idr ref. */ in drm_framebuffer_unregister_private()
937 drm_mode_object_unregister(dev, &fb->base); in drm_framebuffer_unregister_private()
943 * @fb: framebuffer to remove
949 * Note that this function does not remove the fb from active usage - if it is
958 void drm_framebuffer_cleanup(struct drm_framebuffer *fb) in drm_framebuffer_cleanup() argument
960 struct drm_device *dev = fb->dev; in drm_framebuffer_cleanup()
963 list_del(&fb->head); in drm_framebuffer_cleanup()
969 static int atomic_remove_fb(struct drm_framebuffer *fb) in atomic_remove_fb() argument
972 struct drm_device *dev = fb->dev; in atomic_remove_fb()
1000 if (plane->state->fb != fb) in atomic_remove_fb()
1004 "Disabling [PLANE:%d:%s] because [FB:%d] is removed\n", in atomic_remove_fb()
1005 plane->base.id, plane->name, fb->base.id); in atomic_remove_fb()
1017 "Disabling [CRTC:%d:%s] because [FB:%d] is removed\n", in atomic_remove_fb()
1019 plane_state->crtc->name, fb->base.id); in atomic_remove_fb()
1073 static void legacy_remove_fb(struct drm_framebuffer *fb) in legacy_remove_fb() argument
1075 struct drm_device *dev = fb->dev; in legacy_remove_fb()
1082 if (crtc->primary->fb == fb) { in legacy_remove_fb()
1084 "Disabling [CRTC:%d:%s] because [FB:%d] is removed\n", in legacy_remove_fb()
1085 crtc->base.id, crtc->name, fb->base.id); in legacy_remove_fb()
1089 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc); in legacy_remove_fb()
1094 if (plane->fb == fb) { in legacy_remove_fb()
1096 "Disabling [PLANE:%d:%s] because [FB:%d] is removed\n", in legacy_remove_fb()
1097 plane->base.id, plane->name, fb->base.id); in legacy_remove_fb()
1106 * @fb: framebuffer to remove
1109 * using @fb, removes it, setting it to NULL. Then drops the reference to the
1116 void drm_framebuffer_remove(struct drm_framebuffer *fb) in drm_framebuffer_remove() argument
1120 if (!fb) in drm_framebuffer_remove()
1123 dev = fb->dev; in drm_framebuffer_remove()
1125 drm_WARN_ON(dev, !list_empty(&fb->filp_head)); in drm_framebuffer_remove()
1139 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot in drm_framebuffer_remove()
1142 if (drm_framebuffer_read_refcount(fb) > 1) { in drm_framebuffer_remove()
1144 int ret = atomic_remove_fb(fb); in drm_framebuffer_remove()
1148 legacy_remove_fb(fb); in drm_framebuffer_remove()
1151 drm_framebuffer_put(fb); in drm_framebuffer_remove()
1156 const struct drm_framebuffer *fb) in drm_framebuffer_print_info() argument
1160 drm_printf_indent(p, indent, "allocated by = %s\n", fb->comm); in drm_framebuffer_print_info()
1162 drm_framebuffer_read_refcount(fb)); in drm_framebuffer_print_info()
1163 drm_printf_indent(p, indent, "format=%p4cc\n", &fb->format->format); in drm_framebuffer_print_info()
1164 drm_printf_indent(p, indent, "modifier=0x%llx\n", fb->modifier); in drm_framebuffer_print_info()
1165 drm_printf_indent(p, indent, "size=%ux%u\n", fb->width, fb->height); in drm_framebuffer_print_info()
1168 for (i = 0; i < fb->format->num_planes; i++) { in drm_framebuffer_print_info()
1170 drm_format_info_plane_width(fb->format, fb->width, i), in drm_framebuffer_print_info()
1171 drm_format_info_plane_height(fb->format, fb->height, i)); in drm_framebuffer_print_info()
1172 drm_printf_indent(p, indent + 1, "pitch[%u]=%u\n", i, fb->pitches[i]); in drm_framebuffer_print_info()
1173 drm_printf_indent(p, indent + 1, "offset[%u]=%u\n", i, fb->offsets[i]); in drm_framebuffer_print_info()
1175 fb->obj[i] ? "" : "(null)"); in drm_framebuffer_print_info()
1176 if (fb->obj[i]) in drm_framebuffer_print_info()
1177 drm_gem_print_info(p, indent + 2, fb->obj[i]); in drm_framebuffer_print_info()
1187 struct drm_framebuffer *fb; in drm_framebuffer_info() local
1190 drm_for_each_fb(fb, dev) { in drm_framebuffer_info()
1191 drm_printf(&p, "framebuffer[%u]:\n", fb->base.id); in drm_framebuffer_info()
1192 drm_framebuffer_print_info(&p, 1, fb); in drm_framebuffer_info()