cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/qxl/qxl_fb.c

/*
 * Copyright © 2013 Red Hat
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 *     David Airlie
 */
#include <linux/module.h>

#include "drmP.h"
#include "drm/drm.h"
#include "drm/drm_crtc.h"
#include "drm/drm_crtc_helper.h"
#include "qxl_drv.h"

#include "qxl_object.h"
#include "drm_fb_helper.h"


#define QXL_DIRTY_DELAY (HZ / 30)


struct qxl_fbdev {
	
struct drm_fb_helper helper;
	
struct qxl_framebuffer	qfb;
	
struct qxl_device	*qdev;

	
spinlock_t delayed_ops_lock;
	
struct list_head delayed_ops;
	
void *shadow;
	
int size;
};


static void qxl_fb_image_init(struct qxl_fb_image *qxl_fb_image, struct qxl_device *qdev, struct fb_info *info, const struct fb_image *image) { qxl_fb_image->qdev = qdev; if (info) { qxl_fb_image->visual = info->fix.visual; if (qxl_fb_image->visual == FB_VISUAL_TRUECOLOR || qxl_fb_image->visual == FB_VISUAL_DIRECTCOLOR) memcpy(&qxl_fb_image->pseudo_palette, info->pseudo_palette, sizeof(qxl_fb_image->pseudo_palette)); } else { /* fallback */ if (image->depth == 1) qxl_fb_image->visual = FB_VISUAL_MONO10; else qxl_fb_image->visual = FB_VISUAL_DIRECTCOLOR; } if (image) { memcpy(&qxl_fb_image->fb_image, image, sizeof(qxl_fb_image->fb_image)); } }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie130100.00%1100.00%
Total130100.00%1100.00%

#ifdef CONFIG_DRM_FBDEV_EMULATION static struct fb_deferred_io qxl_defio = { .delay = QXL_DIRTY_DELAY, .deferred_io = drm_fb_helper_deferred_io, }; #endif static struct fb_ops qxlfb_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, };
static void qxlfb_destroy_pinned_object(struct drm_gem_object *gobj) { struct qxl_bo *qbo = gem_to_qxl_bo(gobj); int ret; ret = qxl_bo_reserve(qbo, false); if (likely(ret == 0)) { qxl_bo_kunmap(qbo); qxl_bo_unpin(qbo); qxl_bo_unreserve(qbo); } drm_gem_object_unreference_unlocked(gobj); }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes4671.88%125.00%
Dave Airlie1421.88%250.00%
Gerd Hoffmann46.25%125.00%
Total64100.00%4100.00%


int qxl_get_handle_for_primary_fb(struct qxl_device *qdev, struct drm_file *file_priv, uint32_t *handle) { int r; struct drm_gem_object *gobj = qdev->fbdev_qfb->obj; BUG_ON(!gobj); /* drm_get_handle_create adds a reference - good */ r = drm_gem_handle_create(file_priv, gobj, handle); if (r) return r; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes3659.02%125.00%
Dave Airlie2439.34%250.00%
Gerd Hoffmann11.64%125.00%
Total61100.00%4100.00%


static int qxlfb_create_pinned_object(struct qxl_fbdev *qfbdev, const struct drm_mode_fb_cmd2 *mode_cmd, struct drm_gem_object **gobj_p) { struct qxl_device *qdev = qfbdev->qdev; struct drm_gem_object *gobj = NULL; struct qxl_bo *qbo = NULL; int ret; int aligned_size, size; int height = mode_cmd->height; size = mode_cmd->pitches[0] * height; aligned_size = ALIGN(size, PAGE_SIZE); /* TODO: unallocate and reallocate surface0 for real. Hack to just * have a large enough surface0 for 1024x768 Xorg 32bpp mode */ ret = qxl_gem_object_create(qdev, aligned_size, 0, QXL_GEM_DOMAIN_SURFACE, false, /* is discardable */ false, /* is kernel (false means device) */ NULL, &gobj); if (ret) { pr_err("failed to allocate framebuffer (%d)\n", aligned_size); return -ENOMEM; } qbo = gem_to_qxl_bo(gobj); qbo->surf.width = mode_cmd->width; qbo->surf.height = mode_cmd->height; qbo->surf.stride = mode_cmd->pitches[0]; qbo->surf.format = SPICE_SURFACE_FMT_32_xRGB; ret = qxl_bo_reserve(qbo, false); if (unlikely(ret != 0)) goto out_unref; ret = qxl_bo_pin(qbo, QXL_GEM_DOMAIN_SURFACE, NULL); if (ret) { qxl_bo_unreserve(qbo); goto out_unref; } ret = qxl_bo_kmap(qbo, NULL); qxl_bo_unreserve(qbo); /* unreserve, will be mmaped */ if (ret) goto out_unref; *gobj_p = gobj; return 0; out_unref: qxlfb_destroy_pinned_object(gobj); *gobj_p = NULL; return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes18972.14%133.33%
Dave Airlie7327.86%266.67%
Total262100.00%3100.00%

/* * FIXME * It should not be necessary to have a special dirty() callback for fbdev. */
static int qxlfb_framebuffer_dirty(struct drm_framebuffer *fb, struct drm_file *file_priv, unsigned flags, unsigned color, struct drm_clip_rect *clips, unsigned num_clips) { struct qxl_device *qdev = fb->dev->dev_private; struct fb_info *info = qdev->fbdev_info; struct qxl_fbdev *qfbdev = info->par; struct qxl_fb_image qxl_fb_image; struct fb_image *image = &qxl_fb_image.fb_image; /* TODO: hard coding 32 bpp */ int stride = qfbdev->qfb.base.pitches[0]; /* * we are using a shadow draw buffer, at qdev->surface0_shadow */ qxl_io_log(qdev, "dirty x[%d, %d], y[%d, %d]\n", clips->x1, clips->x2, clips->y1, clips->y2); image->dx = clips->x1; image->dy = clips->y1; image->width = clips->x2 - clips->x1; image->height = clips->y2 - clips->y1; image->fg_color = 0xffffffff; /* unused, just to avoid uninitialized warnings */ image->bg_color = 0; image->depth = 32; /* TODO: take from somewhere? */ image->cmap.start = 0; image->cmap.len = 0; image->cmap.red = NULL; image->cmap.green = NULL; image->cmap.blue = NULL; image->cmap.transp = NULL; image->data = qfbdev->shadow + (clips->x1 * 4) + (stride * clips->y1); qxl_fb_image_init(&qxl_fb_image, qdev, info, NULL); qxl_draw_opaque_fb(&qxl_fb_image, stride); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Noralf Trönnes17866.67%133.33%
Dave Airlie8832.96%133.33%
Christophe Fergeau10.37%133.33%
Total267100.00%3100.00%

static const struct drm_framebuffer_funcs qxlfb_fb_funcs = { .destroy = qxl_user_framebuffer_destroy, .dirty = qxlfb_framebuffer_dirty, };
static int qxlfb_create(struct qxl_fbdev *qfbdev, struct drm_fb_helper_surface_size *sizes) { struct qxl_device *qdev = qfbdev->qdev; struct fb_info *info; struct drm_framebuffer *fb = NULL; struct drm_mode_fb_cmd2 mode_cmd; struct drm_gem_object *gobj = NULL; struct qxl_bo *qbo = NULL; int ret; int size; int bpp = sizes->surface_bpp; int depth = sizes->surface_depth; void *shadow; mode_cmd.width = sizes->surface_width; mode_cmd.height = sizes->surface_height; mode_cmd.pitches[0] = ALIGN(mode_cmd.width * ((bpp + 1) / 8), 64); mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); ret = qxlfb_create_pinned_object(qfbdev, &mode_cmd, &gobj); if (ret < 0) return ret; qbo = gem_to_qxl_bo(gobj); QXL_INFO(qdev, "%s: %dx%d %d\n", __func__, mode_cmd.width, mode_cmd.height, mode_cmd.pitches[0]); shadow = vmalloc(mode_cmd.pitches[0] * mode_cmd.height); /* TODO: what's the usual response to memory allocation errors? */ BUG_ON(!shadow); QXL_INFO(qdev, "surface0 at gpu offset %lld, mmap_offset %lld (virt %p, shadow %p)\n", qxl_bo_gpu_offset(qbo), qxl_bo_mmap_offset(qbo), qbo->kptr, shadow); size = mode_cmd.pitches[0] * mode_cmd.height; info = drm_fb_helper_alloc_fbi(&qfbdev->helper); if (IS_ERR(info)) { ret = PTR_ERR(info); goto out_unref; } info->par = qfbdev; qxl_framebuffer_init(&qdev->ddev, &qfbdev->qfb, &mode_cmd, gobj, &qxlfb_fb_funcs); fb = &qfbdev->qfb.base; /* setup helper with fb data */ qfbdev->helper.fb = fb; qfbdev->shadow = shadow; strcpy(info->fix.id, "qxldrmfb"); drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth); info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT; info->fbops = &qxlfb_ops; /* * TODO: using gobj->size in various places in this function. Not sure * what the difference between the different sizes is. */ info->fix.smem_start = qdev->vram_base; /* TODO - correct? */ info->fix.smem_len = gobj->size; info->screen_base = qfbdev->shadow; info->screen_size = gobj->size; drm_fb_helper_fill_var(info, &qfbdev->helper, sizes->fb_width, sizes->fb_height); /* setup aperture base/size for vesafb takeover */ info->apertures->ranges[0].base = qdev->ddev.mode_config.fb_base; info->apertures->ranges[0].size = qdev->vram_size; info->fix.mmio_start = 0; info->fix.mmio_len = 0; if (info->screen_base == NULL) { ret = -ENOSPC; goto out_destroy_fbi; } #ifdef CONFIG_DRM_FBDEV_EMULATION info->fbdefio = &qxl_defio; fb_deferred_io_init(info); #endif qdev->fbdev_info = info; qdev->fbdev_qfb = &qfbdev->qfb; DRM_INFO("fb mappable at 0x%lX, size %lu\n", info->fix.smem_start, (unsigned long)info->screen_size); DRM_INFO("fb: depth %d, pitch %d, width %d, height %d\n", fb->format->depth, fb->pitches[0], fb->width, fb->height); return 0; out_destroy_fbi: drm_fb_helper_release_fbi(&qfbdev->helper); out_unref: if (qbo) { ret = qxl_bo_reserve(qbo, false); if (likely(ret == 0)) { qxl_bo_kunmap(qbo); qxl_bo_unpin(qbo); qxl_bo_unreserve(qbo); } } if (fb && ret) { drm_gem_object_unreference_unlocked(gobj); drm_framebuffer_cleanup(fb); kfree(fb); } drm_gem_object_unreference_unlocked(gobj); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie61192.72%112.50%
Archit Taneja233.49%112.50%
Gerd Hoffmann91.37%112.50%
Daniel Vetter71.06%225.00%
Ville Syrjälä40.61%112.50%
Noralf Trönnes30.46%112.50%
Gabriel Krisman Bertazi20.30%112.50%
Total659100.00%8100.00%


static int qxl_fb_find_or_create_single( struct drm_fb_helper *helper, struct drm_fb_helper_surface_size *sizes) { struct qxl_fbdev *qfbdev = container_of(helper, struct qxl_fbdev, helper); int new_fb = 0; int ret; if (!helper->fb) { ret = qxlfb_create(qfbdev, sizes); if (ret) return ret; new_fb = 1; } return new_fb; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie6591.55%150.00%
Fabian Frederick68.45%150.00%
Total71100.00%2100.00%


static int qxl_fbdev_destroy(struct drm_device *dev, struct qxl_fbdev *qfbdev) { struct qxl_framebuffer *qfb = &qfbdev->qfb; drm_fb_helper_unregister_fbi(&qfbdev->helper); drm_fb_helper_release_fbi(&qfbdev->helper); if (qfb->obj) { qxlfb_destroy_pinned_object(qfb->obj); qfb->obj = NULL; } drm_fb_helper_fini(&qfbdev->helper); vfree(qfbdev->shadow); drm_framebuffer_cleanup(&qfb->base); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie8191.01%150.00%
Archit Taneja88.99%150.00%
Total89100.00%2100.00%

static const struct drm_fb_helper_funcs qxl_fb_helper_funcs = { .fb_probe = qxl_fb_find_or_create_single, };
int qxl_fbdev_init(struct qxl_device *qdev) { struct qxl_fbdev *qfbdev; int bpp_sel = 32; /* TODO: parameter from somewhere? */ int ret; qfbdev = kzalloc(sizeof(struct qxl_fbdev), GFP_KERNEL); if (!qfbdev) return -ENOMEM; qfbdev->qdev = qdev; qdev->mode_info.qfbdev = qfbdev; spin_lock_init(&qfbdev->delayed_ops_lock); INIT_LIST_HEAD(&qfbdev->delayed_ops); drm_fb_helper_prepare(&qdev->ddev, &qfbdev->helper, &qxl_fb_helper_funcs); ret = drm_fb_helper_init(&qdev->ddev, &qfbdev->helper, QXLFB_CONN_LIMIT); if (ret) goto free; ret = drm_fb_helper_single_add_all_connectors(&qfbdev->helper); if (ret) goto fini; ret = drm_fb_helper_initial_config(&qfbdev->helper, bpp_sel); if (ret) goto fini; return 0; fini: drm_fb_helper_fini(&qfbdev->helper); free: kfree(qfbdev); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie11867.43%240.00%
Thierry Reding5531.43%240.00%
Gabriel Krisman Bertazi21.14%120.00%
Total175100.00%5100.00%


void qxl_fbdev_fini(struct qxl_device *qdev) { if (!qdev->mode_info.qfbdev) return; qxl_fbdev_destroy(&qdev->ddev, qdev->mode_info.qfbdev); kfree(qdev->mode_info.qfbdev); qdev->mode_info.qfbdev = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie5098.04%150.00%
Gabriel Krisman Bertazi11.96%150.00%
Total51100.00%2100.00%


void qxl_fbdev_set_suspend(struct qxl_device *qdev, int state) { drm_fb_helper_set_suspend(&qdev->mode_info.qfbdev->helper, state); }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie2592.59%150.00%
Archit Taneja27.41%150.00%
Total27100.00%2100.00%


bool qxl_fbdev_qobj_is_fb(struct qxl_device *qdev, struct qxl_bo *qobj) { if (qobj == gem_to_qxl_bo(qdev->mode_info.qfbdev->qfb.obj)) return true; return false; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie38100.00%1100.00%
Total38100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie140368.84%317.65%
Noralf Trönnes50324.68%15.88%
Thierry Reding562.75%317.65%
Archit Taneja331.62%15.88%
Gerd Hoffmann140.69%211.76%
Daniel Vetter120.59%211.76%
Fabian Frederick60.29%15.88%
Gabriel Krisman Bertazi50.25%15.88%
Ville Syrjälä40.20%15.88%
Stefan Christ10.05%15.88%
Christophe Fergeau10.05%15.88%
Total2038100.00%17100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.