blob: d1984bd0638b4eb21f313f2e47c3ee7f98f5a8cd [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>
Elliott Hughesa744b052015-01-28 11:37:57 -080026#include <string.h>
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080027#include <sys/ioctl.h>
28#include <sys/mman.h>
29#include <sys/types.h>
30
31#include <linux/ion.h>
32#include <ion/ion.h>
33
34int ion_open()
35{
Colin Cross92d7ca62013-11-08 19:04:18 -080036 int fd = open("/dev/ion", O_RDWR);
37 if (fd < 0)
38 ALOGE("open /dev/ion failed!\n");
39 return fd;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080040}
41
42int ion_close(int fd)
43{
Colin Crossaab47b22013-12-18 15:17:21 -080044 int ret = close(fd);
45 if (ret < 0)
46 return -errno;
47 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080048}
49
50static int ion_ioctl(int fd, int req, void *arg)
51{
Colin Cross92d7ca62013-11-08 19:04:18 -080052 int ret = ioctl(fd, req, arg);
53 if (ret < 0) {
54 ALOGE("ioctl %x failed with code %d: %s\n", req,
55 ret, strerror(errno));
56 return -errno;
57 }
58 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080059}
60
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -070061int ion_alloc(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -080062 unsigned int flags, ion_user_handle_t *handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080063{
Colin Cross92d7ca62013-11-08 19:04:18 -080064 int ret;
65 struct ion_allocation_data data = {
66 .len = len,
67 .align = align,
68 .heap_id_mask = heap_mask,
69 .flags = flags,
70 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080071
Colin Cross74963182013-11-08 19:07:38 -080072 if (handle == NULL)
73 return -EINVAL;
74
Colin Cross92d7ca62013-11-08 19:04:18 -080075 ret = ion_ioctl(fd, ION_IOC_ALLOC, &data);
76 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080077 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -080078 *handle = data.handle;
79 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080080}
81
Rom Lemarchand969eac82013-10-21 15:19:56 -070082int ion_free(int fd, ion_user_handle_t handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080083{
Colin Cross92d7ca62013-11-08 19:04:18 -080084 struct ion_handle_data data = {
85 .handle = handle,
86 };
87 return ion_ioctl(fd, ION_IOC_FREE, &data);
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080088}
89
Rom Lemarchand969eac82013-10-21 15:19:56 -070090int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot,
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080091 int flags, off_t offset, unsigned char **ptr, int *map_fd)
92{
Colin Cross74963182013-11-08 19:07:38 -080093 int ret;
Rom Lemarchand5cdcdce2014-10-27 16:42:10 -070094 unsigned char *tmp_ptr;
Colin Cross92d7ca62013-11-08 19:04:18 -080095 struct ion_fd_data data = {
96 .handle = handle,
97 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080098
Colin Cross74963182013-11-08 19:07:38 -080099 if (map_fd == NULL)
100 return -EINVAL;
101 if (ptr == NULL)
102 return -EINVAL;
103
104 ret = ion_ioctl(fd, ION_IOC_MAP, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800105 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800106 return ret;
Rom Lemarchand5cdcdce2014-10-27 16:42:10 -0700107 if (data.fd < 0) {
Colin Cross92d7ca62013-11-08 19:04:18 -0800108 ALOGE("map ioctl returned negative fd\n");
109 return -EINVAL;
110 }
Rom Lemarchand5cdcdce2014-10-27 16:42:10 -0700111 tmp_ptr = mmap(NULL, length, prot, flags, data.fd, offset);
112 if (tmp_ptr == MAP_FAILED) {
Colin Cross92d7ca62013-11-08 19:04:18 -0800113 ALOGE("mmap failed: %s\n", strerror(errno));
114 return -errno;
115 }
Rom Lemarchand5cdcdce2014-10-27 16:42:10 -0700116 *map_fd = data.fd;
117 *ptr = tmp_ptr;
Colin Cross92d7ca62013-11-08 19:04:18 -0800118 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800119}
120
Rom Lemarchand969eac82013-10-21 15:19:56 -0700121int ion_share(int fd, ion_user_handle_t handle, int *share_fd)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800122{
Colin Cross74963182013-11-08 19:07:38 -0800123 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800124 struct ion_fd_data data = {
125 .handle = handle,
126 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800127
Colin Cross74963182013-11-08 19:07:38 -0800128 if (share_fd == NULL)
129 return -EINVAL;
130
131 ret = ion_ioctl(fd, ION_IOC_SHARE, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800132 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800133 return ret;
Rom Lemarchand5cdcdce2014-10-27 16:42:10 -0700134 if (data.fd < 0) {
Colin Cross92d7ca62013-11-08 19:04:18 -0800135 ALOGE("share ioctl returned negative fd\n");
136 return -EINVAL;
137 }
Rom Lemarchand5cdcdce2014-10-27 16:42:10 -0700138 *share_fd = data.fd;
Colin Cross92d7ca62013-11-08 19:04:18 -0800139 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800140}
141
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700142int ion_alloc_fd(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -0800143 unsigned int flags, int *handle_fd) {
144 ion_user_handle_t handle;
145 int ret;
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700146
Colin Cross92d7ca62013-11-08 19:04:18 -0800147 ret = ion_alloc(fd, len, align, heap_mask, flags, &handle);
148 if (ret < 0)
149 return ret;
150 ret = ion_share(fd, handle, handle_fd);
151 ion_free(fd, handle);
152 return ret;
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700153}
154
Rom Lemarchand969eac82013-10-21 15:19:56 -0700155int ion_import(int fd, int share_fd, ion_user_handle_t *handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800156{
Colin Cross74963182013-11-08 19:07:38 -0800157 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800158 struct ion_fd_data data = {
159 .fd = share_fd,
160 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800161
Colin Cross74963182013-11-08 19:07:38 -0800162 if (handle == NULL)
163 return -EINVAL;
164
165 ret = ion_ioctl(fd, ION_IOC_IMPORT, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800166 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800167 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800168 *handle = data.handle;
169 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800170}
Rebecca Schultz Zavin3cfcc302012-09-20 09:46:19 -0700171
172int ion_sync_fd(int fd, int handle_fd)
173{
174 struct ion_fd_data data = {
175 .fd = handle_fd,
176 };
177 return ion_ioctl(fd, ION_IOC_SYNC, &data);
178}