blob: 985094925ca8c4a1f387e6689047828ebdf81e8c [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 Cross92d7ca62013-11-08 19:04:18 -080043 return close(fd);
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080044}
45
46static int ion_ioctl(int fd, int req, void *arg)
47{
Colin Cross92d7ca62013-11-08 19:04:18 -080048 int ret = ioctl(fd, req, arg);
49 if (ret < 0) {
50 ALOGE("ioctl %x failed with code %d: %s\n", req,
51 ret, strerror(errno));
52 return -errno;
53 }
54 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080055}
56
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -070057int ion_alloc(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -080058 unsigned int flags, ion_user_handle_t *handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080059{
Colin Cross92d7ca62013-11-08 19:04:18 -080060 int ret;
61 struct ion_allocation_data data = {
62 .len = len,
63 .align = align,
64 .heap_id_mask = heap_mask,
65 .flags = flags,
66 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080067
Colin Cross74963182013-11-08 19:07:38 -080068 if (handle == NULL)
69 return -EINVAL;
70
Colin Cross92d7ca62013-11-08 19:04:18 -080071 ret = ion_ioctl(fd, ION_IOC_ALLOC, &data);
72 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080073 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -080074 *handle = data.handle;
75 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080076}
77
Rom Lemarchand969eac82013-10-21 15:19:56 -070078int ion_free(int fd, ion_user_handle_t handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080079{
Colin Cross92d7ca62013-11-08 19:04:18 -080080 struct ion_handle_data data = {
81 .handle = handle,
82 };
83 return ion_ioctl(fd, ION_IOC_FREE, &data);
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080084}
85
Rom Lemarchand969eac82013-10-21 15:19:56 -070086int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot,
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080087 int flags, off_t offset, unsigned char **ptr, int *map_fd)
88{
Colin Cross74963182013-11-08 19:07:38 -080089 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -080090 struct ion_fd_data data = {
91 .handle = handle,
92 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080093
Colin Cross74963182013-11-08 19:07:38 -080094 if (map_fd == NULL)
95 return -EINVAL;
96 if (ptr == NULL)
97 return -EINVAL;
98
99 ret = ion_ioctl(fd, ION_IOC_MAP, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800100 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800101 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800102 *map_fd = data.fd;
103 if (*map_fd < 0) {
104 ALOGE("map ioctl returned negative fd\n");
105 return -EINVAL;
106 }
107 *ptr = mmap(NULL, length, prot, flags, *map_fd, offset);
108 if (*ptr == MAP_FAILED) {
109 ALOGE("mmap failed: %s\n", strerror(errno));
110 return -errno;
111 }
112 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800113}
114
Rom Lemarchand969eac82013-10-21 15:19:56 -0700115int ion_share(int fd, ion_user_handle_t handle, int *share_fd)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800116{
Colin Cross92d7ca62013-11-08 19:04:18 -0800117 int map_fd;
Colin Cross74963182013-11-08 19:07:38 -0800118 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800119 struct ion_fd_data data = {
120 .handle = handle,
121 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800122
Colin Cross74963182013-11-08 19:07:38 -0800123 if (share_fd == NULL)
124 return -EINVAL;
125
126 ret = ion_ioctl(fd, ION_IOC_SHARE, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800127 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800128 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800129 *share_fd = data.fd;
130 if (*share_fd < 0) {
131 ALOGE("share ioctl returned negative fd\n");
132 return -EINVAL;
133 }
134 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800135}
136
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700137int ion_alloc_fd(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -0800138 unsigned int flags, int *handle_fd) {
139 ion_user_handle_t handle;
140 int ret;
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700141
Colin Cross92d7ca62013-11-08 19:04:18 -0800142 ret = ion_alloc(fd, len, align, heap_mask, flags, &handle);
143 if (ret < 0)
144 return ret;
145 ret = ion_share(fd, handle, handle_fd);
146 ion_free(fd, handle);
147 return ret;
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -0700148}
149
Rom Lemarchand969eac82013-10-21 15:19:56 -0700150int ion_import(int fd, int share_fd, ion_user_handle_t *handle)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800151{
Colin Cross74963182013-11-08 19:07:38 -0800152 int ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800153 struct ion_fd_data data = {
154 .fd = share_fd,
155 };
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800156
Colin Cross74963182013-11-08 19:07:38 -0800157 if (handle == NULL)
158 return -EINVAL;
159
160 ret = ion_ioctl(fd, ION_IOC_IMPORT, &data);
Colin Cross92d7ca62013-11-08 19:04:18 -0800161 if (ret < 0)
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800162 return ret;
Colin Cross92d7ca62013-11-08 19:04:18 -0800163 *handle = data.handle;
164 return ret;
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -0800165}
Rebecca Schultz Zavin3cfcc302012-09-20 09:46:19 -0700166
167int ion_sync_fd(int fd, int handle_fd)
168{
169 struct ion_fd_data data = {
170 .fd = handle_fd,
171 };
172 return ion_ioctl(fd, ION_IOC_SYNC, &data);
173}