mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
f8b5307074
Moving the driver-specific mmap code into a GEM object function allows for using DRM helpers for various mmap callbacks. The respective rockchip functions are being removed. The file_operations structure fops is now being created by the helper macro DEFINE_DRM_GEM_FOPS(). Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> [On rk3288 (pinky), rk3399 (gru-kevin, puma) and rk3328 (rock64)] Tested-by: Heiko Stuebner <heiko@sntech.de> [On RK3188/RK3066 (without iommu)] Tested-by: Alex Bee <knaerzche@gmail.com> Signed-off-by: Heiko Stuebner <heiko@sntech.de> Link: https://patchwork.freedesktop.org/patch/msgid/20210624095502.8945-1-tzimmermann@suse.de
46 lines
1.3 KiB
C
46 lines
1.3 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);
|
|
|
|
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 */
|