cregit-Linux how code gets into the kernel

Release 4.14 drivers/gpu/drm/drm_fb_cma_helper.c

Directory: drivers/gpu/drm
/*
 * drm kms/fb cma (contiguous memory allocator) helper functions
 *
 * Copyright (C) 2012 Analog Device Inc.
 *   Author: Lars-Peter Clausen <lars@metafoo.de>
 *
 * Based on udl_fbdev.c
 *  Copyright (C) 2012 Red Hat
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <drm/drmP.h>
#include <drm/drm_fb_helper.h>
#include <drm/drm_framebuffer.h>
#include <drm/drm_gem_cma_helper.h>
#include <drm/drm_gem_framebuffer_helper.h>
#include <drm/drm_fb_cma_helper.h>
#include <linux/module.h>


#define DEFAULT_FBDEFIO_DELAY_MS 50


struct drm_fbdev_cma {
	
struct drm_fb_helper	fb_helper;
	
const struct drm_framebuffer_funcs *fb_funcs;
};

/**
 * DOC: framebuffer cma helper functions
 *
 * Provides helper functions for creating a cma (contiguous memory allocator)
 * backed framebuffer.
 *
 * drm_fb_cma_create() is used in the &drm_mode_config_funcs.fb_create
 * callback function to create a cma backed framebuffer.
 *
 * An fbdev framebuffer backed by cma is also available by calling
 * drm_fbdev_cma_init(). drm_fbdev_cma_fini() tears it down.
 * If the &drm_framebuffer_funcs.dirty callback is set, fb_deferred_io will be
 * set up automatically. &drm_framebuffer_funcs.dirty is called by
 * drm_fb_helper_deferred_io() in process context (&struct delayed_work).
 *
 * Example fbdev deferred io code::
 *
 *     static int driver_fb_dirty(struct drm_framebuffer *fb,
 *                                struct drm_file *file_priv,
 *                                unsigned flags, unsigned color,
 *                                struct drm_clip_rect *clips,
 *                                unsigned num_clips)
 *     {
 *         struct drm_gem_cma_object *cma = drm_fb_cma_get_gem_obj(fb, 0);
 *         ... push changes ...
 *         return 0;
 *     }
 *
 *     static struct drm_framebuffer_funcs driver_fb_funcs = {
 *         .destroy       = drm_fb_cma_destroy,
 *         .create_handle = drm_fb_cma_create_handle,
 *         .dirty         = driver_fb_dirty,
 *     };
 *
 * Initialize::
 *
 *     fbdev = drm_fbdev_cma_init_with_funcs(dev, 16,
 *                                           dev->mode_config.num_crtc,
 *                                           dev->mode_config.num_connector,
 *                                           &driver_fb_funcs);
 *
 */


static inline struct drm_fbdev_cma *to_fbdev_cma(struct drm_fb_helper *helper) { return container_of(helper, struct drm_fbdev_cma, fb_helper); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen25100.00%1100.00%
Total25100.00%1100.00%


void drm_fb_cma_destroy(struct drm_framebuffer *fb) { drm_gem_fb_destroy(fb); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen1493.33%150.00%
Noralf Trönnes16.67%150.00%
Total15100.00%2100.00%

EXPORT_SYMBOL(drm_fb_cma_destroy);
int drm_fb_cma_create_handle(struct drm_framebuffer *fb, struct drm_file *file_priv, unsigned int *handle) { return drm_gem_fb_create_handle(fb, file_priv, handle); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen2790.00%150.00%
Noralf Trönnes310.00%150.00%
Total30100.00%2100.00%

EXPORT_SYMBOL(drm_fb_cma_create_handle); /** * drm_fb_cma_create_with_funcs() - helper function for the * &drm_mode_config_funcs.fb_create * callback * @dev: DRM device * @file_priv: drm file for the ioctl call * @mode_cmd: metadata from the userspace fb creation request * @funcs: vtable to be used for the new framebuffer object * * This can be used to set &drm_framebuffer_funcs for drivers that need the * &drm_framebuffer_funcs.dirty callback. Use drm_fb_cma_create() if you don't * need to change &drm_framebuffer_funcs. */
struct drm_framebuffer *drm_fb_cma_create_with_funcs(struct drm_device *dev, struct drm_file *file_priv, const struct drm_mode_fb_cmd2 *mode_cmd, const struct drm_framebuffer_funcs *funcs) { return drm_gem_fb_create_with_funcs(dev, file_priv, mode_cmd, funcs); }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes3482.93%150.00%
Lars-Peter Clausen717.07%150.00%
Total41100.00%2100.00%

EXPORT_SYMBOL_GPL(drm_fb_cma_create_with_funcs); /** * drm_fb_cma_create() - &drm_mode_config_funcs.fb_create callback function * @dev: DRM device * @file_priv: drm file for the ioctl call * @mode_cmd: metadata from the userspace fb creation request * * If your hardware has special alignment or pitch requirements these should be * checked before calling this function. Use drm_fb_cma_create_with_funcs() if * you need to set &drm_framebuffer_funcs.dirty. */
struct drm_framebuffer *drm_fb_cma_create(struct drm_device *dev, struct drm_file *file_priv, const struct drm_mode_fb_cmd2 *mode_cmd) { return drm_gem_fb_create(dev, file_priv, mode_cmd); }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes33100.00%2100.00%
Total33100.00%2100.00%

EXPORT_SYMBOL_GPL(drm_fb_cma_create); /** * drm_fb_cma_get_gem_obj() - Get CMA GEM object for framebuffer * @fb: The framebuffer * @plane: Which plane * * Return the CMA GEM object for given framebuffer. * * This function will usually be called from the CRTC callback functions. */
struct drm_gem_cma_object *drm_fb_cma_get_gem_obj(struct drm_framebuffer *fb, unsigned int plane) { struct drm_gem_object *gem; gem = drm_gem_fb_get_obj(fb, plane); if (!gem) return NULL; return to_drm_gem_cma_obj(gem); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen2965.91%150.00%
Noralf Trönnes1534.09%150.00%
Total44100.00%2100.00%

EXPORT_SYMBOL_GPL(drm_fb_cma_get_gem_obj); /** * drm_fb_cma_get_gem_addr() - Get physical address for framebuffer * @fb: The framebuffer * @state: Which state of drm plane * @plane: Which plane * Return the CMA GEM address for given framebuffer. * * This function will usually be called from the PLANE callback functions. */
dma_addr_t drm_fb_cma_get_gem_addr(struct drm_framebuffer *fb, struct drm_plane_state *state, unsigned int plane) { struct drm_gem_cma_object *obj; dma_addr_t paddr; obj = drm_fb_cma_get_gem_obj(fb, plane); if (!obj) return 0; paddr = obj->paddr + fb->offsets[plane]; paddr += fb->format->cpp[plane] * (state->src_x >> 16); paddr += fb->pitches[plane] * (state->src_y >> 16); return paddr; }

Contributors

PersonTokensPropCommitsCommitProp
Yannick Fertre8386.46%150.00%
Noralf Trönnes1313.54%150.00%
Total96100.00%2100.00%

EXPORT_SYMBOL_GPL(drm_fb_cma_get_gem_addr); /** * drm_fb_cma_prepare_fb() - Prepare CMA framebuffer * @plane: Which plane * @state: Plane state attach fence to * * This should be set as the &struct drm_plane_helper_funcs.prepare_fb hook. * * This function checks if the plane FB has an dma-buf attached, extracts * the exclusive fence and attaches it to plane state for the atomic helper * to wait on. * * There is no need for cleanup_fb for CMA based framebuffer drivers. */
int drm_fb_cma_prepare_fb(struct drm_plane *plane, struct drm_plane_state *state) { return drm_gem_fb_prepare_fb(plane, state); }

Contributors

PersonTokensPropCommitsCommitProp
Marek Vašut2191.30%150.00%
Noralf Trönnes28.70%150.00%
Total23100.00%2100.00%

EXPORT_SYMBOL_GPL(drm_fb_cma_prepare_fb); #ifdef CONFIG_DEBUG_FS
static void drm_fb_cma_describe(struct drm_framebuffer *fb, struct seq_file *m) { int i; seq_printf(m, "fb: %dx%d@%4.4s\n", fb->width, fb->height, (char *)&fb->format->format); for (i = 0; i < fb->format->num_planes; i++) { seq_printf(m, " %d: offset=%d pitch=%d, obj: ", i, fb->offsets[i], fb->pitches[i]); drm_gem_cma_describe(drm_fb_cma_get_gem_obj(fb, i), m); } }

Contributors

PersonTokensPropCommitsCommitProp
Rob Clark8585.86%114.29%
Ville Syrjälä66.06%342.86%
Noralf Trönnes55.05%114.29%
Laurent Pinchart22.02%114.29%
Damien Lespiau11.01%114.29%
Total99100.00%7100.00%

/** * drm_fb_cma_debugfs_show() - Helper to list CMA framebuffer objects * in debugfs. * @m: output file * @arg: private data for the callback */
int drm_fb_cma_debugfs_show(struct seq_file *m, void *arg) { struct drm_info_node *node = (struct drm_info_node *) m->private; struct drm_device *dev = node->minor->dev; struct drm_framebuffer *fb; mutex_lock(&dev->mode_config.fb_lock); drm_for_each_fb(fb, dev) drm_fb_cma_describe(fb, m); mutex_unlock(&dev->mode_config.fb_lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Rob Clark7593.75%133.33%
Daniel Vetter56.25%266.67%
Total80100.00%3100.00%

EXPORT_SYMBOL_GPL(drm_fb_cma_debugfs_show); #endif
static int drm_fb_cma_mmap(struct fb_info *info, struct vm_area_struct *vma) { return dma_mmap_writecombine(info->device, vma, info->screen_base, info->fix.smem_start, info->fix.smem_len); }

Contributors

PersonTokensPropCommitsCommitProp
Robin Murphy42100.00%1100.00%
Total42100.00%1100.00%

static struct fb_ops drm_fbdev_cma_ops = { .owner = THIS_MODULE, DRM_FB_HELPER_DEFAULT_OPS, .fb_fillrect = drm_fb_helper_sys_fillrect, .fb_copyarea = drm_fb_helper_sys_copyarea, .fb_imageblit = drm_fb_helper_sys_imageblit, .fb_mmap = drm_fb_cma_mmap, };
static int drm_fbdev_cma_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma) { fb_deferred_io_mmap(info, vma); vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes3594.59%150.00%
Lars-Peter Clausen25.41%150.00%
Total37100.00%2100.00%


static int drm_fbdev_cma_defio_init(struct fb_info *fbi, struct drm_gem_cma_object *cma_obj) { struct fb_deferred_io *fbdefio; struct fb_ops *fbops; /* * Per device structures are needed because: * fbops: fb_deferred_io_cleanup() clears fbops.fb_mmap * fbdefio: individual delays */ fbdefio = kzalloc(sizeof(*fbdefio), GFP_KERNEL); fbops = kzalloc(sizeof(*fbops), GFP_KERNEL); if (!fbdefio || !fbops) { kfree(fbdefio); kfree(fbops); return -ENOMEM; } /* can't be offset from vaddr since dirty() uses cma_obj */ fbi->screen_buffer = cma_obj->vaddr; /* fb_deferred_io_fault() needs a physical address */ fbi->fix.smem_start = page_to_phys(virt_to_page(fbi->screen_buffer)); *fbops = *fbi->fbops; fbi->fbops = fbops; fbdefio->delay = msecs_to_jiffies(DEFAULT_FBDEFIO_DELAY_MS); fbdefio->deferred_io = drm_fb_helper_deferred_io; fbi->fbdefio = fbdefio; fb_deferred_io_init(fbi); fbi->fbops->fb_mmap = drm_fbdev_cma_deferred_io_mmap; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes14996.75%150.00%
Sudip Mukherjee53.25%150.00%
Total154100.00%2100.00%


static void drm_fbdev_cma_defio_fini(struct fb_info *fbi) { if (!fbi->fbdefio) return; fb_deferred_io_cleanup(fbi); kfree(fbi->fbdefio); kfree(fbi->fbops); }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes38100.00%1100.00%
Total38100.00%1100.00%


static int drm_fbdev_cma_create(struct drm_fb_helper *helper, struct drm_fb_helper_surface_size *sizes) { struct drm_fbdev_cma *fbdev_cma = to_fbdev_cma(helper); struct drm_device *dev = helper->dev; struct drm_gem_cma_object *obj; struct drm_framebuffer *fb; unsigned int bytes_per_pixel; unsigned long offset; struct fb_info *fbi; size_t size; int ret; DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d)\n", sizes->surface_width, sizes->surface_height, sizes->surface_bpp); bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); size = sizes->surface_width * sizes->surface_height * bytes_per_pixel; obj = drm_gem_cma_create(dev, size); if (IS_ERR(obj)) return -ENOMEM; fbi = drm_fb_helper_alloc_fbi(helper); if (IS_ERR(fbi)) { ret = PTR_ERR(fbi); goto err_gem_free_object; } fb = drm_gem_fbdev_fb_create(dev, sizes, 0, &obj->base, fbdev_cma->fb_funcs); if (IS_ERR(fb)) { dev_err(dev->dev, "Failed to allocate DRM framebuffer.\n"); ret = PTR_ERR(fb); goto err_fb_info_destroy; } helper->fb = fb; fbi->par = helper; fbi->flags = FBINFO_FLAG_DEFAULT; fbi->fbops = &drm_fbdev_cma_ops; drm_fb_helper_fill_fix(fbi, fb->pitches[0], fb->format->depth); drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); offset = fbi->var.xoffset * bytes_per_pixel; offset += fbi->var.yoffset * fb->pitches[0]; dev->mode_config.fb_base = (resource_size_t)obj->paddr; fbi->screen_base = obj->vaddr + offset; fbi->fix.smem_start = (unsigned long)(obj->paddr + offset); fbi->screen_size = size; fbi->fix.smem_len = size; if (fbdev_cma->fb_funcs->dirty) { ret = drm_fbdev_cma_defio_init(fbi, obj); if (ret) goto err_cma_destroy; } return 0; err_cma_destroy: drm_framebuffer_remove(fb); err_fb_info_destroy: drm_fb_helper_fini(helper); err_gem_free_object: drm_gem_object_put_unlocked(&obj->base); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen31780.87%17.14%
Noralf Trönnes399.95%214.29%
Archit Taneja123.06%17.14%
Daniel Vetter112.81%428.57%
Thierry Reding51.28%321.43%
Rob Clark41.02%17.14%
Ville Syrjälä20.51%17.14%
Eric Anholt20.51%17.14%
Total392100.00%14100.00%

static const struct drm_fb_helper_funcs drm_fb_cma_helper_funcs = { .fb_probe = drm_fbdev_cma_create, }; /** * drm_fbdev_cma_init_with_funcs() - Allocate and initializes a drm_fbdev_cma struct * @dev: DRM device * @preferred_bpp: Preferred bits per pixel for the device * @max_conn_count: Maximum number of connectors * @funcs: fb helper functions, in particular a custom dirty() callback * * Returns a newly allocated drm_fbdev_cma struct or a ERR_PTR. */
struct drm_fbdev_cma *drm_fbdev_cma_init_with_funcs(struct drm_device *dev, unsigned int preferred_bpp, unsigned int max_conn_count, const struct drm_framebuffer_funcs *funcs) { struct drm_fbdev_cma *fbdev_cma; struct drm_fb_helper *helper; int ret; fbdev_cma = kzalloc(sizeof(*fbdev_cma), GFP_KERNEL); if (!fbdev_cma) { dev_err(dev->dev, "Failed to allocate drm fbdev.\n"); return ERR_PTR(-ENOMEM); } fbdev_cma->fb_funcs = funcs; helper = &fbdev_cma->fb_helper; drm_fb_helper_prepare(dev, helper, &drm_fb_cma_helper_funcs); ret = drm_fb_helper_init(dev, helper, max_conn_count); if (ret < 0) { dev_err(dev->dev, "Failed to initialize drm fb helper.\n"); goto err_free; } ret = drm_fb_helper_single_add_all_connectors(helper); if (ret < 0) { dev_err(dev->dev, "Failed to add connectors.\n"); goto err_drm_fb_helper_fini; } ret = drm_fb_helper_initial_config(helper, preferred_bpp); if (ret < 0) { dev_err(dev->dev, "Failed to set initial hw configuration.\n"); goto err_drm_fb_helper_fini; } return fbdev_cma; err_drm_fb_helper_fini: drm_fb_helper_fini(helper); err_free: kfree(fbdev_cma); return ERR_PTR(ret); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen18488.46%120.00%
Daniel Vetter94.33%120.00%
Thierry Reding83.85%120.00%
Noralf Trönnes62.88%120.00%
Masanari Iida10.48%120.00%
Total208100.00%5100.00%

EXPORT_SYMBOL_GPL(drm_fbdev_cma_init_with_funcs); static const struct drm_framebuffer_funcs drm_fb_cma_funcs = { .destroy = drm_gem_fb_destroy, .create_handle = drm_gem_fb_create_handle, }; /** * drm_fbdev_cma_init() - Allocate and initializes a drm_fbdev_cma struct * @dev: DRM device * @preferred_bpp: Preferred bits per pixel for the device * @max_conn_count: Maximum number of connectors * * Returns a newly allocated drm_fbdev_cma struct or a ERR_PTR. */
struct drm_fbdev_cma *drm_fbdev_cma_init(struct drm_device *dev, unsigned int preferred_bpp, unsigned int max_conn_count) { return drm_fbdev_cma_init_with_funcs(dev, preferred_bpp, max_conn_count, &drm_fb_cma_funcs); }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes3296.97%150.00%
Daniel Vetter13.03%150.00%
Total33100.00%2100.00%

EXPORT_SYMBOL_GPL(drm_fbdev_cma_init); /** * drm_fbdev_cma_fini() - Free drm_fbdev_cma struct * @fbdev_cma: The drm_fbdev_cma struct */
void drm_fbdev_cma_fini(struct drm_fbdev_cma *fbdev_cma) { drm_fb_helper_unregister_fbi(&fbdev_cma->fb_helper); if (fbdev_cma->fb_helper.fbdev) drm_fbdev_cma_defio_fini(fbdev_cma->fb_helper.fbdev); if (fbdev_cma->fb_helper.fb) drm_framebuffer_remove(fbdev_cma->fb_helper.fb); drm_fb_helper_fini(&fbdev_cma->fb_helper); kfree(fbdev_cma); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen3452.31%114.29%
Noralf Trönnes1320.00%228.57%
Stefan Agner812.31%114.29%
Daniel Vetter710.77%228.57%
Archit Taneja34.62%114.29%
Total65100.00%7100.00%

EXPORT_SYMBOL_GPL(drm_fbdev_cma_fini); /** * drm_fbdev_cma_restore_mode() - Restores initial framebuffer mode * @fbdev_cma: The drm_fbdev_cma struct, may be NULL * * This function is usually called from the &drm_driver.lastclose callback. */
void drm_fbdev_cma_restore_mode(struct drm_fbdev_cma *fbdev_cma) { if (fbdev_cma) drm_fb_helper_restore_fbdev_mode_unlocked(&fbdev_cma->fb_helper); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen1672.73%133.33%
Daniel Vetter522.73%133.33%
Rob Clark14.55%133.33%
Total22100.00%3100.00%

EXPORT_SYMBOL_GPL(drm_fbdev_cma_restore_mode); /** * drm_fbdev_cma_hotplug_event() - Poll for hotpulug events * @fbdev_cma: The drm_fbdev_cma struct, may be NULL * * This function is usually called from the &drm_mode_config.output_poll_changed * callback. */
void drm_fbdev_cma_hotplug_event(struct drm_fbdev_cma *fbdev_cma) { if (fbdev_cma) drm_fb_helper_hotplug_event(&fbdev_cma->fb_helper); }

Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen22100.00%1100.00%
Total22100.00%1100.00%

EXPORT_SYMBOL_GPL(drm_fbdev_cma_hotplug_event); /** * drm_fbdev_cma_set_suspend - wrapper around drm_fb_helper_set_suspend * @fbdev_cma: The drm_fbdev_cma struct, may be NULL * @state: desired state, zero to resume, non-zero to suspend * * Calls drm_fb_helper_set_suspend, which is a wrapper around * fb_set_suspend implemented by fbdev core. */
void drm_fbdev_cma_set_suspend(struct drm_fbdev_cma *fbdev_cma, bool state) { if (fbdev_cma) drm_fb_helper_set_suspend(&fbdev_cma->fb_helper, state); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner2696.30%150.00%
Liviu Dudau13.70%150.00%
Total27100.00%2100.00%

EXPORT_SYMBOL(drm_fbdev_cma_set_suspend); /** * drm_fbdev_cma_set_suspend_unlocked - wrapper around * drm_fb_helper_set_suspend_unlocked * @fbdev_cma: The drm_fbdev_cma struct, may be NULL * @state: desired state, zero to resume, non-zero to suspend * * Calls drm_fb_helper_set_suspend, which is a wrapper around * fb_set_suspend implemented by fbdev core. */
void drm_fbdev_cma_set_suspend_unlocked(struct drm_fbdev_cma *fbdev_cma, bool state) { if (fbdev_cma) drm_fb_helper_set_suspend_unlocked(&fbdev_cma->fb_helper, state); }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes2696.30%150.00%
Liviu Dudau13.70%150.00%
Total27100.00%2100.00%

EXPORT_SYMBOL(drm_fbdev_cma_set_suspend_unlocked);

Overall Contributors

PersonTokensPropCommitsCommitProp
Lars-Peter Clausen77043.92%12.38%
Noralf Trönnes49628.29%49.52%
Rob Clark1759.98%37.14%
Yannick Fertre895.08%12.38%
Daniel Vetter512.91%1023.81%
Robin Murphy472.68%12.38%
Stefan Agner402.28%24.76%
Marek Vašut281.60%12.38%
Archit Taneja181.03%12.38%
Thierry Reding140.80%511.90%
Ville Syrjälä80.46%49.52%
Sudip Mukherjee50.29%12.38%
Eric Anholt20.11%12.38%
Laurent Pinchart20.11%12.38%
Stefan Christ20.11%12.38%
Gabriel Krisman Bertazi20.11%24.76%
Liviu Dudau20.11%12.38%
Damien Lespiau10.06%12.38%
Masanari Iida10.06%12.38%
Total1753100.00%42100.00%
Directory: drivers/gpu/drm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.