blob: 7110d403322c495dc27d515396f0dc02ecaaa331 [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 */
David Howells760285e2012-10-02 18:01:07 +010026#include <drm/drmP.h>
Alex Deucher40f5cf92012-05-10 18:33:13 -040027
28#include "radeon.h"
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/radeon_drm.h>
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010030#include <linux/dma-buf.h>
Alex Deucher40f5cf92012-05-10 18:33:13 -040031
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000032struct sg_table *radeon_gem_prime_get_sg_table(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040033{
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000034 struct radeon_bo *bo = gem_to_radeon_bo(obj);
Alex Deucher40f5cf92012-05-10 18:33:13 -040035 int npages = bo->tbo.num_pages;
Alex Deucher40f5cf92012-05-10 18:33:13 -040036
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000037 return drm_prime_pages_to_sg(bo->tbo.ttm->pages, npages);
Alex Deucher40f5cf92012-05-10 18:33:13 -040038}
39
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000040void *radeon_gem_prime_vmap(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040041{
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000042 struct radeon_bo *bo = gem_to_radeon_bo(obj);
Dave Airlie63bc6202012-05-31 13:52:53 +010043 int ret;
44
Dave Airlie63bc6202012-05-31 13:52:53 +010045 ret = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages,
46 &bo->dma_buf_vmap);
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000047 if (ret)
Dave Airlie63bc6202012-05-31 13:52:53 +010048 return ERR_PTR(ret);
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000049
Dave Airlie63bc6202012-05-31 13:52:53 +010050 return bo->dma_buf_vmap.virtual;
51}
52
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000053void radeon_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
Dave Airlie63bc6202012-05-31 13:52:53 +010054{
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000055 struct radeon_bo *bo = gem_to_radeon_bo(obj);
Dave Airlie63bc6202012-05-31 13:52:53 +010056
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000057 ttm_bo_kunmap(&bo->dma_buf_vmap);
Dave Airlie63bc6202012-05-31 13:52:53 +010058}
Alex Deucher40f5cf92012-05-10 18:33:13 -040059
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000060struct drm_gem_object *radeon_gem_prime_import_sg_table(struct drm_device *dev,
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010061 struct dma_buf_attachment *attach,
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000062 struct sg_table *sg)
Alex Deucher40f5cf92012-05-10 18:33:13 -040063{
Maarten Lankhorst831b6962014-09-18 14:11:56 +020064 struct reservation_object *resv = attach->dmabuf->resv;
Alex Deucher40f5cf92012-05-10 18:33:13 -040065 struct radeon_device *rdev = dev->dev_private;
66 struct radeon_bo *bo;
67 int ret;
68
Maarten Lankhorst831b6962014-09-18 14:11:56 +020069 ww_mutex_lock(&resv->lock, NULL);
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010070 ret = radeon_bo_create(rdev, attach->dmabuf->size, PAGE_SIZE, false,
Maarten Lankhorst831b6962014-09-18 14:11:56 +020071 RADEON_GEM_DOMAIN_GTT, 0, sg, resv, &bo);
72 ww_mutex_unlock(&resv->lock);
Alex Deucher40f5cf92012-05-10 18:33:13 -040073 if (ret)
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000074 return ERR_PTR(ret);
Alex Deucher40f5cf92012-05-10 18:33:13 -040075
76 mutex_lock(&rdev->gem.mutex);
77 list_add_tail(&bo->list, &rdev->gem.objects);
78 mutex_unlock(&rdev->gem.mutex);
79
Christopher James Halse Rogers0d16d292017-04-03 13:35:22 +100080 bo->prime_shared_count = 1;
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000081 return &bo->gem_base;
Alex Deucher40f5cf92012-05-10 18:33:13 -040082}
83
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000084int radeon_gem_prime_pin(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040085{
86 struct radeon_bo *bo = gem_to_radeon_bo(obj);
87 int ret = 0;
88
Dave Airlie489797d2012-06-12 16:10:39 +010089 ret = radeon_bo_reserve(bo, false);
90 if (unlikely(ret != 0))
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000091 return ret;
Alex Deucher40f5cf92012-05-10 18:33:13 -040092
Dave Airlie489797d2012-06-12 16:10:39 +010093 /* pin buffer into GTT */
94 ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL);
Christopher James Halse Rogers0d16d292017-04-03 13:35:22 +100095 if (likely(ret == 0))
96 bo->prime_shared_count++;
97
Dave Airlie489797d2012-06-12 16:10:39 +010098 radeon_bo_unreserve(bo);
Maarten Lankhorst280cf212013-06-27 13:38:18 +020099 return ret;
100}
Alex Deucher40f5cf92012-05-10 18:33:13 -0400101
Maarten Lankhorst280cf212013-06-27 13:38:18 +0200102void radeon_gem_prime_unpin(struct drm_gem_object *obj)
103{
104 struct radeon_bo *bo = gem_to_radeon_bo(obj);
105 int ret = 0;
106
107 ret = radeon_bo_reserve(bo, false);
108 if (unlikely(ret != 0))
109 return;
110
111 radeon_bo_unpin(bo);
Christopher James Halse Rogers0d16d292017-04-03 13:35:22 +1000112 if (bo->prime_shared_count)
113 bo->prime_shared_count--;
Maarten Lankhorst280cf212013-06-27 13:38:18 +0200114 radeon_bo_unreserve(bo);
Alex Deucher40f5cf92012-05-10 18:33:13 -0400115}
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200116
117
118struct reservation_object *radeon_gem_prime_res_obj(struct drm_gem_object *obj)
119{
120 struct radeon_bo *bo = gem_to_radeon_bo(obj);
121
122 return bo->tbo.resv;
123}
Dave Airlie484048d2014-08-26 09:05:14 +1000124
Christian Königf72a113a2014-08-07 09:36:00 +0200125struct dma_buf *radeon_gem_prime_export(struct drm_device *dev,
126 struct drm_gem_object *gobj,
127 int flags)
128{
129 struct radeon_bo *bo = gem_to_radeon_bo(gobj);
130 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
131 return ERR_PTR(-EPERM);
132 return drm_gem_prime_export(dev, gobj, flags);
133}