cedrus_mem_ion.c 4.86 KB
Newer Older
Jens Kuske's avatar
Jens Kuske committed
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
/*
 * Copyright (c) 2015-2016 Jens Kuske <jenskuske@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#include <fcntl.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include "cedrus_mem.h"
#include "kernel-headers/ion.h"
#include "kernel-headers/ion_sunxi.h"

struct ion_mem
{
	struct cedrus_mem pub;

34
	ion_user_handle_t handle;
Jens Kuske's avatar
Jens Kuske committed
35
36
37
38
39
40
41
42
43
44
	int fd;
};

struct ion_allocator
{
	struct cedrus_allocator pub;

	int fd;
};

45
static ion_user_handle_t ion_alloc(int ion_fd, size_t size)
Jens Kuske's avatar
Jens Kuske committed
46
47
48
49
{
	struct ion_allocation_data allocation_data = {
		.len = size,
		.align = 4096,
50
		.heap_id_mask = ION_HEAP_TYPE_DMA_MASK,
Jens Kuske's avatar
Jens Kuske committed
51
52
53
54
		.flags = ION_FLAG_CACHED | ION_FLAG_CACHED_NEEDS_SYNC,
	};

	if (ioctl(ion_fd, ION_IOC_ALLOC, &allocation_data))
55
		return 0;
Jens Kuske's avatar
Jens Kuske committed
56
57
58
59

	return allocation_data.handle;
}

60
static int ion_map(int ion_fd, ion_user_handle_t ion_handle)
Jens Kuske's avatar
Jens Kuske committed
61
62
63
64
65
66
67
68
69
70
71
{
	struct ion_fd_data fd_data = {
		.handle = ion_handle,
	};

	if (ioctl(ion_fd, ION_IOC_MAP, &fd_data))
		return -1;

	return fd_data.fd;
}

72
static uint32_t ion_get_phys_addr(int ion_fd, ion_user_handle_t ion_handle)
Jens Kuske's avatar
Jens Kuske committed
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
	sunxi_phys_data phys_data = {
		.handle = ion_handle,
	};

	struct ion_custom_data custom_data = {
		.cmd = ION_IOC_SUNXI_PHYS_ADDR,
		.arg = (unsigned long)(&phys_data),
	};

	if (ioctl(ion_fd, ION_IOC_CUSTOM, &custom_data))
		return 0x0;

	return phys_data.phys_addr;
}

static int ion_flush_cache(int ion_fd, void *addr, size_t size)
{
91
92
	static int new_ioctl = 0;

Jens Kuske's avatar
Jens Kuske committed
93
94
95
96
97
98
99
100
101
102
	sunxi_cache_range cache_range = {
		.start = (long)addr,
		.end = (long)addr + size,
	};

	struct ion_custom_data custom_data = {
		.cmd = ION_IOC_SUNXI_FLUSH_RANGE,
		.arg = (unsigned long)(&cache_range),
	};

103
104
105
106
107
108
109
	if (new_ioctl || ioctl(ion_fd, ION_IOC_CUSTOM, &custom_data))
	{
		if (ioctl(ion_fd, ION_IOC_SUNXI_FLUSH_RANGE, &cache_range))
			return 0;
		else
			new_ioctl = 1;
	}
Jens Kuske's avatar
Jens Kuske committed
110
111
112
113

	return 1;
}

114
static int ion_free(int ion_fd, ion_user_handle_t ion_handle)
Jens Kuske's avatar
Jens Kuske committed
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
	struct ion_handle_data handle_data = {
		.handle = ion_handle,
	};

	if (ioctl(ion_fd, ION_IOC_FREE, &handle_data))
		return 0;

	return 1;
}

static struct cedrus_mem *cedrus_allocator_ion_mem_alloc(struct cedrus_allocator *allocator_pub, size_t size)
{
	struct ion_allocator *allocator = (struct ion_allocator *)allocator_pub;

	struct ion_mem *mem = calloc(1, sizeof(*mem));
	if (!mem)
		return NULL;

	mem->pub.size = size;

	mem->handle = ion_alloc(allocator->fd, size);
	if (!mem->handle)
		goto err;

	mem->pub.phys = ion_get_phys_addr(allocator->fd, mem->handle);
	if (!mem->pub.phys)
		goto err_free;

	mem->fd = ion_map(allocator->fd, mem->handle);
	if (mem->fd < 0)
		goto err_free;

	mem->pub.virt = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, mem->fd, 0);
	if (mem->pub.virt == MAP_FAILED)
		goto err_close;

	return &mem->pub;

err_close:
	close(mem->fd);
err_free:
	ion_free(allocator->fd, mem->handle);
err:
	free(mem);
	return NULL;
}

static void cedrus_allocator_ion_mem_free(struct cedrus_allocator *allocator_pub, struct cedrus_mem *mem_pub)
{
	struct ion_allocator *allocator = (struct ion_allocator *)allocator_pub;
	struct ion_mem *mem = (struct ion_mem *)mem_pub;

	munmap(mem->pub.virt, mem->pub.size);
	close(mem->fd);
	ion_free(allocator->fd, mem->handle);

	free(mem);
}

static void cedrus_allocator_ion_mem_flush(struct cedrus_allocator *allocator_pub, struct cedrus_mem *mem_pub)
{
	struct ion_allocator *allocator = (struct ion_allocator *)allocator_pub;
	struct ion_mem *mem = (struct ion_mem *)mem_pub;

	ion_flush_cache(allocator->fd, mem->pub.virt, mem->pub.size);
}

static void cedrus_allocator_ion_free(struct cedrus_allocator *allocator_pub)
{
	struct ion_allocator *allocator = (struct ion_allocator *)allocator_pub;

	close(allocator->fd);
	free(allocator);
}

struct cedrus_allocator *cedrus_allocator_ion_new(void)
{
	struct ion_allocator *allocator = calloc(1, sizeof(*allocator));
	if (!allocator)
		return NULL;

	allocator->fd = open("/dev/ion", O_RDONLY);
	if (allocator->fd == -1)
	{
		free(allocator);
		return NULL;
	}

	allocator->pub.mem_alloc = cedrus_allocator_ion_mem_alloc;
	allocator->pub.mem_free = cedrus_allocator_ion_mem_free;
	allocator->pub.mem_flush = cedrus_allocator_ion_mem_flush;

	allocator->pub.free = cedrus_allocator_ion_free;

	return &allocator->pub;
}