blob: f53e10874caee8ba71852ebdde6eece32ecab415 [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>
Dave Airlie22b33e82012-04-02 11:53:06 +010026
Ben Skeggs77145f12012-07-31 16:16:21 +100027#include "nouveau_drm.h"
28#include "nouveau_gem.h"
Dave Airlie22b33e82012-04-02 11:53:06 +010029
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000030struct sg_table *nouveau_gem_prime_get_sg_table(struct drm_gem_object *obj)
Dave Airlie22b33e82012-04-02 11:53:06 +010031{
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000032 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Dave Airlie22b33e82012-04-02 11:53:06 +010033 int npages = nvbo->bo.num_pages;
Dave Airlie22b33e82012-04-02 11:53:06 +010034
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000035 return drm_prime_pages_to_sg(nvbo->bo.ttm->pages, npages);
Dave Airlie22b33e82012-04-02 11:53:06 +010036}
37
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000038void *nouveau_gem_prime_vmap(struct drm_gem_object *obj)
Dave Airlie22b33e82012-04-02 11:53:06 +010039{
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000040 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Dave Airlie35916ac2012-05-31 13:52:17 +010041 int ret;
42
Dave Airlie35916ac2012-05-31 13:52:17 +010043 ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.num_pages,
44 &nvbo->dma_buf_vmap);
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000045 if (ret)
Dave Airlie35916ac2012-05-31 13:52:17 +010046 return ERR_PTR(ret);
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000047
Dave Airlie35916ac2012-05-31 13:52:17 +010048 return nvbo->dma_buf_vmap.virtual;
49}
50
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000051void nouveau_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
Dave Airlie35916ac2012-05-31 13:52:17 +010052{
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000053 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
Dave Airlie35916ac2012-05-31 13:52:17 +010054
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000055 ttm_bo_kunmap(&nvbo->dma_buf_vmap);
Dave Airlie35916ac2012-05-31 13:52:17 +010056}
57
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000058struct drm_gem_object *nouveau_gem_prime_import_sg_table(struct drm_device *dev,
59 size_t size,
60 struct sg_table *sg)
Dave Airlie22b33e82012-04-02 11:53:06 +010061{
62 struct nouveau_bo *nvbo;
63 u32 flags = 0;
64 int ret;
65
66 flags = TTM_PL_FLAG_TT;
67
68 ret = nouveau_bo_new(dev, size, 0, flags, 0, 0,
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000069 sg, &nvbo);
Dave Airlie22b33e82012-04-02 11:53:06 +010070 if (ret)
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000071 return ERR_PTR(ret);
Dave Airlie22b33e82012-04-02 11:53:06 +010072
Dave Airlie22b33e82012-04-02 11:53:06 +010073 nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
74 nvbo->gem = drm_gem_object_alloc(dev, nvbo->bo.mem.size);
75 if (!nvbo->gem) {
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000076 nouveau_bo_ref(NULL, &nvbo);
77 return ERR_PTR(-ENOMEM);
Dave Airlie22b33e82012-04-02 11:53:06 +010078 }
79
80 nvbo->gem->driver_private = nvbo;
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000081 return nvbo->gem;
Dave Airlie22b33e82012-04-02 11:53:06 +010082}
83
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000084int nouveau_gem_prime_pin(struct drm_gem_object *obj)
Dave Airlie22b33e82012-04-02 11:53:06 +010085{
86 struct nouveau_bo *nvbo = nouveau_gem_object(obj);
87 int ret = 0;
88
89 /* pin buffer into GTT */
90 ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_TT);
91 if (ret)
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000092 return -EINVAL;
Dave Airlie22b33e82012-04-02 11:53:06 +010093
Aaron Plattnerab9ccb92013-01-15 20:47:43 +000094 return 0;
Dave Airlie22b33e82012-04-02 11:53:06 +010095}