2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2011-10-04 18:19:01 +08:00
|
|
|
/* exynos_drm_gem.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Samsung Electronics Co., Ltd.
|
|
|
|
* Authoer: Inki Dae <inki.dae@samsung.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _EXYNOS_DRM_GEM_H_
|
|
|
|
#define _EXYNOS_DRM_GEM_H_
|
|
|
|
|
2014-09-23 21:46:53 +08:00
|
|
|
#include <drm/drm_gem.h>
|
2018-04-15 00:04:29 +08:00
|
|
|
#include <linux/mm_types.h>
|
2014-09-23 21:46:53 +08:00
|
|
|
|
2015-10-02 08:33:47 +08:00
|
|
|
#define to_exynos_gem(x) container_of(x, struct exynos_drm_gem, base)
|
2011-10-04 18:19:01 +08:00
|
|
|
|
2012-04-03 20:27:58 +08:00
|
|
|
#define IS_NONCONTIG_BUFFER(f) (f & EXYNOS_BO_NONCONTIG)
|
|
|
|
|
2011-10-04 18:19:01 +08:00
|
|
|
/*
|
|
|
|
* exynos drm buffer structure.
|
|
|
|
*
|
|
|
|
* @base: a gem object.
|
|
|
|
* - a new handle to this gem object would be created
|
|
|
|
* by drm_gem_handle_create().
|
2015-08-16 13:38:49 +08:00
|
|
|
* @flags: indicate memory type to allocated buffer and cache attruibute.
|
2012-06-29 15:28:17 +08:00
|
|
|
* @size: size requested from user, in bytes and this size is aligned
|
|
|
|
* in page unit.
|
2015-08-16 13:38:49 +08:00
|
|
|
* @cookie: cookie returned by dma_alloc_attrs
|
2020-04-23 13:43:49 +08:00
|
|
|
* @kvaddr: kernel virtual address to allocated memory region (for fbdev)
|
2015-08-16 13:38:49 +08:00
|
|
|
* @dma_addr: bus address(accessed by dma) to allocated memory region.
|
|
|
|
* - this address could be physical address without IOMMU and
|
|
|
|
* device address with IOMMU.
|
2020-04-23 13:43:49 +08:00
|
|
|
* @dma_attrs: attrs passed dma mapping framework
|
2015-09-16 13:14:54 +08:00
|
|
|
* @sgt: Imported sg_table.
|
2011-10-04 18:19:01 +08:00
|
|
|
*
|
2013-10-24 15:02:57 +08:00
|
|
|
* P.S. this object would be transferred to user as kms_bo.handle so
|
2011-10-04 18:19:01 +08:00
|
|
|
* user can access the buffer through kms_bo.handle.
|
|
|
|
*/
|
2015-10-02 08:33:47 +08:00
|
|
|
struct exynos_drm_gem {
|
2015-08-16 13:38:49 +08:00
|
|
|
struct drm_gem_object base;
|
|
|
|
unsigned int flags;
|
|
|
|
unsigned long size;
|
|
|
|
void *cookie;
|
2020-07-13 15:07:08 +08:00
|
|
|
void *kvaddr;
|
2015-08-16 13:38:49 +08:00
|
|
|
dma_addr_t dma_addr;
|
2016-08-04 04:46:00 +08:00
|
|
|
unsigned long dma_attrs;
|
2015-09-16 13:14:54 +08:00
|
|
|
struct sg_table *sgt;
|
2011-10-04 18:19:01 +08:00
|
|
|
};
|
|
|
|
|
2011-12-13 13:39:13 +08:00
|
|
|
/* destroy a buffer with gem object */
|
2015-10-02 08:33:47 +08:00
|
|
|
void exynos_drm_gem_destroy(struct exynos_drm_gem *exynos_gem);
|
2011-12-13 13:39:13 +08:00
|
|
|
|
|
|
|
/* create a new buffer with gem object */
|
2015-10-02 08:33:47 +08:00
|
|
|
struct exynos_drm_gem *exynos_drm_gem_create(struct drm_device *dev,
|
|
|
|
unsigned int flags,
|
2020-04-23 13:43:49 +08:00
|
|
|
unsigned long size,
|
|
|
|
bool kvmap);
|
2011-10-04 18:19:01 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* request gem object creation and buffer allocation as the size
|
|
|
|
* that it is calculated with framebuffer information such as width,
|
|
|
|
* height and bpp.
|
|
|
|
*/
|
|
|
|
int exynos_drm_gem_create_ioctl(struct drm_device *dev, void *data,
|
2011-12-13 13:20:23 +08:00
|
|
|
struct drm_file *file_priv);
|
2011-10-04 18:19:01 +08:00
|
|
|
|
2016-03-08 13:12:59 +08:00
|
|
|
/* get fake-offset of gem object that can be used with mmap. */
|
|
|
|
int exynos_drm_gem_map_ioctl(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
2012-03-16 17:47:06 +08:00
|
|
|
/*
|
2018-07-09 21:44:31 +08:00
|
|
|
* get exynos drm object from gem handle, this function could be used for
|
2012-03-16 17:47:06 +08:00
|
|
|
* other drivers such as 2d/3d acceleration drivers.
|
|
|
|
* with this function call, gem object reference count would be increased.
|
|
|
|
*/
|
2018-07-09 21:44:31 +08:00
|
|
|
struct exynos_drm_gem *exynos_drm_gem_get(struct drm_file *filp,
|
|
|
|
unsigned int gem_handle);
|
2012-03-16 17:47:06 +08:00
|
|
|
|
|
|
|
/*
|
2018-07-09 21:44:31 +08:00
|
|
|
* put exynos drm object acquired from exynos_drm_gem_get(),
|
|
|
|
* gem object reference count would be decreased.
|
2012-03-16 17:47:06 +08:00
|
|
|
*/
|
2018-07-09 21:44:31 +08:00
|
|
|
static inline void exynos_drm_gem_put(struct exynos_drm_gem *exynos_gem)
|
|
|
|
{
|
2020-05-15 17:50:58 +08:00
|
|
|
drm_gem_object_put(&exynos_gem->base);
|
2018-07-09 21:44:31 +08:00
|
|
|
}
|
2012-03-16 17:47:06 +08:00
|
|
|
|
2012-05-04 14:51:17 +08:00
|
|
|
/* get buffer information to memory region allocated by gem. */
|
|
|
|
int exynos_drm_gem_get_ioctl(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv);
|
|
|
|
|
2011-10-04 18:19:01 +08:00
|
|
|
/* free gem object. */
|
2015-10-02 08:33:47 +08:00
|
|
|
void exynos_drm_gem_free_object(struct drm_gem_object *obj);
|
2011-10-04 18:19:01 +08:00
|
|
|
|
|
|
|
/* create memory region for drm framebuffer. */
|
|
|
|
int exynos_drm_gem_dumb_create(struct drm_file *file_priv,
|
2011-12-13 13:20:23 +08:00
|
|
|
struct drm_device *dev,
|
|
|
|
struct drm_mode_create_dumb *args);
|
2011-10-04 18:19:01 +08:00
|
|
|
|
2015-08-16 13:33:08 +08:00
|
|
|
/* low-level interface prime helpers */
|
2017-10-30 15:28:09 +08:00
|
|
|
struct drm_gem_object *exynos_drm_gem_prime_import(struct drm_device *dev,
|
|
|
|
struct dma_buf *dma_buf);
|
2015-08-16 13:33:08 +08:00
|
|
|
struct sg_table *exynos_drm_gem_prime_get_sg_table(struct drm_gem_object *obj);
|
|
|
|
struct drm_gem_object *
|
|
|
|
exynos_drm_gem_prime_import_sg_table(struct drm_device *dev,
|
|
|
|
struct dma_buf_attachment *attach,
|
|
|
|
struct sg_table *sgt);
|
|
|
|
|
2011-10-04 18:19:01 +08:00
|
|
|
#endif
|