xref: /linux/drivers/gpu/drm/mediatek/mtk_gem.h (revision d6112dddbf354d21ff2fcd49338df68782492c73)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (c) 2015 MediaTek Inc.
4  */
5 
6 #ifndef _MTK_GEM_H_
7 #define _MTK_GEM_H_
8 
9 #include <drm/drm_gem.h>
10 #include <drm/drm_gem_dma_helper.h>
11 
12 int mtk_gem_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
13 			struct drm_mode_create_dumb *args);
14 struct drm_gem_object *mtk_gem_prime_import_sg_table(struct drm_device *dev,
15 			struct dma_buf_attachment *attach, struct sg_table *sg);
16 
17 #endif
18