231927d939
Add helper function to mmap ttm bo's using &drm_gem_object_funcs.mmap(). Note that with this code path access verification is done by drm_gem_mmap() (which calls drm_vma_node_is_allowed(()). The &ttm_bo_driver.verify_access() callback is is not used. v3: use ttm_bo_mmap_obj instead of ttm_bo_mmap_vma_setup Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20191016115203.20095-9-kraxel@redhat.com
22 lines
557 B
C
22 lines
557 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifndef DRM_GEM_TTM_HELPER_H
|
|
#define DRM_GEM_TTM_HELPER_H
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <drm/drm_gem.h>
|
|
#include <drm/drm_device.h>
|
|
#include <drm/ttm/ttm_bo_api.h>
|
|
#include <drm/ttm/ttm_bo_driver.h>
|
|
|
|
#define drm_gem_ttm_of_gem(gem_obj) \
|
|
container_of(gem_obj, struct ttm_buffer_object, base)
|
|
|
|
void drm_gem_ttm_print_info(struct drm_printer *p, unsigned int indent,
|
|
const struct drm_gem_object *gem);
|
|
int drm_gem_ttm_mmap(struct drm_gem_object *gem,
|
|
struct vm_area_struct *vma);
|
|
|
|
#endif
|