blob: a79525dc82044ebf46be987e88095ea419dfc6b8 [file] [log] [blame]
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -08001/*
2 * ion.c
3 *
4 * Memory Allocator functions for ion
5 *
6 * Copyright 2011 Google, Inc
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20#define LOG_TAG "ion"
21
22#include <cutils/log.h>
23#include <errno.h>
24#include <fcntl.h>
25#include <stdio.h>
26#include <sys/ioctl.h>
27#include <sys/mman.h>
28#include <sys/types.h>
29
30#include <linux/ion.h>
31#include <ion/ion.h>
32
33int ion_open()
34{
Colin Cross92d7ca62013-11-08 19:04:18 -080035 int fd = open("/dev/ion", O_RDWR);
36 if (fd < 0)
37 ALOGE("open /dev/ion failed!\n");
38 return fd;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080039}
40
41int ion_close(int fd)
42{
Colin Crossaab47b22013-12-18 15:17:21 -080043 int ret = close(fd);
44 if (ret < 0)
45 return -errno;
46 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080047}
48
49static int ion_ioctl(int fd, int req, void *arg)
50{
Colin Cross92d7ca62013-11-08 19:04:18 -080051 int ret = ioctl(fd, req, arg);
52 if (ret < 0) {
53 ALOGE("ioctl %x failed with code %d: %s\n", req,
54 ret, strerror(errno));
55 return -errno;
56 }
57 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080058}
59
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -070060int ion_alloc(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -080061 unsigned int flags, ion_user_handle_t *handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080062{
Colin Cross92d7ca62013-11-08 19:04:18 -080063 int ret;
64 struct ion_allocation_data data = {
65 .len = len,
66 .align = align,
67 .heap_id_mask = heap_mask,
68 .flags = flags,
69 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080070
Colin Cross74963182013-11-08 19:07:38 -080071 if (handle == NULL)
72 return -EINVAL;
73
Colin Cross92d7ca62013-11-08 19:04:18 -080074 ret = ion_ioctl(fd, ION_IOC_ALLOC, &data);
75 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080076 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -080077 *handle = data.handle;
78 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080079}
80
Rom Lemarchand969eac82013-10-21 15:19:56 -070081int ion_free(int fd, ion_user_handle_t handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080082{
Colin Cross92d7ca62013-11-08 19:04:18 -080083 struct ion_handle_data data = {
84 .handle = handle,
85 };
86 return ion_ioctl(fd, ION_IOC_FREE, &data);
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080087}
88
Rom Lemarchand969eac82013-10-21 15:19:56 -070089int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot,
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080090 int flags, off_t offset, unsigned char **ptr, int *map_fd)
91{
Colin Cross74963182013-11-08 19:07:38 -080092 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -080093 struct ion_fd_data data = {
94 .handle = handle,
95 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080096
Colin Cross74963182013-11-08 19:07:38 -080097 if (map_fd == NULL)
98 return -EINVAL;
99 if (ptr == NULL)
100 return -EINVAL;
101
102 ret = ion_ioctl(fd, ION_IOC_MAP, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800103 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800104 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800105 *map_fd = data.fd;
106 if (*map_fd < 0) {
107 ALOGE("map ioctl returned negative fd\n");
108 return -EINVAL;
109 }
110 *ptr = mmap(NULL, length, prot, flags, *map_fd, offset);
111 if (*ptr == MAP_FAILED) {
112 ALOGE("mmap failed: %s\n", strerror(errno));
113 return -errno;
114 }
115 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800116}
117
Rom Lemarchand969eac82013-10-21 15:19:56 -0700118int ion_share(int fd, ion_user_handle_t handle, int *share_fd)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800119{
Colin Cross74963182013-11-08 19:07:38 -0800120 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800121 struct ion_fd_data data = {
122 .handle = handle,
123 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800124
Colin Cross74963182013-11-08 19:07:38 -0800125 if (share_fd == NULL)
126 return -EINVAL;
127
128 ret = ion_ioctl(fd, ION_IOC_SHARE, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800129 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800130 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800131 *share_fd = data.fd;
132 if (*share_fd < 0) {
133 ALOGE("share ioctl returned negative fd\n");
134 return -EINVAL;
135 }
136 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800137}
138
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700139int ion_alloc_fd(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -0800140 unsigned int flags, int *handle_fd) {
141 ion_user_handle_t handle;
142 int ret;
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700143
Colin Cross92d7ca62013-11-08 19:04:18 -0800144 ret = ion_alloc(fd, len, align, heap_mask, flags, &handle);
145 if (ret < 0)
146 return ret;
147 ret = ion_share(fd, handle, handle_fd);
148 ion_free(fd, handle);
149 return ret;
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700150}
151
Rom Lemarchand969eac82013-10-21 15:19:56 -0700152int ion_import(int fd, int share_fd, ion_user_handle_t *handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800153{
Colin Cross74963182013-11-08 19:07:38 -0800154 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800155 struct ion_fd_data data = {
156 .fd = share_fd,
157 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800158
Colin Cross74963182013-11-08 19:07:38 -0800159 if (handle == NULL)
160 return -EINVAL;
161
162 ret = ion_ioctl(fd, ION_IOC_IMPORT, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800163 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800164 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800165 *handle = data.handle;
166 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800167}
Rebecca Schultz Zavin3cfcc302012-09-20 09:46:19 -0700168
169int ion_sync_fd(int fd, int handle_fd)
170{
171 struct ion_fd_data data = {
172 .fd = handle_fd,
173 };
174 return ion_ioctl(fd, ION_IOC_SYNC, &data);
175}