blob: ff7f2a886a346aaf5c0d03cd565e69f4967fb306 [file] [log] [blame]
Inki Daeb2df26c2012-04-23 21:01:28 +09001/* exynos_drm_dmabuf.c
2 *
3 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 * Author: Inki Dae <inki.dae@samsung.com>
5 *
Inki Daed81aecb2012-12-18 02:30:17 +09006 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
Inki Daeb2df26c2012-04-23 21:01:28 +090010 */
11
David Howells760285e2012-10-02 18:01:07 +010012#include <drm/drmP.h>
13#include <drm/exynos_drm.h>
Inki Daeb2df26c2012-04-23 21:01:28 +090014#include "exynos_drm_drv.h"
15#include "exynos_drm_gem.h"
16
17#include <linux/dma-buf.h>
18
Inki Daea7b362f2012-11-28 19:09:31 +090019struct exynos_drm_dmabuf_attachment {
20 struct sg_table sgt;
21 enum dma_data_direction dir;
Inki Daeb8b5c132013-01-11 13:46:58 +090022 bool is_mapped;
Inki Daea7b362f2012-11-28 19:09:31 +090023};
24
25static int exynos_gem_attach_dma_buf(struct dma_buf *dmabuf,
26 struct device *dev,
27 struct dma_buf_attachment *attach)
Inki Daeb2df26c2012-04-23 21:01:28 +090028{
Inki Daea7b362f2012-11-28 19:09:31 +090029 struct exynos_drm_dmabuf_attachment *exynos_attach;
Inki Daeb2df26c2012-04-23 21:01:28 +090030
Inki Daea7b362f2012-11-28 19:09:31 +090031 exynos_attach = kzalloc(sizeof(*exynos_attach), GFP_KERNEL);
32 if (!exynos_attach)
33 return -ENOMEM;
Inki Daeb2df26c2012-04-23 21:01:28 +090034
Inki Daea7b362f2012-11-28 19:09:31 +090035 exynos_attach->dir = DMA_NONE;
36 attach->priv = exynos_attach;
Inki Daeb2df26c2012-04-23 21:01:28 +090037
Inki Daea7b362f2012-11-28 19:09:31 +090038 return 0;
39}
Inki Daeb2df26c2012-04-23 21:01:28 +090040
Inki Daea7b362f2012-11-28 19:09:31 +090041static void exynos_gem_detach_dma_buf(struct dma_buf *dmabuf,
42 struct dma_buf_attachment *attach)
43{
44 struct exynos_drm_dmabuf_attachment *exynos_attach = attach->priv;
45 struct sg_table *sgt;
46
47 if (!exynos_attach)
48 return;
49
50 sgt = &exynos_attach->sgt;
51
52 if (exynos_attach->dir != DMA_NONE)
53 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents,
54 exynos_attach->dir);
55
56 sg_free_table(sgt);
57 kfree(exynos_attach);
58 attach->priv = NULL;
Inki Daeb2df26c2012-04-23 21:01:28 +090059}
60
61static struct sg_table *
62 exynos_gem_map_dma_buf(struct dma_buf_attachment *attach,
63 enum dma_data_direction dir)
64{
Inki Daea7b362f2012-11-28 19:09:31 +090065 struct exynos_drm_dmabuf_attachment *exynos_attach = attach->priv;
Inki Daeb2df26c2012-04-23 21:01:28 +090066 struct exynos_drm_gem_obj *gem_obj = attach->dmabuf->priv;
67 struct drm_device *dev = gem_obj->base.dev;
68 struct exynos_drm_gem_buf *buf;
Inki Daea7b362f2012-11-28 19:09:31 +090069 struct scatterlist *rd, *wr;
Inki Daeb2df26c2012-04-23 21:01:28 +090070 struct sg_table *sgt = NULL;
Inki Daea7b362f2012-11-28 19:09:31 +090071 unsigned int i;
72 int nents, ret;
Inki Daeb2df26c2012-04-23 21:01:28 +090073
74 DRM_DEBUG_PRIME("%s\n", __FILE__);
75
Inki Daea7b362f2012-11-28 19:09:31 +090076 /* just return current sgt if already requested. */
Inki Daeb8b5c132013-01-11 13:46:58 +090077 if (exynos_attach->dir == dir && exynos_attach->is_mapped)
Inki Daea7b362f2012-11-28 19:09:31 +090078 return &exynos_attach->sgt;
79
Inki Dae0519f9a2012-10-20 07:53:42 -070080 buf = gem_obj->buffer;
81 if (!buf) {
82 DRM_ERROR("buffer is null.\n");
Inki Daea7b362f2012-11-28 19:09:31 +090083 return ERR_PTR(-ENOMEM);
84 }
85
86 sgt = &exynos_attach->sgt;
87
88 ret = sg_alloc_table(sgt, buf->sgt->orig_nents, GFP_KERNEL);
89 if (ret) {
90 DRM_ERROR("failed to alloc sgt.\n");
91 return ERR_PTR(-ENOMEM);
Inki Dae0519f9a2012-10-20 07:53:42 -070092 }
93
Inki Daeb2df26c2012-04-23 21:01:28 +090094 mutex_lock(&dev->struct_mutex);
95
Inki Daea7b362f2012-11-28 19:09:31 +090096 rd = buf->sgt->sgl;
97 wr = sgt->sgl;
98 for (i = 0; i < sgt->orig_nents; ++i) {
99 sg_set_page(wr, sg_page(rd), rd->length, rd->offset);
100 rd = sg_next(rd);
101 wr = sg_next(wr);
102 }
Inki Daeb2df26c2012-04-23 21:01:28 +0900103
Inki Daeb8b5c132013-01-11 13:46:58 +0900104 if (dir != DMA_NONE) {
105 nents = dma_map_sg(attach->dev, sgt->sgl, sgt->orig_nents, dir);
106 if (!nents) {
107 DRM_ERROR("failed to map sgl with iommu.\n");
108 sg_free_table(sgt);
109 sgt = ERR_PTR(-EIO);
110 goto err_unlock;
111 }
Inki Dae0519f9a2012-10-20 07:53:42 -0700112 }
Inki Daeb2df26c2012-04-23 21:01:28 +0900113
Inki Daeb8b5c132013-01-11 13:46:58 +0900114 exynos_attach->is_mapped = true;
Inki Daea7b362f2012-11-28 19:09:31 +0900115 exynos_attach->dir = dir;
116 attach->priv = exynos_attach;
117
Prathyush K465ed662012-11-20 19:32:56 +0900118 DRM_DEBUG_PRIME("buffer size = 0x%lx\n", buf->size);
Inki Daeb2df26c2012-04-23 21:01:28 +0900119
120err_unlock:
121 mutex_unlock(&dev->struct_mutex);
122 return sgt;
123}
124
125static void exynos_gem_unmap_dma_buf(struct dma_buf_attachment *attach,
126 struct sg_table *sgt,
127 enum dma_data_direction dir)
128{
Inki Daea7b362f2012-11-28 19:09:31 +0900129 /* Nothing to do. */
Inki Daeb2df26c2012-04-23 21:01:28 +0900130}
131
132static void exynos_dmabuf_release(struct dma_buf *dmabuf)
133{
134 struct exynos_drm_gem_obj *exynos_gem_obj = dmabuf->priv;
135
136 DRM_DEBUG_PRIME("%s\n", __FILE__);
137
138 /*
139 * exynos_dmabuf_release() call means that file object's
140 * f_count is 0 and it calls drm_gem_object_handle_unreference()
141 * to drop the references that these values had been increased
142 * at drm_prime_handle_to_fd()
143 */
144 if (exynos_gem_obj->base.export_dma_buf == dmabuf) {
145 exynos_gem_obj->base.export_dma_buf = NULL;
146
147 /*
148 * drop this gem object refcount to release allocated buffer
149 * and resources.
150 */
151 drm_gem_object_unreference_unlocked(&exynos_gem_obj->base);
152 }
153}
154
155static void *exynos_gem_dmabuf_kmap_atomic(struct dma_buf *dma_buf,
156 unsigned long page_num)
157{
158 /* TODO */
159
160 return NULL;
161}
162
163static void exynos_gem_dmabuf_kunmap_atomic(struct dma_buf *dma_buf,
164 unsigned long page_num,
165 void *addr)
166{
167 /* TODO */
168}
169
170static void *exynos_gem_dmabuf_kmap(struct dma_buf *dma_buf,
171 unsigned long page_num)
172{
173 /* TODO */
174
175 return NULL;
176}
177
178static void exynos_gem_dmabuf_kunmap(struct dma_buf *dma_buf,
179 unsigned long page_num, void *addr)
180{
181 /* TODO */
182}
183
Tomasz Stanislawskib716d462012-09-05 19:31:56 +0900184static int exynos_gem_dmabuf_mmap(struct dma_buf *dma_buf,
185 struct vm_area_struct *vma)
186{
187 return -ENOTTY;
188}
189
Inki Daeb2df26c2012-04-23 21:01:28 +0900190static struct dma_buf_ops exynos_dmabuf_ops = {
Inki Daea7b362f2012-11-28 19:09:31 +0900191 .attach = exynos_gem_attach_dma_buf,
192 .detach = exynos_gem_detach_dma_buf,
Inki Daeb2df26c2012-04-23 21:01:28 +0900193 .map_dma_buf = exynos_gem_map_dma_buf,
194 .unmap_dma_buf = exynos_gem_unmap_dma_buf,
195 .kmap = exynos_gem_dmabuf_kmap,
196 .kmap_atomic = exynos_gem_dmabuf_kmap_atomic,
197 .kunmap = exynos_gem_dmabuf_kunmap,
198 .kunmap_atomic = exynos_gem_dmabuf_kunmap_atomic,
Tomasz Stanislawskib716d462012-09-05 19:31:56 +0900199 .mmap = exynos_gem_dmabuf_mmap,
Inki Daeb2df26c2012-04-23 21:01:28 +0900200 .release = exynos_dmabuf_release,
201};
202
203struct dma_buf *exynos_dmabuf_prime_export(struct drm_device *drm_dev,
204 struct drm_gem_object *obj, int flags)
205{
206 struct exynos_drm_gem_obj *exynos_gem_obj = to_exynos_gem_obj(obj);
207
208 return dma_buf_export(exynos_gem_obj, &exynos_dmabuf_ops,
Seung-Woo Kimf4fd9bd2012-12-20 16:39:35 +0900209 exynos_gem_obj->base.size, flags);
Inki Daeb2df26c2012-04-23 21:01:28 +0900210}
211
212struct drm_gem_object *exynos_dmabuf_prime_import(struct drm_device *drm_dev,
213 struct dma_buf *dma_buf)
214{
215 struct dma_buf_attachment *attach;
216 struct sg_table *sgt;
217 struct scatterlist *sgl;
218 struct exynos_drm_gem_obj *exynos_gem_obj;
219 struct exynos_drm_gem_buf *buffer;
Inki Dae47fcdce2012-06-07 16:15:07 +0900220 int ret;
Inki Daeb2df26c2012-04-23 21:01:28 +0900221
222 DRM_DEBUG_PRIME("%s\n", __FILE__);
223
224 /* is this one of own objects? */
225 if (dma_buf->ops == &exynos_dmabuf_ops) {
226 struct drm_gem_object *obj;
227
228 exynos_gem_obj = dma_buf->priv;
229 obj = &exynos_gem_obj->base;
230
231 /* is it from our device? */
232 if (obj->dev == drm_dev) {
Seung-Woo Kimbe8a42a2012-09-27 15:30:06 +0900233 /*
234 * Importing dmabuf exported from out own gem increases
235 * refcount on gem itself instead of f_count of dmabuf.
236 */
Inki Daeb2df26c2012-04-23 21:01:28 +0900237 drm_gem_object_reference(obj);
238 return obj;
239 }
240 }
241
242 attach = dma_buf_attach(dma_buf, drm_dev->dev);
243 if (IS_ERR(attach))
244 return ERR_PTR(-EINVAL);
245
Imre Deak011c2282013-04-19 11:11:56 +1000246 get_dma_buf(dma_buf);
Inki Daeb2df26c2012-04-23 21:01:28 +0900247
248 sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
Subash Patel0dd3b722012-06-25 11:22:57 -0700249 if (IS_ERR_OR_NULL(sgt)) {
Inki Daeb2df26c2012-04-23 21:01:28 +0900250 ret = PTR_ERR(sgt);
251 goto err_buf_detach;
252 }
253
254 buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
255 if (!buffer) {
256 DRM_ERROR("failed to allocate exynos_drm_gem_buf.\n");
257 ret = -ENOMEM;
258 goto err_unmap_attach;
259 }
260
Inki Dae0519f9a2012-10-20 07:53:42 -0700261 exynos_gem_obj = exynos_drm_gem_init(drm_dev, dma_buf->size);
262 if (!exynos_gem_obj) {
Inki Daeb2df26c2012-04-23 21:01:28 +0900263 ret = -ENOMEM;
264 goto err_free_buffer;
265 }
266
Inki Daeb2df26c2012-04-23 21:01:28 +0900267 sgl = sgt->sgl;
Inki Daeb2df26c2012-04-23 21:01:28 +0900268
Inki Dae0519f9a2012-10-20 07:53:42 -0700269 buffer->size = dma_buf->size;
270 buffer->dma_addr = sg_dma_address(sgl);
Inki Dae47fcdce2012-06-07 16:15:07 +0900271
Inki Dae0519f9a2012-10-20 07:53:42 -0700272 if (sgt->nents == 1) {
Inki Dae47fcdce2012-06-07 16:15:07 +0900273 /* always physically continuous memory if sgt->nents is 1. */
274 exynos_gem_obj->flags |= EXYNOS_BO_CONTIG;
275 } else {
Inki Dae0519f9a2012-10-20 07:53:42 -0700276 /*
277 * this case could be CONTIG or NONCONTIG type but for now
278 * sets NONCONTIG.
279 * TODO. we have to find a way that exporter can notify
280 * the type of its own buffer to importer.
281 */
Inki Dae47fcdce2012-06-07 16:15:07 +0900282 exynos_gem_obj->flags |= EXYNOS_BO_NONCONTIG;
Inki Daeb2df26c2012-04-23 21:01:28 +0900283 }
284
285 exynos_gem_obj->buffer = buffer;
286 buffer->sgt = sgt;
287 exynos_gem_obj->base.import_attach = attach;
288
289 DRM_DEBUG_PRIME("dma_addr = 0x%x, size = 0x%lx\n", buffer->dma_addr,
290 buffer->size);
291
292 return &exynos_gem_obj->base;
293
Inki Daeb2df26c2012-04-23 21:01:28 +0900294err_free_buffer:
295 kfree(buffer);
296 buffer = NULL;
297err_unmap_attach:
298 dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL);
299err_buf_detach:
300 dma_buf_detach(dma_buf, attach);
Imre Deak011c2282013-04-19 11:11:56 +1000301 dma_buf_put(dma_buf);
302
Inki Daeb2df26c2012-04-23 21:01:28 +0900303 return ERR_PTR(ret);
304}
305
306MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
307MODULE_DESCRIPTION("Samsung SoC DRM DMABUF Module");
308MODULE_LICENSE("GPL");