blob: 25792e5861c56da104ae98428d9ca8468e74a15f [file] [log] [blame]
Prabhanjan Kandula96e92342016-03-24 21:03:35 +05301/*
Naseer Ahmede69031e2016-11-22 20:05:16 -05002 * Copyright (c) 2011-2017, The Linux Foundation. All rights reserved.
Prabhanjan Kandula96e92342016-03-24 21:03:35 +05303
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer in the documentation and/or other materials provided
12 * with the distribution.
13 * * Neither the name of The Linux Foundation nor the names of its
14 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#define DEBUG 0
31#define ATRACE_TAG (ATRACE_TAG_GRAPHICS | ATRACE_TAG_HAL)
32#include <sys/ioctl.h>
33#include <sys/mman.h>
34#include <stdlib.h>
35#include <fcntl.h>
36#include <cutils/log.h>
37#include <errno.h>
38#include <utils/Trace.h>
39
40#include "gralloc_priv.h"
41#include "gr_utils.h"
42#include "gr_ion_alloc.h"
43
44namespace gralloc1 {
45
46bool IonAlloc::Init() {
47 if (ion_dev_fd_ == FD_INIT) {
48 ion_dev_fd_ = open(kIonDevice, O_RDONLY);
49 }
50
51 if (ion_dev_fd_ < 0) {
52 ALOGE("%s: Failed to open ion device - %s", __FUNCTION__, strerror(errno));
53 ion_dev_fd_ = FD_INIT;
54 return false;
55 }
56
57 return true;
58}
59
60void IonAlloc::CloseIonDevice() {
61 if (ion_dev_fd_ > FD_INIT) {
62 close(ion_dev_fd_);
63 }
64
65 ion_dev_fd_ = FD_INIT;
66}
67
68int IonAlloc::AllocBuffer(AllocData *data) {
69 ATRACE_CALL();
70 int err = 0;
71 struct ion_handle_data handle_data;
72 struct ion_fd_data fd_data;
73 struct ion_allocation_data ion_alloc_data;
74 void *base = NULL;
75
76 ion_alloc_data.len = data->size;
77 ion_alloc_data.align = data->align;
78 ion_alloc_data.heap_id_mask = data->heap_id;
79 ion_alloc_data.flags = data->flags;
80 ion_alloc_data.flags |= data->uncached ? 0 : ION_FLAG_CACHED;
81
82 if (ioctl(ion_dev_fd_, INT(ION_IOC_ALLOC), &ion_alloc_data)) {
83 err = -errno;
84 ALOGE("ION_IOC_ALLOC failed with error - %s", strerror(errno));
85 return err;
86 }
87
88 fd_data.handle = ion_alloc_data.handle;
89 handle_data.handle = ion_alloc_data.handle;
90 if (ioctl(ion_dev_fd_, INT(ION_IOC_MAP), &fd_data)) {
91 err = -errno;
92 ALOGE("%s: ION_IOC_MAP failed with error - %s", __FUNCTION__, strerror(errno));
93 ioctl(ion_dev_fd_, INT(ION_IOC_FREE), &handle_data);
94 return err;
95 }
96
97 if (!(INT(data->flags) & INT(ION_SECURE))) {
98 base = mmap(0, ion_alloc_data.len, PROT_READ | PROT_WRITE, MAP_SHARED, fd_data.fd, 0);
99 if (base == MAP_FAILED) {
100 err = -errno;
101 ALOGE("%s: Failed to map the allocated memory: %s", __FUNCTION__, strerror(errno));
102 ioctl(ion_dev_fd_, INT(ION_IOC_FREE), &handle_data);
103 return err;
104 }
105 }
106
107 data->base = base;
108 data->fd = fd_data.fd;
Naseer Ahmede69031e2016-11-22 20:05:16 -0500109 data->ion_handle = handle_data.handle;
110 ALOGD_IF(DEBUG, "ion: Allocated buffer base:%p size:%zu fd:%d handle:0x%x", data->base,
111 ion_alloc_data.len, data->fd, data->ion_handle);
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530112
113 return 0;
114}
115
Naseer Ahmede69031e2016-11-22 20:05:16 -0500116int IonAlloc::FreeBuffer(void *base, unsigned int size, unsigned int offset, int fd,
117 int ion_handle) {
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530118 ATRACE_CALL();
119 int err = 0;
Naseer Ahmede69031e2016-11-22 20:05:16 -0500120 ALOGD_IF(DEBUG, "ion: Freeing buffer base:%p size:%u fd:%d handle:0x%x", base, size, fd,
121 ion_handle);
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530122
123 if (base) {
124 err = UnmapBuffer(base, size, offset);
125 }
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530126
Naseer Ahmed3a9d53a2017-03-15 19:21:40 -0400127 if (ion_handle > 0) {
128 struct ion_handle_data handle_data;
129 handle_data.handle = ion_handle;
130 ioctl(ion_dev_fd_, INT(ION_IOC_FREE), &handle_data);
131 }
132 close(fd);
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530133 return err;
134}
135
136int IonAlloc::MapBuffer(void **base, unsigned int size, unsigned int offset, int fd) {
137 ATRACE_CALL();
138 int err = 0;
139 void *addr = 0;
140
141 // It is a (quirky) requirement of ION to have opened the
142 // ion fd in the process that is doing the mapping
143 addr = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
144 *base = addr;
145 if (addr == MAP_FAILED) {
146 err = -errno;
147 ALOGE("ion: Failed to map memory in the client: %s", strerror(errno));
148 } else {
149 ALOGD_IF(DEBUG, "ion: Mapped buffer base:%p size:%u offset:%u fd:%d", addr, size, offset, fd);
150 }
151
152 return err;
153}
154
Naseer Ahmed3a9d53a2017-03-15 19:21:40 -0400155int IonAlloc::ImportBuffer(int fd) {
156 struct ion_fd_data fd_data;
157 int err = 0;
158 fd_data.fd = fd;
159 if (ioctl(ion_dev_fd_, INT(ION_IOC_IMPORT), &fd_data)) {
160 err = -errno;
161 ALOGE("%s: ION_IOC_IMPORT failed with error - %s", __FUNCTION__, strerror(errno));
162 return err;
163 }
164 return fd_data.handle;
165}
166
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530167int IonAlloc::UnmapBuffer(void *base, unsigned int size, unsigned int /*offset*/) {
168 ATRACE_CALL();
169 ALOGD_IF(DEBUG, "ion: Unmapping buffer base:%p size:%u", base, size);
170
171 int err = 0;
172 if (munmap(base, size)) {
173 err = -errno;
174 ALOGE("ion: Failed to unmap memory at %p : %s", base, strerror(errno));
175 }
176
177 return err;
178}
179
Naseer Ahmed3a9d53a2017-03-15 19:21:40 -0400180int IonAlloc::CleanBuffer(void *base, unsigned int size, unsigned int offset, int handle, int op) {
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530181 ATRACE_CALL();
182 ATRACE_INT("operation id", op);
183 struct ion_flush_data flush_data;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530184 int err = 0;
185
Naseer Ahmed3a9d53a2017-03-15 19:21:40 -0400186 flush_data.handle = handle;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530187 flush_data.vaddr = base;
188 // offset and length are unsigned int
189 flush_data.offset = offset;
190 flush_data.length = size;
191
192 struct ion_custom_data d;
193 switch (op) {
194 case CACHE_CLEAN:
195 d.cmd = ION_IOC_CLEAN_CACHES;
196 break;
197 case CACHE_INVALIDATE:
198 d.cmd = ION_IOC_INV_CACHES;
199 break;
200 case CACHE_CLEAN_AND_INVALIDATE:
201 default:
202 d.cmd = ION_IOC_CLEAN_INV_CACHES;
203 }
204
205 d.arg = (unsigned long)(&flush_data); // NOLINT
206 if (ioctl(ion_dev_fd_, INT(ION_IOC_CUSTOM), &d)) {
207 err = -errno;
208 ALOGE("%s: ION_IOC_CLEAN_INV_CACHES failed with error - %s", __FUNCTION__, strerror(errno));
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530209 return err;
210 }
211
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530212 return 0;
213}
214
215} // namespace gralloc1