blob: 4248d7fb698f7b66c53860a59efbbc2568b5ae8d [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/* exynos_drm_gem.h
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Authoer: Inki Dae <inki.dae@samsung.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26#ifndef _EXYNOS_DRM_GEM_H_
27#define _EXYNOS_DRM_GEM_H_
28
29#define to_exynos_gem_obj(x) container_of(x,\
30 struct exynos_drm_gem_obj, base)
31
Inki Daedcf9af82012-04-03 21:27:58 +090032#define IS_NONCONTIG_BUFFER(f) (f & EXYNOS_BO_NONCONTIG)
33
Inki Dae1c248b72011-10-04 19:19:01 +090034/*
Inki Dae2c871122011-11-12 15:23:32 +090035 * exynos drm gem buffer structure.
36 *
37 * @kvaddr: kernel virtual address to allocated memory region.
Inki Dae2a3098f2012-11-04 05:48:52 -080038 * *userptr: user space address.
Inki Dae2c871122011-11-12 15:23:32 +090039 * @dma_addr: bus address(accessed by dma) to allocated memory region.
40 * - this address could be physical address without IOMMU and
41 * device address with IOMMU.
Inki Dae2a3098f2012-11-04 05:48:52 -080042 * @write: whether pages will be written to by the caller.
Inki Dae2b358922012-03-16 18:47:05 +090043 * @sgt: sg table to transfer page data.
44 * @pages: contain all pages to allocated memory region.
Inki Daeb2df26c2012-04-23 21:01:28 +090045 * @page_size: could be 4K, 64K or 1MB.
Inki Dae2c871122011-11-12 15:23:32 +090046 * @size: size of allocated memory region.
Inki Dae2a3098f2012-11-04 05:48:52 -080047 * @pfnmap: indicate whether memory region from userptr is mmaped with
48 * VM_PFNMAP or not.
Inki Dae2c871122011-11-12 15:23:32 +090049 */
50struct exynos_drm_gem_buf {
51 void __iomem *kvaddr;
Inki Dae2a3098f2012-11-04 05:48:52 -080052 unsigned long userptr;
Inki Dae2c871122011-11-12 15:23:32 +090053 dma_addr_t dma_addr;
Inki Dae0519f9a2012-10-20 07:53:42 -070054 struct dma_attrs dma_attrs;
Inki Dae2a3098f2012-11-04 05:48:52 -080055 unsigned int write;
Inki Dae2b358922012-03-16 18:47:05 +090056 struct sg_table *sgt;
57 struct page **pages;
Inki Daeb2df26c2012-04-23 21:01:28 +090058 unsigned long page_size;
Inki Dae2c871122011-11-12 15:23:32 +090059 unsigned long size;
Inki Dae2a3098f2012-11-04 05:48:52 -080060 bool pfnmap;
Inki Dae2c871122011-11-12 15:23:32 +090061};
62
63/*
Inki Dae1c248b72011-10-04 19:19:01 +090064 * exynos drm buffer structure.
65 *
66 * @base: a gem object.
67 * - a new handle to this gem object would be created
68 * by drm_gem_handle_create().
Inki Dae2c871122011-11-12 15:23:32 +090069 * @buffer: a pointer to exynos_drm_gem_buffer object.
70 * - contain the information to memory region allocated
71 * by user request or at framebuffer creation.
Inki Dae1c248b72011-10-04 19:19:01 +090072 * continuous memory region allocated by user request
73 * or at framebuffer creation.
Inki Dae3c52b882012-06-29 16:28:17 +090074 * @size: size requested from user, in bytes and this size is aligned
75 * in page unit.
Inki Dae2a3098f2012-11-04 05:48:52 -080076 * @vma: a pointer to vm_area.
Inki Dae2b358922012-03-16 18:47:05 +090077 * @flags: indicate memory type to allocated buffer and cache attruibute.
Inki Dae1c248b72011-10-04 19:19:01 +090078 *
79 * P.S. this object would be transfered to user as kms_bo.handle so
80 * user can access the buffer through kms_bo.handle.
81 */
82struct exynos_drm_gem_obj {
Joonyoung Shimee5e7702011-12-13 14:20:23 +090083 struct drm_gem_object base;
84 struct exynos_drm_gem_buf *buffer;
Inki Dae2b358922012-03-16 18:47:05 +090085 unsigned long size;
Inki Dae2a3098f2012-11-04 05:48:52 -080086 struct vm_area_struct *vma;
Inki Dae2b358922012-03-16 18:47:05 +090087 unsigned int flags;
Inki Dae1c248b72011-10-04 19:19:01 +090088};
89
Inki Daeb2df26c2012-04-23 21:01:28 +090090struct page **exynos_gem_get_pages(struct drm_gem_object *obj, gfp_t gfpmask);
91
Joonyoung Shim23648392011-12-13 14:39:13 +090092/* destroy a buffer with gem object */
93void exynos_drm_gem_destroy(struct exynos_drm_gem_obj *exynos_gem_obj);
94
Inki Daeb2df26c2012-04-23 21:01:28 +090095/* create a private gem object and initialize it. */
96struct exynos_drm_gem_obj *exynos_drm_gem_init(struct drm_device *dev,
97 unsigned long size);
98
Joonyoung Shim23648392011-12-13 14:39:13 +090099/* create a new buffer with gem object */
Inki Daef088d5a2011-11-12 14:51:23 +0900100struct exynos_drm_gem_obj *exynos_drm_gem_create(struct drm_device *dev,
Inki Dae2b358922012-03-16 18:47:05 +0900101 unsigned int flags,
102 unsigned long size);
Inki Dae1c248b72011-10-04 19:19:01 +0900103
104/*
105 * request gem object creation and buffer allocation as the size
106 * that it is calculated with framebuffer information such as width,
107 * height and bpp.
108 */
109int exynos_drm_gem_create_ioctl(struct drm_device *dev, void *data,
Joonyoung Shimee5e7702011-12-13 14:20:23 +0900110 struct drm_file *file_priv);
Inki Dae1c248b72011-10-04 19:19:01 +0900111
Inki Daef0b1bda2012-03-16 18:47:06 +0900112/*
113 * get dma address from gem handle and this function could be used for
114 * other drivers such as 2d/3d acceleration drivers.
115 * with this function call, gem object reference count would be increased.
116 */
Inki Daed87342c2012-11-03 21:53:24 -0700117dma_addr_t *exynos_drm_gem_get_dma_addr(struct drm_device *dev,
Inki Daef0b1bda2012-03-16 18:47:06 +0900118 unsigned int gem_handle,
Inki Daed87342c2012-11-03 21:53:24 -0700119 struct drm_file *filp);
Inki Daef0b1bda2012-03-16 18:47:06 +0900120
121/*
122 * put dma address from gem handle and this function could be used for
123 * other drivers such as 2d/3d acceleration drivers.
124 * with this function call, gem object reference count would be decreased.
125 */
126void exynos_drm_gem_put_dma_addr(struct drm_device *dev,
127 unsigned int gem_handle,
Inki Daed87342c2012-11-03 21:53:24 -0700128 struct drm_file *filp);
Inki Daef0b1bda2012-03-16 18:47:06 +0900129
Inki Dae1c248b72011-10-04 19:19:01 +0900130/* get buffer offset to map to user space. */
131int exynos_drm_gem_map_offset_ioctl(struct drm_device *dev, void *data,
Joonyoung Shimee5e7702011-12-13 14:20:23 +0900132 struct drm_file *file_priv);
Inki Dae1c248b72011-10-04 19:19:01 +0900133
Joonyoung Shimee5e7702011-12-13 14:20:23 +0900134/*
135 * mmap the physically continuous memory that a gem object contains
136 * to user space.
137 */
138int exynos_drm_gem_mmap_ioctl(struct drm_device *dev, void *data,
139 struct drm_file *file_priv);
Inki Dae1c248b72011-10-04 19:19:01 +0900140
Inki Dae2a3098f2012-11-04 05:48:52 -0800141/* map user space allocated by malloc to pages. */
142int exynos_drm_gem_userptr_ioctl(struct drm_device *dev, void *data,
143 struct drm_file *file_priv);
144
Inki Dae40cd7e02012-05-04 15:51:17 +0900145/* get buffer information to memory region allocated by gem. */
146int exynos_drm_gem_get_ioctl(struct drm_device *dev, void *data,
147 struct drm_file *file_priv);
148
Inki Dae1c248b72011-10-04 19:19:01 +0900149/* initialize gem object. */
150int exynos_drm_gem_init_object(struct drm_gem_object *obj);
151
152/* free gem object. */
153void exynos_drm_gem_free_object(struct drm_gem_object *gem_obj);
154
155/* create memory region for drm framebuffer. */
156int exynos_drm_gem_dumb_create(struct drm_file *file_priv,
Joonyoung Shimee5e7702011-12-13 14:20:23 +0900157 struct drm_device *dev,
158 struct drm_mode_create_dumb *args);
Inki Dae1c248b72011-10-04 19:19:01 +0900159
160/* map memory region for drm framebuffer to user space. */
161int exynos_drm_gem_dumb_map_offset(struct drm_file *file_priv,
Joonyoung Shimee5e7702011-12-13 14:20:23 +0900162 struct drm_device *dev, uint32_t handle,
163 uint64_t *offset);
Inki Dae1c248b72011-10-04 19:19:01 +0900164
165/*
166 * destroy memory region allocated.
167 * - a gem handle and physical memory region pointed by a gem object
168 * would be released by drm_gem_handle_delete().
169 */
170int exynos_drm_gem_dumb_destroy(struct drm_file *file_priv,
Joonyoung Shimee5e7702011-12-13 14:20:23 +0900171 struct drm_device *dev,
172 unsigned int handle);
173
174/* page fault handler and mmap fault address(virtual) to physical memory. */
175int exynos_drm_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
176
177/* set vm_flags and we can change the vm attribute to other one at here. */
178int exynos_drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
Inki Dae1c248b72011-10-04 19:19:01 +0900179
Inki Dae2a3098f2012-11-04 05:48:52 -0800180static inline int vma_is_io(struct vm_area_struct *vma)
181{
182 return !!(vma->vm_flags & (VM_IO | VM_PFNMAP));
183}
184
185/* get a copy of a virtual memory region. */
186struct vm_area_struct *exynos_gem_get_vma(struct vm_area_struct *vma);
187
188/* release a userspace virtual memory area. */
189void exynos_gem_put_vma(struct vm_area_struct *vma);
190
191/* get pages from user space. */
192int exynos_gem_get_pages_from_userptr(unsigned long start,
193 unsigned int npages,
194 struct page **pages,
195 struct vm_area_struct *vma);
196
197/* drop the reference to pages. */
198void exynos_gem_put_pages_to_userptr(struct page **pages,
199 unsigned int npages,
200 struct vm_area_struct *vma);
201
202/* map sgt with dma region. */
203int exynos_gem_map_sgt_with_dma(struct drm_device *drm_dev,
204 struct sg_table *sgt,
205 enum dma_data_direction dir);
206
207/* unmap sgt from dma region. */
208void exynos_gem_unmap_sgt_from_dma(struct drm_device *drm_dev,
209 struct sg_table *sgt,
210 enum dma_data_direction dir);
211
Inki Dae1c248b72011-10-04 19:19:01 +0900212#endif