blob: a0a9704cfe2b25cdc1b87b56227b05635131d077 [file] [log] [blame]
Dave Airliee9bf5f32012-06-27 09:26:01 +01001/*
2 * Copyright 2011 Red Hat 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 * Authors: Dave Airlie
23 */
Dave Airlie22b33e82012-04-02 11:53:06 +010024
David Howells760285e2012-10-02 18:01:07 +010025#include <drm/drmP.h>
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010026#include <linux/dma-buf.h>
Dave Airlie22b33e82012-04-02 11:53:06 +010027
Ben Skeggs4dc28132016-05-20 09:22:55 +100028#include "nouveau_drv.h"
Ben Skeggs77145f12012-07-31 16:16:21 +100029#include "nouveau_gem.h"
Dave Airlie22b33e82012-04-02 11:53:06 +010030
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000031struct sg_table *nouveau_gem_prime_get_sg_table(struct drm_gem_object *obj)
Dave Airlie22b33e82012-04-02 11:53:06 +010032{
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000033 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Dave Airlie22b33e82012-04-02 11:53:06 +010034 int npages = nvbo->bo.num_pages;
Dave Airlie22b33e82012-04-02 11:53:06 +010035
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000036 return drm_prime_pages_to_sg(nvbo->bo.ttm->pages, npages);
Dave Airlie22b33e82012-04-02 11:53:06 +010037}
38
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000039void *nouveau_gem_prime_vmap(struct drm_gem_object *obj)
Dave Airlie22b33e82012-04-02 11:53:06 +010040{
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000041 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Dave Airlie35916ac2012-05-31 13:52:17 +010042 int ret;
43
Dave Airlie35916ac2012-05-31 13:52:17 +010044 ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.num_pages,
45 &nvbo->dma_buf_vmap);
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000046 if (ret)
Dave Airlie35916ac2012-05-31 13:52:17 +010047 return ERR_PTR(ret);
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000048
Dave Airlie35916ac2012-05-31 13:52:17 +010049 return nvbo->dma_buf_vmap.virtual;
50}
51
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000052void nouveau_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
Dave Airlie35916ac2012-05-31 13:52:17 +010053{
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000054 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Dave Airlie35916ac2012-05-31 13:52:17 +010055
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000056 ttm_bo_kunmap(&nvbo->dma_buf_vmap);
Dave Airlie35916ac2012-05-31 13:52:17 +010057}
58
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000059struct drm_gem_object *nouveau_gem_prime_import_sg_table(struct drm_device *dev,
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010060 struct dma_buf_attachment *attach,
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000061 struct sg_table *sg)
Dave Airlie22b33e82012-04-02 11:53:06 +010062{
63 struct nouveau_bo *nvbo;
Maarten Lankhorstbb6178b2014-01-09 11:03:15 +010064 struct reservation_object *robj = attach->dmabuf->resv;
Dave Airlie22b33e82012-04-02 11:53:06 +010065 u32 flags = 0;
66 int ret;
67
68 flags = TTM_PL_FLAG_TT;
69
Maarten Lankhorstbb6178b2014-01-09 11:03:15 +010070 ww_mutex_lock(&robj->lock, NULL);
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +010071 ret = nouveau_bo_new(dev, attach->dmabuf->size, 0, flags, 0, 0,
Maarten Lankhorstbb6178b2014-01-09 11:03:15 +010072 sg, robj, &nvbo);
73 ww_mutex_unlock(&robj->lock);
Dave Airlie22b33e82012-04-02 11:53:06 +010074 if (ret)
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000075 return ERR_PTR(ret);
Dave Airlie22b33e82012-04-02 11:53:06 +010076
Dave Airlie22b33e82012-04-02 11:53:06 +010077 nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
David Herrmann55fb74a2013-10-02 10:15:17 +020078
79 /* Initialize the embedded gem-object. We return a single gem-reference
80 * to the caller, instead of a normal nouveau_bo ttm reference. */
81 ret = drm_gem_object_init(dev, &nvbo->gem, nvbo->bo.mem.size);
82 if (ret) {
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000083 nouveau_bo_ref(NULL, &nvbo);
84 return ERR_PTR(-ENOMEM);
Dave Airlie22b33e82012-04-02 11:53:06 +010085 }
86
David Herrmann55fb74a2013-10-02 10:15:17 +020087 return &nvbo->gem;
Dave Airlie22b33e82012-04-02 11:53:06 +010088}
89
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000090int nouveau_gem_prime_pin(struct drm_gem_object *obj)
Dave Airlie22b33e82012-04-02 11:53:06 +010091{
92 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Maarten Lankhorst1af7c7d2013-06-27 13:38:19 +020093 int ret;
Dave Airlie22b33e82012-04-02 11:53:06 +010094
95 /* pin buffer into GTT */
Ben Skeggsad76b3f2014-11-10 11:24:27 +100096 ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_TT, false);
Dave Airlie22b33e82012-04-02 11:53:06 +010097 if (ret)
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000098 return -EINVAL;
Dave Airlie22b33e82012-04-02 11:53:06 +010099
Aaron Plattnerab9ccb92013-01-15 20:47:43 +0000100 return 0;
Dave Airlie22b33e82012-04-02 11:53:06 +0100101}
Maarten Lankhorst1af7c7d2013-06-27 13:38:19 +0200102
103void nouveau_gem_prime_unpin(struct drm_gem_object *obj)
104{
105 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
106
107 nouveau_bo_unpin(nvbo);
108}
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200109
110struct reservation_object *nouveau_gem_prime_res_obj(struct drm_gem_object *obj)
111{
112 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
113
114 return nvbo->bo.resv;
115}