49a3f51dfe
This patch replaces the vmap/vunmap's use of raw pointers in GEM object functions with instances of struct dma_buf_map. GEM backends are converted as well. For most of them, this simply changes the returned type. TTM-based drivers now return information about the location of the memory, either system or I/O memory. GEM VRAM helpers and qxl now use ttm_bo_vmap() et al. Amdgpu, nouveau and radeon use drm_gem_ttm_vmap() et al instead of implementing their own vmap callbacks. v7: * init QXL cursor to mapped BO buffer (kernel test robot) v5: * update vkms after switch to shmem v4: * use ttm_bo_vmap(), drm_gem_ttm_vmap(), et al. (Daniel, Christian) * fix a trailing { in drm_gem_vmap() * remove several empty functions instead of converting them (Daniel) * comment uses of raw pointers with a TODO (Daniel) * TODO list: convert more helpers to use struct dma_buf_map Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Christian König <christian.koenig@amd.com> Tested-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20201103093015.1063-7-tzimmermann@suse.de
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
|
|
* Author:Mark Yao <mark.yao@rock-chips.com>
|
|
*/
|
|
|
|
#ifndef _ROCKCHIP_DRM_GEM_H
|
|
#define _ROCKCHIP_DRM_GEM_H
|
|
|
|
#define to_rockchip_obj(x) container_of(x, struct rockchip_gem_object, base)
|
|
|
|
struct rockchip_gem_object {
|
|
struct drm_gem_object base;
|
|
unsigned int flags;
|
|
|
|
void *kvaddr;
|
|
dma_addr_t dma_addr;
|
|
/* Used when IOMMU is disabled */
|
|
unsigned long dma_attrs;
|
|
|
|
/* Used when IOMMU is enabled */
|
|
struct drm_mm_node mm;
|
|
unsigned long num_pages;
|
|
struct page **pages;
|
|
struct sg_table *sgt;
|
|
size_t size;
|
|
};
|
|
|
|
struct sg_table *rockchip_gem_prime_get_sg_table(struct drm_gem_object *obj);
|
|
struct drm_gem_object *
|
|
rockchip_gem_prime_import_sg_table(struct drm_device *dev,
|
|
struct dma_buf_attachment *attach,
|
|
struct sg_table *sg);
|
|
int rockchip_gem_prime_vmap(struct drm_gem_object *obj, struct dma_buf_map *map);
|
|
void rockchip_gem_prime_vunmap(struct drm_gem_object *obj, struct dma_buf_map *map);
|
|
|
|
/* drm driver mmap file operations */
|
|
int rockchip_gem_mmap(struct file *filp, struct vm_area_struct *vma);
|
|
|
|
/* mmap a gem object to userspace. */
|
|
int rockchip_gem_mmap_buf(struct drm_gem_object *obj,
|
|
struct vm_area_struct *vma);
|
|
|
|
struct rockchip_gem_object *
|
|
rockchip_gem_create_object(struct drm_device *drm, unsigned int size,
|
|
bool alloc_kmap);
|
|
|
|
void rockchip_gem_free_object(struct drm_gem_object *obj);
|
|
|
|
int rockchip_gem_dumb_create(struct drm_file *file_priv,
|
|
struct drm_device *dev,
|
|
struct drm_mode_create_dumb *args);
|
|
#endif /* _ROCKCHIP_DRM_GEM_H */
|