summaryrefslogtreecommitdiff
path: root/drivers/gpu/ion/ion_system_mapper.c
blob: 692458e07b5e8b8b29e7d9a023159bcd70bd3c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * drivers/gpu/ion/ion_system_mapper.c
 *
 * Copyright (C) 2011 Google, Inc.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <linux/err.h>
#include <linux/ion.h>
#include <linux/memory.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include "ion_priv.h"
/*
 * This mapper is valid for any heap that allocates memory that already has
 * a kernel mapping, this includes vmalloc'd memory, kmalloc'd memory,
 * pages obtained via io_remap, etc.
 */
static void *ion_kernel_mapper_map(struct ion_mapper *mapper,
				   struct ion_buffer *buffer,
				   struct ion_mapping **mapping)
{
	if (!((1 << buffer->heap->type) & mapper->heap_mask)) {
		pr_err("%s: attempting to map an unsupported heap\n", __func__);
		return ERR_PTR(-EINVAL);
	}
	/* XXX REVISIT ME!!! */
	*((unsigned long *)mapping) = (unsigned long)buffer->priv;
	return buffer->priv;
}

static void ion_kernel_mapper_unmap(struct ion_mapper *mapper,
				    struct ion_buffer *buffer,
				    struct ion_mapping *mapping)
{
	if (!((1 << buffer->heap->type) & mapper->heap_mask))
		pr_err("%s: attempting to unmap an unsupported heap\n",
		       __func__);
}

static void *ion_kernel_mapper_map_kernel(struct ion_mapper *mapper,
					struct ion_buffer *buffer,
					struct ion_mapping *mapping)
{
	if (!((1 << buffer->heap->type) & mapper->heap_mask)) {
		pr_err("%s: attempting to unmap an unsupported heap\n",
		       __func__);
		return ERR_PTR(-EINVAL);
	}
	return buffer->priv;
}

static int ion_kernel_mapper_map_user(struct ion_mapper *mapper,
				      struct ion_buffer *buffer,
				      struct vm_area_struct *vma,
				      struct ion_mapping *mapping)
{
	int ret;

	switch (buffer->heap->type) {
	case ION_HEAP_KMALLOC:
	{
		unsigned long pfn = __phys_to_pfn(virt_to_phys(buffer->priv));
		ret = remap_pfn_range(vma, vma->vm_start, pfn + vma->vm_pgoff,
				      vma->vm_end - vma->vm_start,
				      vma->vm_page_prot);
		break;
	}
	case ION_HEAP_VMALLOC:
		ret = remap_vmalloc_range(vma, buffer->priv, vma->vm_pgoff);
		break;
	default:
		pr_err("%s: attempting to map unsupported heap to userspace\n",
		       __func__);
		return -EINVAL;
	}

	return ret;
}

static struct ion_mapper_ops ops = {
	.map = ion_kernel_mapper_map,
	.map_kernel = ion_kernel_mapper_map_kernel,
	.map_user = ion_kernel_mapper_map_user,
	.unmap = ion_kernel_mapper_unmap,
};

struct ion_mapper *ion_system_mapper_create(void)
{
	struct ion_mapper *mapper;
	mapper = kzalloc(sizeof(struct ion_mapper), GFP_KERNEL);
	if (!mapper)
		return ERR_PTR(-ENOMEM);
	mapper->type = ION_SYSTEM_MAPPER;
	mapper->ops = &ops;
	mapper->heap_mask = (1 << ION_HEAP_VMALLOC) | (1 << ION_HEAP_KMALLOC);
	return mapper;
}

void ion_system_mapper_destroy(struct ion_mapper *mapper)
{
	kfree(mapper);
}