blob: 171daf7fc483073f0f425624725610388c4092f6 [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{
64 struct radeon_device *rdev = dev->dev_private;
65 struct radeon_bo *bo;
66 int ret;
67
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010068 ret = radeon_bo_create(rdev, attach->dmabuf->size, PAGE_SIZE, false,
Michel Dänzer02376d82014-07-17 19:01:08 +090069 RADEON_GEM_DOMAIN_GTT, 0, sg, &bo);
Alex Deucher40f5cf92012-05-10 18:33:13 -040070 if (ret)
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000071 return ERR_PTR(ret);
Alex Deucher40f5cf92012-05-10 18:33:13 -040072
73 mutex_lock(&rdev->gem.mutex);
74 list_add_tail(&bo->list, &rdev->gem.objects);
75 mutex_unlock(&rdev->gem.mutex);
76
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000077 return &bo->gem_base;
Alex Deucher40f5cf92012-05-10 18:33:13 -040078}
79
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000080int radeon_gem_prime_pin(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040081{
82 struct radeon_bo *bo = gem_to_radeon_bo(obj);
83 int ret = 0;
84
Dave Airlie489797d2012-06-12 16:10:39 +010085 ret = radeon_bo_reserve(bo, false);
86 if (unlikely(ret != 0))
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000087 return ret;
Alex Deucher40f5cf92012-05-10 18:33:13 -040088
Dave Airlie489797d2012-06-12 16:10:39 +010089 /* pin buffer into GTT */
90 ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL);
Dave Airlie489797d2012-06-12 16:10:39 +010091 radeon_bo_unreserve(bo);
Maarten Lankhorst280cf212013-06-27 13:38:18 +020092 return ret;
93}
Alex Deucher40f5cf92012-05-10 18:33:13 -040094
Maarten Lankhorst280cf212013-06-27 13:38:18 +020095void radeon_gem_prime_unpin(struct drm_gem_object *obj)
96{
97 struct radeon_bo *bo = gem_to_radeon_bo(obj);
98 int ret = 0;
99
100 ret = radeon_bo_reserve(bo, false);
101 if (unlikely(ret != 0))
102 return;
103
104 radeon_bo_unpin(bo);
105 radeon_bo_unreserve(bo);
Alex Deucher40f5cf92012-05-10 18:33:13 -0400106}
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200107
108
109struct reservation_object *radeon_gem_prime_res_obj(struct drm_gem_object *obj)
110{
111 struct radeon_bo *bo = gem_to_radeon_bo(obj);
112
113 return bo->tbo.resv;
114}
Dave Airlie484048d2014-08-26 09:05:14 +1000115
Christian Königf72a113a2014-08-07 09:36:00 +0200116struct dma_buf *radeon_gem_prime_export(struct drm_device *dev,
117 struct drm_gem_object *gobj,
118 int flags)
119{
120 struct radeon_bo *bo = gem_to_radeon_bo(gobj);
121 if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
122 return ERR_PTR(-EPERM);
123 return drm_gem_prime_export(dev, gobj, flags);
124}