blob: b906e8fbd5f3ab49f6bb8f6dcbab6ae1e2eb7503 [file] [log] [blame]
Alex Deucher40f5cf92012-05-10 18:33:13 -04001/*
2 * Copyright 2012 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * based on nouveau_prime.c
23 *
24 * Authors: Alex Deucher
25 */
Sam Ravnborgf9183122019-06-08 10:02:40 +020026
27#include <linux/dma-buf.h>
28
29#include <drm/drm_prime.h>
30#include <drm/radeon_drm.h>
Alex Deucher40f5cf92012-05-10 18:33:13 -040031
32#include "radeon.h"
Alex Deucher40f5cf92012-05-10 18:33:13 -040033
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000034struct sg_table *radeon_gem_prime_get_sg_table(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040035{
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000036 struct radeon_bo *bo = gem_to_radeon_bo(obj);
Alex Deucher40f5cf92012-05-10 18:33:13 -040037 int npages = bo->tbo.num_pages;
Alex Deucher40f5cf92012-05-10 18:33:13 -040038
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000039 return drm_prime_pages_to_sg(bo->tbo.ttm->pages, npages);
Alex Deucher40f5cf92012-05-10 18:33:13 -040040}
41
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000042void *radeon_gem_prime_vmap(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040043{
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000044 struct radeon_bo *bo = gem_to_radeon_bo(obj);
Dave Airlie63bc6202012-05-31 13:52:53 +010045 int ret;
46
Dave Airlie63bc6202012-05-31 13:52:53 +010047 ret = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages,
48 &bo->dma_buf_vmap);
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000049 if (ret)
Dave Airlie63bc6202012-05-31 13:52:53 +010050 return ERR_PTR(ret);
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000051
Dave Airlie63bc6202012-05-31 13:52:53 +010052 return bo->dma_buf_vmap.virtual;
53}
54
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000055void radeon_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
Dave Airlie63bc6202012-05-31 13:52:53 +010056{
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000057 struct radeon_bo *bo = gem_to_radeon_bo(obj);
Dave Airlie63bc6202012-05-31 13:52:53 +010058
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000059 ttm_bo_kunmap(&bo->dma_buf_vmap);
Dave Airlie63bc6202012-05-31 13:52:53 +010060}
Alex Deucher40f5cf92012-05-10 18:33:13 -040061
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000062struct drm_gem_object *radeon_gem_prime_import_sg_table(struct drm_device *dev,
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010063 struct dma_buf_attachment *attach,
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000064 struct sg_table *sg)
Alex Deucher40f5cf92012-05-10 18:33:13 -040065{
Christian König52791ee2019-08-11 10:06:32 +020066 struct dma_resv *resv = attach->dmabuf->resv;
Alex Deucher40f5cf92012-05-10 18:33:13 -040067 struct radeon_device *rdev = dev->dev_private;
68 struct radeon_bo *bo;
69 int ret;
70
Christian König52791ee2019-08-11 10:06:32 +020071 dma_resv_lock(resv, NULL);
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010072 ret = radeon_bo_create(rdev, attach->dmabuf->size, PAGE_SIZE, false,
Maarten Lankhorst831b6962014-09-18 14:11:56 +020073 RADEON_GEM_DOMAIN_GTT, 0, sg, resv, &bo);
Christian König52791ee2019-08-11 10:06:32 +020074 dma_resv_unlock(resv);
Alex Deucher40f5cf92012-05-10 18:33:13 -040075 if (ret)
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000076 return ERR_PTR(ret);
Alex Deucher40f5cf92012-05-10 18:33:13 -040077
78 mutex_lock(&rdev->gem.mutex);
79 list_add_tail(&bo->list, &rdev->gem.objects);
80 mutex_unlock(&rdev->gem.mutex);
81
Christopher James Halse Rogers0d16d292017-04-03 13:35:22 +100082 bo->prime_shared_count = 1;
Gerd Hoffmannce770382019-08-05 16:01:06 +020083 return &bo->tbo.base;
Alex Deucher40f5cf92012-05-10 18:33:13 -040084}
85
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000086int radeon_gem_prime_pin(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040087{
88 struct radeon_bo *bo = gem_to_radeon_bo(obj);
89 int ret = 0;
90
Dave Airlie489797d2012-06-12 16:10:39 +010091 ret = radeon_bo_reserve(bo, false);
92 if (unlikely(ret != 0))
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000093 return ret;
Alex Deucher40f5cf92012-05-10 18:33:13 -040094
Dave Airlie489797d2012-06-12 16:10:39 +010095 /* pin buffer into GTT */
96 ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL);
Christopher James Halse Rogers0d16d292017-04-03 13:35:22 +100097 if (likely(ret == 0))
98 bo->prime_shared_count++;
99
Dave Airlie489797d2012-06-12 16:10:39 +0100100 radeon_bo_unreserve(bo);
Maarten Lankhorst280cf212013-06-27 13:38:18 +0200101 return ret;
102}
Alex Deucher40f5cf92012-05-10 18:33:13 -0400103
Maarten Lankhorst280cf212013-06-27 13:38:18 +0200104void radeon_gem_prime_unpin(struct drm_gem_object *obj)
105{
106 struct radeon_bo *bo = gem_to_radeon_bo(obj);
107 int ret = 0;
108
109 ret = radeon_bo_reserve(bo, false);
110 if (unlikely(ret != 0))
111 return;
112
113 radeon_bo_unpin(bo);
Christopher James Halse Rogers0d16d292017-04-03 13:35:22 +1000114 if (bo->prime_shared_count)
115 bo->prime_shared_count--;
Maarten Lankhorst280cf212013-06-27 13:38:18 +0200116 radeon_bo_unreserve(bo);
Alex Deucher40f5cf92012-05-10 18:33:13 -0400117}
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200118
119
Daniel Vettere4fa8452019-06-14 22:35:25 +0200120struct dma_buf *radeon_gem_prime_export(struct drm_gem_object *gobj,
Christian Königf72a113a2014-08-07 09:36:00 +0200121 int flags)
122{
123 struct radeon_bo *bo = gem_to_radeon_bo(gobj);
124 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
125 return ERR_PTR(-EPERM);
Daniel Vettere4fa8452019-06-14 22:35:25 +0200126 return drm_gem_prime_export(gobj, flags);
Christian Königf72a113a2014-08-07 09:36:00 +0200127}