You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
4.3 KiB
107 lines
4.3 KiB
/****************************************************************************
|
|
****************************************************************************
|
|
***
|
|
*** This header was automatically generated from a Linux kernel header
|
|
*** of the same name, to make information necessary for userspace to
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
*** structures, and macros generated from the original header, and thus,
|
|
*** contains no copyrightable information.
|
|
***
|
|
*** To edit the content of this header, modify the corresponding
|
|
*** source file (e.g. under external/kernel-headers/original/) then
|
|
*** run bionic/libc/kernel/tools/update_all.py
|
|
***
|
|
*** Any manual change here will be lost the next time this script will
|
|
*** be run. You've been warned!
|
|
***
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
#ifndef _LINUX_MSM_ION_H
|
|
#define _LINUX_MSM_ION_H
|
|
#include <linux/ion.h>
|
|
#define ION_HEAP_TYPE_MSM_START (ION_HEAP_TYPE_CUSTOM + 1)
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_HEAP_TYPE_IOMMU (ION_HEAP_TYPE_MSM_START)
|
|
#define ION_HEAP_TYPE_CP (ION_HEAP_TYPE_IOMMU + 1)
|
|
enum ion_heap_ids {
|
|
INVALID_HEAP_ID = -1,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
ION_CP_MM_HEAP_ID = 8,
|
|
ION_CP_MFC_HEAP_ID = 12,
|
|
ION_CP_WB_HEAP_ID = 16,
|
|
ION_CAMERA_HEAP_ID = 20,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
ION_ADSP_HEAP_ID = 22,
|
|
ION_SF_HEAP_ID = 24,
|
|
ION_IOMMU_HEAP_ID = 25,
|
|
ION_QSECOM_HEAP_ID = 27,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
ION_AUDIO_HEAP_ID = 28,
|
|
ION_MM_FIRMWARE_HEAP_ID = 29,
|
|
ION_SYSTEM_HEAP_ID = 30,
|
|
ION_HEAP_ID_RESERVED = 31
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
};
|
|
enum ion_fixed_position {
|
|
NOT_FIXED,
|
|
FIXED_LOW,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
FIXED_MIDDLE,
|
|
FIXED_HIGH,
|
|
};
|
|
enum cp_mem_usage {
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
VIDEO_BITSTREAM = 0x1,
|
|
VIDEO_PIXEL = 0x2,
|
|
VIDEO_NONPIXEL = 0x3,
|
|
MAX_USAGE = 0x4,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
UNKNOWN = 0x7FFFFFFF,
|
|
};
|
|
#define ION_HEAP_CP_MASK (1 << ION_HEAP_TYPE_CP)
|
|
#define ION_SECURE (1 << ION_HEAP_ID_RESERVED)
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_FORCE_CONTIGUOUS (1 << 30)
|
|
#define ION_HEAP(bit) (1 << (bit))
|
|
#define ION_ADSP_HEAP_NAME "adsp"
|
|
#define ION_VMALLOC_HEAP_NAME "vmalloc"
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_AUDIO_HEAP_NAME "audio"
|
|
#define ION_SF_HEAP_NAME "sf"
|
|
#define ION_MM_HEAP_NAME "mm"
|
|
#define ION_CAMERA_HEAP_NAME "camera_preview"
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_IOMMU_HEAP_NAME "iommu"
|
|
#define ION_MFC_HEAP_NAME "mfc"
|
|
#define ION_WB_HEAP_NAME "wb"
|
|
#define ION_MM_FIRMWARE_HEAP_NAME "mm_fw"
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_QSECOM_HEAP_NAME "qsecom"
|
|
#define ION_FMEM_HEAP_NAME "fmem"
|
|
#define ION_SET_CACHED(__cache) (__cache | ION_FLAG_CACHED)
|
|
#define ION_SET_UNCACHED(__cache) (__cache & ~ION_FLAG_CACHED)
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_IS_CACHED(__flags) ((__flags) & ION_FLAG_CACHED)
|
|
struct ion_flush_data {
|
|
struct ion_handle *handle;
|
|
int fd;
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
void *vaddr;
|
|
unsigned int offset;
|
|
unsigned int length;
|
|
};
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
struct ion_flag_data {
|
|
struct ion_handle *handle;
|
|
unsigned long flags;
|
|
};
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_IOC_MSM_MAGIC 'M'
|
|
#define ION_IOC_CLEAN_CACHES _IOWR(ION_IOC_MSM_MAGIC, 0, struct ion_flush_data)
|
|
#define ION_IOC_INV_CACHES _IOWR(ION_IOC_MSM_MAGIC, 1, struct ion_flush_data)
|
|
#define ION_IOC_CLEAN_INV_CACHES _IOWR(ION_IOC_MSM_MAGIC, 2, struct ion_flush_data)
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
#define ION_IOC_GET_FLAGS _IOWR(ION_IOC_MSM_MAGIC, 3, struct ion_flag_data)
|
|
#endif
|
|
|