blob: f3609c97496b2f56bf35cfbe2cf52f76b30b9f79 [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
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000080 return &bo->gem_base;
Alex Deucher40f5cf92012-05-10 18:33:13 -040081}
82
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000083int radeon_gem_prime_pin(struct drm_gem_object *obj)
Alex Deucher40f5cf92012-05-10 18:33:13 -040084{
85 struct radeon_bo *bo = gem_to_radeon_bo(obj);
86 int ret = 0;
87
Dave Airlie489797d2012-06-12 16:10:39 +010088 ret = radeon_bo_reserve(bo, false);
89 if (unlikely(ret != 0))
Aaron Plattner1e6d17a2013-01-15 20:47:44 +000090 return ret;
Alex Deucher40f5cf92012-05-10 18:33:13 -040091
Dave Airlie489797d2012-06-12 16:10:39 +010092 /* pin buffer into GTT */
93 ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL);
Dave Airlie489797d2012-06-12 16:10:39 +010094 radeon_bo_unreserve(bo);
Maarten Lankhorst280cf212013-06-27 13:38:18 +020095 return ret;
96}
Alex Deucher40f5cf92012-05-10 18:33:13 -040097
Maarten Lankhorst280cf212013-06-27 13:38:18 +020098void radeon_gem_prime_unpin(struct drm_gem_object *obj)
99{
100 struct radeon_bo *bo = gem_to_radeon_bo(obj);
101 int ret = 0;
102
103 ret = radeon_bo_reserve(bo, false);
104 if (unlikely(ret != 0))
105 return;
106
107 radeon_bo_unpin(bo);
108 radeon_bo_unreserve(bo);
Alex Deucher40f5cf92012-05-10 18:33:13 -0400109}
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200110
111
112struct reservation_object *radeon_gem_prime_res_obj(struct drm_gem_object *obj)
113{
114 struct radeon_bo *bo = gem_to_radeon_bo(obj);
115
116 return bo->tbo.resv;
117}
Dave Airlie484048d2014-08-26 09:05:14 +1000118
Christian Königf72a113a2014-08-07 09:36:00 +0200119struct dma_buf *radeon_gem_prime_export(struct drm_device *dev,
120 struct drm_gem_object *gobj,
121 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);
126 return drm_gem_prime_export(dev, gobj, flags);
127}