• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * NVIDIA Tegra DRM GEM helper functions
3  *
4  * Copyright (C) 2012 Sascha Hauer, Pengutronix
5  * Copyright (C) 2013 NVIDIA CORPORATION, All rights reserved.
6  *
7  * Based on the GEM/CMA helpers
8  *
9  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License version 2 as
13  * published by the Free Software Foundation.
14  */
15 
16 #include <linux/dma-buf.h>
17 #include <drm/tegra_drm.h>
18 
19 #include "drm.h"
20 #include "gem.h"
21 
host1x_to_tegra_bo(struct host1x_bo * bo)22 static inline struct tegra_bo *host1x_to_tegra_bo(struct host1x_bo *bo)
23 {
24 	return container_of(bo, struct tegra_bo, base);
25 }
26 
tegra_bo_put(struct host1x_bo * bo)27 static void tegra_bo_put(struct host1x_bo *bo)
28 {
29 	struct tegra_bo *obj = host1x_to_tegra_bo(bo);
30 	struct drm_device *drm = obj->gem.dev;
31 
32 	mutex_lock(&drm->struct_mutex);
33 	drm_gem_object_unreference(&obj->gem);
34 	mutex_unlock(&drm->struct_mutex);
35 }
36 
tegra_bo_pin(struct host1x_bo * bo,struct sg_table ** sgt)37 static dma_addr_t tegra_bo_pin(struct host1x_bo *bo, struct sg_table **sgt)
38 {
39 	struct tegra_bo *obj = host1x_to_tegra_bo(bo);
40 
41 	return obj->paddr;
42 }
43 
tegra_bo_unpin(struct host1x_bo * bo,struct sg_table * sgt)44 static void tegra_bo_unpin(struct host1x_bo *bo, struct sg_table *sgt)
45 {
46 }
47 
tegra_bo_mmap(struct host1x_bo * bo)48 static void *tegra_bo_mmap(struct host1x_bo *bo)
49 {
50 	struct tegra_bo *obj = host1x_to_tegra_bo(bo);
51 
52 	return obj->vaddr;
53 }
54 
tegra_bo_munmap(struct host1x_bo * bo,void * addr)55 static void tegra_bo_munmap(struct host1x_bo *bo, void *addr)
56 {
57 }
58 
tegra_bo_kmap(struct host1x_bo * bo,unsigned int page)59 static void *tegra_bo_kmap(struct host1x_bo *bo, unsigned int page)
60 {
61 	struct tegra_bo *obj = host1x_to_tegra_bo(bo);
62 
63 	return obj->vaddr + page * PAGE_SIZE;
64 }
65 
tegra_bo_kunmap(struct host1x_bo * bo,unsigned int page,void * addr)66 static void tegra_bo_kunmap(struct host1x_bo *bo, unsigned int page,
67 			    void *addr)
68 {
69 }
70 
tegra_bo_get(struct host1x_bo * bo)71 static struct host1x_bo *tegra_bo_get(struct host1x_bo *bo)
72 {
73 	struct tegra_bo *obj = host1x_to_tegra_bo(bo);
74 	struct drm_device *drm = obj->gem.dev;
75 
76 	mutex_lock(&drm->struct_mutex);
77 	drm_gem_object_reference(&obj->gem);
78 	mutex_unlock(&drm->struct_mutex);
79 
80 	return bo;
81 }
82 
83 static const struct host1x_bo_ops tegra_bo_ops = {
84 	.get = tegra_bo_get,
85 	.put = tegra_bo_put,
86 	.pin = tegra_bo_pin,
87 	.unpin = tegra_bo_unpin,
88 	.mmap = tegra_bo_mmap,
89 	.munmap = tegra_bo_munmap,
90 	.kmap = tegra_bo_kmap,
91 	.kunmap = tegra_bo_kunmap,
92 };
93 
tegra_bo_destroy(struct drm_device * drm,struct tegra_bo * bo)94 static void tegra_bo_destroy(struct drm_device *drm, struct tegra_bo *bo)
95 {
96 	dma_free_writecombine(drm->dev, bo->gem.size, bo->vaddr, bo->paddr);
97 }
98 
tegra_bo_create(struct drm_device * drm,unsigned int size,unsigned long flags)99 struct tegra_bo *tegra_bo_create(struct drm_device *drm, unsigned int size,
100 				 unsigned long flags)
101 {
102 	struct tegra_bo *bo;
103 	int err;
104 
105 	bo = kzalloc(sizeof(*bo), GFP_KERNEL);
106 	if (!bo)
107 		return ERR_PTR(-ENOMEM);
108 
109 	host1x_bo_init(&bo->base, &tegra_bo_ops);
110 	size = round_up(size, PAGE_SIZE);
111 
112 	bo->vaddr = dma_alloc_writecombine(drm->dev, size, &bo->paddr,
113 					   GFP_KERNEL | __GFP_NOWARN);
114 	if (!bo->vaddr) {
115 		dev_err(drm->dev, "failed to allocate buffer with size %u\n",
116 			size);
117 		err = -ENOMEM;
118 		goto err_dma;
119 	}
120 
121 	err = drm_gem_object_init(drm, &bo->gem, size);
122 	if (err)
123 		goto err_init;
124 
125 	err = drm_gem_create_mmap_offset(&bo->gem);
126 	if (err)
127 		goto err_mmap;
128 
129 	if (flags & DRM_TEGRA_GEM_CREATE_TILED)
130 		bo->tiling.mode = TEGRA_BO_TILING_MODE_TILED;
131 
132 	if (flags & DRM_TEGRA_GEM_CREATE_BOTTOM_UP)
133 		bo->flags |= TEGRA_BO_BOTTOM_UP;
134 
135 	return bo;
136 
137 err_mmap:
138 	drm_gem_object_release(&bo->gem);
139 err_init:
140 	tegra_bo_destroy(drm, bo);
141 err_dma:
142 	kfree(bo);
143 
144 	return ERR_PTR(err);
145 }
146 
tegra_bo_create_with_handle(struct drm_file * file,struct drm_device * drm,unsigned int size,unsigned long flags,unsigned int * handle)147 struct tegra_bo *tegra_bo_create_with_handle(struct drm_file *file,
148 					     struct drm_device *drm,
149 					     unsigned int size,
150 					     unsigned long flags,
151 					     unsigned int *handle)
152 {
153 	struct tegra_bo *bo;
154 	int ret;
155 
156 	bo = tegra_bo_create(drm, size, flags);
157 	if (IS_ERR(bo))
158 		return bo;
159 
160 	ret = drm_gem_handle_create(file, &bo->gem, handle);
161 	if (ret)
162 		goto err;
163 
164 	drm_gem_object_unreference_unlocked(&bo->gem);
165 
166 	return bo;
167 
168 err:
169 	tegra_bo_free_object(&bo->gem);
170 	return ERR_PTR(ret);
171 }
172 
tegra_bo_import(struct drm_device * drm,struct dma_buf * buf)173 static struct tegra_bo *tegra_bo_import(struct drm_device *drm,
174 					struct dma_buf *buf)
175 {
176 	struct dma_buf_attachment *attach;
177 	struct tegra_bo *bo;
178 	ssize_t size;
179 	int err;
180 
181 	bo = kzalloc(sizeof(*bo), GFP_KERNEL);
182 	if (!bo)
183 		return ERR_PTR(-ENOMEM);
184 
185 	host1x_bo_init(&bo->base, &tegra_bo_ops);
186 	size = round_up(buf->size, PAGE_SIZE);
187 
188 	err = drm_gem_object_init(drm, &bo->gem, size);
189 	if (err < 0)
190 		goto free;
191 
192 	err = drm_gem_create_mmap_offset(&bo->gem);
193 	if (err < 0)
194 		goto release;
195 
196 	attach = dma_buf_attach(buf, drm->dev);
197 	if (IS_ERR(attach)) {
198 		err = PTR_ERR(attach);
199 		goto free_mmap;
200 	}
201 
202 	get_dma_buf(buf);
203 
204 	bo->sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE);
205 	if (!bo->sgt) {
206 		err = -ENOMEM;
207 		goto detach;
208 	}
209 
210 	if (IS_ERR(bo->sgt)) {
211 		err = PTR_ERR(bo->sgt);
212 		goto detach;
213 	}
214 
215 	if (bo->sgt->nents > 1) {
216 		err = -EINVAL;
217 		goto detach;
218 	}
219 
220 	bo->paddr = sg_dma_address(bo->sgt->sgl);
221 	bo->gem.import_attach = attach;
222 
223 	return bo;
224 
225 detach:
226 	if (!IS_ERR_OR_NULL(bo->sgt))
227 		dma_buf_unmap_attachment(attach, bo->sgt, DMA_TO_DEVICE);
228 
229 	dma_buf_detach(buf, attach);
230 	dma_buf_put(buf);
231 free_mmap:
232 	drm_gem_free_mmap_offset(&bo->gem);
233 release:
234 	drm_gem_object_release(&bo->gem);
235 free:
236 	kfree(bo);
237 
238 	return ERR_PTR(err);
239 }
240 
tegra_bo_free_object(struct drm_gem_object * gem)241 void tegra_bo_free_object(struct drm_gem_object *gem)
242 {
243 	struct tegra_bo *bo = to_tegra_bo(gem);
244 
245 	if (gem->import_attach) {
246 		dma_buf_unmap_attachment(gem->import_attach, bo->sgt,
247 					 DMA_TO_DEVICE);
248 		drm_prime_gem_destroy(gem, NULL);
249 	} else {
250 		tegra_bo_destroy(gem->dev, bo);
251 	}
252 
253 	drm_gem_free_mmap_offset(gem);
254 	drm_gem_object_release(gem);
255 
256 	kfree(bo);
257 }
258 
tegra_bo_dumb_create(struct drm_file * file,struct drm_device * drm,struct drm_mode_create_dumb * args)259 int tegra_bo_dumb_create(struct drm_file *file, struct drm_device *drm,
260 			 struct drm_mode_create_dumb *args)
261 {
262 	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
263 	struct tegra_drm *tegra = drm->dev_private;
264 	struct tegra_bo *bo;
265 
266 	args->pitch = round_up(min_pitch, tegra->pitch_align);
267 	args->size = args->pitch * args->height;
268 
269 	bo = tegra_bo_create_with_handle(file, drm, args->size, 0,
270 					 &args->handle);
271 	if (IS_ERR(bo))
272 		return PTR_ERR(bo);
273 
274 	return 0;
275 }
276 
tegra_bo_dumb_map_offset(struct drm_file * file,struct drm_device * drm,uint32_t handle,uint64_t * offset)277 int tegra_bo_dumb_map_offset(struct drm_file *file, struct drm_device *drm,
278 			     uint32_t handle, uint64_t *offset)
279 {
280 	struct drm_gem_object *gem;
281 	struct tegra_bo *bo;
282 
283 	mutex_lock(&drm->struct_mutex);
284 
285 	gem = drm_gem_object_lookup(drm, file, handle);
286 	if (!gem) {
287 		dev_err(drm->dev, "failed to lookup GEM object\n");
288 		mutex_unlock(&drm->struct_mutex);
289 		return -EINVAL;
290 	}
291 
292 	bo = to_tegra_bo(gem);
293 
294 	*offset = drm_vma_node_offset_addr(&bo->gem.vma_node);
295 
296 	drm_gem_object_unreference(gem);
297 
298 	mutex_unlock(&drm->struct_mutex);
299 
300 	return 0;
301 }
302 
303 const struct vm_operations_struct tegra_bo_vm_ops = {
304 	.open = drm_gem_vm_open,
305 	.close = drm_gem_vm_close,
306 };
307 
tegra_drm_mmap(struct file * file,struct vm_area_struct * vma)308 int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma)
309 {
310 	struct drm_gem_object *gem;
311 	struct tegra_bo *bo;
312 	int ret;
313 
314 	ret = drm_gem_mmap(file, vma);
315 	if (ret)
316 		return ret;
317 
318 	gem = vma->vm_private_data;
319 	bo = to_tegra_bo(gem);
320 
321 	ret = remap_pfn_range(vma, vma->vm_start, bo->paddr >> PAGE_SHIFT,
322 			      vma->vm_end - vma->vm_start, vma->vm_page_prot);
323 	if (ret)
324 		drm_gem_vm_close(vma);
325 
326 	return ret;
327 }
328 
329 static struct sg_table *
tegra_gem_prime_map_dma_buf(struct dma_buf_attachment * attach,enum dma_data_direction dir)330 tegra_gem_prime_map_dma_buf(struct dma_buf_attachment *attach,
331 			    enum dma_data_direction dir)
332 {
333 	struct drm_gem_object *gem = attach->dmabuf->priv;
334 	struct tegra_bo *bo = to_tegra_bo(gem);
335 	struct sg_table *sgt;
336 
337 	sgt = kmalloc(sizeof(*sgt), GFP_KERNEL);
338 	if (!sgt)
339 		return NULL;
340 
341 	if (sg_alloc_table(sgt, 1, GFP_KERNEL)) {
342 		kfree(sgt);
343 		return NULL;
344 	}
345 
346 	sg_dma_address(sgt->sgl) = bo->paddr;
347 	sg_dma_len(sgt->sgl) = gem->size;
348 
349 	return sgt;
350 }
351 
tegra_gem_prime_unmap_dma_buf(struct dma_buf_attachment * attach,struct sg_table * sgt,enum dma_data_direction dir)352 static void tegra_gem_prime_unmap_dma_buf(struct dma_buf_attachment *attach,
353 					  struct sg_table *sgt,
354 					  enum dma_data_direction dir)
355 {
356 	sg_free_table(sgt);
357 	kfree(sgt);
358 }
359 
tegra_gem_prime_release(struct dma_buf * buf)360 static void tegra_gem_prime_release(struct dma_buf *buf)
361 {
362 	drm_gem_dmabuf_release(buf);
363 }
364 
tegra_gem_prime_kmap_atomic(struct dma_buf * buf,unsigned long page)365 static void *tegra_gem_prime_kmap_atomic(struct dma_buf *buf,
366 					 unsigned long page)
367 {
368 	return NULL;
369 }
370 
tegra_gem_prime_kunmap_atomic(struct dma_buf * buf,unsigned long page,void * addr)371 static void tegra_gem_prime_kunmap_atomic(struct dma_buf *buf,
372 					  unsigned long page,
373 					  void *addr)
374 {
375 }
376 
tegra_gem_prime_kmap(struct dma_buf * buf,unsigned long page)377 static void *tegra_gem_prime_kmap(struct dma_buf *buf, unsigned long page)
378 {
379 	return NULL;
380 }
381 
tegra_gem_prime_kunmap(struct dma_buf * buf,unsigned long page,void * addr)382 static void tegra_gem_prime_kunmap(struct dma_buf *buf, unsigned long page,
383 				   void *addr)
384 {
385 }
386 
tegra_gem_prime_mmap(struct dma_buf * buf,struct vm_area_struct * vma)387 static int tegra_gem_prime_mmap(struct dma_buf *buf, struct vm_area_struct *vma)
388 {
389 	return -EINVAL;
390 }
391 
tegra_gem_prime_vmap(struct dma_buf * buf)392 static void *tegra_gem_prime_vmap(struct dma_buf *buf)
393 {
394 	struct drm_gem_object *gem = buf->priv;
395 	struct tegra_bo *bo = to_tegra_bo(gem);
396 
397 	return bo->vaddr;
398 }
399 
tegra_gem_prime_vunmap(struct dma_buf * buf,void * vaddr)400 static void tegra_gem_prime_vunmap(struct dma_buf *buf, void *vaddr)
401 {
402 }
403 
404 static const struct dma_buf_ops tegra_gem_prime_dmabuf_ops = {
405 	.map_dma_buf = tegra_gem_prime_map_dma_buf,
406 	.unmap_dma_buf = tegra_gem_prime_unmap_dma_buf,
407 	.release = tegra_gem_prime_release,
408 	.kmap_atomic = tegra_gem_prime_kmap_atomic,
409 	.kunmap_atomic = tegra_gem_prime_kunmap_atomic,
410 	.kmap = tegra_gem_prime_kmap,
411 	.kunmap = tegra_gem_prime_kunmap,
412 	.mmap = tegra_gem_prime_mmap,
413 	.vmap = tegra_gem_prime_vmap,
414 	.vunmap = tegra_gem_prime_vunmap,
415 };
416 
tegra_gem_prime_export(struct drm_device * drm,struct drm_gem_object * gem,int flags)417 struct dma_buf *tegra_gem_prime_export(struct drm_device *drm,
418 				       struct drm_gem_object *gem,
419 				       int flags)
420 {
421 	return dma_buf_export(gem, &tegra_gem_prime_dmabuf_ops, gem->size,
422 			      flags, NULL);
423 }
424 
tegra_gem_prime_import(struct drm_device * drm,struct dma_buf * buf)425 struct drm_gem_object *tegra_gem_prime_import(struct drm_device *drm,
426 					      struct dma_buf *buf)
427 {
428 	struct tegra_bo *bo;
429 
430 	if (buf->ops == &tegra_gem_prime_dmabuf_ops) {
431 		struct drm_gem_object *gem = buf->priv;
432 
433 		if (gem->dev == drm) {
434 			drm_gem_object_reference(gem);
435 			return gem;
436 		}
437 	}
438 
439 	bo = tegra_bo_import(drm, buf);
440 	if (IS_ERR(bo))
441 		return ERR_CAST(bo);
442 
443 	return &bo->gem;
444 }
445