blob: f47793d27eb3816426ed4f0dec752b009f327948 [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
Dima Zavin830e1972012-02-27 16:33:03 -080021#ifndef __SYS_CORE_ION_H
22#define __SYS_CORE_ION_H
23
Colin Cross51b6e422013-12-18 15:17:06 -080024#include <sys/types.h>
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080025#include <linux/ion.h>
26
Dima Zavin830e1972012-02-27 16:33:03 -080027__BEGIN_DECLS
28
Elliott Hughesf98e4bf2013-11-21 22:09:46 -080029struct ion_handle;
30
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080031int ion_open();
32int ion_close(int fd);
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -070033int ion_alloc(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -080034 unsigned int flags, ion_user_handle_t *handle);
Rebecca Schultz Zavina50fd552012-06-11 15:12:37 -070035int ion_alloc_fd(int fd, size_t len, size_t align, unsigned int heap_mask,
Colin Cross92d7ca62013-11-08 19:04:18 -080036 unsigned int flags, int *handle_fd);
Rebecca Schultz Zavin3cfcc302012-09-20 09:46:19 -070037int ion_sync_fd(int fd, int handle_fd);
Rom Lemarchand969eac82013-10-21 15:19:56 -070038int ion_free(int fd, ion_user_handle_t handle);
39int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot,
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080040 int flags, off_t offset, unsigned char **ptr, int *map_fd);
Rom Lemarchand969eac82013-10-21 15:19:56 -070041int ion_share(int fd, ion_user_handle_t handle, int *share_fd);
42int ion_import(int fd, int share_fd, ion_user_handle_t *handle);
Rebecca Schultz Zavinafd91232012-02-22 16:36:55 -080043
Dima Zavin830e1972012-02-27 16:33:03 -080044__END_DECLS
45
46#endif /* __SYS_CORE_ION_H */