Linux 4.2.1
[linux/fpc-iii.git] / drivers / gpu / drm / msm / msm_gem_prime.c
blob831461bc98a549e8a3627cbd1cf5a1b4a3250c7b
1 /*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include "msm_drv.h"
19 #include "msm_gem.h"
21 #include <linux/dma-buf.h>
23 struct sg_table *msm_gem_prime_get_sg_table(struct drm_gem_object *obj)
25 struct msm_gem_object *msm_obj = to_msm_bo(obj);
26 int npages = obj->size >> PAGE_SHIFT;
28 if (WARN_ON(!msm_obj->pages)) /* should have already pinned! */
29 return NULL;
31 return drm_prime_pages_to_sg(msm_obj->pages, npages);
34 void *msm_gem_prime_vmap(struct drm_gem_object *obj)
36 return msm_gem_vaddr(obj);
39 void msm_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
41 /* TODO msm_gem_vunmap() */
44 int msm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
46 int ret;
48 mutex_lock(&obj->dev->struct_mutex);
49 ret = drm_gem_mmap_obj(obj, obj->size, vma);
50 mutex_unlock(&obj->dev->struct_mutex);
51 if (ret < 0)
52 return ret;
54 return msm_gem_mmap_obj(vma->vm_private_data, vma);
57 struct drm_gem_object *msm_gem_prime_import_sg_table(struct drm_device *dev,
58 struct dma_buf_attachment *attach, struct sg_table *sg)
60 return msm_gem_import(dev, attach->dmabuf->size, sg);
63 int msm_gem_prime_pin(struct drm_gem_object *obj)
65 if (!obj->import_attach)
66 msm_gem_get_pages(obj);
67 return 0;
70 void msm_gem_prime_unpin(struct drm_gem_object *obj)
72 if (!obj->import_attach)
73 msm_gem_put_pages(obj);